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
|
<?php
/**
* Assertion consumer service handler for SAML 2.0 SP authentication client.
*/
if (!array_key_exists('PATH_INFO', $_SERVER)) {
throw new \SimpleSAML\Error\BadRequest('Missing authentication source ID in assertion consumer service URL');
}
$sourceId = substr($_SERVER['PATH_INFO'], 1);
/** @var \SimpleSAML\Module\saml\Auth\Source\SP $source */
$source = \SimpleSAML\Auth\Source::getById($sourceId, '\SimpleSAML\Module\saml\Auth\Source\SP');
$spMetadata = $source->getMetadata();
try {
$b = \SAML2\Binding::getCurrentBinding();
} catch (Exception $e) {
// TODO: look for a specific exception
// This is dirty. Instead of checking the message of the exception, \SAML2\Binding::getCurrentBinding() should throw
// a specific exception when the binding is unknown, and we should capture that here
if ($e->getMessage() === 'Unable to find the current binding.') {
throw new \SimpleSAML\Error\Error('ACSPARAMS', $e, 400);
} else {
// do not ignore other exceptions!
throw $e;
}
}
if ($b instanceof \SAML2\HTTPArtifact) {
$b->setSPMetadata($spMetadata);
}
$response = $b->receive();
if (!($response instanceof \SAML2\Response)) {
throw new \SimpleSAML\Error\BadRequest('Invalid message received to AssertionConsumerService endpoint.');
}
/** @psalm-var null|string|\SAML2\XML\saml\Issuer $issuer Remove in SSP 2.0 */
$issuer = $response->getIssuer();
if ($issuer === null) {
// no Issuer in the response. Look for an unencrypted assertion with an issuer
foreach ($response->getAssertions() as $a) {
if ($a instanceof \SAML2\Assertion) {
// we found an unencrypted assertion, there should be an issuer here
$issuer = $a->getIssuer();
break;
}
}
/** @psalm-var string|null $issuer Remove in SSP 2.0 */
if ($issuer === null) {
// no issuer found in the assertions
throw new Exception('Missing <saml:Issuer> in message delivered to AssertionConsumerService.');
}
}
if ($issuer instanceof \SAML2\XML\saml\Issuer) {
/** @psalm-var string|null $issuer */
$issuer = $issuer->getValue();
if ($issuer === null) {
// no issuer found in the assertions
throw new Exception('Missing <saml:Issuer> in message delivered to AssertionConsumerService.');
}
}
$session = \SimpleSAML\Session::getSessionFromRequest();
$prevAuth = $session->getAuthData($sourceId, 'saml:sp:prevAuth');
/** @psalm-var string $issuer */
if ($prevAuth !== null && $prevAuth['id'] === $response->getId() && $prevAuth['issuer'] === $issuer) {
/* OK, it looks like this message has the same issuer
* and ID as the SP session we already have active. We
* therefore assume that the user has somehow triggered
* a resend of the message.
* In that case we may as well just redo the previous redirect
* instead of displaying a confusing error message.
*/
SimpleSAML\Logger::info(
'Duplicate SAML 2 response detected - ignoring the response and redirecting the user to the correct page.'
);
if (isset($prevAuth['redirect'])) {
\SimpleSAML\Utils\HTTP::redirectTrustedURL($prevAuth['redirect']);
}
SimpleSAML\Logger::info('No RelayState or ReturnURL available, cannot redirect.');
throw new \SimpleSAML\Error\Exception('Duplicate assertion received.');
}
$idpMetadata = null;
$state = null;
$stateId = $response->getInResponseTo();
if (!empty($stateId)) {
// this should be a response to a request we sent earlier
try {
$state = \SimpleSAML\Auth\State::loadState($stateId, 'saml:sp:sso');
} catch (Exception $e) {
// something went wrong,
SimpleSAML\Logger::warning('Could not load state specified by InResponseTo: ' . $e->getMessage() .
' Processing response as unsolicited.');
}
}
if ($state) {
// check that the authentication source is correct
assert(array_key_exists('saml:sp:AuthId', $state));
if ($state['saml:sp:AuthId'] !== $sourceId) {
throw new \SimpleSAML\Error\Exception(
'The authentication source id in the URL does not match the authentication source which sent the request.'
);
}
// check that the issuer is the one we are expecting
assert(array_key_exists('ExpectedIssuer', $state));
if ($state['ExpectedIssuer'] !== $issuer) {
$idpMetadata = $source->getIdPMetadata($issuer);
$idplist = $idpMetadata->getArrayize('IDPList', []);
if (!in_array($state['ExpectedIssuer'], $idplist, true)) {
SimpleSAML\Logger::warning(
'The issuer of the response not match to the identity provider we sent the request to.'
);
}
}
} else {
// this is an unsolicited response
$relaystate = $spMetadata->getString('RelayState', $response->getRelayState());
$state = [
'saml:sp:isUnsolicited' => true,
'saml:sp:AuthId' => $sourceId,
'saml:sp:RelayState' => $relaystate === null ? null : \SimpleSAML\Utils\HTTP::checkURLAllowed($relaystate),
];
}
SimpleSAML\Logger::debug('Received SAML2 Response from ' . var_export($issuer, true) . '.');
if (is_null($idpMetadata)) {
$idpMetadata = $source->getIdPmetadata($issuer);
}
try {
$assertions = \SimpleSAML\Module\saml\Message::processResponse($spMetadata, $idpMetadata, $response);
} catch (\SimpleSAML\Module\saml\Error $e) {
// the status of the response wasn't "success"
$e = $e->toException();
\SimpleSAML\Auth\State::throwException($state, $e);
}
$authenticatingAuthority = null;
$nameId = null;
$sessionIndex = null;
$expire = null;
$attributes = [];
$foundAuthnStatement = false;
foreach ($assertions as $assertion) {
// check for duplicate assertion (replay attack)
$store = \SimpleSAML\Store::getInstance();
if ($store !== false) {
$aID = $assertion->getId();
if ($store->get('saml.AssertionReceived', $aID) !== null) {
$e = new \SimpleSAML\Error\Exception('Received duplicate assertion.');
\SimpleSAML\Auth\State::throwException($state, $e);
}
$notOnOrAfter = $assertion->getNotOnOrAfter();
if ($notOnOrAfter === null) {
$notOnOrAfter = time() + 24 * 60 * 60;
} else {
$notOnOrAfter += 60; // we allow 60 seconds clock skew, so add it here also
}
$store->set('saml.AssertionReceived', $aID, true, $notOnOrAfter);
}
if ($authenticatingAuthority === null) {
$authenticatingAuthority = $assertion->getAuthenticatingAuthority();
}
if ($nameId === null) {
$nameId = $assertion->getNameId();
}
if ($sessionIndex === null) {
$sessionIndex = $assertion->getSessionIndex();
}
if ($expire === null) {
$expire = $assertion->getSessionNotOnOrAfter();
}
$attributes = array_merge($attributes, $assertion->getAttributes());
if ($assertion->getAuthnInstant() !== null) {
// assertion contains AuthnStatement, since AuthnInstant is a required attribute
$foundAuthnStatement = true;
}
}
$assertion = end($assertions);
if (!$foundAuthnStatement) {
$e = new \SimpleSAML\Error\Exception('No AuthnStatement found in assertion(s).');
\SimpleSAML\Auth\State::throwException($state, $e);
}
if ($expire !== null) {
$logoutExpire = $expire;
} else {
// just expire the logout association 24 hours into the future
$logoutExpire = time() + 24 * 60 * 60;
}
if (!empty($nameId)) {
// register this session in the logout store
\SimpleSAML\Module\saml\SP\LogoutStore::addSession($sourceId, $nameId, $sessionIndex, $logoutExpire);
// we need to save the NameID and SessionIndex for logout
$logoutState = [
'saml:logout:Type' => 'saml2',
'saml:logout:IdP' => $issuer,
'saml:logout:NameID' => $nameId,
'saml:logout:SessionIndex' => $sessionIndex,
];
$state['saml:sp:NameID'] = $nameId; // no need to mark it as persistent, it already is
} else {
/*
* No NameID provided, we can't logout from this IdP!
*
* Even though interoperability profiles "require" a NameID, the SAML 2.0 standard does not require it to be present
* in assertions. That way, we could have a Subject with only a SubjectConfirmation, or even no Subject element at
* all.
*
* In case we receive a SAML assertion with no NameID, we can be graceful and continue, but we won't be able to
* perform a Single Logout since the SAML logout profile mandates the use of a NameID to identify the individual we
* want to be logged out. In order to minimize the impact of this, we keep logout state information (without saving
* it to the store), marking the IdP as SAML 1.0, which does not implement logout. Then we can safely log the user
* out from the local session, skipping Single Logout upstream to the IdP.
*/
$logoutState = [
'saml:logout:Type' => 'saml1',
];
}
$state['LogoutState'] = $logoutState;
$state['saml:AuthenticatingAuthority'] = $authenticatingAuthority;
$state['saml:AuthenticatingAuthority'][] = $issuer;
$state['PersistentAuthData'][] = 'saml:AuthenticatingAuthority';
$state['saml:AuthnInstant'] = $assertion->getAuthnInstant();
$state['PersistentAuthData'][] = 'saml:AuthnInstant';
$state['saml:sp:SessionIndex'] = $sessionIndex;
$state['PersistentAuthData'][] = 'saml:sp:SessionIndex';
$state['saml:sp:AuthnContext'] = $assertion->getAuthnContextClassRef();
$state['PersistentAuthData'][] = 'saml:sp:AuthnContext';
if ($expire !== null) {
$state['Expire'] = $expire;
}
// note some information about the authentication, in case we receive the same response again
$state['saml:sp:prevAuth'] = [
'id' => $response->getId(),
'issuer' => $issuer,
'inResponseTo' => $response->getInResponseTo(),
];
if (isset($state['\SimpleSAML\Auth\Source.ReturnURL'])) {
$state['saml:sp:prevAuth']['redirect'] = $state['\SimpleSAML\Auth\Source.ReturnURL'];
} elseif (isset($state['saml:sp:RelayState'])) {
$state['saml:sp:prevAuth']['redirect'] = $state['saml:sp:RelayState'];
}
$state['PersistentAuthData'][] = 'saml:sp:prevAuth';
$source->handleResponse($state, $issuer, $attributes);
assert(false);
|