-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathSP.php
1186 lines (1006 loc) · 41.6 KB
/
SP.php
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
<?php
declare(strict_types=1);
namespace SimpleSAML\Module\saml\Auth\Source;
use SAML2\AuthnRequest;
use SAML2\Binding;
use SAML2\Constants;
use SAML2\Exception\Protocol\NoAvailableIDPException;
use SAML2\Exception\Protocol\NoPassiveException;
use SAML2\Exception\Protocol\NoSupportedIDPException;
use SAML2\LogoutRequest;
use SAML2\XML\saml\NameID;
use SimpleSAML\Assert\Assert;
use SimpleSAML\Auth;
use SimpleSAML\Configuration;
use SimpleSAML\Error;
use SimpleSAML\IdP;
use SimpleSAML\Logger;
use SimpleSAML\Metadata\MetaDataStorageHandler;
use SimpleSAML\Module;
use SimpleSAML\Session;
use SimpleSAML\Store;
use SimpleSAML\Store\StoreFactory;
use SimpleSAML\Utils;
class SP extends \SimpleSAML\Auth\Source
{
/**
* The entity ID of this SP.
*
* @var string
*/
private string $entityId;
/**
* The metadata of this SP.
*
* @var \SimpleSAML\Configuration
*/
private Configuration $metadata;
/**
* The IdP the user is allowed to log into.
*
* @var string|null The IdP the user can log into, or null if the user can log into all IdPs.
*/
private ?string $idp;
/**
* URL to discovery service.
*
* @var string|null
*/
private ?string $discoURL;
/**
* Flag to indicate whether to disable sending the Scoping element.
*
* @var bool
*/
private bool $disable_scoping;
/**
* If pass AuthnContextClassRef back to the IdPs in front of the SP/IdP Proxy.
*
* @var bool
*/
private bool $passAuthnContextClassRef;
/**
* A list of supported protocols.
*
* @var string[]
*/
private array $protocols = [Constants::NS_SAMLP];
/**
* Constructor for SAML SP authentication source.
*
* @param array $info Information about this authentication source.
* @param array $config Configuration.
*/
public function __construct(array $info, array $config)
{
// Call the parent constructor first, as required by the interface
parent::__construct($info, $config);
/* For compatibility with code that assumes that $metadata->getString('entityid')
* gives the entity id. */
$config['entityid'] = $config['entityID'];
$this->metadata = Configuration::loadFromArray(
$config,
'authsources[' . var_export($this->authId, true) . ']'
);
$entityId = $this->metadata->getString('entityID');
Assert::validURI($entityId);
Assert::maxLength(
$entityId,
Constants::SAML2INT_ENTITYID_MAX_LENGTH,
sprintf('The entityID cannot be longer than %d characters.', Constants::SAML2INT_ENTITYID_MAX_LENGTH)
);
Assert::notEq(
$entityId,
'https://myapp.example.org/',
'Please set a valid and unique entityID',
);
$this->entityId = $entityId;
$this->idp = $this->metadata->getOptionalString('idp', null);
$this->discoURL = $this->metadata->getOptionalString('discoURL', null);
$this->disable_scoping = $this->metadata->getOptionalBoolean('disable_scoping', false);
$this->passAuthnContextClassRef = $this->metadata->getOptionalBoolean(
'proxymode.passAuthnContextClassRef',
false
);
}
/**
* Retrieve the URL to the metadata of this SP.
*
* @return string The metadata URL.
*/
public function getMetadataURL(): string
{
return Module::getModuleURL('saml/sp/metadata/' . urlencode($this->authId));
}
/**
* Retrieve the entity id of this SP.
*
* @return string The entity id of this SP.
*/
public function getEntityId(): string
{
return $this->entityId;
}
/**
* Retrieve the metadata array of this SP, as a remote IdP would see it.
*
* @return array The metadata array for its use by a remote IdP.
*/
public function getHostedMetadata(): array
{
$entityid = $this->getEntityId();
$metadata = [
'entityid' => $entityid,
'metadata-set' => 'saml20-sp-remote',
'SingleLogoutService' => $this->getSLOEndpoints(),
'AssertionConsumerService' => $this->getACSEndpoints(),
];
// add NameIDPolicy
if ($this->metadata->hasValue('NameIDPolicy')) {
$format = $this->metadata->getArray('NameIDPolicy');
if ($format !== []) {
$metadata['NameIDFormat'] = $format['Format'] ?? Constants::NAMEID_TRANSIENT;
}
}
// add attributes
$name = $this->metadata->getOptionalLocalizedString('name', null);
$attributes = $this->metadata->getOptionalArray('attributes', []);
if ($name !== null) {
if (!empty($attributes)) {
$metadata['name'] = $name;
$metadata['attributes'] = $attributes;
if ($this->metadata->hasValue('attributes.required')) {
$metadata['attributes.required'] = $this->metadata->getArray('attributes.required');
}
if ($this->metadata->hasValue('description')) {
$metadata['description'] = $this->metadata->getArray('description');
}
if ($this->metadata->hasValue('attributes.NameFormat')) {
$metadata['attributes.NameFormat'] = $this->metadata->getString('attributes.NameFormat');
}
if ($this->metadata->hasValue('attributes.index')) {
$metadata['attributes.index'] = $this->metadata->getInteger('attributes.index');
}
if ($this->metadata->hasValue('attributes.isDefault')) {
$metadata['attributes.isDefault'] = $this->metadata->getBoolean('attributes.isDefault');
}
}
}
// add organization info
$org = $this->metadata->getOptionalLocalizedString('OrganizationName', null);
if ($org !== null) {
$metadata['OrganizationName'] = $org;
$metadata['OrganizationDisplayName'] = $this->metadata->getOptionalLocalizedString(
'OrganizationDisplayName',
$org
);
$metadata['OrganizationURL'] = $this->metadata->getOptionalLocalizedString('OrganizationURL', null);
if ($metadata['OrganizationURL'] === null) {
throw new Error\Exception(
'If OrganizationName is set, OrganizationURL must also be set.'
);
}
}
// add contacts
$contacts = $this->metadata->getOptionalArray('contacts', []);
foreach ($contacts as $contact) {
$metadata['contacts'][] = Utils\Config\Metadata::getContact($contact);
}
// add technical contact
$globalConfig = Configuration::getInstance();
$email = $globalConfig->getOptionalString('technicalcontact_email', '[email protected]');
if (!empty($email) && $email !== '[email protected]') {
$contact = [
'emailAddress' => $email,
'givenName' => $globalConfig->getOptionalString('technicalcontact_name', null),
'contactType' => 'technical',
];
$metadata['contacts'][] = Utils\Config\Metadata::getContact($contact);
}
$cryptoUtils = new Utils\Crypto();
// add certificate(s)
$certInfo = $cryptoUtils->loadPublicKey($this->metadata, false, 'new_');
$hasNewCert = false;
if ($certInfo !== null && array_key_exists('certData', $certInfo)) {
$hasNewCert = true;
$metadata['keys'][] = [
'type' => 'X509Certificate',
'signing' => true,
'encryption' => true,
'X509Certificate' => $certInfo['certData'],
'prefix' => 'new_',
'url' => Module::getModuleURL(
'admin/federation/cert',
[
'set' => 'saml20-sp-hosted',
'source' => $this->getAuthId(),
'prefix' => 'new_'
]
),
'name' => $certInfo['name'] ?? null,
];
}
$certInfo = $cryptoUtils->loadPublicKey($this->metadata);
if ($certInfo !== null && array_key_exists('certData', $certInfo)) {
$metadata['keys'][] = [
'type' => 'X509Certificate',
'signing' => true,
'encryption' => $hasNewCert ? false : true,
'X509Certificate' => $certInfo['certData'],
'prefix' => '',
'url' => Module::getModuleURL(
'admin/federation/cert',
[
'set' => 'saml20-sp-hosted',
'source' => $this->getAuthId(),
'prefix' => ''
]
),
'name' => $certInfo['name'] ?? null,
];
}
// add EntityAttributes extension
if ($this->metadata->hasValue('EntityAttributes')) {
$metadata['EntityAttributes'] = $this->metadata->getArray('EntityAttributes');
}
// add UIInfo extension
if ($this->metadata->hasValue('UIInfo')) {
$metadata['UIInfo'] = $this->metadata->getArray('UIInfo');
}
// add RegistrationInfo extension
if ($this->metadata->hasValue('RegistrationInfo')) {
$metadata['RegistrationInfo'] = $this->metadata->getArray('RegistrationInfo');
}
// add signature options
if ($this->metadata->hasValue('WantAssertionsSigned')) {
$metadata['saml20.sign.assertion'] = $this->metadata->getBoolean('WantAssertionsSigned');
}
if ($this->metadata->hasValue('redirect.sign')) {
$metadata['redirect.validate'] = $this->metadata->getBoolean('redirect.sign');
} elseif ($this->metadata->hasValue('sign.authnrequest')) {
$metadata['validate.authnrequest'] = $this->metadata->getBoolean('sign.authnrequest');
}
return $metadata;
}
/**
* Retrieve the metadata of an IdP.
*
* @param string $entityId The entity id of the IdP.
* @return \SimpleSAML\Configuration The metadata of the IdP.
*/
public function getIdPMetadata(string $entityId): Configuration
{
// auth_saml2 modification.
// Set the IdP to null, so it can auto-detect.
// Avoid the case where it uses the default IdP data for IdP initiated login.
$this->idp = null;
$metadataHandler = MetaDataStorageHandler::getMetadataHandler();
return $metadataHandler->getMetaDataConfig($entityId, 'saml20-idp-remote');
}
/**
* Retrieve the metadata of this SP.
*
* @return \SimpleSAML\Configuration The metadata of this SP.
*/
public function getMetadata(): Configuration
{
return $this->metadata;
}
/**
* Get a list with the protocols supported by this SP.
*
* @return string[]
*/
public function getSupportedProtocols(): array
{
return $this->protocols;
}
/**
* Get the AssertionConsumerService endpoints for a given local SP.
*
* @return array
* @throws \Exception
*/
private function getACSEndpoints(): array
{
// If a list of endpoints is specified in config, take that at face value
if ($this->metadata->hasValue('AssertionConsumerService')) {
return $this->metadata->getArray('AssertionConsumerService');
}
$endpoints = [];
$default = [
Constants::BINDING_HTTP_POST,
Constants::BINDING_HTTP_ARTIFACT,
];
if ($this->metadata->getOptionalString('ProtocolBinding', null) === Constants::BINDING_HOK_SSO) {
$default[] = Constants::BINDING_HOK_SSO;
}
$bindings = $this->metadata->getOptionalArray('acs.Bindings', $default);
$index = 0;
foreach ($bindings as $service) {
switch ($service) {
case Constants::BINDING_HTTP_POST:
$acs = [
'Binding' => Constants::BINDING_HTTP_POST,
'Location' => Module::getModuleURL('saml/sp/saml2-acs.php/' . $this->getAuthId()),
];
break;
case Constants::BINDING_HTTP_ARTIFACT:
$acs = [
'Binding' => Constants::BINDING_HTTP_ARTIFACT,
'Location' => Module::getModuleURL('saml/sp/saml2-acs.php/' . $this->getAuthId()),
];
break;
case Constants::BINDING_HOK_SSO:
$acs = [
'Binding' => Constants::BINDING_HOK_SSO,
'Location' => Module::getModuleURL('saml/sp/saml2-acs.php/' . $this->getAuthId()),
'hoksso:ProtocolBinding' => Constants::BINDING_HTTP_REDIRECT,
];
break;
default:
Logger::warning('Unknown acs.Binding value specified, ignoring: ' . $service);
continue 2;
}
$acs['index'] = $index;
$endpoints[] = $acs;
$index++;
}
return $endpoints;
}
/**
* Get the SingleLogoutService endpoints available for a given local SP.
*
* @return array
* @throws \SimpleSAML\Error\CriticalConfigurationError
*/
private function getSLOEndpoints(): array
{
$config = Configuration::getInstance();
$storeType = $config->getOptionalString('store.type', 'phpsession');
$store = StoreFactory::getInstance($storeType);
$bindings = $this->metadata->getOptionalArray(
'SingleLogoutServiceBinding',
[
Constants::BINDING_HTTP_REDIRECT,
Constants::BINDING_SOAP,
]
);
$defaultLocation = Module::getModuleURL('saml/sp/saml2-logout.php/' . $this->getAuthId());
$location = $this->metadata->getOptionalString('SingleLogoutServiceLocation', $defaultLocation);
$endpoints = [];
foreach ($bindings as $binding) {
if ($binding == Constants::BINDING_SOAP && !($store instanceof Store\SQLStore)) {
// we cannot properly support SOAP logout
continue;
}
$endpoints[] = [
'Binding' => $binding,
'Location' => $location,
];
}
return $endpoints;
}
/**
* Send a SAML2 SSO request to an IdP
*
* @param \SimpleSAML\Configuration $idpMetadata The metadata of the IdP.
* @param array $state The state array for the current authentication.
*/
private function startSSO2(Configuration $idpMetadata, array $state): void
{
if (isset($state['saml:ProxyCount']) && $state['saml:ProxyCount'] < 0) {
Auth\State::throwException(
$state,
new Module\saml\Error\ProxyCountExceeded(Constants::STATUS_RESPONDER)
);
}
$ar = Module\saml\Message::buildAuthnRequest($this->metadata, $idpMetadata);
// auth_saml2 modification
$baseurl = \SimpleSAML\Module::getModuleURL('saml/sp/saml2-acs.php/' . $this->authId);
$baseurl = str_replace('module.php/saml/sp/', '', $baseurl);
$ar->setAssertionConsumerServiceURL($baseurl);
if (isset($state['\SimpleSAML\Auth\Source.ReturnURL'])) {
$ar->setRelayState($state['\SimpleSAML\Auth\Source.ReturnURL']);
}
$arrayUtils = new Utils\Arrays();
$accr = null;
if ($idpMetadata->getOptionalString('AuthnContextClassRef', null) !== null) {
$accr = $arrayUtils->arrayize($idpMetadata->getString('AuthnContextClassRef'));
} elseif (isset($state['saml:AuthnContextClassRef'])) {
$accr = $arrayUtils->arrayize($state['saml:AuthnContextClassRef']);
}
if ($accr !== null) {
$comp = Constants::COMPARISON_EXACT;
if ($idpMetadata->getOptionalString('AuthnContextComparison', null) !== null) {
$comp = $idpMetadata->getString('AuthnContextComparison');
} elseif (
isset($state['saml:AuthnContextComparison'])
&& in_array($state['saml:AuthnContextComparison'], [
Constants::COMPARISON_EXACT,
Constants::COMPARISON_MINIMUM,
Constants::COMPARISON_MAXIMUM,
Constants::COMPARISON_BETTER,
], true)
) {
$comp = $state['saml:AuthnContextComparison'];
}
$ar->setRequestedAuthnContext(['AuthnContextClassRef' => $accr, 'Comparison' => $comp]);
} elseif (
$this->passAuthnContextClassRef
&& isset($state['saml:RequestedAuthnContext'])
&& isset($state['saml:RequestedAuthnContext']['AuthnContextClassRef'])
) {
if (
isset($state['saml:RequestedAuthnContext']['Comparison'])
&& in_array(
$state['saml:RequestedAuthnContext']['Comparison'],
[
Constants::COMPARISON_EXACT,
Constants::COMPARISON_MINIMUM,
Constants::COMPARISON_MAXIMUM,
Constants::COMPARISON_BETTER,
],
true
)
) {
// RequestedAuthnContext has been set by an SP behind the proxy so pass it to the upper IdP
$ar->setRequestedAuthnContext([
'AuthnContextClassRef' => $state['saml:RequestedAuthnContext']['AuthnContextClassRef'],
'Comparison' => $state['saml:RequestedAuthnContext']['Comparison']
]);
}
}
if (isset($state['saml:Audience'])) {
$ar->setAudiences($state['saml:Audience']);
}
if (isset($state['ForceAuthn'])) {
$ar->setForceAuthn((bool) $state['ForceAuthn']);
}
if (isset($state['isPassive'])) {
$ar->setIsPassive((bool) $state['isPassive']);
}
if (isset($state['saml:NameID'])) {
if (!is_array($state['saml:NameID']) && !is_a($state['saml:NameID'], NameID::class)) {
throw new Error\Exception('Invalid value of $state[\'saml:NameID\'].');
}
$nameId = $state['saml:NameID'];
if (is_array($nameId)) {
// Must be an array > convert to object
$nid = new NameID();
if (!array_key_exists('Value', $nameId)) {
throw new \InvalidArgumentException('Missing "Value" in array, cannot create NameID from it.');
}
$nid->setValue($nameId['Value']);
if (array_key_exists('NameQualifier', $nameId) && $nameId['NameQualifier'] !== null) {
$nid->setNameQualifier($nameId['NameQualifier']);
}
if (array_key_exists('SPNameQualifier', $nameId) && $nameId['SPNameQualifier'] !== null) {
$nid->setSPNameQualifier($nameId['SPNameQualifier']);
}
if (array_key_exists('SPProvidedID', $nameId) && $nameId['SPProvidedId'] !== null) {
$nid->setSPProvidedID($nameId['SPProvidedID']);
}
if (array_key_exists('Format', $nameId) && $nameId['Format'] !== null) {
$nid->setFormat($nameId['Format']);
}
} else {
$nid = $nameId;
}
$ar->setNameId($nid);
}
if (!empty($state['saml:NameIDPolicy'])) {
$ar->setNameIdPolicy($state['saml:NameIDPolicy']);
}
$requesterID = [];
/* Only check for real info for Scoping element if we are going to send Scoping element */
if ($this->disable_scoping !== true && $idpMetadata->getOptionalBoolean('disable_scoping', false) !== true) {
if (isset($state['IDPList'])) {
$ar->setIDPList($state['IDPList']);
} elseif (!empty($this->metadata->getOptionalArray('IDPList', []))) {
$ar->setIDPList($this->metadata->getArray('IDPList'));
} elseif (!empty($idpMetadata->getOptionalArray('IDPList', []))) {
$ar->setIDPList($idpMetadata->getArray('IDPList'));
}
if (isset($state['saml:ProxyCount']) && $state['saml:ProxyCount'] !== null) {
$ar->setProxyCount($state['saml:ProxyCount']);
} elseif ($idpMetadata->hasValue('ProxyCount')) {
$ar->setProxyCount($idpMetadata->getInteger('ProxyCount'));
} elseif ($this->metadata->hasValue('ProxyCount')) {
$ar->setProxyCount($this->metadata->getInteger('ProxyCount'));
}
$requesterID = [];
if (isset($state['saml:RequesterID'])) {
$requesterID = $state['saml:RequesterID'];
}
if (isset($state['core:SP'])) {
$requesterID[] = $state['core:SP'];
}
} else {
Logger::debug('Disabling samlp:Scoping for ' . var_export($idpMetadata->getString('entityid'), true));
}
$ar->setRequesterID($requesterID);
// If the downstream SP has set extensions then use them.
// Otherwise use extensions that might be defined in the local SP (only makes sense in a proxy scenario)
if (isset($state['saml:Extensions']) && count($state['saml:Extensions']) > 0) {
$ar->setExtensions($state['saml:Extensions']);
} elseif ($this->metadata->getOptionalArray('saml:Extensions', null) !== null) {
$ar->setExtensions($this->metadata->getArray('saml:Extensions'));
}
$providerName = $this->metadata->getOptionalString("ProviderName", null);
if ($providerName !== null) {
$ar->setProviderName($providerName);
}
// save IdP entity ID as part of the state
$state['ExpectedIssuer'] = $idpMetadata->getString('entityid');
$id = Auth\State::saveState($state, 'saml:sp:sso', true);
$ar->setId($id);
Logger::debug(
'Sending SAML 2 AuthnRequest to ' . var_export($idpMetadata->getString('entityid'), true)
);
// Select appropriate SSO endpoint
if ($ar->getProtocolBinding() === Constants::BINDING_HOK_SSO) {
/** @var array $dst */
$dst = $idpMetadata->getDefaultEndpoint(
'SingleSignOnService',
[
Constants::BINDING_HOK_SSO
]
);
} else {
/** @var array $dst */
$dst = $idpMetadata->getEndpointPrioritizedByBinding(
'SingleSignOnService',
[
Constants::BINDING_HTTP_REDIRECT,
Constants::BINDING_HTTP_POST,
// auth_saml2 modification - Reordered to maintain existing functionality.
Constants::BINDING_HTTP_ARTIFACT,
]
);
}
$ar->setDestination($dst['Location']);
$b = Binding::getBinding($dst['Binding']);
// This is a Moodle hack. Both moodle and SSPHP rely on automatic
// destructors to cleanup the $DB var and the SSPHP session but
// this order is not guaranteed, so we force session saving here.
$session = \SimpleSAML\Session::getSessionFromRequest();
$session->save();
$this->sendSAML2AuthnRequest($b, $ar);
Assert::true(false);
}
/**
* Function to actually send the authentication request.
*
* This function does not return.
*
* @param \SAML2\Binding $binding The binding.
* @param \SAML2\AuthnRequest $ar The authentication request.
*/
public function sendSAML2AuthnRequest(Binding $binding, AuthnRequest $ar): void
{
$binding->send($ar);
Assert::true(false);
}
/**
* Function to actually send the logout request.
*
* This function does not return.
*
* @param \SAML2\Binding $binding The binding.
* @param \SAML2\LogoutRequest $ar The logout request.
*/
public function sendSAML2LogoutRequest(Binding $binding, LogoutRequest $lr): void
{
$binding->send($lr);
Assert::true(false);
}
/**
* Send a SSO request to an IdP.
*
* @param string $idp The entity ID of the IdP.
* @param array $state The state array for the current authentication.
*/
public function startSSO(string $idp, array $state): void
{
$idpMetadata = $this->getIdPMetadata($idp);
$type = $idpMetadata->getString('metadata-set');
Assert::oneOf($type, ['saml20-idp-remote']);
$this->startSSO2($idpMetadata, $state);
Assert::true(false); // Should not return
}
/**
* Start an IdP discovery service operation.
*
* @param array $state The state array.
*/
private function startDisco(array $state): void
{
$id = Auth\State::saveState($state, 'saml:sp:sso');
$discoURL = $this->discoURL;
if ($discoURL === null) {
// Fallback to internal discovery service
$discoURL = Module::getModuleURL('saml/disco');
}
$returnTo = Module::getModuleURL('saml/sp/discoResponse', ['AuthID' => $id]);
$params = [
'entityID' => $this->entityId,
'return' => $returnTo,
'returnIDParam' => 'idpentityid'
];
if (isset($state['saml:IDPList'])) {
$params['IDPList'] = $state['saml:IDPList'];
}
if (isset($state['isPassive']) && $state['isPassive']) {
$params['isPassive'] = 'true';
}
$httpUtils = new Utils\HTTP();
$httpUtils->redirectTrustedURL($discoURL, $params);
}
/**
* Start login.
*
* This function saves the information about the login, and redirects to the IdP.
*
* @param array &$state Information about the current authentication.
*/
public function authenticate(array &$state): void
{
// We are going to need the authId in order to retrieve this authentication source later
$state['saml:sp:AuthId'] = $this->authId;
$idp = $this->idp;
if (isset($state['saml:idp'])) {
$idp = (string) $state['saml:idp'];
}
if (isset($state['saml:IDPList']) && sizeof($state['saml:IDPList']) > 0) {
// we have a SAML IDPList (we are a proxy): filter the list of IdPs available
$mdh = MetaDataStorageHandler::getMetadataHandler();
$matchedEntities = $mdh->getMetaDataForEntities($state['saml:IDPList'], 'saml20-idp-remote');
if (empty($matchedEntities)) {
// all requested IdPs are unknown
throw new NoSupportedIDPException(
'None of the IdPs requested are supported by this proxy.'
);
}
if (!is_null($idp) && !array_key_exists($idp, $matchedEntities)) {
// the IdP is enforced but not in the IDPList
throw new NoAvailableIDPException(
'None of the IdPs requested are available to this proxy.'
);
}
if (is_null($idp) && sizeof($matchedEntities) === 1) {
// only one IdP requested or valid
$idp = key($matchedEntities);
}
}
if ($idp === null) {
$this->startDisco($state);
Assert::true(false);
}
$this->startSSO($idp, $state);
Assert::true(false);
}
/**
* Re-authenticate an user.
*
* This function is called by the IdP to give the authentication source a chance to
* interact with the user even in the case when the user is already authenticated.
*
* @param array &$state Information about the current authentication.
*/
public function reauthenticate(array &$state): void
{
$session = Session::getSessionFromRequest();
$data = $session->getAuthState($this->authId);
if ($data === null) {
throw new Error\NoState();
}
foreach ($data as $k => $v) {
$state[$k] = $v;
}
// check if we have an IDPList specified in the request
if (
isset($state['saml:IDPList'])
&& sizeof($state['saml:IDPList']) > 0
&& !in_array($state['saml:sp:IdP'], $state['saml:IDPList'], true)
) {
/*
* The user has an existing, valid session. However, the SP
* provided a list of IdPs it accepts for authentication, and
* the IdP the existing session is related to is not in that list.
*
* First, check if we recognize any of the IdPs requested.
*/
$mdh = MetaDataStorageHandler::getMetadataHandler();
$known_idps = $mdh->getList();
$intersection = array_intersect($state['saml:IDPList'], array_keys($known_idps));
if (empty($intersection)) {
// all requested IdPs are unknown
throw new NoSupportedIDPException(
'None of the IdPs requested are supported by this proxy.'
);
}
/*
* We have at least one IdP in the IDPList that we recognize, and
* it's not the one currently in use. Let's see if this proxy
* enforces the use of one single IdP.
*/
if (!is_null($this->idp) && !in_array($this->idp, $intersection, true)) {
// an IdP is enforced but not requested
throw new NoAvailableIDPException(
'None of the IdPs requested are available to this proxy.'
);
}
/*
* We need to inform the user, and ask whether we should logout before
* starting the authentication process again with a different IdP, or
* cancel the current SSO attempt.
*/
Logger::warning(sprintf(
"Reauthentication after logout is needed. The IdP '%s' is not in the IDPList "
. "provided by the Service Provider '%s'.",
$state['saml:sp:IdP'],
$state['core:SP']
));
$state['saml:sp:IdPMetadata'] = $this->getIdPMetadata($state['saml:sp:IdP']);
$state['saml:sp:AuthId'] = $this->authId;
self::askForIdPChange($state);
}
}
/**
* Ask the user to log out before being able to log in again with a
* different identity provider. Note that this method is intended for
* instances of SimpleSAMLphp running as a SAML proxy, and therefore
* acting both as an SP and an IdP at the same time.
*
* This method will never return.
*
* @param array $state The state array.
* The following keys must be defined in the array:
* - 'saml:sp:IdPMetadata': a \SimpleSAML\Configuration object containing
* the metadata of the IdP that authenticated the user in the current
* session.
* - 'saml:sp:AuthId': the identifier of the current authentication source.
* - 'core:IdP': the identifier of the local IdP.
* - 'SPMetadata': an array with the metadata of this local SP.
*
* @throws \SAML2\Exception\Protocol\NoPassiveException In case the authentication request was passive.
*/
public static function askForIdPChange(array &$state): void
{
Assert::keyExists($state, 'saml:sp:IdPMetadata');
Assert::keyExists($state, 'saml:sp:AuthId');
Assert::keyExists($state, 'core:IdP');
Assert::keyExists($state, 'SPMetadata');
if (isset($state['isPassive']) && (bool) $state['isPassive']) {
// passive request, we cannot authenticate the user
throw new NoPassiveException(
Constants::STATUS_REQUESTER . ': Reauthentication required'
);
}
// save the state WITHOUT a restart URL, so that we don't try an IdP-initiated login if something goes wrong
$id = Auth\State::saveState($state, 'saml:proxy:invalid_idp', true);
$url = Module::getModuleURL('saml/proxy/invalidSession');
$httpUtils = new Utils\HTTP();
$httpUtils->redirectTrustedURL($url, ['AuthState' => $id]);
Assert::true(false);
}
/**
* Log the user out before logging in again.
*
* This method will never return.
*
* @param array $state The state array.
*/
public static function reauthLogout(array $state): void
{
Logger::debug('Proxy: logging the user out before re-authentication.');
if (isset($state['Responder'])) {
$state['saml:proxy:reauthLogout:PrevResponder'] = $state['Responder'];
}
$state['Responder'] = [SP::class, 'reauthPostLogout'];
$idp = IdP::getByState($state);
$idp->handleLogoutRequest($state, null);
Assert::true(false);
}
/**
* Complete login operation after re-authenticating the user on another IdP.
*
* @param array $state The authentication state.
*/
public static function reauthPostLogin(array $state): void
{
Assert::keyExists($state, 'ReturnCallback');
// Update session state
$session = Session::getSessionFromRequest();
$authId = $state['saml:sp:AuthId'];
$session->doLogin($authId, Auth\State::getPersistentAuthData($state));
// resume the login process
call_user_func($state['ReturnCallback'], $state);
Assert::true(false);
}
/**
* Post-logout handler for re-authentication.
*
* This method will never return.
*
* @param \SimpleSAML\IdP $idp The IdP we are logging out from.
* @param array &$state The state array with the state during logout.
*/
public static function reauthPostLogout(IdP $idp, array $state): void
{
Assert::keyExists($state, 'saml:sp:AuthId');
Logger::debug('Proxy: logout completed.');
if (isset($state['saml:proxy:reauthLogout:PrevResponder'])) {
$state['Responder'] = $state['saml:proxy:reauthLogout:PrevResponder'];
}
/** @var \SimpleSAML\Module\saml\Auth\Source\SP $sp */
$sp = Auth\Source::getById($state['saml:sp:AuthId'], Module\saml\Auth\Source\SP::class);
Logger::debug('Proxy: logging in again.');
$sp->authenticate($state);
Assert::true(false);
}
/**
* Start a SAML 2 logout operation.
*
* @param array $state The logout state.
*/
public function startSLO2(array &$state): void
{
Assert::keyExists($state, 'saml:logout:IdP');
Assert::keyExists($state, 'saml:logout:NameID');
Assert::keyExists($state, 'saml:logout:SessionIndex');
$id = Auth\State::saveState($state, 'saml:slosent');
$idp = $state['saml:logout:IdP'];
$nameId = $state['saml:logout:NameID'];
$sessionIndex = $state['saml:logout:SessionIndex'];
$idpMetadata = $this->getIdPMetadata($idp);