2 * Copyright [2006] [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.util.ArrayList;
20 import java.util.Collection;
21 import java.util.List;
23 import org.apache.log4j.Logger;
24 import org.joda.time.DateTime;
25 import org.opensaml.common.SAMLObjectBuilder;
26 import org.opensaml.common.binding.BasicEndpointSelector;
27 import org.opensaml.common.binding.artifact.SAMLArtifactMap;
28 import org.opensaml.common.binding.artifact.SAMLArtifactMap.SAMLArtifactMapEntry;
29 import org.opensaml.common.binding.decoding.SAMLMessageDecoder;
30 import org.opensaml.common.xml.SAMLConstants;
31 import org.opensaml.saml1.binding.SAML1ArtifactMessageContext;
32 import org.opensaml.saml1.core.Assertion;
33 import org.opensaml.saml1.core.AssertionArtifact;
34 import org.opensaml.saml1.core.NameIdentifier;
35 import org.opensaml.saml1.core.Request;
36 import org.opensaml.saml1.core.Response;
37 import org.opensaml.saml1.core.Status;
38 import org.opensaml.saml1.core.StatusCode;
39 import org.opensaml.saml2.metadata.AssertionConsumerService;
40 import org.opensaml.saml2.metadata.AttributeAuthorityDescriptor;
41 import org.opensaml.saml2.metadata.Endpoint;
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.security.SecurityPolicyException;
47 import org.opensaml.ws.transport.http.HTTPInTransport;
48 import org.opensaml.ws.transport.http.HTTPOutTransport;
50 import edu.internet2.middleware.shibboleth.common.profile.ProfileException;
51 import edu.internet2.middleware.shibboleth.common.relyingparty.RelyingPartyConfiguration;
52 import edu.internet2.middleware.shibboleth.common.relyingparty.provider.saml1.ArtifactResolutionConfiguration;
55 * SAML 1 Artifact resolution profile handler.
57 public class ArtifactResolution extends AbstractSAML1ProfileHandler {
60 private final Logger log = Logger.getLogger(ArtifactResolution.class);
62 /** Builder of Response objects. */
63 private SAMLObjectBuilder<Response> responseBuilder;
65 /** Builder of assertion consumer service endpoints. */
66 private SAMLObjectBuilder<AssertionConsumerService> acsEndpointBuilder;
68 /** Map artifacts to SAML messages. */
69 private SAMLArtifactMap artifactMap;
74 * @param map ArtifactMap used to lookup artifacts to be resolved.
76 public ArtifactResolution(SAMLArtifactMap map) {
81 responseBuilder = (SAMLObjectBuilder<Response>) getBuilderFactory().getBuilder(Response.DEFAULT_ELEMENT_NAME);
82 acsEndpointBuilder = (SAMLObjectBuilder<AssertionConsumerService>) getBuilderFactory().getBuilder(
83 AssertionConsumerService.DEFAULT_ELEMENT_NAME);
87 public String getProfileId() {
88 return "urn:mace:shibboleth:2.0:idp:profiles:saml1:request:artifact";
92 public void processRequest(HTTPInTransport inTransport, HTTPOutTransport outTransport) throws ProfileException {
93 Response samlResponse;
95 ArtifactResolutionRequestContext requestContext = decodeRequest(inTransport, outTransport);
98 if (requestContext.getProfileConfiguration() == null) {
99 log.error("SAML 1 Artifact resolution profile is not configured for relying party "
100 + requestContext.getInboundMessageIssuer());
101 requestContext.setFailureStatus(buildStatus(StatusCode.SUCCESS, StatusCode.REQUEST_DENIED,
102 "SAML 1 Artifact resolution profile is not configured for relying party "
103 + requestContext.getInboundMessageIssuer()));
104 throw new ProfileException("SAML 1 Artifact resolution profile is not configured for relying party "
105 + requestContext.getInboundMessageIssuer());
108 checkSamlVersion(requestContext);
110 derferenceArtifacts(requestContext);
112 // create the SAML response
113 samlResponse = buildArtifactResponse(requestContext);
114 } catch (ProfileException e) {
115 samlResponse = buildErrorResponse(requestContext);
118 requestContext.setOutboundSAMLMessage(samlResponse);
119 requestContext.setOutboundSAMLMessageId(samlResponse.getID());
120 requestContext.setOutboundSAMLMessageIssueInstant(samlResponse.getIssueInstant());
122 encodeResponse(requestContext);
123 writeAuditLogEntry(requestContext);
127 * Decodes an incoming request and populates a created request context with the resultant information.
129 * @param inTransport inbound message transport
130 * @param outTransport outbound message transport
132 * @return the created request context
134 * @throws ProfileException throw if there is a problem decoding the request
136 protected ArtifactResolutionRequestContext decodeRequest(HTTPInTransport inTransport, HTTPOutTransport outTransport)
137 throws ProfileException {
138 if (log.isDebugEnabled()) {
139 log.debug("Decoding incomming request");
142 MetadataProvider metadataProvider = getMetadataProvider();
144 ArtifactResolutionRequestContext requestContext = new ArtifactResolutionRequestContext();
145 requestContext.setMetadataProvider(metadataProvider);
147 requestContext.setInboundMessageTransport(inTransport);
148 requestContext.setInboundSAMLProtocol(SAMLConstants.SAML11P_NS);
149 requestContext.setPeerEntityRole(SPSSODescriptor.DEFAULT_ELEMENT_NAME);
151 requestContext.setOutboundMessageTransport(outTransport);
152 requestContext.setOutboundSAMLProtocol(SAMLConstants.SAML11P_NS);
155 SAMLMessageDecoder decoder = getMessageDecoders().get(getInboundBinding());
156 requestContext.setMessageDecoder(decoder);
157 decoder.decode(requestContext);
158 if (log.isDebugEnabled()) {
159 log.debug("Decoded request");
161 return requestContext;
162 } catch (MessageDecodingException e) {
163 log.error("Error decoding artifact resolve message", e);
164 requestContext.setFailureStatus(buildStatus(StatusCode.RESPONDER, null, "Error decoding message"));
165 throw new ProfileException("Error decoding artifact resolve message");
166 } catch (SecurityPolicyException e) {
167 log.error("Message did not meet security policy requirements", e);
168 requestContext.setFailureStatus(buildStatus(StatusCode.RESPONDER, StatusCode.REQUEST_DENIED,
169 "Message did not meet security policy requirements"));
170 throw new ProfileException("Message did not meet security policy requirements", e);
172 // Set as much information as can be retrieved from the decoded message
174 String relyingPartyId = requestContext.getInboundMessageIssuer();
175 RelyingPartyConfiguration rpConfig = getRelyingPartyConfiguration(relyingPartyId);
176 requestContext.setRelyingPartyConfiguration(rpConfig);
177 requestContext.setPeerEntityEndpoint(selectEndpoint(requestContext));
179 String assertingPartyId = requestContext.getRelyingPartyConfiguration().getProviderId();
180 requestContext.setLocalEntityId(assertingPartyId);
181 requestContext.setLocalEntityMetadata(metadataProvider.getEntityDescriptor(assertingPartyId));
182 requestContext.setLocalEntityRole(AttributeAuthorityDescriptor.DEFAULT_ELEMENT_NAME);
183 requestContext.setLocalEntityRoleMetadata(requestContext.getLocalEntityMetadata()
184 .getAttributeAuthorityDescriptor(SAMLConstants.SAML11P_NS));
186 ArtifactResolutionConfiguration profileConfig = (ArtifactResolutionConfiguration) rpConfig
187 .getProfileConfiguration(ArtifactResolutionConfiguration.PROFILE_ID);
188 if(profileConfig != null){
189 requestContext.setProfileConfiguration(profileConfig);
190 if (profileConfig.getSigningCredential() != null) {
191 requestContext.setOutboundSAMLMessageSigningCredential(profileConfig.getSigningCredential());
192 } else if (rpConfig.getDefaultSigningCredential() != null) {
193 requestContext.setOutboundSAMLMessageSigningCredential(rpConfig.getDefaultSigningCredential());
197 } catch (MetadataProviderException e) {
198 log.error("Unable to locate metadata for asserting or relying party");
200 .setFailureStatus(buildStatus(StatusCode.RESPONDER, null, "Error locating party metadata"));
201 throw new ProfileException("Error locating party metadata");
207 * Selects the appropriate endpoint for the relying party and stores it in the request context.
209 * @param requestContext current request context
211 * @return Endpoint selected from the information provided in the request context
213 protected Endpoint selectEndpoint(ArtifactResolutionRequestContext requestContext) {
216 if (getInboundBinding().equals(SAMLConstants.SAML1_SOAP11_BINDING_URI)) {
217 endpoint = acsEndpointBuilder.buildObject();
218 endpoint.setBinding(SAMLConstants.SAML1_SOAP11_BINDING_URI);
220 BasicEndpointSelector endpointSelector = new BasicEndpointSelector();
221 endpointSelector.setEndpointType(AssertionConsumerService.DEFAULT_ELEMENT_NAME);
222 endpointSelector.setMetadataProvider(getMetadataProvider());
223 endpointSelector.setEntityMetadata(requestContext.getPeerEntityMetadata());
224 endpointSelector.setEntityRoleMetadata(requestContext.getPeerEntityRoleMetadata());
225 endpointSelector.setSamlRequest(requestContext.getInboundSAMLMessage());
226 endpointSelector.getSupportedIssuerBindings().addAll(getSupportedOutboundBindings());
227 endpoint = endpointSelector.selectEndpoint();
234 * Derferences the artifacts within the incomming request and stores them in the request context.
236 * @param requestContext current request context
238 * @throws ProfileException thrown if the incomming request does not contain any {@link AssertionArtifact}s.
240 protected void derferenceArtifacts(ArtifactResolutionRequestContext requestContext) throws ProfileException {
241 Request request = requestContext.getInboundSAMLMessage();
242 List<AssertionArtifact> assertionArtifacts = request.getAssertionArtifacts();
244 if (assertionArtifacts == null || assertionArtifacts.size() == 0) {
245 log.error("No AssertionArtifacts available in request");
246 throw new ProfileException("No AssertionArtifacts available in request");
249 ArrayList<Assertion> assertions = new ArrayList<Assertion>();
250 SAMLArtifactMapEntry artifactEntry;
251 for (AssertionArtifact assertionArtifact : assertionArtifacts) {
252 artifactEntry = artifactMap.get(assertionArtifact.getAssertionArtifact());
253 if (artifactEntry == null || artifactEntry.isExpired()) {
254 log.error("Unknown artifact.");
257 if (!artifactEntry.getIssuerId().equals(requestContext.getLocalEntityId())) {
258 log.error("Artifact issuer mismatch. Artifact issued by " + artifactEntry.getIssuerId()
259 + " but IdP has entity ID of " + requestContext.getLocalEntityId());
262 artifactMap.remove(assertionArtifact.getAssertionArtifact());
263 assertions.add((Assertion) artifactEntry.getSamlMessage());
266 requestContext.setReferencedAssertions(assertions);
270 * Builds the response to the artifact request.
272 * @param requestContext current request context
274 * @return response to the artifact request
276 protected Response buildArtifactResponse(ArtifactResolutionRequestContext requestContext) {
277 DateTime issueInstant = new DateTime();
279 // create the SAML response and add the assertion
280 Response samlResponse = responseBuilder.buildObject();
281 samlResponse.setIssueInstant(issueInstant);
282 populateStatusResponse(requestContext, samlResponse);
284 if (requestContext.getReferencedAssertions() != null) {
285 samlResponse.getAssertions().addAll(requestContext.getReferencedAssertions());
288 Status status = buildStatus(StatusCode.SUCCESS, null, null);
289 samlResponse.setStatus(status);
294 /** Represents the internal state of a SAML 1 Artiface resolver request while it's being processed by the IdP. */
295 public class ArtifactResolutionRequestContext extends
296 BaseSAML1ProfileRequestContext<Request, Response, ArtifactResolutionConfiguration> implements
297 SAML1ArtifactMessageContext<Request, Response, NameIdentifier> {
299 /** Artifact to be resolved. */
300 private Collection<String> artifacts;
302 /** Message referenced by the SAML artifact. */
303 private Collection<Assertion> referencedAssertions;
306 public Collection<String> getArtifacts() {
311 public void setArtifacts(Collection<String> encodedArtifacts) {
312 this.artifacts = encodedArtifacts;
316 * Gets the SAML assertions referenced by the artifact(s).
318 * @return SAML assertions referenced by the artifact(s)
320 public Collection<Assertion> getReferencedAssertions() {
321 return referencedAssertions;
325 * Sets the SAML assertions referenced by the artifact(s).
327 * @param assertions SAML assertions referenced by the artifact(s)
329 public void setReferencedAssertions(Collection<Assertion> assertions) {
330 referencedAssertions = assertions;