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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
|
import binascii
import json
import logging
#import urlparse
import requests
import srp
from PyQt4 import QtCore
from leap.base import constants as baseconstants
from leap.crypto import leapkeyring
from leap.util.misc import null_check
from leap.util.web import get_https_domain_and_port
logger = logging.getLogger(__name__)
SIGNUP_TIMEOUT = getattr(baseconstants, 'SIGNUP_TIMEOUT', 5)
"""
Registration and authentication classes for the
SRP auth mechanism used in the leap platform.
We're using the srp library which uses a c-based implementation
of the protocol if the c extension is available, and a python-based
one if not.
"""
class SRPAuthenticationError(Exception):
"""
exception raised
for authentication errors
"""
safe_unhexlify = lambda x: binascii.unhexlify(x) \
if (len(x) % 2 == 0) else binascii.unhexlify('0' + x)
class LeapSRPRegister(object):
def __init__(self,
schema="https",
provider=None,
verify=True,
register_path="1/users.json",
method="POST",
fetcher=requests,
srp=srp,
hashfun=srp.SHA256,
ng_constant=srp.NG_1024):
null_check(provider, "provider")
self.schema = schema
domain, port = get_https_domain_and_port(provider)
self.provider = domain
self.port = port
self.verify = verify
self.register_path = register_path
self.method = method
self.fetcher = fetcher
self.srp = srp
self.HASHFUN = hashfun
self.NG = ng_constant
self.init_session()
def init_session(self):
self.session = self.fetcher.session()
def get_registration_uri(self):
# XXX assert is https!
# use urlparse
if self.port:
uri = "%s://%s:%s/%s" % (
self.schema,
self.provider,
self.port,
self.register_path)
else:
uri = "%s://%s/%s" % (
self.schema,
self.provider,
self.register_path)
return uri
def register_user(self, username, password, keep=False):
"""
@rtype: tuple
@rparam: (ok, request)
"""
salt, vkey = self.srp.create_salted_verification_key(
username,
password,
self.HASHFUN,
self.NG)
user_data = {
'user[login]': username,
'user[password_verifier]': binascii.hexlify(vkey),
'user[password_salt]': binascii.hexlify(salt)}
uri = self.get_registration_uri()
logger.debug('post to uri: %s' % uri)
# XXX get self.method
req = self.session.post(
uri, data=user_data,
timeout=SIGNUP_TIMEOUT,
verify=self.verify)
logger.debug(req)
logger.debug('user_data: %s', user_data)
#logger.debug('response: %s', req.text)
# we catch it in the form
#req.raise_for_status()
return (req.ok, req)
class SRPAuth(requests.auth.AuthBase):
def __init__(self, username, password, server=None, verify=None):
# sanity check
null_check(server, 'server')
self.username = username
self.password = password
self.server = server
self.verify = verify
logger.debug('SRPAuth. verify=%s' % verify)
logger.debug('server: %s. username=%s' % (server, username))
self.init_data = None
self.session = requests.session()
self.init_srp()
def init_srp(self):
usr = srp.User(
self.username,
self.password,
srp.SHA256,
srp.NG_1024)
uname, A = usr.start_authentication()
self.srp_usr = usr
self.A = A
def get_auth_data(self):
return {
'login': self.username,
'A': binascii.hexlify(self.A)
}
def get_init_data(self):
try:
init_session = self.session.post(
self.server + '/1/sessions.json/',
data=self.get_auth_data(),
verify=self.verify)
except requests.exceptions.ConnectionError:
raise SRPAuthenticationError(
"No connection made (salt).")
except:
raise SRPAuthenticationError(
"Unknown error (salt).")
if init_session.status_code not in (200, ):
raise SRPAuthenticationError(
"No valid response (salt).")
self.init_data = init_session.json
return self.init_data
def get_server_proof_data(self):
try:
auth_result = self.session.put(
#self.server + '/1/sessions.json/' + self.username,
self.server + '/1/sessions/' + self.username,
data={'client_auth': binascii.hexlify(self.M)},
verify=self.verify)
except requests.exceptions.ConnectionError:
raise SRPAuthenticationError(
"No connection made (HAMK).")
if auth_result.status_code not in (200, ):
raise SRPAuthenticationError(
"No valid response (HAMK).")
self.auth_data = auth_result.json
return self.auth_data
def authenticate(self):
logger.debug('start authentication...')
init_data = self.get_init_data()
salt = init_data.get('salt', None)
B = init_data.get('B', None)
# XXX refactor this function
# move checks and un-hex
# to routines
if not salt or not B:
raise SRPAuthenticationError(
"Server did not send initial data.")
try:
unhex_salt = safe_unhexlify(salt)
except TypeError:
raise SRPAuthenticationError(
"Bad data from server (salt)")
try:
unhex_B = safe_unhexlify(B)
except TypeError:
raise SRPAuthenticationError(
"Bad data from server (B)")
self.M = self.srp_usr.process_challenge(
unhex_salt,
unhex_B
)
proof_data = self.get_server_proof_data()
HAMK = proof_data.get("M2", None)
if not HAMK:
errors = proof_data.get('errors', None)
if errors:
logger.error(errors)
raise SRPAuthenticationError("Server did not send HAMK.")
try:
unhex_HAMK = safe_unhexlify(HAMK)
except TypeError:
raise SRPAuthenticationError(
"Bad data from server (HAMK)")
self.srp_usr.verify_session(
unhex_HAMK)
try:
assert self.srp_usr.authenticated()
logger.debug('user is authenticated!')
except (AssertionError):
raise SRPAuthenticationError(
"Auth verification failed.")
def __call__(self, req):
self.authenticate()
req.cookies = self.session.cookies
return req
def srpauth_protected(user=None, passwd=None, server=None, verify=True):
"""
decorator factory that accepts
user and password keyword arguments
and add those to the decorated request
"""
def srpauth(fn):
def wrapper(*args, **kwargs):
if user and passwd:
auth = SRPAuth(user, passwd, server, verify)
kwargs['auth'] = auth
kwargs['verify'] = verify
if not args:
logger.warning('attempting to get from empty uri!')
return fn(*args, **kwargs)
return wrapper
return srpauth
def get_leap_credentials():
settings = QtCore.QSettings()
full_username = settings.value('username')
username, domain = full_username.split('@')
seed = settings.value('%s_seed' % domain, None)
password = leapkeyring.leap_get_password(full_username, seed=seed)
return (username, password)
# XXX TODO
# Pass verify as single argument,
# in srpauth_protected style
def magick_srpauth(fn):
"""
decorator that gets user and password
from the config file and adds those to
the decorated request
"""
logger.debug('magick srp auth decorator called')
def wrapper(*args, **kwargs):
#uri = args[0]
# XXX Ugh!
# Problem with this approach.
# This won't work when we're using
# api.foo.bar
# Unless we keep a table with the
# equivalencies...
user, passwd = get_leap_credentials()
# XXX pass verify and server too
# (pop)
auth = SRPAuth(user, passwd)
kwargs['auth'] = auth
return fn(*args, **kwargs)
return wrapper
if __name__ == "__main__":
"""
To test against test_provider (twisted version)
Register an user: (will be valid during the session)
>>> python auth.py add test password
Test login with that user:
>>> python auth.py login test password
"""
import sys
if len(sys.argv) not in (4, 5):
print 'Usage: auth <add|login> <user> <pass> [server]'
sys.exit(0)
action = sys.argv[1]
user = sys.argv[2]
passwd = sys.argv[3]
if len(sys.argv) == 5:
SERVER = sys.argv[4]
else:
SERVER = "https://localhost:8443"
if action == "login":
@srpauth_protected(
user=user, passwd=passwd, server=SERVER, verify=False)
def test_srp_protected_get(*args, **kwargs):
req = requests.get(*args, **kwargs)
req.raise_for_status
return req
#req = test_srp_protected_get('https://localhost:8443/1/cert')
req = test_srp_protected_get('%s/1/cert' % SERVER)
#print 'cert :', req.content[:200] + "..."
print req.content
sys.exit(0)
if action == "add":
auth = LeapSRPRegister(provider=SERVER, verify=False)
auth.register_user(user, passwd)
|