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;
26 import javax.servlet.http.HttpSession;
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.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.saml2.metadata.provider.MetadataProvider;
44 import org.opensaml.saml2.metadata.provider.MetadataProviderException;
45 import org.opensaml.ws.message.decoder.MessageDecodingException;
46 import org.opensaml.ws.transport.http.HTTPInTransport;
47 import org.opensaml.ws.transport.http.HTTPOutTransport;
48 import org.opensaml.ws.transport.http.HttpServletRequestAdapter;
49 import org.opensaml.ws.transport.http.HttpServletResponseAdapter;
50 import org.opensaml.xml.security.SecurityException;
51 import org.opensaml.xml.util.DatatypeHelper;
52 import org.slf4j.Logger;
53 import org.slf4j.LoggerFactory;
55 import edu.internet2.middleware.shibboleth.common.ShibbolethConstants;
56 import edu.internet2.middleware.shibboleth.common.profile.ProfileException;
57 import edu.internet2.middleware.shibboleth.common.relyingparty.ProfileConfiguration;
58 import edu.internet2.middleware.shibboleth.common.relyingparty.RelyingPartyConfiguration;
59 import edu.internet2.middleware.shibboleth.common.relyingparty.provider.saml1.ShibbolethSSOConfiguration;
60 import edu.internet2.middleware.shibboleth.common.util.HttpHelper;
61 import edu.internet2.middleware.shibboleth.idp.authn.LoginContext;
62 import edu.internet2.middleware.shibboleth.idp.authn.ShibbolethSSOLoginContext;
64 /** Shibboleth SSO request profile handler. */
65 public class ShibbolethSSOProfileHandler extends AbstractSAML1ProfileHandler {
68 private final Logger log = LoggerFactory.getLogger(ShibbolethSSOProfileHandler.class);
70 /** Builder of AuthenticationStatement objects. */
71 private SAMLObjectBuilder<AuthenticationStatement> authnStatementBuilder;
73 /** Builder of SubjectLocality objects. */
74 private SAMLObjectBuilder<SubjectLocality> subjectLocalityBuilder;
76 /** URL of the authentication manager servlet. */
77 private String authenticationManagerPath;
82 * @param authnManagerPath path to the authentication manager servlet
84 * @throws IllegalArgumentException thrown if either the authentication manager path or encoding binding URI are
87 public ShibbolethSSOProfileHandler(String authnManagerPath) {
88 if (DatatypeHelper.isEmpty(authnManagerPath)) {
89 throw new IllegalArgumentException("Authentication manager path may not be null");
91 authenticationManagerPath = authnManagerPath;
93 authnStatementBuilder = (SAMLObjectBuilder<AuthenticationStatement>) getBuilderFactory().getBuilder(
94 AuthenticationStatement.DEFAULT_ELEMENT_NAME);
96 subjectLocalityBuilder = (SAMLObjectBuilder<SubjectLocality>) getBuilderFactory().getBuilder(
97 SubjectLocality.DEFAULT_ELEMENT_NAME);
101 public String getProfileId() {
102 return "urn:mace:shibboleth:2.0:idp:profiles:shibboleth:request:sso";
106 public void processRequest(HTTPInTransport inTransport, HTTPOutTransport outTransport) throws ProfileException {
107 log.debug("Processing incomming request");
109 HttpServletRequest httpRequest = ((HttpServletRequestAdapter) inTransport).getWrappedRequest();
110 HttpSession httpSession = httpRequest.getSession();
112 if (httpSession.getAttribute(LoginContext.LOGIN_CONTEXT_KEY) == null) {
113 log.debug("User session does not contain a login context, processing as first leg of request");
114 performAuthentication(inTransport, outTransport);
116 log.debug("User session contains a login context, processing as second leg of request");
117 completeAuthenticationRequest(inTransport, outTransport);
122 * Creates a {@link LoginContext} an sends the request off to the AuthenticationManager to begin the process of
123 * authenticating the user.
125 * @param inTransport inbound message transport
126 * @param outTransport outbound message transport
128 * @throws ProfileException thrown if there is a problem creating the login context and transferring control to the
129 * authentication manager
131 protected void performAuthentication(HTTPInTransport inTransport, HTTPOutTransport outTransport)
132 throws ProfileException {
134 HttpServletRequest httpRequest = ((HttpServletRequestAdapter) inTransport).getWrappedRequest();
135 HttpServletResponse httpResponse = ((HttpServletResponseAdapter) outTransport).getWrappedResponse();
136 HttpSession httpSession = httpRequest.getSession(true);
138 ShibbolethSSORequestContext requestContext = decodeRequest(inTransport, outTransport);
139 ShibbolethSSOLoginContext loginContext = requestContext.getLoginContext();
141 RelyingPartyConfiguration rpConfig = getRelyingPartyConfiguration(loginContext.getRelyingPartyId());
142 ProfileConfiguration ssoConfig = rpConfig.getProfileConfiguration(ShibbolethSSOConfiguration.PROFILE_ID);
143 if (ssoConfig == null) {
144 log.error("Shibboleth SSO profile is not configured for relying party " + loginContext.getRelyingPartyId());
145 throw new ProfileException("Shibboleth SSO profile is not configured for relying party "
146 + loginContext.getRelyingPartyId());
148 loginContext.getRequestedAuthenticationMethods().add(rpConfig.getDefaultAuthenticationMethod());
150 httpSession.setAttribute(LoginContext.LOGIN_CONTEXT_KEY, loginContext);
153 RequestDispatcher dispatcher = httpRequest.getRequestDispatcher(authenticationManagerPath);
154 dispatcher.forward(httpRequest, httpResponse);
156 } catch (IOException ex) {
157 log.error("Error forwarding Shibboleth SSO request to AuthenticationManager", ex);
158 throw new ProfileException("Error forwarding Shibboleth SSO request to AuthenticationManager", ex);
159 } catch (ServletException ex) {
160 log.error("Error forwarding Shibboleth SSO request to AuthenticationManager", ex);
161 throw new ProfileException("Error forwarding Shibboleth SSO request to AuthenticationManager", ex);
166 * Decodes an incoming request and populates a created request context with the resultant information.
168 * @param inTransport inbound message transport
169 * @param outTransport outbound message transport
171 * @return the created request context
173 * @throws ProfileException throw if there is a problem decoding the request
175 protected ShibbolethSSORequestContext decodeRequest(HTTPInTransport inTransport, HTTPOutTransport outTransport)
176 throws ProfileException {
177 HttpServletRequest httpRequest = ((HttpServletRequestAdapter) inTransport).getWrappedRequest();
179 ShibbolethSSORequestContext requestContext = new ShibbolethSSORequestContext();
180 requestContext.setMetadataProvider(getMetadataProvider());
181 requestContext.setSecurityPolicyResolver(getSecurityPolicyResolver());
183 requestContext.setCommunicationProfileId(ShibbolethSSOConfiguration.PROFILE_ID);
184 requestContext.setInboundMessageTransport(inTransport);
185 requestContext.setInboundSAMLProtocol(ShibbolethConstants.SHIB_SSO_PROFILE_URI);
186 requestContext.setPeerEntityRole(SPSSODescriptor.DEFAULT_ELEMENT_NAME);
188 requestContext.setOutboundMessageTransport(outTransport);
189 requestContext.setOutboundSAMLProtocol(SAMLConstants.SAML11P_NS);
191 SAMLMessageDecoder decoder = getMessageDecoders().get(getInboundBinding());
192 requestContext.setMessageDecoder(decoder);
194 decoder.decode(requestContext);
195 } catch (MessageDecodingException e) {
196 log.error("Error decoding Shibboleth SSO request", e);
197 throw new ProfileException("Error decoding Shibboleth SSO request", e);
198 } catch (SecurityException e) {
199 log.error("Shibboleth SSO request does not meet security requirements", e);
200 throw new ProfileException("Shibboleth SSO request does not meet security requirements", e);
203 ShibbolethSSOLoginContext loginContext = new ShibbolethSSOLoginContext();
204 loginContext.setRelyingParty(requestContext.getInboundMessageIssuer());
205 loginContext.setSpAssertionConsumerService(requestContext.getSpAssertionConsumerService());
206 loginContext.setSpTarget(requestContext.getRelayState());
207 loginContext.setAuthenticationEngineURL(authenticationManagerPath);
208 loginContext.setProfileHandlerURL(HttpHelper.getRequestUriWithoutContext(httpRequest));
210 requestContext.setLoginContext(loginContext);
212 return requestContext;
216 * Creates a response to the Shibboleth SSO and sends the user, with response in tow, back to the relying party
217 * after they've been authenticated.
219 * @param inTransport inbound message transport
220 * @param outTransport outbound message transport
222 * @throws ProfileException thrown if the response can not be created and sent back to the relying party
224 protected void completeAuthenticationRequest(HTTPInTransport inTransport, HTTPOutTransport outTransport)
225 throws ProfileException {
226 HttpServletRequest httpRequest = ((HttpServletRequestAdapter) inTransport).getWrappedRequest();
227 HttpSession httpSession = httpRequest.getSession(true);
229 ShibbolethSSOLoginContext loginContext = (ShibbolethSSOLoginContext) httpSession
230 .getAttribute(LoginContext.LOGIN_CONTEXT_KEY);
231 httpSession.removeAttribute(LoginContext.LOGIN_CONTEXT_KEY);
233 ShibbolethSSORequestContext requestContext = buildRequestContext(loginContext, inTransport, outTransport);
235 Response samlResponse;
237 if (loginContext.getPrincipalName() == null) {
238 requestContext.setFailureStatus(buildStatus(StatusCode.RESPONDER, null, "User failed authentication"));
239 throw new ProfileException("User failed authentication");
242 resolveAttributes(requestContext);
244 ArrayList<Statement> statements = new ArrayList<Statement>();
245 statements.add(buildAuthenticationStatement(requestContext));
246 if (requestContext.getProfileConfiguration().includeAttributeStatement()) {
247 requestContext.setRequestedAttributes(requestContext.getPrincipalAttributes().keySet());
248 statements.add(buildAttributeStatement(requestContext, "urn:oasis:names:tc:SAML:1.0:cm:bearer"));
251 samlResponse = buildResponse(requestContext, statements);
252 } catch (ProfileException e) {
253 samlResponse = buildErrorResponse(requestContext);
256 requestContext.setOutboundSAMLMessage(samlResponse);
257 requestContext.setOutboundSAMLMessageId(samlResponse.getID());
258 requestContext.setOutboundSAMLMessageIssueInstant(samlResponse.getIssueInstant());
259 encodeResponse(requestContext);
260 writeAuditLogEntry(requestContext);
264 * Creates an authentication request context from the current environmental information.
266 * @param loginContext current login context
267 * @param in inbound transport
268 * @param out outbount transport
270 * @return created authentication request context
272 * @throws ProfileException thrown if there is a problem creating the context
274 protected ShibbolethSSORequestContext buildRequestContext(ShibbolethSSOLoginContext loginContext,
275 HTTPInTransport in, HTTPOutTransport out) throws ProfileException {
276 ShibbolethSSORequestContext requestContext = new ShibbolethSSORequestContext();
279 requestContext.setMessageDecoder(getMessageDecoders().get(getInboundBinding()));
281 requestContext.setLoginContext(loginContext);
282 requestContext.setPrincipalName(loginContext.getPrincipalName());
283 requestContext.setPrincipalAuthenticationMethod(loginContext.getAuthenticationMethod());
284 requestContext.setUserSession(getUserSession(in));
285 requestContext.setRelayState(loginContext.getSpTarget());
287 requestContext.setInboundMessageTransport(in);
288 requestContext.setInboundSAMLProtocol(ShibbolethConstants.SHIB_SSO_PROFILE_URI);
290 MetadataProvider metadataProvider = getMetadataProvider();
291 requestContext.setMetadataProvider(metadataProvider);
293 String relyingPartyId = loginContext.getRelyingPartyId();
294 requestContext.setInboundMessageIssuer(relyingPartyId);
295 EntityDescriptor relyingPartyMetadata = metadataProvider.getEntityDescriptor(relyingPartyId);
296 requestContext.setPeerEntityMetadata(relyingPartyMetadata);
297 requestContext.setPeerEntityRole(SPSSODescriptor.DEFAULT_ELEMENT_NAME);
298 requestContext.setPeerEntityRoleMetadata(relyingPartyMetadata.getSPSSODescriptor(SAMLConstants.SAML11P_NS));
299 RelyingPartyConfiguration rpConfig = getRelyingPartyConfiguration(relyingPartyId);
300 requestContext.setRelyingPartyConfiguration(rpConfig);
301 requestContext.setPeerEntityEndpoint(selectEndpoint(requestContext));
303 String assertingPartyId = rpConfig.getProviderId();
304 requestContext.setLocalEntityId(assertingPartyId);
305 EntityDescriptor assertingPartyMetadata = metadataProvider.getEntityDescriptor(assertingPartyId);
306 requestContext.setLocalEntityMetadata(assertingPartyMetadata);
307 requestContext.setLocalEntityRole(IDPSSODescriptor.DEFAULT_ELEMENT_NAME);
308 requestContext.setLocalEntityRoleMetadata(assertingPartyMetadata
309 .getIDPSSODescriptor(SAMLConstants.SAML20P_NS));
311 requestContext.setOutboundMessageTransport(out);
312 requestContext.setOutboundSAMLProtocol(SAMLConstants.SAML20P_NS);
313 ShibbolethSSOConfiguration profileConfig = (ShibbolethSSOConfiguration) rpConfig
314 .getProfileConfiguration(ShibbolethSSOConfiguration.PROFILE_ID);
315 requestContext.setProfileConfiguration(profileConfig);
316 requestContext.setOutboundMessageArtifactType(profileConfig.getOutboundArtifactType());
317 if (profileConfig.getSigningCredential() != null) {
318 requestContext.setOutboundSAMLMessageSigningCredential(profileConfig.getSigningCredential());
319 } else if (rpConfig.getDefaultSigningCredential() != null) {
320 requestContext.setOutboundSAMLMessageSigningCredential(rpConfig.getDefaultSigningCredential());
323 return requestContext;
324 } catch (MetadataProviderException e) {
325 log.error("Unable to locate metadata for asserting or relying party");
326 requestContext.setFailureStatus(buildStatus(StatusCode.RESPONDER, null, "Error locating party metadata"));
327 throw new ProfileException("Error locating party metadata");
332 * Selects the appropriate endpoint for the relying party and stores it in the request context.
334 * @param requestContext current request context
336 * @return Endpoint selected from the information provided in the request context
338 protected Endpoint selectEndpoint(ShibbolethSSORequestContext requestContext) {
339 ShibbolethSSOLoginContext loginContext = requestContext.getLoginContext();
341 ShibbolethSSOEndpointSelector endpointSelector = new ShibbolethSSOEndpointSelector();
342 endpointSelector.setSpAssertionConsumerService(loginContext.getSpAssertionConsumerService());
343 endpointSelector.setEndpointType(AssertionConsumerService.DEFAULT_ELEMENT_NAME);
344 endpointSelector.setMetadataProvider(getMetadataProvider());
345 endpointSelector.setEntityMetadata(requestContext.getPeerEntityMetadata());
346 endpointSelector.setEntityRoleMetadata(requestContext.getPeerEntityRoleMetadata());
347 endpointSelector.setSamlRequest(requestContext.getInboundSAMLMessage());
348 endpointSelector.getSupportedIssuerBindings().addAll(getSupportedOutboundBindings());
350 return endpointSelector.selectEndpoint();
354 * Builds the authentication statement for the authenticated principal.
356 * @param requestContext current request context
358 * @return the created statement
360 * @throws ProfileException thrown if the authentication statement can not be created
362 protected AuthenticationStatement buildAuthenticationStatement(ShibbolethSSORequestContext requestContext)
363 throws ProfileException {
364 ShibbolethSSOLoginContext loginContext = requestContext.getLoginContext();
366 AuthenticationStatement statement = authnStatementBuilder.buildObject();
367 statement.setAuthenticationInstant(loginContext.getAuthenticationInstant());
368 statement.setAuthenticationMethod(loginContext.getAuthenticationMethod());
370 statement.setSubjectLocality(buildSubjectLocality(requestContext));
372 Subject statementSubject = buildSubject(requestContext, "urn:oasis:names:tc:SAML:1.0:cm:bearer");
373 statement.setSubject(statementSubject);
379 * Constructs the subject locality for the authentication statement.
381 * @param requestContext curent request context
383 * @return subject locality for the authentication statement
385 protected SubjectLocality buildSubjectLocality(ShibbolethSSORequestContext requestContext) {
386 SubjectLocality subjectLocality = subjectLocalityBuilder.buildObject();
388 HTTPInTransport inTransport = (HTTPInTransport) requestContext.getInboundMessageTransport();
389 subjectLocality.setIPAddress(inTransport.getPeerAddress());
390 subjectLocality.setDNSAddress(inTransport.getPeerDomainName());
392 return subjectLocality;
395 /** Represents the internal state of a Shibboleth SSO Request while it's being processed by the IdP. */
396 public class ShibbolethSSORequestContext extends
397 BaseSAML1ProfileRequestContext<Request, Response, ShibbolethSSOConfiguration> {
399 /** SP-provide assertion consumer service URL. */
400 private String spAssertionConsumerService;
402 /** Current login context. */
403 private ShibbolethSSOLoginContext loginContext;
406 * Gets the current login context.
408 * @return current login context
410 public ShibbolethSSOLoginContext getLoginContext() {
415 * Sets the current login context.
417 * @param context current login context
419 public void setLoginContext(ShibbolethSSOLoginContext context) {
420 loginContext = context;
424 * Gets the SP-provided assertion consumer service URL.
426 * @return SP-provided assertion consumer service URL
428 public String getSpAssertionConsumerService() {
429 return spAssertionConsumerService;
433 * Sets the SP-provided assertion consumer service URL.
435 * @param acs SP-provided assertion consumer service URL
437 public void setSpAssertionConsumerService(String acs) {
438 spAssertionConsumerService = acs;