X-Git-Url: http://git.cascardo.info/?a=blobdiff_plain;ds=sidebyside;f=ipsilon%2Fproviders%2Fsaml2idp.py;h=a507c7e507719dded0c46440de029a31efe1ce23;hb=68b9e1d3138784c3793f0a04c411f14168748692;hp=8ff512cdac0eb54c4b88279f23e1731706f78d47;hpb=424a03e5bd141bfa80220816d6e9bd6be9aa256f;p=cascardo%2Fipsilon.git diff --git a/ipsilon/providers/saml2idp.py b/ipsilon/providers/saml2idp.py index 8ff512c..a507c7e 100644 --- a/ipsilon/providers/saml2idp.py +++ b/ipsilon/providers/saml2idp.py @@ -125,8 +125,8 @@ class SLO(ProviderPageBase): # one week METADATA_RENEW_INTERVAL = 60 * 60 * 24 * 7 -# 30 days -METADATA_VALIDITY_PERIOD = 30 +# five years (approximately) +METADATA_DEFAULT_VALIDITY_PERIOD = 365 * 5 class Metadata(ProviderPageBase): @@ -149,8 +149,10 @@ class Metadata(ProviderPageBase): idp_cert = Certificate() idp_cert.import_cert(self.cfg.idp_certificate_file, self.cfg.idp_key_file) + + validity = int(self.cfg.idp_metadata_validity) meta = IdpMetadataGenerator(self.instance_base_url(), idp_cert, - timedelta(METADATA_VALIDITY_PERIOD)) + timedelta(validity)) body = meta.output() with open(self.cfg.idp_metadata_file, 'w+') as m: m.write(body) @@ -185,15 +187,20 @@ Provides SAML 2.0 authentication infrastructure. """ '/var/lib/ipsilon/saml2'), pconfig.String( 'idp metadata file', - 'The IdP Metadata file genearated at install time.', + 'The IdP Metadata file generated at install time.', 'metadata.xml'), + pconfig.String( + 'idp metadata validity', + 'The IdP Metadata validity period (in days) to use when ' + 'generating new metadata.', + METADATA_DEFAULT_VALIDITY_PERIOD), pconfig.String( 'idp certificate file', - 'The IdP PEM Certificate genearated at install time.', + 'The IdP PEM Certificate generated at install time.', 'certificate.pem'), pconfig.String( 'idp key file', - 'The IdP Certificate Key genearated at install time.', + 'The IdP Certificate Key generated at install time.', 'certificate.key'), pconfig.String( 'idp nameid salt', @@ -248,6 +255,10 @@ Provides SAML 2.0 authentication infrastructure. """ return os.path.join(self.idp_storage_path, self.get_config_value('idp metadata file')) + @property + def idp_metadata_validity(self): + return self.get_config_value('idp metadata validity') + @property def idp_certificate_file(self): return os.path.join(self.idp_storage_path, @@ -298,6 +309,8 @@ Provides SAML 2.0 authentication infrastructure. """ self._debug('Failed to init SAML2 provider: %r' % e) return None + self._root.logout.add_handler(self.name, self.idp_initiated_logout) + # Import all known applications data = self.get_data() for idval in data: @@ -320,6 +333,45 @@ Provides SAML 2.0 authentication infrastructure. """ if self.admin: self.admin.add_sps() + def idp_initiated_logout(self): + """ + Logout all SP sessions when the logout comes from the IdP. + + For the current user only. + """ + self._debug("IdP-initiated SAML2 logout") + us = UserSession() + + saml_sessions = us.get_provider_data('saml2') + if saml_sessions is None: + self._debug("No SAML2 sessions to logout") + return + session = saml_sessions.get_next_logout(remove=False) + if session is None: + return + + # Add a fake session to indicate where the user should + # be redirected to when all SP's are logged out. + idpurl = self._root.instance_base_url() + saml_sessions.add_session("_idp_initiated_logout", + idpurl, + "") + init_session = saml_sessions.find_session_by_provider(idpurl) + init_session.set_logoutstate(idpurl, "idp_initiated_logout", None) + saml_sessions.start_logout(init_session) + + logout = self.idp.get_logout_handler() + logout.setSessionFromDump(session.session.dump()) + logout.initRequest(session.provider_id) + try: + logout.buildRequestMsg() + except lasso.Error, e: + self.error('failure to build logout request msg: %s' % e) + raise cherrypy.HTTPRedirect(400, 'Failed to log out user: %s ' + % e) + + raise cherrypy.HTTPRedirect(logout.msgUrl) + class IdpMetadataGenerator(object): @@ -354,6 +406,11 @@ class Installer(ProviderInstaller): def install_args(self, group): group.add_argument('--saml2', choices=['yes', 'no'], default='yes', help='Configure SAML2 Provider') + group.add_argument('--saml2-metadata-validity', + default=METADATA_DEFAULT_VALIDITY_PERIOD, + help=('Metadata validity period in days ' + '(default - %d)' % + METADATA_DEFAULT_VALIDITY_PERIOD)) def configure(self, opts): if opts['saml2'] != 'yes': @@ -373,9 +430,10 @@ class Installer(ProviderInstaller): if opts['secure'].lower() == 'no': proto = 'http' url = '%s://%s/%s' % (proto, opts['hostname'], opts['instance']) + validity = int(opts['saml2_metadata_validity']) meta = IdpMetadataGenerator(url, cert, - timedelta(METADATA_VALIDITY_PERIOD)) - if 'krb' in opts and opts['krb'] == 'yes': + timedelta(validity)) + if 'gssapi' in opts and opts['gssapi'] == 'yes': meta.meta.add_allowed_name_format( lasso.SAML2_NAME_IDENTIFIER_FORMAT_KERBEROS) @@ -390,7 +448,8 @@ class Installer(ProviderInstaller): 'idp metadata file': 'metadata.xml', 'idp certificate file': cert.cert, 'idp key file': cert.key, - 'idp nameid salt': uuid.uuid4().hex} + 'idp nameid salt': uuid.uuid4().hex, + 'idp metadata validity': opts['saml2_metadata_validity']} po.save_plugin_config(config) # Update global config to add login plugin