1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
#!/usr/bin/python
#
# Copyright (C) 2014 Simo Sorce <simo@redhat.com>
#
# see file 'COPYING' for use and warranty information
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from ipsilon.providers.common import ProviderBase, ProviderPageBase
from ipsilon.providers.saml2.auth import AuthenticateRequest
from ipsilon.util.user import UserSession
import cherrypy
import lasso
import os
class Redirect(AuthenticateRequest):
def GET(self, *args, **kwargs):
query = cherrypy.request.query_string
login = self.saml2login(query)
return self.auth(login)
class POSTAuth(AuthenticateRequest):
def POST(self, *args, **kwargs):
request = kwargs.get(lasso.SAML2_FIELD_REQUEST)
relaystate = kwargs.get(lasso.SAML2_FIELD_RELAYSTATE)
login = self.saml2login(request)
login.set_msgRelayState(relaystate)
return self.auth(login)
class Continue(AuthenticateRequest):
def GET(self, *args, **kwargs):
session = UserSession()
user = session.get_user()
session.nuke_data('login', 'Return')
self.stage = session.get_data('saml2', 'stage')
if user.is_anonymous:
self._debug("User is marked anonymous?!")
# TODO: Return to SP with auth failed error
raise cherrypy.HTTPError(401)
self._debug('Continue auth for %s' % user.name)
dump = session.get_data('saml2', 'Request')
if not dump:
self._debug("Couldn't find Request dump?!")
# TODO: Return to SP with auth failed error
raise cherrypy.HTTPError(400)
try:
login = lasso.Login.newFromDump(self.cfg.idp, dump)
except Exception, e: # pylint: disable=broad-except
self._debug('Failed to load status from dump: %r' % e)
if not login:
self._debug("Empty Request dump?!")
# TODO: Return to SP with auth failed error
raise cherrypy.HTTPError(400)
return self.auth(login)
class SSO(ProviderPageBase):
def __init__(self, *args, **kwargs):
super(SSO, self).__init__(*args, **kwargs)
self.Redirect = Redirect(*args, **kwargs)
self.POST = POSTAuth(*args, **kwargs)
self.Continue = Continue(*args, **kwargs)
class SAML2(ProviderPageBase):
def __init__(self, *args, **kwargs):
super(SAML2, self).__init__(*args, **kwargs)
# Init IDP data
try:
self.cfg.idp = lasso.Server(self.cfg.idp_metadata_file,
self.cfg.idp_key_file,
None,
self.cfg.idp_certificate_file)
self.cfg.idp.role = lasso.PROVIDER_ROLE_IDP
except Exception, e: # pylint: disable=broad-except
self._debug('Failed to enable SAML2 provider: %r' % e)
return
# Import all known applications
data = self.cfg.get_data()
for idval in data:
if 'type' not in data[idval] or data[idval]['type'] != 'SP':
continue
path = os.path.join(self.cfg.idp_storage_path, str(idval))
sp = data[idval]
if 'name' in sp:
name = sp['name']
else:
name = str(idval)
try:
meta = os.path.join(path, 'metadata.xml')
cert = os.path.join(path, 'certificate.pem')
self.cfg.idp.addProvider(lasso.PROVIDER_ROLE_SP, meta, cert)
self._debug('Added SP %s' % name)
except Exception, e: # pylint: disable=broad-except
self._debug('Failed to add SP %s: %r' % (name, e))
self.SSO = SSO(*args, **kwargs)
class IdpProvider(ProviderBase):
def __init__(self):
super(IdpProvider, self).__init__('saml2', 'saml2')
self.page = None
self.description = """
Provides SAML 2.0 authentication infrastructure. """
self._options = {
'idp storage path': [
""" Path to data storage accessible by the IdP """,
'string',
'/var/lib/ipsilon/saml2'
],
'idp metadata file': [
""" The IdP Metadata file genearated at install time. """,
'string',
'metadata.xml'
],
'idp certificate file': [
""" The IdP PEM Certificate genearated at install time. """,
'string',
'certificate.pem'
],
'idp key file': [
""" The IdP Certificate Key genearated at install time. """,
'string',
'certificate.key'
],
'allow self registration': [
""" Allow authenticated users to register applications. """,
'boolean',
True
]
}
@property
def allow_self_registration(self):
return self.get_config_value('allow self registration')
@property
def idp_storage_path(self):
return self.get_config_value('idp storage path')
@property
def idp_metadata_file(self):
return os.path.join(self.idp_storage_path,
self.get_config_value('idp metadata file'))
@property
def idp_certificate_file(self):
return os.path.join(self.idp_storage_path,
self.get_config_value('idp certificate file'))
@property
def idp_key_file(self):
return os.path.join(self.idp_storage_path,
self.get_config_value('idp key file'))
def get_tree(self, site):
self.page = SAML2(site, self)
return self.page
|