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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
|
# -*- coding: utf-8 -*-
# Author: Manuel de la Pena <manuel@canonical.com>
#
# Copyright 2011 Canonical Ltd.
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3, as published
# by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY, 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/>.
"""Main implementation on windows."""
from functools import wraps
from twisted.internet import defer, reactor
from twisted.internet.threads import deferToThread
from twisted.spread.pb import Referenceable, Root, PBClientFactory
# pylint: disable=F0401
from pywintypes import error, OVERLAPPED
from threading import Thread
from winerror import ERROR_MORE_DATA, ERROR_PIPE_CONNECTED
from win32con import NameSamCompatible, DUPLICATE_SAME_ACCESS
from win32api import (
CloseHandle,
DuplicateHandle,
GetCurrentProcess,
GetCurrentThread,
GetUserNameEx,
Sleep)
from win32event import (
CreateEvent,
INFINITE,
SetEvent,
WaitForMultipleObjects,
WAIT_OBJECT_0)
from win32file import (
FILE_FLAG_OVERLAPPED,
ReadFile,
WriteFile)
from win32pipe import (
CallNamedPipe,
CreateNamedPipe,
ConnectNamedPipe,
DisconnectNamedPipe,
PIPE_ACCESS_DUPLEX,
PIPE_TYPE_MESSAGE,
PIPE_READMODE_BYTE,
PIPE_UNLIMITED_INSTANCES)
# pylint: enable=F0401
from ubuntu_sso import NO_OP
from ubuntu_sso.account import Account
from ubuntu_sso.credentials import ERROR_KEY, ERROR_DETAIL_KEY
from ubuntu_sso.logger import setup_logging
from ubuntu_sso.main import (CredentialsManagementRoot, SSOLoginRoot,
SSOCredentialsRoot, except_to_errdict)
logger = setup_logging("ubuntu_sso.main.windows")
NAMED_PIPE_URL = '\\\\.\\pipe\\ubuntu_sso\\%s'
def remote_handler(handler):
"""Execute a callback in a remote object."""
if handler:
return lambda: handler.callRemote('execute')
return lambda: None
def blocking(f, app_name, result_cb, error_cb):
"""Run f in a thread; return or throw an exception thru the callbacks."""
d = deferToThread(f)
# the calls in twisted will be called with the args in a diff order,
# in order to follow the linux api, we swap them around with a lambda
d.addCallback(lambda result, app: result_cb(app, result), app_name)
d.addErrback(lambda err, app: error_cb(app, err), app_name)
class RemoteMeta(type):
"""Append remote_ to the remote methods.
Remote has to be appended to the remote method to work over pb but this
names cannot be used since the other platforms do not expect the remote
prefix. This metaclass creates those prefixes so that the methods can be
correctly called.
"""
def __new__(mcs, name, bases, attrs):
remote_calls = attrs.get('remote_calls', None)
if remote_calls:
for current in remote_calls:
attrs['remote_' + current] = attrs[current]
return super(RemoteMeta, mcs).__new__(mcs, name, bases, attrs)
class SignalBroadcaster(object):
"""Object that allows to emit signals to clients over the IPC."""
def __init__(self):
"""Create a new instance."""
self.clients = []
def _emit_failure(self, reason):
"""Log the issue when emitting a signal."""
logger.warn('Could not emit signal due to %s', reason)
logger.warn('Traceback is:\n%s', reason.printDetailedTraceback())
def remote_register_to_signals(self, client):
"""Allow a client to register to a signal."""
if client not in self.clients:
self.clients.append(client)
else:
logger.warn('Client %s tried to register twice.', client)
def remote_unregister_to_signals(self, client):
"""Allow a client to register to a signal."""
if client in self.clients:
self.clients.remove(client)
else:
logger.warn('Tried to remove %s when was not registered.', client)
def emit_signal(self, signal_name, *args, **kwargs):
"""Emit the given signal to the clients."""
for current_client in self.clients:
d = current_client.callRemote(signal_name, *args, **kwargs)
d.addErrback(self._emit_failure)
class SSOLogin(Referenceable, SignalBroadcaster):
"""Login thru the Single Sign On service."""
__metaclass__ = RemoteMeta
# calls that will be accessible remotely
remote_calls = [
'generate_captcha',
'register_user',
'login',
'validate_email',
'request_password_reset_token',
'set_new_password']
def __init__(self, bus_name, object_path=None,
sso_login_processor_class=Account,
sso_service_class=None):
"""Initiate the Login object."""
super(SSOLogin, self).__init__()
# ignore bus_name and object path so that we do not break the current
# API. Shall we change this???
self.root = SSOLoginRoot(sso_login_processor_class, sso_service_class)
# generate_capcha signals
def emit_captcha_generated(self, app_name, result):
"""Signal thrown after the captcha is generated."""
logger.debug('SSOLogin: emitting CaptchaGenerated with app_name "%s" '
'and result %r', app_name, result)
self.emit_signal('on_captcha_generated', app_name, result)
def emit_captcha_generation_error(self, app_name, raised_error):
"""Signal thrown when there's a problem generating the captcha."""
logger.debug('SSOLogin: emitting CaptchaGenerationError with '
'app_name "%s" and error %r', app_name, raised_error)
self.emit_signal('on_captcha_generation_error', app_name,
except_to_errdict(raised_error.value))
def generate_captcha(self, app_name, filename):
"""Call the matching method in the processor."""
self.root.generate_captcha(app_name, filename, blocking,
self.emit_captcha_generated,
self.emit_captcha_generation_error)
# register_user signals
def emit_user_registered(self, app_name, result):
"""Signal thrown when the user is registered."""
logger.debug('SSOLogin: emitting UserRegistered with app_name "%s" '
'and result %r', app_name, result)
self.emit_signal('on_user_registered', app_name, result)
def emit_user_registration_error(self, app_name, raised_error):
"""Signal thrown when there's a problem registering the user."""
logger.debug('SSOLogin: emitting UserRegistrationError with '
'app_name "%s" and error %r', app_name, raised_error)
self.emit_signal('on_user_registration_error', app_name,
except_to_errdict(raised_error.value))
def register_user(self, app_name, email, password, displayname,
captcha_id, captcha_solution):
"""Call the matching method in the processor."""
self.root.register_user(app_name, email, password, displayname,
captcha_id, captcha_solution, blocking,
self.emit_user_registered,
self.emit_user_registration_error)
# login signals
def emit_logged_in(self, app_name, result):
"""Signal thrown when the user is logged in."""
logger.debug('SSOLogin: emitting LoggedIn with app_name "%s" '
'and result %r', app_name, result)
self.emit_signal('on_logged_in', app_name, result)
def emit_login_error(self, app_name, raised_error):
"""Signal thrown when there is a problem in the login."""
logger.debug('SSOLogin: emitting LoginError with '
'app_name "%s" and error %r', app_name, raised_error)
self.emit_signal('on_login_error', app_name,
except_to_errdict(raised_error.value))
def emit_user_not_validated(self, app_name, result):
"""Signal thrown when the user is not validated."""
logger.debug('SSOLogin: emitting UserNotValidated with app_name "%s" '
'and result %r', app_name, result)
self.emit_signal('on_user_not_validated', app_name, result)
def login(self, app_name, email, password):
"""Call the matching method in the processor."""
self.root.login(app_name, email, password, blocking,
self.emit_logged_in, self.emit_login_error,
self.emit_user_not_validated)
# validate_email signals
def emit_email_validated(self, app_name, result):
"""Signal thrown after the email is validated."""
logger.debug('SSOLogin: emitting EmailValidated with app_name "%s" '
'and result %r', app_name, result)
self.emit_signal('on_email_validated', app_name, result)
def emit_email_validation_error(self, app_name, raised_error):
"""Signal thrown when there's a problem validating the email."""
logger.debug('SSOLogin: emitting EmailValidationError with '
'app_name "%s" and error %r', app_name, raised_error)
self.emit_signal('on_email_validation_error', app_name,
except_to_errdict(raised_error.value))
def validate_email(self, app_name, email, password, email_token):
"""Call the matching method in the processor."""
self.root.validate_email(app_name, email, password, email_token,
blocking, self.emit_email_validated,
self.emit_email_validation_error)
# request_password_reset_token signals
def emit_password_reset_token_sent(self, app_name, result):
"""Signal thrown when the token is successfully sent."""
logger.debug('SSOLogin: emitting PasswordResetTokenSent with app_name '
'"%s" and result %r', app_name, result)
self.emit_signal('on_password_reset_token_sent', app_name, result)
def emit_password_reset_error(self, app_name, raised_error):
"""Signal thrown when there's a problem sending the token."""
logger.debug('SSOLogin: emitting PasswordResetError with '
'app_name "%s" and error %r', app_name, raised_error)
self.emit_signal('on_password_reset_error', app_name,
except_to_errdict(raised_error.value))
def request_password_reset_token(self, app_name, email):
"""Call the matching method in the processor."""
self.root.request_password_reset_token(app_name, email, blocking,
self.emit_password_reset_token_sent,
self.emit_password_reset_error)
# set_new_password signals
def emit_password_changed(self, app_name, result):
"""Signal thrown when the token is successfully sent."""
logger.debug('SSOLogin: emitting PasswordChanged with app_name "%s" '
'and result %r', app_name, result)
self.emit_signal('on_password_changed', app_name, result)
def emit_password_change_error(self, app_name, raised_error):
"""Signal thrown when there's a problem sending the token."""
logger.debug('SSOLogin: emitting PasswordChangeError with '
'app_name "%s" and error %r', app_name, raised_error)
self.emit_signal('on_password_change_error', app_name,
except_to_errdict(raised_error.value))
def set_new_password(self, app_name, email, token, new_password):
"""Call the matching method in the processor."""
self.root.set_new_password(app_name, email, token, new_password,
blocking, self.emit_password_changed,
self.emit_password_change_error)
class SSOCredentials(Referenceable, SignalBroadcaster):
"""DBus object that gets credentials, and login/registers if needed."""
__metaclass__ = RemoteMeta
# calls that will be accessible remotely
remote_calls = [
'find_credentials',
'login_or_register_to_get_credentials',
'login_to_get_credentials',
'clear_token',
]
def __init__(self, *args, **kwargs):
super(SSOCredentials, self).__init__()
self.root = SSOCredentialsRoot()
def _process_error(self, app_name, error_dict):
"""Process the 'error_dict' and emit CredentialsError."""
msg = error_dict.get(ERROR_KEY, 'No error message given.')
detail = error_dict.get(ERROR_DETAIL_KEY, 'No detailed error given.')
self.emit_credentials_error(app_name, msg, detail)
def emit_authorization_denied(self, app_name):
"""Signal thrown when the user denies the authorization."""
logger.info('SSOCredentials: emitting AuthorizationDenied with '
'app_name "%s"', app_name)
self.emit_signal('on_authorization_denied', app_name)
def emit_credentials_found(self, app_name, credentials):
"""Signal thrown when the credentials are found."""
logger.info('SSOCredentials: emitting CredentialsFound with '
'app_name "%s"', app_name)
self.emit_signal('on_credentials_found', app_name, credentials)
def emit_credentials_error(self, app_name, error_message, detailed_error):
"""Signal thrown when there is a problem finding the credentials."""
logger.error('SSOCredentials: emitting CredentialsError with app_name '
'"%s" and error_message %r', app_name, error_message)
self.emit_signal('on_credentials_error', app_name, error_message,
detailed_error)
def find_credentials(self, app_name, callback=NO_OP, errback=NO_OP):
"""Get the credentials from the keyring or {} if not there."""
self.root.find_credentials(app_name, remote_handler(callback),
remote_handler(errback))
def login_or_register_to_get_credentials(self, app_name,
terms_and_conditions_url,
help_text, window_id):
"""Get credentials if found else prompt GUI to login or register.
'app_name' will be displayed in the GUI.
'terms_and_conditions_url' will be the URL pointing to T&C.
'help_text' is an explanatory text for the end-users, will be shown
below the headers.
'window_id' is the id of the window which will be set as a parent of
the GUI. If 0, no parent will be set.
"""
self.root.login_or_register_to_get_credentials(app_name,
terms_and_conditions_url,
help_text, window_id,
self.emit_credentials_found,
self._process_error,
self.emit_authorization_denied,
ui_module='ubuntu_sso.qt.gui')
def login_to_get_credentials(self, app_name, help_text, window_id):
"""Get credentials if found else prompt GUI just to login
'app_name' will be displayed in the GUI.
'help_text' is an explanatory text for the end-users, will be shown
before the login fields.
'window_id' is the id of the window which will be set as a parent of
the GUI. If 0, no parent will be set.
"""
self.root.login_to_get_credentials(app_name, help_text, window_id,
self.emit_credentials_found,
self._process_error,
self.emit_authorization_denied,
ui_module='ubuntu_sso.qt.gui')
def clear_token(self, app_name, callback=NO_OP, errback=NO_OP):
"""Clear the token for an application from the keyring.
'app_name' is the name of the application.
"""
self.root.clear_token(app_name, remote_handler(callback),
remote_handler(errback))
class CredentialsManagement(Referenceable, SignalBroadcaster):
"""Object that manages credentials.
Every exposed method in this class requires one mandatory argument:
- 'app_name': the name of the application. Will be displayed in the
GUI header, plus it will be used to find/build/clear tokens.
And accepts another parameter named 'args', which is a dictionary that
can contain the following:
- 'help_text': an explanatory text for the end-users, will be
shown below the header. This is an optional free text field.
- 'ping_url': the url to open after successful token retrieval. If
defined, the email will be attached to the url and will be pinged
with a OAuth-signed request.
- 'tc_url': the link to the Terms and Conditions page. If defined,
the checkbox to agree to the terms will link to it.
- 'window_id': the id of the window which will be set as a parent
of the GUI. If not defined, no parent will be set.
"""
__metaclass__ = RemoteMeta
# calls that will be accessible remotely
remote_calls = [
'find_credentials',
'clear_credentials',
'store_credentials',
'register',
'shutdown',
'login',
]
def __init__(self, timeout_func, shutdown_func, *args, **kwargs):
super(CredentialsManagement, self).__init__(*args, **kwargs)
self.root = CredentialsManagementRoot(timeout_func, shutdown_func,
self.emit_credentials_found,
self.emit_credentials_error,
self.emit_authorization_denied)
def _process_failure(self, failure, app_name):
"""Process the 'failure' and emit CredentialsError."""
self.emit_credentials_error(app_name, except_to_errdict(failure.value))
def shutdown(self):
"""If no ongoing requests, call self.shutdown_func."""
logger.debug('shutdown!, ref_count is %r.', self.root.ref_count)
self.root.shutdown()
def emit_authorization_denied(self, app_name):
"""Signal thrown when the user denies the authorization."""
self.root.ref_count -= 1
logger.info('%s: emitting AuthorizationDenied with app_name "%s".',
self.__class__.__name__, app_name)
self.emit_signal('on_authorization_denied', app_name)
def emit_credentials_found(self, app_name, credentials):
"""Signal thrown when the credentials are found."""
self.root.ref_count -= 1
logger.info('%s: emitting CredentialsFound with app_name "%s".',
self.__class__.__name__, app_name)
self.emit_signal('on_credentials_found', app_name, credentials)
def emit_credentials_not_found(self, app_name):
"""Signal thrown when the credentials are not found."""
self.root.ref_count -= 1
logger.info('%s: emitting CredentialsNotFound with app_name "%s".',
self.__class__.__name__, app_name)
self.emit_signal('on_credentials_not_found', app_name)
def emit_credentials_cleared(self, app_name):
"""Signal thrown when the credentials were cleared."""
self.root.ref_count -= 1
logger.info('%s: emitting CredentialsCleared with app_name "%s".',
self.__class__.__name__, app_name)
self.emit_signal('on_credentials_cleared', app_name)
def emit_credentials_stored(self, app_name):
"""Signal thrown when the credentials were cleared."""
self.root.ref_count -= 1
logger.info('%s: emitting CredentialsStored with app_name "%s".',
self.__class__.__name__, app_name)
self.emit_signal('on_credentials_stored', app_name)
def emit_credentials_error(self, app_name, error_dict):
"""Signal thrown when there is a problem getting the credentials."""
self.root.ref_count -= 1
logger.error('%s: emitting CredentialsError with app_name "%s" and '
'error_dict %r.', self.__class__.__name__, app_name,
error_dict)
self.emit_signal('on_credentials_error', app_name, error_dict)
def find_credentials(self, app_name, args):
"""Look for the credentials for an application.
- 'app_name': the name of the application which credentials are
going to be removed.
- 'args' is a dictionary, currently not used.
"""
def success_cb(credentials):
"""Find credentials and notify using signals."""
if credentials is not None and len(credentials) > 0:
self.emit_credentials_found(app_name, credentials)
else:
self.emit_credentials_not_found(app_name)
self.root.find_credentials(app_name, args, success_cb,
self._process_failure)
def clear_credentials(self, app_name, args):
"""Clear the credentials for an application.
- 'app_name': the name of the application which credentials are
going to be removed.
- 'args' is a dictionary, currently not used.
"""
self.root.clear_credentials(app_name, args,
lambda _: self.emit_credentials_cleared(app_name),
self._process_failure)
def store_credentials(self, app_name, args):
"""Store the token for an application.
- 'app_name': the name of the application which credentials are
going to be stored.
- 'args' is the dictionary holding the credentials. Needs to provide
the following mandatory keys: 'token', 'token_key', 'consumer_key',
'consumer_secret'.
"""
self.root.store_credentials(app_name, args,
lambda _: self.emit_credentials_stored(app_name),
self._process_failure)
def register(self, app_name, args):
"""Get credentials if found else prompt GUI to register."""
self.root.register(app_name, args)
def login(self, app_name, args):
"""Get credentials if found else prompt GUI to login."""
self.root.login(app_name, args)
class UbuntuSSORoot(object, Root):
"""Root object that exposes the diff referenceable objects."""
__metaclass__ = RemoteMeta
# calls that will be accessible remotely
remote_calls = [
'get_sso_login',
'get_sso_credentials',
'get_cred_manager']
def __init__(self, sso_login, sso_credentials, cred_manager):
"""Create a new instance that will expose the objects."""
super(UbuntuSSORoot, self).__init__()
self._sso_login = sso_login
self._sso_credentials = sso_credentials
self._cred_manager = cred_manager
def get_sso_login(self):
"""Return the sso_login."""
return self._sso_login
def get_sso_credentials(self):
"""Return the sso credentials."""
return self._sso_credentials
def get_cred_manager(self):
"""Return the credentials manager."""
return self._cred_manager
def remote(function):
"""Decorate the function to make the remote call."""
@wraps(function)
def remote_wrapper(*args, **kwargs):
"""Return the deferred for the remote call."""
fixed_args = args[1:]
logger.info('Performing %s as a remote call.', function.func_name)
return args[0].remote.callRemote(function.func_name, *fixed_args,
**kwargs)
return remote_wrapper
def signal(function):
"""Decorate a function to perform the signal callback."""
@wraps(function)
def callback_wrapper(*args, **kwargs):
"""Return the result of the callback if present."""
callback = getattr(args[0], function.func_name + '_cb', None)
if callback is not None:
fixed_args = args[1:]
return callback(*fixed_args, **kwargs)
return callback_wrapper
class RemoteClient(object):
"""Represent a client for remote calls."""
def __init__(self, remote_object):
"""Create instance."""
self.remote = remote_object
def register_to_signals(self):
"""Register to the signals."""
return self.remote.callRemote('register_to_signals', self)
def unregister_to_signals(self):
"""Register to the signals."""
return self.remote.callRemote('unregister_to_signals', self)
class RemoteHandler(object, Referenceable):
"""Represents a handler that can be called so that is called remotely."""
def __init__(self, cb):
"""Create a new instance."""
self.cb = cb
def remote_execute(self):
"""Execute the callback."""
if self.cb:
self.cb()
def callbacks(callbacks_indexes=None, callbacks_names=None):
"""Ensure that the callbacks can be remotely called."""
def decorator(function):
"""Decorate the function to make sure the callbacks can be executed."""
@wraps(function)
def callbacks_wrapper(*args, **kwargs):
"""Set the paths to be absolute."""
fixed_args = list(args)
if callbacks_indexes:
for current_cb in callbacks_indexes:
fixed_args[current_cb] = RemoteHandler(args[current_cb])
fixed_args = tuple(fixed_args)
if callbacks_names:
for current_key, current_index in callbacks_names:
try:
kwargs[current_key] = RemoteHandler(
kwargs[current_key])
except KeyError:
fixed_args[current_index] = RemoteHandler(
args[current_index])
fixed_args = tuple(fixed_args)
return function(*fixed_args, **kwargs)
return callbacks_wrapper
return decorator
class SSOLoginClient(RemoteClient, Referenceable):
"""Client that can perform calls to the remote SSOLogin object."""
__metaclass__ = RemoteMeta
# calls that will be accessible remotely
remote_calls = [
'on_captcha_generated',
'on_captcha_generation_error',
'on_user_registered',
'on_user_registration_error',
'on_logged_in',
'on_login_error',
'on_user_not_validated',
'on_email_validated',
'on_email_validation_error',
'on_password_reset_token_sent',
'on_password_reset_error',
'on_password_changed',
'on_password_change_error',
]
def __init__(self, remote_login):
"""Create a client for the login API."""
super(SSOLoginClient, self).__init__(remote_login)
@signal
def on_captcha_generated(self, app_name, result):
"""Signal thrown after the captcha is generated."""
@signal
def on_captcha_generation_error(self, app_name, raised_error):
"""Signal thrown when there's a problem generating the captcha."""
@remote
def generate_captcha(self, app_name, filename):
"""Call the matching method in the processor."""
@signal
def on_user_registered(self, app_name, result):
"""Signal thrown when the user is registered."""
@signal
def on_user_registration_error(self, app_name, raised_error):
"""Signal thrown when there's a problem registering the user."""
@remote
def register_user(self, app_name, email, password, displayname,
captcha_id, captcha_solution):
"""Call the matching method in the processor."""
@signal
def on_logged_in(self, app_name, result):
"""Signal thrown when the user is logged in."""
@signal
def on_login_error(self, app_name, raised_error):
"""Signal thrown when there is a problem in the login."""
@signal
def on_user_not_validated(self, app_name, result):
"""Signal thrown when the user is not validated."""
@remote
def login(self, app_name, email, password):
"""Call the matching method in the processor."""
@signal
def on_email_validated(self, app_name, result):
"""Signal thrown after the email is validated."""
@signal
def on_email_validation_error(self, app_name, raised_error):
"""Signal thrown when there's a problem validating the email."""
@remote
def validate_email(self, app_name, email, password, email_token):
"""Call the matching method in the processor."""
@signal
def on_password_reset_token_sent(self, app_name, result):
"""Signal thrown when the token is successfully sent."""
@signal
def on_password_reset_error(self, app_name, raised_error):
"""Signal thrown when there's a problem sending the token."""
@remote
def request_password_reset_token(self, app_name, email):
"""Call the matching method in the processor."""
@signal
def on_password_changed(self, app_name, result):
"""Signal thrown when the token is successfully sent."""
@signal
def on_password_change_error(self, app_name, raised_error):
"""Signal thrown when there's a problem sending the token."""
@remote
def set_new_password(self, app_name, email, token, new_password):
"""Call the matching method in the processor."""
class SSOCredentialsClient(RemoteClient, Referenceable):
"""Client that can perform calls to the remote SSOCredentials object."""
__metaclass__ = RemoteMeta
# calls that will be accessible remotely
remote_calls = [
'on_authorization_denied',
'on_credentials_found',
'on_credentials_error',
]
def __init__(self, remote_login):
"""Create a client for the cred API."""
super(SSOCredentialsClient, self).__init__(remote_login)
@signal
def on_authorization_denied(self, app_name):
"""Signal thrown when the user denies the authorization."""
@signal
def on_credentials_found(self, app_name, credentials):
"""Signal thrown when the credentials are found."""
@signal
def on_credentials_error(self, app_name, error_message, detailed_error):
"""Signal thrown when there is a problem finding the credentials."""
@callbacks(callbacks_names=[('callback', 2), ('errback', 3)])
@remote
def find_credentials(self, app_name, callback=NO_OP, errback=NO_OP):
"""Get the credentials from the keyring or {} if not there."""
@remote
def login_or_register_to_get_credentials(self, app_name,
terms_and_conditions_url,
help_text, window_id):
"""Get credentials if found else prompt GUI to login or register.
'app_name' will be displayed in the GUI.
'terms_and_conditions_url' will be the URL pointing to T&C.
'help_text' is an explanatory text for the end-users, will be shown
below the headers.
'window_id' is the id of the window which will be set as a parent of
the GUI. If 0, no parent will be set.
"""
@remote
def login_to_get_credentials(self, app_name, help_text, window_id):
"""Get credentials if found else prompt GUI just to login
'app_name' will be displayed in the GUI.
'help_text' is an explanatory text for the end-users, will be shown
before the login fields.
'window_id' is the id of the window which will be set as a parent of
the GUI. If 0, no parent will be set.
"""
@callbacks(callbacks_names=[('callback', 2), ('errback', 3)])
@remote
def clear_token(self, app_name, callback=NO_OP, errback=NO_OP):
"""Clear the token for an application from the keyring.
'app_name' is the name of the application.
"""
class CredentialsManagementClient(RemoteClient, Referenceable):
"""Client that can perform calls to the remote CredManagement object."""
__metaclass__ = RemoteMeta
# calls that will be accessible remotely
remote_calls = [
'on_authorization_denied',
'on_credentials_found',
'on_credentials_not_found',
'on_credentials_cleared',
'on_credentials_stored',
'on_credentials_error',
]
def __init__(self, remote_login):
"""Create a client for the cred API."""
super(CredentialsManagementClient, self).__init__(remote_login)
@remote
def shutdown(self):
"""If no ongoing requests, call self.shutdown_func."""
@signal
def on_authorization_denied(self, app_name):
"""Signal thrown when the user denies the authorization."""
@signal
def on_credentials_found(self, app_name, credentials):
"""Signal thrown when the credentials are found."""
@signal
def on_credentials_not_found(self, app_name):
"""Signal thrown when the credentials are not found."""
@signal
def on_credentials_cleared(self, app_name):
"""Signal thrown when the credentials were cleared."""
@signal
def on_credentials_stored(self, app_name):
"""Signal thrown when the credentials were cleared."""
@signal
def on_credentials_error(self, app_name, error_dict):
"""Signal thrown when there is a problem getting the credentials."""
@remote
def find_credentials(self, app_name, args):
"""Look for the credentials for an application.
- 'app_name': the name of the application which credentials are
going to be removed.
- 'args' is a dictionary, currently not used.
"""
@remote
def clear_credentials(self, app_name, args):
"""Clear the credentials for an application.
- 'app_name': the name of the application which credentials are
going to be removed.
- 'args' is a dictionary, currently not used.
"""
@remote
def store_credentials(self, app_name, args):
"""Store the token for an application.
- 'app_name': the name of the application which credentials are
going to be stored.
- 'args' is the dictionary holding the credentials. Needs to provide
the following mandatory keys: 'token', 'token_key', 'consumer_key',
'consumer_secret'.
"""
@remote
def register(self, app_name, args):
"""Get credentials if found else prompt GUI to register."""
@remote
def login(self, app_name, args):
"""Get credentials if found else prompt GUI to login."""
class UbuntuSSOClientException(Exception):
"""Raised when there are issues connecting to the process."""
class UbuntuSSOClient(object):
"""Root client that provides access to the sso API."""
def __init__(self):
self.sso_login = None
self.sso_cred = None
self.cred_management = None
self.factory = None
self.client = None
self._port = None
@defer.inlineCallbacks
def _request_remote_objects(self, root):
"""Get the status remote object."""
sso_login = yield root.callRemote('get_sso_login')
logger.debug('SSOLogin is %s', sso_login)
self.sso_login = SSOLoginClient(sso_login)
sso_cred = yield root.callRemote('get_sso_credentials')
self.sso_cred = SSOCredentialsClient(sso_cred)
cred_management = yield root.callRemote('get_cred_manager')
self.cred_management = CredentialsManagementClient(cred_management)
defer.returnValue(self)
def connect(self):
"""Connect to the sso service."""
if not self._port:
try:
self._port = int(CallNamedPipe(NAMED_PIPE_URL % GetUserNameEx(
NameSamCompatible),
'', 512, 0))
except:
logger.error('The ubuntu sso process is not running!')
raise UbuntuSSOClientException(
'The ubuntu sso process is not running!')
# got the port, lets try and connect to it and get the diff remote
# objects for the wrappers
self.factory = PBClientFactory()
# the reactor does have a connectTCP method
# pylint: disable=E1101
self.client = reactor.connectTCP("localhost", self._port, self.factory)
# pylint: enable=E1101
d = self.factory.getRootObject()
d.addCallback(self._request_remote_objects)
return d
def disconnect(self):
"""Disconnect from the process."""
if self.client:
self.client.disconnect()
def apply_ignore_error(fn, args):
"""Perform a call and just ignore the exeption."""
# we cannot do anything about this, we have to just grab all
# the win32 errors
# pylint: disable=W0702
try:
return fn(*args)
except: # Ignore win32api errors.
return None
# pylint: enable=W0702
class ListeningPortPipeService(object):
"""Service that returns port used over a named pipe."""
def __init__(self, username, port, pool_frec=6000, client_wait=50):
"""Create the instance for the given user."""
self.pipe_name = NAMED_PIPE_URL % username
self.port = port
self.h_wait_stop = CreateEvent(None, 0, 0, None)
self.overlapped = OVERLAPPED()
self.overlapped.hEvent = CreateEvent(None, 0, 0, None)
self.thread_handles = []
self.pool_frec = pool_frec
self.client_wait = client_wait
def can_process_client(self, pipe_handle):
"""Read the data returned by the client."""
ok = False
try:
# Some clients might be confused and send a lot of data, lets
# fully read it, in normal cases we would have a single read
# pylint: disable=W0612
hr = ERROR_MORE_DATA
while hr == ERROR_MORE_DATA:
hr, data = ReadFile(pipe_handle, 256)
ok = True
# pylint: enable=W0612
except error:
# Client disconnection - do nothing
ok = False
return ok
def send_response_to_client(self, pipe_handle, data):
"""Send a message to the client."""
try:
if self.can_process_client(pipe_handle):
# we had no problems reading the message, lets return the port
WriteFile(pipe_handle, str(data))
finally:
apply_ignore_error(DisconnectNamedPipe, (pipe_handle,))
apply_ignore_error(CloseHandle, (pipe_handle,))
def do_process_client(self, pipe_handle):
"""Process connected client from thread."""
self.send_response_to_client(pipe_handle, self.port)
def process_client(self, pipe_handle):
"""Process client connection and send work to a thread."""
try:
proc_handle = GetCurrentProcess()
th = DuplicateHandle(proc_handle, GetCurrentThread(), proc_handle,
0, 0, DUPLICATE_SAME_ACCESS)
self.thread_handles.append(th)
self.do_process_client(pipe_handle)
except error:
logger.exception('Error processing a client.')
finally:
self.thread_handles.remove(th)
def stop(self):
"""Stop listening for pipe connections."""
SetEvent(self.h_wait_stop)
def start(self):
"""Start listening for pipe connections."""
num_connections = 0
while True:
pipe_handle = CreateNamedPipe(self.pipe_name,
PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
PIPE_TYPE_MESSAGE | PIPE_READMODE_BYTE,
PIPE_UNLIMITED_INSTANCES,
0, 0, self.pool_frec,
None) # use the default security sa
try:
hr = ConnectNamedPipe(pipe_handle, self.overlapped)
except error:
logger.exception('Error connecting to pipe.')
CloseHandle(pipe_handle)
break
if hr == ERROR_PIPE_CONNECTED:
# Client is already connected - signal event
SetEvent(self.overlapped.hEvent)
rc = WaitForMultipleObjects((self.h_wait_stop,
self.overlapped.hEvent),
0, INFINITE)
if rc == WAIT_OBJECT_0:
# Stop event
break
else:
# Pipe event - spawn thread to deal with it.
process_thread = Thread(target=self.process_client,
args=(pipe_handle,))
process_thread.start()
num_connections = num_connections + 1
Sleep(self.client_wait)
while self.thread_handles:
logger.info('Waiting for %d threads to finish...',
len(self.thread_handles))
WaitForMultipleObjects(self.thread_handles, 1, 3000)
logger.info('Finished listening to namedpipe "%s"', self.pipe_name)
def get_service_port():
"""Return if the service is running"""
try:
port = int(CallNamedPipe(NAMED_PIPE_URL % GetUserNameEx(
NameSamCompatible), '', 512, 0))
return port
except error:
return None
|