From 1ca1e4a2b87791cf52784ab2efb0051d79f7e291 Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Wed, 20 Jul 2011 05:55:05 +0000 Subject: [PATCH] saml:SP: Handle duplicate response. In some cases, we may receive duplicate responses when the user uses the back-button in the browser to go back to the HTTP-POST page. This patch changes the behaviour to just redirect the user to the correct page, instead of displaying a confusing error message. Fixes issue 404. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2873 44740490-163a-0410-bde0-09ae8108e29a --- modules/saml/www/sp/saml2-acs.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/modules/saml/www/sp/saml2-acs.php b/modules/saml/www/sp/saml2-acs.php index a1746967e..b4abb30f4 100644 --- a/modules/saml/www/sp/saml2-acs.php +++ b/modules/saml/www/sp/saml2-acs.php @@ -18,6 +18,20 @@ if (!($response instanceof SAML2_Response)) { throw new SimpleSAML_Error_BadRequest('Invalid message received to AssertionConsumerService endpoint.'); } +$session = SimpleSAML_Session::getInstance(); +$prevAuth = $session->getAuthData($sourceId, 'saml:sp:prevAuth'); +if ($prevAuth !== NULL && $prevAuth['id'] === $response->getId() && $prevAuth['issuer'] === $response->getIssuer()) { + /* 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.'); + SimpleSAML_Utilities::redirect($prevAuth['redirect']); +} + $stateId = $response->getInResponseTo(); if (!empty($stateId)) { /* This is a response to a request we sent earlier. */ @@ -137,5 +151,17 @@ $state['saml:sp:SessionIndex'] = $sessionIndex; $state['PersistentAuthData'][] = 'saml:sp:SessionIndex'; +if (isset($state['SimpleSAML_Auth_Default.ReturnURL'])) { + /* Just note some information about the authentication, in case we receive the + * same response again. + */ + $state['saml:sp:prevAuth'] = array( + 'id' => $response->getId(), + 'issuer' => $idp, + 'redirect' => $state['SimpleSAML_Auth_Default.ReturnURL'], + ); + $state['PersistentAuthData'][] = 'saml:sp:prevAuth'; +} + $source->handleResponse($state, $idp, $attributes); assert('FALSE'); -- GitLab