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 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251
|
<?php
declare(strict_types=1);
namespace SimpleSAML\Module\saml\Auth\Source;
use SAML2\AuthnRequest;
use SAML2\Binding;
use SAML2\Constants;
use SAML2\XML\saml\NameID;
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\Utils;
use SimpleSAML\XML\Shib13;
class SP extends \SimpleSAML\Auth\Source
{
/**
* The entity ID of this SP.
*
* @var string
*/
private $entityId;
/**
* The metadata of this SP.
*
* @var \SimpleSAML\Configuration
*/
private $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 $idp;
/**
* URL to discovery service.
*
* @var string|null
*/
private $discoURL;
/**
* Flag to indicate whether to disable sending the Scoping element.
*
* @var bool
*/
private $disable_scoping;
/**
* A list of supported protocols.
*
* @var string[]
*/
private $protocols = [];
/**
* Constructor for SAML SP authentication source.
*
* @param array $info Information about this authentication source.
* @param array $config Configuration.
*/
public function __construct($info, $config)
{
assert(is_array($info));
assert(is_array($config));
// Call the parent constructor first, as required by the interface
parent::__construct($info, $config);
if (!isset($config['entityID'])) {
$config['entityID'] = $this->getMetadataURL();
}
/* 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) . ']'
);
$this->entityId = $this->metadata->getString('entityID');
$this->idp = $this->metadata->getString('idp', null);
$this->discoURL = $this->metadata->getString('discoURL', null);
$this->disable_scoping = $this->metadata->getBoolean('disable_scoping', false);
if (empty($this->discoURL) && Module::isModuleEnabled('discojuice')) {
$this->discoURL = Module::getModuleURL('discojuice/central.php');
}
}
/**
* Retrieve the URL to the metadata of this SP.
*
* @return string The metadata URL.
*/
public function getMetadataURL()
{
return Module::getModuleURL('saml/sp/metadata.php/' . urlencode($this->authId));
}
/**
* Retrieve the entity id of this SP.
*
* @return string The entity id of this SP.
*/
public function getEntityId()
{
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()
{
$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->getValue('NameIDPolicy');
if (is_array($format)) {
$metadata['NameIDFormat'] = Configuration::loadFromArray($format)->getString(
'Format',
Constants::NAMEID_TRANSIENT
);
} elseif (is_string($format)) {
$metadata['NameIDFormat'] = $format;
}
}
// add attributes
$name = $this->metadata->getLocalizedString('name', null);
$attributes = $this->metadata->getArray('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->getLocalizedString('OrganizationName', null);
if ($org !== null) {
$metadata['OrganizationName'] = $org;
$metadata['OrganizationDisplayName'] = $this->metadata->getLocalizedString('OrganizationDisplayName', $org);
$metadata['OrganizationURL'] = $this->metadata->getLocalizedString('OrganizationURL', null);
if ($metadata['OrganizationURL'] === null) {
throw new Error\Exception(
'If OrganizationName is set, OrganizationURL must also be set.'
);
}
}
// add contacts
$contacts = $this->metadata->getArray('contacts', []);
foreach ($contacts as $contact) {
$metadata['contacts'][] = Utils\Config\Metadata::getContact($contact);
}
// add technical contact
$globalConfig = Configuration::getInstance();
$email = $globalConfig->getString('technicalcontact_email', 'na@example.org');
if ($email && $email !== 'na@example.org') {
$contact = [
'emailAddress' => $email,
'name' => $globalConfig->getString('technicalcontact_name', null),
'contactType' => 'technical',
];
$metadata['contacts'][] = Utils\Config\Metadata::getContact($contact);
}
// add certificate(s)
$certInfo = Utils\Crypto::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' => 'sp',
];
}
$certInfo = Utils\Crypto::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' => 'sp',
];
}
// 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($entityId)
{
assert(is_string($entityId));
if ($this->idp !== null && $this->idp !== $entityId) {
throw new Error\Exception('Cannot retrieve metadata for IdP ' .
var_export($entityId, true) . ' because it isn\'t a valid IdP for this SP.');
}
$metadataHandler = MetaDataStorageHandler::getMetadataHandler();
// First, look in saml20-idp-remote.
try {
return $metadataHandler->getMetaDataConfig($entityId, 'saml20-idp-remote');
} catch (\Exception $e) {
// Metadata wasn't found
Logger::debug('getIdpMetadata: ' . $e->getMessage());
}
// Not found in saml20-idp-remote, look in shib13-idp-remote
try {
return $metadataHandler->getMetaDataConfig($entityId, 'shib13-idp-remote');
} catch (\Exception $e) {
// Metadata wasn't found
Logger::debug('getIdpMetadata: ' . $e->getMessage());
}
// Not found
throw new Error\Exception('Could not find the metadata of an IdP with entity ID ' .
var_export($entityId, true));
}
/**
* Retrieve the metadata of this SP.
*
* @return \SimpleSAML\Configuration The metadata of this SP.
*/
public function getMetadata()
{
return $this->metadata;
}
/**
* Get a list with the protocols supported by this SP.
*
* @return array
*/
public function getSupportedProtocols()
{
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,
'urn:oasis:names:tc:SAML:1.0:profiles:browser-post',
Constants::BINDING_HTTP_ARTIFACT,
'urn:oasis:names:tc:SAML:1.0:profiles:artifact-01',
];
if ($this->metadata->getString('ProtocolBinding', '') === Constants::BINDING_HOK_SSO) {
$default[] = Constants::BINDING_HOK_SSO;
}
$bindings = $this->metadata->getArray('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()),
];
if (!in_array(Constants::NS_SAMLP, $this->protocols, true)) {
$this->protocols[] = Constants::NS_SAMLP;
}
break;
case 'urn:oasis:names:tc:SAML:1.0:profiles:browser-post':
$acs = [
'Binding' => 'urn:oasis:names:tc:SAML:1.0:profiles:browser-post',
'Location' => Module::getModuleURL('saml/sp/saml1-acs.php/' . $this->getAuthId()),
];
if (!in_array('urn:oasis:names:tc:SAML:1.0:profiles:browser-post', $this->protocols, true)) {
$this->protocols[] = 'urn:oasis:names:tc:SAML:1.1:protocol';
}
break;
case Constants::BINDING_HTTP_ARTIFACT:
$acs = [
'Binding' => Constants::BINDING_HTTP_ARTIFACT,
'Location' => Module::getModuleURL('saml/sp/saml2-acs.php/' . $this->getAuthId()),
];
if (!in_array(Constants::NS_SAMLP, $this->protocols, true)) {
$this->protocols[] = Constants::NS_SAMLP;
}
break;
case 'urn:oasis:names:tc:SAML:1.0:profiles:artifact-01':
$acs = [
'Binding' => 'urn:oasis:names:tc:SAML:1.0:profiles:artifact-01',
'Location' => Module::getModuleURL(
'saml/sp/saml1-acs.php/' . $this->getAuthId() . '/artifact'
),
];
if (!in_array('urn:oasis:names:tc:SAML:1.1:protocol', $this->protocols, true)) {
$this->protocols[] = 'urn:oasis:names:tc:SAML:1.1:protocol';
}
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,
];
if (!in_array(Constants::NS_SAMLP, $this->protocols, true)) {
$this->protocols[] = Constants::NS_SAMLP;
}
break;
default:
$acs = [];
}
$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
{
$store = Store::getInstance();
$bindings = $this->metadata->getArray(
'SingleLogoutServiceBinding',
[
Constants::BINDING_HTTP_REDIRECT,
Constants::BINDING_SOAP,
]
);
$defaultLocation = Module::getModuleURL('saml/sp/saml2-logout.php/' . $this->getAuthId());
$location = $this->metadata->getString('SingleLogoutServiceLocation', $defaultLocation);
$endpoints = [];
foreach ($bindings as $binding) {
if ($binding == Constants::BINDING_SOAP && !($store instanceof Store\SQL)) {
// we cannot properly support SOAP logout
continue;
}
$endpoints[] = [
'Binding' => $binding,
'Location' => $location,
];
}
return $endpoints;
}
/**
* Send a SAML1 SSO request to an IdP.
*
* @param \SimpleSAML\Configuration $idpMetadata The metadata of the IdP.
* @param array $state The state array for the current authentication.
* @return void
* @deprecated will be removed in a future version
*/
private function startSSO1(Configuration $idpMetadata, array $state): void
{
$idpEntityId = $idpMetadata->getString('entityid');
$state['saml:idp'] = $idpEntityId;
$ar = new Shib13\AuthnRequest();
$ar->setIssuer($this->entityId);
$id = Auth\State::saveState($state, 'saml:sp:sso');
$ar->setRelayState($id);
$useArtifact = $idpMetadata->getBoolean('saml1.useartifact', null);
if ($useArtifact === null) {
$useArtifact = $this->metadata->getBoolean('saml1.useartifact', false);
}
if ($useArtifact) {
$shire = Module::getModuleURL('saml/sp/saml1-acs.php/' . $this->authId . '/artifact');
} else {
$shire = Module::getModuleURL('saml/sp/saml1-acs.php/' . $this->authId);
}
$url = $ar->createRedirect($idpEntityId, $shire);
Logger::debug('Starting SAML 1 SSO to ' . var_export($idpEntityId, true) .
' from ' . var_export($this->entityId, true) . '.');
Utils\HTTP::redirectTrustedURL($url);
}
/**
* 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.
* @return void
*/
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);
$ar->setAssertionConsumerServiceURL(Module::getModuleURL('saml/sp/saml2-acs.php/' . $this->authId));
if (isset($state['\SimpleSAML\Auth\Source.ReturnURL'])) {
$ar->setRelayState($state['\SimpleSAML\Auth\Source.ReturnURL']);
}
$accr = null;
if ($idpMetadata->getString('AuthnContextClassRef', false)) {
$accr = Utils\Arrays::arrayize($idpMetadata->getString('AuthnContextClassRef'));
} elseif (isset($state['saml:AuthnContextClassRef'])) {
$accr = Utils\Arrays::arrayize($state['saml:AuthnContextClassRef']);
}
if ($accr !== null) {
$comp = Constants::COMPARISON_EXACT;
if ($idpMetadata->getString('AuthnContextComparison', false)) {
$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]);
}
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 (isset($state['saml:NameIDPolicy'])) {
$policy = null;
if (is_string($state['saml:NameIDPolicy'])) {
$policy = [
'Format' => (string) $state['saml:NameIDPolicy'],
'AllowCreate' => true,
];
} elseif (is_array($state['saml:NameIDPolicy'])) {
$policy = $state['saml:NameIDPolicy'];
} elseif ($state['saml:NameIDPolicy'] === null) {
$policy = ['Format' => Constants::NAMEID_TRANSIENT];
}
if ($policy !== null) {
$ar->setNameIdPolicy($policy);
}
}
$IDPList = [];
$requesterID = [];
/* Only check for real info for Scoping element if we are going to send Scoping element */
if ($this->disable_scoping !== true && $idpMetadata->getBoolean('disable_scoping', false) !== true) {
if (isset($state['saml:IDPList'])) {
$IDPList = $state['saml:IDPList'];
}
if (isset($state['saml:ProxyCount']) && $state['saml:ProxyCount'] !== null) {
$ar->setProxyCount($state['saml:ProxyCount']);
} elseif ($idpMetadata->getInteger('ProxyCount', null) !== null) {
$ar->setProxyCount($idpMetadata->getInteger('ProxyCount', null));
} elseif ($this->metadata->getInteger('ProxyCount', null) !== null) {
$ar->setProxyCount($this->metadata->getInteger('ProxyCount', null));
}
$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->setIDPList(
array_unique(
array_merge(
$this->metadata->getArray('IDPList', []),
$idpMetadata->getArray('IDPList', []),
(array) $IDPList
)
)
);
$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']);
} else if ($this->metadata->getArray('saml:Extensions', null) !== null) {
$ar->setExtensions($this->metadata->getArray('saml:Extensions'));
}
$providerName = $this->metadata->getString("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,
]
);
}
$ar->setDestination($dst['Location']);
$b = Binding::getBinding($dst['Binding']);
$this->sendSAML2AuthnRequest($state, $b, $ar);
assert(false);
}
/**
* Function to actually send the authentication request.
*
* This function does not return.
*
* @param array &$state The state array.
* @param \SAML2\Binding $binding The binding.
* @param \SAML2\AuthnRequest $ar The authentication request.
* @return void
*/
public function sendSAML2AuthnRequest(array &$state, Binding $binding, AuthnRequest $ar)
{
$binding->send($ar);
assert(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.
* @return void
*/
public function startSSO($idp, array $state)
{
assert(is_string($idp));
$idpMetadata = $this->getIdPMetadata($idp);
$type = $idpMetadata->getString('metadata-set');
switch ($type) {
case 'shib13-idp-remote':
$this->startSSO1($idpMetadata, $state);
assert(false); // Should not return
case 'saml20-idp-remote':
$this->startSSO2($idpMetadata, $state);
assert(false); // Should not return
default:
// Should only be one of the known types
assert(false);
}
}
/**
* Start an IdP discovery service operation.
*
* @param array $state The state array.
* @return void
*/
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.php');
}
$returnTo = Module::getModuleURL('saml/sp/discoresp.php', ['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';
}
Utils\HTTP::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.
* @return void
*/
public function authenticate(&$state)
{
assert(is_array($state));
// 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 Module\saml\Error\NoSupportedIDP(
Constants::STATUS_REQUESTER,
'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 Module\saml\Error\NoAvailableIDP(
Constants::STATUS_REQUESTER,
'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(false);
}
$this->startSSO($idp, $state);
assert(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.
* @return void
*/
public function reauthenticate(array &$state)
{
$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 Module\saml\Error\NoSupportedIDP(
Constants::STATUS_REQUESTER,
'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 Module\saml\Error\NoAvailableIDP(
Constants::STATUS_REQUESTER,
'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(
"Reauthentication after logout is needed. The IdP '${state['saml:sp:IdP']}' is not in the IDPList " .
"provided by the Service Provider '${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.
*
* @return void
* @throws \SimpleSAML\Error\NoPassive In case the authentication request was passive.
*/
public static function askForIdPChange(array &$state)
{
assert(array_key_exists('saml:sp:IdPMetadata', $state));
assert(array_key_exists('saml:sp:AuthId', $state));
assert(array_key_exists('core:IdP', $state));
assert(array_key_exists('SPMetadata', $state));
if (isset($state['isPassive']) && (bool) $state['isPassive']) {
// passive request, we cannot authenticate the user
throw new Module\saml\Error\NoPassive(
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/invalid_session.php');
Utils\HTTP::redirectTrustedURL($url, ['AuthState' => $id]);
assert(false);
}
/**
* Log the user out before logging in again.
*
* This method will never return.
*
* @param array $state The state array.
* @return void
*/
public static function reauthLogout(array $state)
{
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(false);
}
/**
* Complete login operation after re-authenticating the user on another IdP.
*
* @param array $state The authentication state.
* @return void
*/
public static function reauthPostLogin(array $state)
{
assert(isset($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(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.
* @return void
*/
public static function reauthPostLogout(IdP $idp, array $state)
{
assert(isset($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(false);
}
/**
* Start a SAML 2 logout operation.
*
* @param array $state The logout state.
* @return void
*/
public function startSLO2(&$state)
{
assert(is_array($state));
assert(array_key_exists('saml:logout:IdP', $state));
assert(array_key_exists('saml:logout:NameID', $state));
assert(array_key_exists('saml:logout:SessionIndex', $state));
$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);
/** @var array $endpoint */
$endpoint = $idpMetadata->getEndpointPrioritizedByBinding(
'SingleLogoutService',
[
Constants::BINDING_HTTP_REDIRECT,
Constants::BINDING_HTTP_POST
],
false
);
if ($endpoint === false) {
Logger::info('No logout endpoint for IdP ' . var_export($idp, true) . '.');
return;
}
$lr = Module\saml\Message::buildLogoutRequest($this->metadata, $idpMetadata);
$lr->setNameId($nameId);
$lr->setSessionIndex($sessionIndex);
$lr->setRelayState($id);
$lr->setDestination($endpoint['Location']);
$encryptNameId = $idpMetadata->getBoolean('nameid.encryption', null);
if ($encryptNameId === null) {
$encryptNameId = $this->metadata->getBoolean('nameid.encryption', false);
}
if ($encryptNameId) {
$lr->encryptNameId(Module\saml\Message::getEncryptionKey($idpMetadata));
}
$b = Binding::getBinding($endpoint['Binding']);
$b->send($lr);
assert(false);
}
/**
* Start logout operation.
*
* @param array $state The logout state.
* @return void
*/
public function logout(&$state)
{
assert(is_array($state));
assert(array_key_exists('saml:logout:Type', $state));
$logoutType = $state['saml:logout:Type'];
switch ($logoutType) {
case 'saml1':
// Nothing to do
return;
case 'saml2':
$this->startSLO2($state);
return;
default:
// Should never happen
assert(false);
}
}
/**
* Handle a response from a SSO operation.
*
* @param array $state The authentication state.
* @param string $idp The entity id of the IdP.
* @param array $attributes The attributes.
* @return void
*/
public function handleResponse(array $state, $idp, array $attributes)
{
assert(is_string($idp));
assert(array_key_exists('LogoutState', $state));
assert(array_key_exists('saml:logout:Type', $state['LogoutState']));
$idpMetadata = $this->getIdPMetadata($idp);
$spMetadataArray = $this->metadata->toArray();
$idpMetadataArray = $idpMetadata->toArray();
/* Save the IdP in the state array. */
$state['saml:sp:IdP'] = $idp;
$state['PersistentAuthData'][] = 'saml:sp:IdP';
$authProcState = [
'saml:sp:IdP' => $idp,
'saml:sp:State' => $state,
'ReturnCall' => [SP::class, 'onProcessingCompleted'],
'Attributes' => $attributes,
'Destination' => $spMetadataArray,
'Source' => $idpMetadataArray,
];
if (isset($state['saml:sp:NameID'])) {
$authProcState['saml:sp:NameID'] = $state['saml:sp:NameID'];
}
if (isset($state['saml:sp:SessionIndex'])) {
$authProcState['saml:sp:SessionIndex'] = $state['saml:sp:SessionIndex'];
}
$pc = new Auth\ProcessingChain($idpMetadataArray, $spMetadataArray, 'sp');
$pc->processState($authProcState);
self::onProcessingCompleted($authProcState);
}
/**
* Handle a logout request from an IdP.
*
* @param string $idpEntityId The entity ID of the IdP.
* @return void
*/
public function handleLogout($idpEntityId)
{
assert(is_string($idpEntityId));
/* Call the logout callback we registered in onProcessingCompleted(). */
$this->callLogoutCallback($idpEntityId);
}
/**
* Handle an unsolicited login operations.
*
* This method creates a session from the information received. It will
* then redirect to the given URL. This is used to handle IdP initiated
* SSO. This method will never return.
*
* @param string $authId The id of the authentication source that received the request.
* @param array $state A state array.
* @param string $redirectTo The URL we should redirect the user to after updating
* the session. The function will check if the URL is allowed, so there is no need to
* manually check the URL on beforehand. Please refer to the 'trusted.url.domains'
* configuration directive for more information about allowing (or disallowing) URLs.
* @return void
*/
public static function handleUnsolicitedAuth($authId, array $state, $redirectTo)
{
assert(is_string($authId));
assert(is_string($redirectTo));
$session = Session::getSessionFromRequest();
$session->doLogin($authId, Auth\State::getPersistentAuthData($state));
Utils\HTTP::redirectUntrustedURL($redirectTo);
}
/**
* Called when we have completed the procssing chain.
*
* @param array $authProcState The processing chain state.
* @return void
*/
public static function onProcessingCompleted(array $authProcState)
{
assert(array_key_exists('saml:sp:IdP', $authProcState));
assert(array_key_exists('saml:sp:State', $authProcState));
assert(array_key_exists('Attributes', $authProcState));
$idp = $authProcState['saml:sp:IdP'];
$state = $authProcState['saml:sp:State'];
$sourceId = $state['saml:sp:AuthId'];
/** @var \SimpleSAML\Module\saml\Auth\Source\SP $source */
$source = Auth\Source::getById($sourceId);
if ($source === null) {
throw new \Exception('Could not find authentication source with id ' . $sourceId);
}
// Register a callback that we can call if we receive a logout request from the IdP
$source->addLogoutCallback($idp, $state);
$state['Attributes'] = $authProcState['Attributes'];
if (isset($state['saml:sp:isUnsolicited']) && (bool) $state['saml:sp:isUnsolicited']) {
if (!empty($state['saml:sp:RelayState'])) {
$redirectTo = $state['saml:sp:RelayState'];
} else {
$redirectTo = $source->getMetadata()->getString('RelayState', '/');
}
self::handleUnsolicitedAuth($sourceId, $state, $redirectTo);
}
Auth\Source::completeAuth($state);
}
}
|