2 * Copyright [2007] [University Corporation for Advanced Internet Development, Inc.]
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package edu.internet2.middleware.shibboleth.idp.profile.saml1;
19 import java.io.IOException;
20 import java.util.ArrayList;
22 import javax.servlet.RequestDispatcher;
23 import javax.servlet.ServletException;
24 import javax.servlet.http.HttpServletRequest;
25 import javax.servlet.http.HttpServletResponse;
27 import org.opensaml.common.SAMLObjectBuilder;
28 import org.opensaml.common.binding.decoding.SAMLMessageDecoder;
29 import org.opensaml.common.xml.SAMLConstants;
30 import org.opensaml.saml1.core.AttributeStatement;
31 import org.opensaml.saml1.core.AuthenticationStatement;
32 import org.opensaml.saml1.core.Request;
33 import org.opensaml.saml1.core.Response;
34 import org.opensaml.saml1.core.Statement;
35 import org.opensaml.saml1.core.StatusCode;
36 import org.opensaml.saml1.core.Subject;
37 import org.opensaml.saml1.core.SubjectLocality;
38 import org.opensaml.saml2.metadata.AssertionConsumerService;
39 import org.opensaml.saml2.metadata.Endpoint;
40 import org.opensaml.saml2.metadata.EntityDescriptor;
41 import org.opensaml.saml2.metadata.IDPSSODescriptor;
42 import org.opensaml.saml2.metadata.SPSSODescriptor;
43 import org.opensaml.ws.message.decoder.MessageDecodingException;
44 import org.opensaml.ws.transport.http.HTTPInTransport;
45 import org.opensaml.ws.transport.http.HTTPOutTransport;
46 import org.opensaml.ws.transport.http.HttpServletRequestAdapter;
47 import org.opensaml.ws.transport.http.HttpServletResponseAdapter;
48 import org.opensaml.xml.security.SecurityException;
49 import org.opensaml.xml.util.DatatypeHelper;
50 import org.slf4j.Logger;
51 import org.slf4j.LoggerFactory;
53 import edu.internet2.middleware.shibboleth.common.ShibbolethConstants;
54 import edu.internet2.middleware.shibboleth.common.profile.ProfileException;
55 import edu.internet2.middleware.shibboleth.common.profile.provider.BaseSAMLProfileRequestContext;
56 import edu.internet2.middleware.shibboleth.common.relyingparty.ProfileConfiguration;
57 import edu.internet2.middleware.shibboleth.common.relyingparty.RelyingPartyConfiguration;
58 import edu.internet2.middleware.shibboleth.common.relyingparty.provider.saml1.ShibbolethSSOConfiguration;
59 import edu.internet2.middleware.shibboleth.common.util.HttpHelper;
60 import edu.internet2.middleware.shibboleth.idp.authn.LoginContext;
61 import edu.internet2.middleware.shibboleth.idp.authn.ShibbolethSSOLoginContext;
63 /** Shibboleth SSO request profile handler. */
64 public class ShibbolethSSOProfileHandler extends AbstractSAML1ProfileHandler {
67 private final Logger log = LoggerFactory.getLogger(ShibbolethSSOProfileHandler.class);
69 /** Builder of AuthenticationStatement objects. */
70 private SAMLObjectBuilder<AuthenticationStatement> authnStatementBuilder;
72 /** Builder of SubjectLocality objects. */
73 private SAMLObjectBuilder<SubjectLocality> subjectLocalityBuilder;
75 /** Builder of Endpoint objects. */
76 private SAMLObjectBuilder<Endpoint> endpointBuilder;
78 /** URL of the authentication manager servlet. */
79 private String authenticationManagerPath;
84 * @param authnManagerPath path to the authentication manager servlet
86 * @throws IllegalArgumentException thrown if either the authentication manager path or encoding binding URI are
89 public ShibbolethSSOProfileHandler(String authnManagerPath) {
90 if (DatatypeHelper.isEmpty(authnManagerPath)) {
91 throw new IllegalArgumentException("Authentication manager path may not be null");
93 authenticationManagerPath = authnManagerPath;
95 authnStatementBuilder = (SAMLObjectBuilder<AuthenticationStatement>) getBuilderFactory().getBuilder(
96 AuthenticationStatement.DEFAULT_ELEMENT_NAME);
98 subjectLocalityBuilder = (SAMLObjectBuilder<SubjectLocality>) getBuilderFactory().getBuilder(
99 SubjectLocality.DEFAULT_ELEMENT_NAME);
101 endpointBuilder = (SAMLObjectBuilder<Endpoint>) getBuilderFactory().getBuilder(
102 AssertionConsumerService.DEFAULT_ELEMENT_NAME);
106 public String getProfileId() {
107 return ShibbolethSSOConfiguration.PROFILE_ID;
111 public void processRequest(HTTPInTransport inTransport, HTTPOutTransport outTransport) throws ProfileException {
112 log.debug("Processing incoming request");
114 HttpServletRequest httpRequest = ((HttpServletRequestAdapter) inTransport).getWrappedRequest();
115 LoginContext loginContext = (LoginContext) httpRequest.getAttribute(LoginContext.LOGIN_CONTEXT_KEY);
117 if (loginContext == null) {
118 log.debug("Incoming request does not contain a login context, processing as first leg of request");
119 performAuthentication(inTransport, outTransport);
121 log.debug("Incoming request contains a login context, processing as second leg of request");
122 completeAuthenticationRequest(inTransport, outTransport);
127 * Creates a {@link LoginContext} an sends the request off to the AuthenticationManager to begin the process of
128 * authenticating the user.
130 * @param inTransport inbound message transport
131 * @param outTransport outbound message transport
133 * @throws ProfileException thrown if there is a problem creating the login context and transferring control to the
134 * authentication manager
136 protected void performAuthentication(HTTPInTransport inTransport, HTTPOutTransport outTransport)
137 throws ProfileException {
139 HttpServletRequest httpRequest = ((HttpServletRequestAdapter) inTransport).getWrappedRequest();
140 HttpServletResponse httpResponse = ((HttpServletResponseAdapter) outTransport).getWrappedResponse();
142 ShibbolethSSORequestContext requestContext = decodeRequest(inTransport, outTransport);
143 ShibbolethSSOLoginContext loginContext = requestContext.getLoginContext();
145 RelyingPartyConfiguration rpConfig = getRelyingPartyConfiguration(loginContext.getRelyingPartyId());
146 ProfileConfiguration ssoConfig = rpConfig.getProfileConfiguration(ShibbolethSSOConfiguration.PROFILE_ID);
147 if (ssoConfig == null) {
148 log.error("Shibboleth SSO profile is not configured for relying party " + loginContext.getRelyingPartyId());
149 throw new ProfileException("Shibboleth SSO profile is not configured for relying party "
150 + loginContext.getRelyingPartyId());
152 loginContext.getRequestedAuthenticationMethods().add(rpConfig.getDefaultAuthenticationMethod());
154 httpRequest.setAttribute(LoginContext.LOGIN_CONTEXT_KEY, loginContext);
157 RequestDispatcher dispatcher = httpRequest.getRequestDispatcher(authenticationManagerPath);
158 dispatcher.forward(httpRequest, httpResponse);
160 } catch (IOException ex) {
161 log.error("Error forwarding Shibboleth SSO request to AuthenticationManager", ex);
162 throw new ProfileException("Error forwarding Shibboleth SSO request to AuthenticationManager", ex);
163 } catch (ServletException ex) {
164 log.error("Error forwarding Shibboleth SSO request to AuthenticationManager", ex);
165 throw new ProfileException("Error forwarding Shibboleth SSO request to AuthenticationManager", ex);
170 * Decodes an incoming request and populates a created request context with the resultant information.
172 * @param inTransport inbound message transport
173 * @param outTransport outbound message transport
175 * @return the created request context
177 * @throws ProfileException throw if there is a problem decoding the request
179 protected ShibbolethSSORequestContext decodeRequest(HTTPInTransport inTransport, HTTPOutTransport outTransport)
180 throws ProfileException {
181 log.debug("Decoding message with decoder binding {}", getInboundBinding());
183 HttpServletRequest httpRequest = ((HttpServletRequestAdapter) inTransport).getWrappedRequest();
185 ShibbolethSSORequestContext requestContext = new ShibbolethSSORequestContext();
186 requestContext.setCommunicationProfileId(getProfileId());
188 requestContext.setMetadataProvider(getMetadataProvider());
189 requestContext.setSecurityPolicyResolver(getSecurityPolicyResolver());
191 requestContext.setCommunicationProfileId(ShibbolethSSOConfiguration.PROFILE_ID);
192 requestContext.setInboundMessageTransport(inTransport);
193 requestContext.setInboundSAMLProtocol(ShibbolethConstants.SHIB_SSO_PROFILE_URI);
194 requestContext.setPeerEntityRole(SPSSODescriptor.DEFAULT_ELEMENT_NAME);
196 requestContext.setOutboundMessageTransport(outTransport);
197 requestContext.setOutboundSAMLProtocol(SAMLConstants.SAML11P_NS);
199 SAMLMessageDecoder decoder = getMessageDecoders().get(getInboundBinding());
200 requestContext.setMessageDecoder(decoder);
202 decoder.decode(requestContext);
203 } catch (MessageDecodingException e) {
204 log.error("Error decoding Shibboleth SSO request", e);
205 throw new ProfileException("Error decoding Shibboleth SSO request", e);
206 } catch (SecurityException e) {
207 log.error("Shibboleth SSO request does not meet security requirements", e);
208 throw new ProfileException("Shibboleth SSO request does not meet security requirements", e);
211 ShibbolethSSOLoginContext loginContext = new ShibbolethSSOLoginContext();
212 loginContext.setRelyingParty(requestContext.getInboundMessageIssuer());
213 loginContext.setSpAssertionConsumerService(requestContext.getSpAssertionConsumerService());
214 loginContext.setSpTarget(requestContext.getRelayState());
215 loginContext.setAuthenticationEngineURL(authenticationManagerPath);
216 loginContext.setProfileHandlerURL(HttpHelper.getRequestUriWithoutContext(httpRequest));
217 requestContext.setLoginContext(loginContext);
219 return requestContext;
223 * Creates a response to the Shibboleth SSO and sends the user, with response in tow, back to the relying party
224 * after they've been authenticated.
226 * @param inTransport inbound message transport
227 * @param outTransport outbound message transport
229 * @throws ProfileException thrown if the response can not be created and sent back to the relying party
231 protected void completeAuthenticationRequest(HTTPInTransport inTransport, HTTPOutTransport outTransport)
232 throws ProfileException {
233 HttpServletRequest httpRequest = ((HttpServletRequestAdapter) inTransport).getWrappedRequest();
234 ShibbolethSSOLoginContext loginContext = (ShibbolethSSOLoginContext) httpRequest
235 .getAttribute(LoginContext.LOGIN_CONTEXT_KEY);
237 ShibbolethSSORequestContext requestContext = buildRequestContext(loginContext, inTransport, outTransport);
239 Response samlResponse;
241 if (loginContext.getAuthenticationFailure() != null) {
242 log.error("User authentication failed with the following error: {}", loginContext
243 .getAuthenticationFailure().toString());
244 requestContext.setFailureStatus(buildStatus(StatusCode.RESPONDER, null, "User failed authentication"));
245 throw new ProfileException("Authentication failure", loginContext.getAuthenticationFailure());
248 resolveAttributes(requestContext);
250 ArrayList<Statement> statements = new ArrayList<Statement>();
251 statements.add(buildAuthenticationStatement(requestContext));
252 if (requestContext.getProfileConfiguration().includeAttributeStatement()) {
253 AttributeStatement attributeStatement = buildAttributeStatement(requestContext,
254 "urn:oasis:names:tc:SAML:1.0:cm:bearer");
255 if (attributeStatement != null) {
256 requestContext.setRequestedAttributes(requestContext.getAttributes().keySet());
257 statements.add(attributeStatement);
261 samlResponse = buildResponse(requestContext, statements);
262 } catch (ProfileException e) {
263 samlResponse = buildErrorResponse(requestContext);
266 requestContext.setOutboundSAMLMessage(samlResponse);
267 requestContext.setOutboundSAMLMessageId(samlResponse.getID());
268 requestContext.setOutboundSAMLMessageIssueInstant(samlResponse.getIssueInstant());
269 encodeResponse(requestContext);
270 writeAuditLogEntry(requestContext);
274 * Creates an authentication request context from the current environmental information.
276 * @param loginContext current login context
277 * @param in inbound transport
278 * @param out outbount transport
280 * @return created authentication request context
282 * @throws ProfileException thrown if there is a problem creating the context
284 protected ShibbolethSSORequestContext buildRequestContext(ShibbolethSSOLoginContext loginContext,
285 HTTPInTransport in, HTTPOutTransport out) throws ProfileException {
286 ShibbolethSSORequestContext requestContext = new ShibbolethSSORequestContext();
287 requestContext.setCommunicationProfileId(getProfileId());
289 requestContext.setMessageDecoder(getMessageDecoders().get(getInboundBinding()));
291 requestContext.setLoginContext(loginContext);
292 requestContext.setRelayState(loginContext.getSpTarget());
294 requestContext.setInboundMessageTransport(in);
295 requestContext.setInboundSAMLProtocol(ShibbolethConstants.SHIB_SSO_PROFILE_URI);
297 requestContext.setOutboundMessageTransport(out);
298 requestContext.setOutboundSAMLProtocol(SAMLConstants.SAML20P_NS);
300 requestContext.setMetadataProvider(getMetadataProvider());
302 String relyingPartyId = loginContext.getRelyingPartyId();
303 requestContext.setPeerEntityId(relyingPartyId);
304 requestContext.setInboundMessageIssuer(relyingPartyId);
306 populateRequestContext(requestContext);
308 return requestContext;
312 protected void populateRelyingPartyInformation(BaseSAMLProfileRequestContext requestContext)
313 throws ProfileException {
314 super.populateRelyingPartyInformation(requestContext);
316 EntityDescriptor relyingPartyMetadata = requestContext.getPeerEntityMetadata();
317 if (relyingPartyMetadata != null) {
318 requestContext.setPeerEntityRole(SPSSODescriptor.DEFAULT_ELEMENT_NAME);
319 requestContext.setPeerEntityRoleMetadata(relyingPartyMetadata.getSPSSODescriptor(SAMLConstants.SAML11P_NS));
324 protected void populateAssertingPartyInformation(BaseSAMLProfileRequestContext requestContext)
325 throws ProfileException {
326 super.populateAssertingPartyInformation(requestContext);
328 EntityDescriptor localEntityDescriptor = requestContext.getLocalEntityMetadata();
329 if (localEntityDescriptor != null) {
330 requestContext.setLocalEntityRole(IDPSSODescriptor.DEFAULT_ELEMENT_NAME);
331 requestContext.setLocalEntityRoleMetadata(localEntityDescriptor
332 .getIDPSSODescriptor(SAMLConstants.SAML20P_NS));
337 protected void populateSAMLMessageInformation(BaseSAMLProfileRequestContext requestContext) throws ProfileException {
338 // nothing to do here
342 * Selects the appropriate endpoint for the relying party and stores it in the request context.
344 * @param requestContext current request context
346 * @return Endpoint selected from the information provided in the request context
348 protected Endpoint selectEndpoint(BaseSAMLProfileRequestContext requestContext) {
349 ShibbolethSSOLoginContext loginContext = ((ShibbolethSSORequestContext) requestContext).getLoginContext();
351 ShibbolethSSOEndpointSelector endpointSelector = new ShibbolethSSOEndpointSelector();
352 endpointSelector.setSpAssertionConsumerService(loginContext.getSpAssertionConsumerService());
353 endpointSelector.setEndpointType(AssertionConsumerService.DEFAULT_ELEMENT_NAME);
354 endpointSelector.setMetadataProvider(getMetadataProvider());
355 endpointSelector.setEntityMetadata(requestContext.getPeerEntityMetadata());
356 endpointSelector.setEntityRoleMetadata(requestContext.getPeerEntityRoleMetadata());
357 endpointSelector.setSamlRequest(requestContext.getInboundSAMLMessage());
358 endpointSelector.getSupportedIssuerBindings().addAll(getSupportedOutboundBindings());
360 Endpoint endpoint = endpointSelector.selectEndpoint();
361 if (endpoint == null && loginContext.getSpAssertionConsumerService() != null) {
362 endpoint = endpointBuilder.buildObject();
363 endpoint.setLocation(loginContext.getSpAssertionConsumerService());
364 endpoint.setBinding(getSupportedOutboundBindings().get(0));
365 log.warn("No endpoint available for relying party {}. Generating endpoint with ACS url {} and binding {}",
366 new Object[] { requestContext.getPeerEntityId(), endpoint.getLocation(), endpoint.getBinding() });
373 * Builds the authentication statement for the authenticated principal.
375 * @param requestContext current request context
377 * @return the created statement
379 * @throws ProfileException thrown if the authentication statement can not be created
381 protected AuthenticationStatement buildAuthenticationStatement(ShibbolethSSORequestContext requestContext)
382 throws ProfileException {
383 ShibbolethSSOLoginContext loginContext = requestContext.getLoginContext();
385 AuthenticationStatement statement = authnStatementBuilder.buildObject();
386 statement.setAuthenticationInstant(loginContext.getAuthenticationInstant());
387 statement.setAuthenticationMethod(loginContext.getAuthenticationMethod());
389 statement.setSubjectLocality(buildSubjectLocality(requestContext));
391 Subject statementSubject = buildSubject(requestContext, "urn:oasis:names:tc:SAML:1.0:cm:bearer");
392 statement.setSubject(statementSubject);
398 * Constructs the subject locality for the authentication statement.
400 * @param requestContext curent request context
402 * @return subject locality for the authentication statement
404 protected SubjectLocality buildSubjectLocality(ShibbolethSSORequestContext requestContext) {
405 SubjectLocality subjectLocality = subjectLocalityBuilder.buildObject();
407 HTTPInTransport inTransport = (HTTPInTransport) requestContext.getInboundMessageTransport();
408 subjectLocality.setIPAddress(inTransport.getPeerAddress());
410 return subjectLocality;
413 /** Represents the internal state of a Shibboleth SSO Request while it's being processed by the IdP. */
414 public class ShibbolethSSORequestContext extends
415 BaseSAML1ProfileRequestContext<Request, Response, ShibbolethSSOConfiguration> {
417 /** SP-provide assertion consumer service URL. */
418 private String spAssertionConsumerService;
420 /** Current login context. */
421 private ShibbolethSSOLoginContext loginContext;
424 * Gets the current login context.
426 * @return current login context
428 public ShibbolethSSOLoginContext getLoginContext() {
433 * Sets the current login context.
435 * @param context current login context
437 public void setLoginContext(ShibbolethSSOLoginContext context) {
438 loginContext = context;
442 * Gets the SP-provided assertion consumer service URL.
444 * @return SP-provided assertion consumer service URL
446 public String getSpAssertionConsumerService() {
447 return spAssertionConsumerService;
451 * Sets the SP-provided assertion consumer service URL.
453 * @param acs SP-provided assertion consumer service URL
455 public void setSpAssertionConsumerService(String acs) {
456 spAssertionConsumerService = acs;