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.saml2;
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.HttpSession;
27 import org.apache.log4j.Logger;
28 import org.opensaml.common.SAMLObjectBuilder;
29 import org.opensaml.common.binding.decoding.SAMLMessageDecoder;
30 import org.opensaml.common.xml.SAMLConstants;
31 import org.opensaml.saml2.binding.AuthnResponseEndpointSelector;
32 import org.opensaml.saml2.core.AuthnContext;
33 import org.opensaml.saml2.core.AuthnContextClassRef;
34 import org.opensaml.saml2.core.AuthnContextDeclRef;
35 import org.opensaml.saml2.core.AuthnRequest;
36 import org.opensaml.saml2.core.AuthnStatement;
37 import org.opensaml.saml2.core.RequestedAuthnContext;
38 import org.opensaml.saml2.core.Response;
39 import org.opensaml.saml2.core.Statement;
40 import org.opensaml.saml2.core.StatusCode;
41 import org.opensaml.saml2.core.SubjectLocality;
42 import org.opensaml.saml2.metadata.AssertionConsumerService;
43 import org.opensaml.saml2.metadata.Endpoint;
44 import org.opensaml.saml2.metadata.EntityDescriptor;
45 import org.opensaml.saml2.metadata.IDPSSODescriptor;
46 import org.opensaml.saml2.metadata.SPSSODescriptor;
47 import org.opensaml.saml2.metadata.provider.MetadataProvider;
48 import org.opensaml.saml2.metadata.provider.MetadataProviderException;
49 import org.opensaml.ws.message.decoder.MessageDecodingException;
50 import org.opensaml.ws.security.SecurityPolicyException;
51 import org.opensaml.ws.transport.http.HTTPInTransport;
52 import org.opensaml.ws.transport.http.HTTPOutTransport;
53 import org.opensaml.ws.transport.http.HttpServletRequestAdapter;
54 import org.opensaml.ws.transport.http.HttpServletResponseAdapter;
55 import org.opensaml.xml.io.MarshallingException;
56 import org.opensaml.xml.io.UnmarshallingException;
58 import edu.internet2.middleware.shibboleth.common.profile.ProfileException;
59 import edu.internet2.middleware.shibboleth.common.relyingparty.ProfileConfiguration;
60 import edu.internet2.middleware.shibboleth.common.relyingparty.RelyingPartyConfiguration;
61 import edu.internet2.middleware.shibboleth.common.relyingparty.provider.saml2.SSOConfiguration;
62 import edu.internet2.middleware.shibboleth.common.util.HttpHelper;
63 import edu.internet2.middleware.shibboleth.idp.authn.LoginContext;
64 import edu.internet2.middleware.shibboleth.idp.authn.Saml2LoginContext;
66 /** SAML 2.0 SSO request profile handler. */
67 public class SSOProfileHandler extends AbstractSAML2ProfileHandler {
70 private final Logger log = Logger.getLogger(SSOProfileHandler.class);
72 /** Builder of AuthnStatement objects. */
73 private SAMLObjectBuilder<AuthnStatement> authnStatementBuilder;
75 /** Builder of AuthnContext objects. */
76 private SAMLObjectBuilder<AuthnContext> authnContextBuilder;
78 /** Builder of AuthnContextClassRef objects. */
79 private SAMLObjectBuilder<AuthnContextClassRef> authnContextClassRefBuilder;
81 /** Builder of AuthnContextDeclRef objects. */
82 private SAMLObjectBuilder<AuthnContextDeclRef> authnContextDeclRefBuilder;
84 /** Builder of SubjectLocality objects. */
85 private SAMLObjectBuilder<SubjectLocality> subjectLocalityBuilder;
87 /** URL of the authentication manager servlet. */
88 private String authenticationManagerPath;
90 /** URI of request decoder. */
91 private String decodingBinding;
96 * @param authnManagerPath path to the authentication manager servlet
98 @SuppressWarnings("unchecked")
99 public SSOProfileHandler(String authnManagerPath) {
102 authenticationManagerPath = authnManagerPath;
104 authnStatementBuilder = (SAMLObjectBuilder<AuthnStatement>) getBuilderFactory().getBuilder(
105 AuthnStatement.DEFAULT_ELEMENT_NAME);
106 authnContextBuilder = (SAMLObjectBuilder<AuthnContext>) getBuilderFactory().getBuilder(
107 AuthnContext.DEFAULT_ELEMENT_NAME);
108 authnContextClassRefBuilder = (SAMLObjectBuilder<AuthnContextClassRef>) getBuilderFactory().getBuilder(
109 AuthnContextClassRef.DEFAULT_ELEMENT_NAME);
110 authnContextDeclRefBuilder = (SAMLObjectBuilder<AuthnContextDeclRef>) getBuilderFactory().getBuilder(
111 AuthnContextDeclRef.DEFAULT_ELEMENT_NAME);
112 subjectLocalityBuilder = (SAMLObjectBuilder<SubjectLocality>) getBuilderFactory().getBuilder(
113 SubjectLocality.DEFAULT_ELEMENT_NAME);
117 public String getProfileId() {
118 return "urn:mace:shibboleth:2.0:idp:profiles:saml2:request:sso";
122 public void processRequest(HTTPInTransport inTransport, HTTPOutTransport outTransport) throws ProfileException {
123 HttpServletRequest servletRequest = ((HttpServletRequestAdapter) inTransport).getWrappedRequest();
124 HttpSession httpSession = servletRequest.getSession();
126 if (httpSession.getAttribute(LoginContext.LOGIN_CONTEXT_KEY) == null) {
127 performAuthentication(inTransport, outTransport);
129 completeAuthenticationRequest(inTransport, outTransport);
134 * Creates a {@link Saml2LoginContext} an sends the request off to the AuthenticationManager to begin the process of
135 * authenticating the user.
137 * @param inTransport inbound request transport
138 * @param outTransport outbound response transport
140 * @throws ProfileException thrown if there is a problem creating the login context and transferring control to the
141 * authentication manager
143 protected void performAuthentication(HTTPInTransport inTransport, HTTPOutTransport outTransport)
144 throws ProfileException {
145 HttpServletRequest servletRequest = ((HttpServletRequestAdapter) inTransport).getWrappedRequest();
148 SSORequestContext requestContext = decodeRequest(inTransport, outTransport);
150 String relyingPartyId = requestContext.getInboundMessageIssuer();
151 RelyingPartyConfiguration rpConfig = getRelyingPartyConfiguration(relyingPartyId);
152 ProfileConfiguration ssoConfig = rpConfig.getProfileConfiguration(SSOConfiguration.PROFILE_ID);
153 if (ssoConfig == null) {
154 log.error("SAML 2 SSO profile is not configured for relying party " + requestContext.getInboundMessageIssuer());
155 throw new ProfileException("SAML 2 SSO profile is not configured for relying party "
156 + requestContext.getInboundMessageIssuer());
159 Saml2LoginContext loginContext = new Saml2LoginContext(relyingPartyId, requestContext.getRelayState(),
160 requestContext.getInboundSAMLMessage());
161 loginContext.setAuthenticationEngineURL(authenticationManagerPath);
162 loginContext.setProfileHandlerURL(HttpHelper.getRequestUriWithoutContext(servletRequest));
163 if (loginContext.getRequestedAuthenticationMethods().size() == 0) {
164 loginContext.getRequestedAuthenticationMethods().add(rpConfig.getDefaultAuthenticationMethod());
167 HttpSession httpSession = servletRequest.getSession();
168 httpSession.setAttribute(Saml2LoginContext.LOGIN_CONTEXT_KEY, loginContext);
169 RequestDispatcher dispatcher = servletRequest.getRequestDispatcher(authenticationManagerPath);
170 dispatcher.forward(servletRequest, ((HttpServletResponseAdapter) outTransport).getWrappedResponse());
171 } catch (MarshallingException e) {
172 log.error("Unable to marshall authentication request context");
173 throw new ProfileException("Unable to marshall authentication request context", e);
174 } catch (IOException ex) {
175 log.error("Error forwarding SAML 2 AuthnRequest to AuthenticationManager", ex);
176 throw new ProfileException("Error forwarding SAML 2 AuthnRequest to AuthenticationManager", ex);
177 } catch (ServletException ex) {
178 log.error("Error forwarding SAML 2 AuthnRequest to AuthenticationManager", ex);
179 throw new ProfileException("Error forwarding SAML 2 AuthnRequest to AuthenticationManager", ex);
184 * Creates a response to the {@link AuthnRequest} and sends the user, with response in tow, back to the relying
185 * party after they've been authenticated.
187 * @param inTransport inbound message transport
188 * @param outTransport outbound message transport
190 * @throws ProfileException thrown if the response can not be created and sent back to the relying party
192 protected void completeAuthenticationRequest(HTTPInTransport inTransport, HTTPOutTransport outTransport)
193 throws ProfileException {
194 HttpServletRequest servletRequest = ((HttpServletRequestAdapter) inTransport).getWrappedRequest();
195 HttpSession httpSession = servletRequest.getSession();
197 Saml2LoginContext loginContext = (Saml2LoginContext) httpSession.getAttribute(LoginContext.LOGIN_CONTEXT_KEY);
198 httpSession.removeAttribute(LoginContext.LOGIN_CONTEXT_KEY);
200 SSORequestContext requestContext = buildRequestContext(loginContext, inTransport, outTransport);
202 checkSamlVersion(requestContext);
204 Response samlResponse;
206 if (loginContext.getPrincipalName() == null) {
207 log.error("User's login context did not contain a principal, user considered unauthenticiated.");
209 .setFailureStatus(buildStatus(StatusCode.RESPONDER_URI, StatusCode.AUTHN_FAILED_URI, null));
210 throw new ProfileException("User failed authentication");
213 resolveAttributes(requestContext);
215 ArrayList<Statement> statements = new ArrayList<Statement>();
216 statements.add(buildAuthnStatement(requestContext));
217 if (requestContext.getProfileConfiguration().includeAttributeStatement()) {
218 requestContext.setRequestedAttributes(requestContext.getPrincipalAttributes().keySet());
219 statements.add(buildAttributeStatement(requestContext));
222 samlResponse = buildResponse(requestContext, "urn:oasis:names:tc:SAML:2.0:cm:bearer", statements);
223 } catch (ProfileException e) {
224 samlResponse = buildErrorResponse(requestContext);
227 requestContext.setOutboundSAMLMessage(samlResponse);
228 requestContext.setOutboundSAMLMessageId(samlResponse.getID());
229 requestContext.setOutboundSAMLMessageIssueInstant(samlResponse.getIssueInstant());
230 encodeResponse(requestContext);
231 writeAuditLogEntry(requestContext);
235 * Decodes an incoming request and stores the information in a created request context.
237 * @param inTransport inbound transport
238 * @param outTransport outbound transport
240 * @return request context with decoded information
242 * @throws ProfileException thrown if the incomming message failed decoding
244 protected SSORequestContext decodeRequest(HTTPInTransport inTransport, HTTPOutTransport outTransport)
245 throws ProfileException {
246 if (log.isDebugEnabled()) {
247 log.debug("Decoding message with decoder binding " + decodingBinding);
250 SSORequestContext requestContext = new SSORequestContext();
251 requestContext.setMetadataProvider(getMetadataProvider());
253 requestContext.setInboundMessageTransport(inTransport);
254 requestContext.setInboundSAMLProtocol(SAMLConstants.SAML20P_NS);
255 requestContext.setPeerEntityRole(SPSSODescriptor.DEFAULT_ELEMENT_NAME);
257 requestContext.setOutboundMessageTransport(outTransport);
258 requestContext.setOutboundSAMLProtocol(SAMLConstants.SAML20P_NS);
261 SAMLMessageDecoder decoder = getMessageDecoders().get(getInboundBinding());
262 requestContext.setMessageDecoder(decoder);
263 decoder.decode(requestContext);
264 return requestContext;
265 } catch (MessageDecodingException e) {
266 log.error("Error decoding authentication request message", e);
267 throw new ProfileException("Error decoding authentication request message", e);
268 } catch (SecurityPolicyException e) {
269 log.error("Message did not meet security policy requirements", e);
270 throw new ProfileException("Message did not meet security policy requirements", e);
275 * Creates an authentication request context from the current environmental information.
277 * @param loginContext current login context
278 * @param in inbound transport
279 * @param out outbount transport
281 * @return created authentication request context
283 * @throws ProfileException thrown if there is a problem creating the context
285 protected SSORequestContext buildRequestContext(Saml2LoginContext loginContext, HTTPInTransport in,
286 HTTPOutTransport out) throws ProfileException {
287 SSORequestContext requestContext = new SSORequestContext();
290 requestContext.setMessageDecoder(getMessageDecoders().get(getInboundBinding()));
292 requestContext.setLoginContext(loginContext);
293 requestContext.setPrincipalName(loginContext.getPrincipalName());
294 requestContext.setPrincipalAuthenticationMethod(loginContext.getAuthenticationMethod());
295 requestContext.setUserSession(getUserSession(in));
296 requestContext.setRelayState(loginContext.getRelayState());
298 requestContext.setInboundMessageTransport(in);
299 requestContext.setInboundSAMLProtocol(SAMLConstants.SAML20P_NS);
300 requestContext.setInboundMessage(loginContext.getAuthenticationRequest());
301 requestContext.setInboundSAMLMessage(loginContext.getAuthenticationRequest());
302 requestContext.setInboundSAMLMessageId(loginContext.getAuthenticationRequest().getID());
304 MetadataProvider metadataProvider = getMetadataProvider();
305 requestContext.setMetadataProvider(metadataProvider);
307 String relyingPartyId = loginContext.getRelyingPartyId();
308 requestContext.setInboundMessageIssuer(relyingPartyId);
309 EntityDescriptor relyingPartyMetadata = metadataProvider.getEntityDescriptor(relyingPartyId);
310 requestContext.setPeerEntityMetadata(relyingPartyMetadata);
311 requestContext.setPeerEntityRole(SPSSODescriptor.DEFAULT_ELEMENT_NAME);
312 requestContext.setPeerEntityRoleMetadata(relyingPartyMetadata.getSPSSODescriptor(SAMLConstants.SAML20P_NS));
313 RelyingPartyConfiguration rpConfig = getRelyingPartyConfiguration(relyingPartyId);
314 requestContext.setRelyingPartyConfiguration(rpConfig);
315 requestContext.setPeerEntityEndpoint(selectEndpoint(requestContext));
317 String assertingPartyId = rpConfig.getProviderId();
318 requestContext.setLocalEntityId(assertingPartyId);
319 EntityDescriptor assertingPartyMetadata = metadataProvider.getEntityDescriptor(assertingPartyId);
320 requestContext.setLocalEntityMetadata(assertingPartyMetadata);
321 requestContext.setLocalEntityRole(IDPSSODescriptor.DEFAULT_ELEMENT_NAME);
322 requestContext.setLocalEntityRoleMetadata(assertingPartyMetadata
323 .getIDPSSODescriptor(SAMLConstants.SAML20P_NS));
325 requestContext.setOutboundMessageTransport(out);
326 requestContext.setOutboundSAMLProtocol(SAMLConstants.SAML20P_NS);
327 SSOConfiguration profileConfig = (SSOConfiguration) rpConfig
328 .getProfileConfiguration(SSOConfiguration.PROFILE_ID);
329 requestContext.setProfileConfiguration(profileConfig);
330 requestContext.setOutboundMessageArtifactType(profileConfig.getOutboundArtifactType());
331 if (profileConfig.getSigningCredential() != null) {
332 requestContext.setOutboundSAMLMessageSigningCredential(profileConfig.getSigningCredential());
333 } else if (rpConfig.getDefaultSigningCredential() != null) {
334 requestContext.setOutboundSAMLMessageSigningCredential(rpConfig.getDefaultSigningCredential());
337 return requestContext;
338 } catch (UnmarshallingException e) {
339 log.error("Unable to unmarshall authentication request context");
340 requestContext.setFailureStatus(buildStatus(StatusCode.RESPONDER_URI, null,
341 "Error recovering request state"));
342 throw new ProfileException("Error recovering request state", e);
343 } catch (MetadataProviderException e) {
344 log.error("Unable to locate metadata for asserting or relying party");
346 .setFailureStatus(buildStatus(StatusCode.RESPONDER_URI, null, "Error locating party metadata"));
347 throw new ProfileException("Error locating party metadata");
352 * Creates an authentication statement for the current request.
354 * @param requestContext current request context
356 * @return constructed authentication statement
358 protected AuthnStatement buildAuthnStatement(SSORequestContext requestContext) {
359 Saml2LoginContext loginContext = requestContext.getLoginContext();
361 AuthnContext authnContext = buildAuthnContext(requestContext);
363 AuthnStatement statement = authnStatementBuilder.buildObject();
364 statement.setAuthnContext(authnContext);
365 statement.setAuthnInstant(loginContext.getAuthenticationInstant());
368 statement.setSessionIndex(null);
370 if (loginContext.getAuthenticationDuration() > 0) {
371 statement.setSessionNotOnOrAfter(loginContext.getAuthenticationInstant().plus(
372 loginContext.getAuthenticationDuration()));
375 statement.setSubjectLocality(buildSubjectLocality(requestContext));
381 * Creates an {@link AuthnContext} for a succesful authentication request.
383 * @param requestContext current request
385 * @return the built authn context
387 protected AuthnContext buildAuthnContext(SSORequestContext requestContext) {
388 AuthnContext authnContext = authnContextBuilder.buildObject();
390 Saml2LoginContext loginContext = requestContext.getLoginContext();
391 AuthnRequest authnRequest = requestContext.getInboundSAMLMessage();
392 RequestedAuthnContext requestedAuthnContext = authnRequest.getRequestedAuthnContext();
393 if (requestedAuthnContext != null) {
394 if (requestedAuthnContext.getAuthnContextClassRefs() != null) {
395 for (AuthnContextClassRef classRef : requestedAuthnContext.getAuthnContextClassRefs()) {
396 if (classRef.getAuthnContextClassRef().equals(loginContext.getAuthenticationMethod())) {
397 AuthnContextClassRef ref = authnContextClassRefBuilder.buildObject();
398 ref.setAuthnContextClassRef(loginContext.getAuthenticationMethod());
399 authnContext.setAuthnContextClassRef(ref);
402 } else if (requestedAuthnContext.getAuthnContextDeclRefs() != null) {
403 for (AuthnContextDeclRef declRef : requestedAuthnContext.getAuthnContextDeclRefs()) {
404 if (declRef.getAuthnContextDeclRef().equals(loginContext.getAuthenticationMethod())) {
405 AuthnContextDeclRef ref = authnContextDeclRefBuilder.buildObject();
406 ref.setAuthnContextDeclRef(loginContext.getAuthenticationMethod());
407 authnContext.setAuthnContextDeclRef(ref);
412 AuthnContextDeclRef ref = authnContextDeclRefBuilder.buildObject();
413 ref.setAuthnContextDeclRef(loginContext.getAuthenticationMethod());
414 authnContext.setAuthnContextDeclRef(ref);
421 * Constructs the subject locality for the authentication statement.
423 * @param requestContext curent request context
425 * @return subject locality for the authentication statement
427 protected SubjectLocality buildSubjectLocality(SSORequestContext requestContext) {
428 HTTPInTransport transport = (HTTPInTransport) requestContext.getInboundMessageTransport();
429 SubjectLocality subjectLocality = subjectLocalityBuilder.buildObject();
430 subjectLocality.setAddress(transport.getPeerAddress());
431 subjectLocality.setDNSName(transport.getPeerDomainName());
433 return subjectLocality;
437 * Selects the appropriate endpoint for the relying party and stores it in the request context.
439 * @param requestContext current request context
441 * @return Endpoint selected from the information provided in the request context
443 protected Endpoint selectEndpoint(SSORequestContext requestContext) {
444 AuthnResponseEndpointSelector endpointSelector = new AuthnResponseEndpointSelector();
445 endpointSelector.setEndpointType(AssertionConsumerService.DEFAULT_ELEMENT_NAME);
446 endpointSelector.setMetadataProvider(getMetadataProvider());
447 endpointSelector.setEntityMetadata(requestContext.getPeerEntityMetadata());
448 endpointSelector.setEntityRoleMetadata(requestContext.getPeerEntityRoleMetadata());
449 endpointSelector.setSamlRequest(requestContext.getInboundSAMLMessage());
450 endpointSelector.getSupportedIssuerBindings().addAll(getSupportedOutboundBindings());
451 return endpointSelector.selectEndpoint();
454 /** Represents the internal state of a SAML 2.0 SSO Request while it's being processed by the IdP. */
455 protected class SSORequestContext extends BaseSAML2ProfileRequestContext<AuthnRequest, Response, SSOConfiguration> {
457 /** Current login context. */
458 private Saml2LoginContext loginContext;
461 * Gets the current login context.
463 * @return current login context
465 public Saml2LoginContext getLoginContext() {
470 * Sets the current login context.
472 * @param context current login context
474 public void setLoginContext(Saml2LoginContext context) {
475 loginContext = context;