2 * Copyright [2005] [University Corporation for Advanced Internet Development, Inc.] Licensed under the Apache License,
3 * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy
4 * of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in
5 * writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
6 * OF ANY KIND, either express or implied. See the License for the specific language governing permissions and
7 * limitations under the License.
10 package edu.internet2.middleware.shibboleth.idp;
13 import java.security.Principal;
14 import java.util.Arrays;
15 import java.util.Collection;
16 import java.util.HashMap;
17 import java.util.List;
20 import javax.xml.namespace.QName;
22 import org.apache.log4j.Logger;
23 import org.apache.xml.security.signature.XMLSignature;
24 import org.opensaml.InvalidCryptoException;
25 import org.opensaml.SAMLAssertion;
26 import org.opensaml.SAMLAttribute;
27 import org.opensaml.SAMLException;
28 import org.opensaml.SAMLResponse;
29 import org.opensaml.saml2.metadata.EntitiesDescriptor;
30 import org.opensaml.saml2.metadata.EntityDescriptor;
31 import org.opensaml.saml2.metadata.RoleDescriptor;
32 import org.opensaml.saml2.metadata.provider.ChainingMetadataProvider;
33 import org.opensaml.saml2.metadata.provider.MetadataFilter;
34 import org.opensaml.saml2.metadata.provider.MetadataProvider;
35 import org.opensaml.saml2.metadata.provider.MetadataProviderException;
36 import org.opensaml.security.TrustEngine;
37 import org.opensaml.security.X509EntityCredential;
38 import org.opensaml.xml.XMLObject;
39 import org.w3c.dom.Element;
41 import edu.internet2.middleware.shibboleth.aa.AAAttribute;
42 import edu.internet2.middleware.shibboleth.aa.AAException;
43 import edu.internet2.middleware.shibboleth.aa.arp.ArpEngine;
44 import edu.internet2.middleware.shibboleth.aa.arp.ArpProcessingException;
45 import edu.internet2.middleware.shibboleth.aa.attrresolv.AttributeResolver;
46 import edu.internet2.middleware.shibboleth.artifact.ArtifactMapper;
47 import edu.internet2.middleware.shibboleth.common.Credential;
48 import edu.internet2.middleware.shibboleth.common.RelyingParty;
49 import edu.internet2.middleware.shibboleth.common.RelyingPartyMapper;
50 import edu.internet2.middleware.shibboleth.common.ShibbolethConfigurationException;
51 import edu.internet2.middleware.shibboleth.common.provider.ShibbolethTrustEngine;
52 import edu.internet2.middleware.shibboleth.metadata.MetadataProviderFactory;
55 * Delivers core IdP functionality (Attribute resolution, ARP filtering, Metadata lookup, Signing, Mapping between local &
56 * SAML identifiers, etc.) to components that process protocol-specific requests.
58 * @author Walter Hoehn
60 public class IdPProtocolSupport implements MetadataProvider {
62 private static Logger log = Logger.getLogger(IdPProtocolSupport.class.getName());
63 private Logger transactionLog;
64 private IdPConfig config;
65 private RelyingPartyMapper spMapper;
66 private ArpEngine arpEngine;
67 private AttributeResolver resolver;
68 private ArtifactMapper artifactMapper;
69 private Semaphore throttle;
70 private TrustEngine<X509EntityCredential> trust = new ShibbolethTrustEngine();
71 private ChainingMetadataProvider wrappedMetadataProvider = new ChainingMetadataProvider();
73 IdPProtocolSupport(IdPConfig config, Logger transactionLog, RelyingPartyMapper spMapper, ArpEngine arpEngine,
74 AttributeResolver resolver, ArtifactMapper artifactMapper) throws ShibbolethConfigurationException {
76 this.transactionLog = transactionLog;
78 this.spMapper = spMapper;
79 spMapper.setMetadata(this);
80 this.arpEngine = arpEngine;
81 this.resolver = resolver;
82 this.artifactMapper = artifactMapper;
84 // Load a semaphore that throttles how many requests the IdP will handle at once
85 throttle = new Semaphore(config.getMaxThreads());
88 public Logger getTransactionLog() {
90 return transactionLog;
93 public IdPConfig getIdPConfig() {
98 public RelyingPartyMapper getRelyingPartyMapper() {
103 public void signAssertions(SAMLAssertion[] assertions, RelyingParty relyingParty) throws InvalidCryptoException,
106 if (relyingParty.getIdentityProvider().getSigningCredential() == null
107 || relyingParty.getIdentityProvider().getSigningCredential().getPrivateKey() == null) { throw new InvalidCryptoException(
108 SAMLException.RESPONDER, "Invalid signing credential."); }
110 for (int i = 0; i < assertions.length; i++) {
111 String assertionAlgorithm;
112 if (relyingParty.getIdentityProvider().getSigningCredential().getCredentialType() == Credential.RSA) {
113 assertionAlgorithm = XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA1;
114 } else if (relyingParty.getIdentityProvider().getSigningCredential().getCredentialType() == Credential.DSA) {
115 assertionAlgorithm = XMLSignature.ALGO_ID_SIGNATURE_DSA;
117 throw new InvalidCryptoException(SAMLException.RESPONDER,
118 "The Shibboleth IdP currently only supports signing with RSA and DSA keys.");
123 assertions[i].sign(assertionAlgorithm, relyingParty.getIdentityProvider().getSigningCredential()
124 .getPrivateKey(), Arrays.asList(relyingParty.getIdentityProvider().getSigningCredential()
125 .getX509CertificateChain()));
132 public void signResponse(SAMLResponse response, RelyingParty relyingParty) throws SAMLException {
134 // Make sure we have an appropriate credential
135 if (relyingParty.getIdentityProvider().getSigningCredential() == null
136 || relyingParty.getIdentityProvider().getSigningCredential().getPrivateKey() == null) { throw new InvalidCryptoException(
137 SAMLException.RESPONDER, "Invalid signing credential."); }
140 String responseAlgorithm;
141 if (relyingParty.getIdentityProvider().getSigningCredential().getCredentialType() == Credential.RSA) {
142 responseAlgorithm = XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA1;
143 } else if (relyingParty.getIdentityProvider().getSigningCredential().getCredentialType() == Credential.DSA) {
144 responseAlgorithm = XMLSignature.ALGO_ID_SIGNATURE_DSA;
146 throw new InvalidCryptoException(SAMLException.RESPONDER,
147 "The Shibboleth IdP currently only supports signing with RSA and DSA keys.");
151 response.sign(responseAlgorithm, relyingParty.getIdentityProvider().getSigningCredential().getPrivateKey(),
152 Arrays.asList(relyingParty.getIdentityProvider().getSigningCredential().getX509CertificateChain()));
158 protected void addMetadataProvider(Element element) {
160 log.debug("Found Metadata Provider configuration element.");
161 if (!element.getTagName().equals("MetadataProvider")) {
162 log.error("Error while attemtping to load Metadata Provider. Malformed provider specificaion.");
167 wrappedMetadataProvider.addMetadataProvider(MetadataProviderFactory.loadProvider(element));
168 } catch (MetadataProviderException e) {
169 log.error("Unable to load Metadata Provider. Skipping...");
174 public Collection<? extends SAMLAttribute> getReleaseAttributes(Principal principal, RelyingParty relyingParty,
175 String requester) throws AAException {
178 Collection<URI> potentialAttributes = arpEngine.listPossibleReleaseAttributes(principal, requester);
179 return getReleaseAttributes(principal, relyingParty, requester, potentialAttributes);
181 } catch (ArpProcessingException e) {
182 log.error("An error occurred while processing the ARPs for principal (" + principal.getName() + ") :"
184 throw new AAException("Error retrieving data for principal.");
188 public Collection<? extends SAMLAttribute> getReleaseAttributes(Principal principal, RelyingParty relyingParty,
189 String requester, Collection<URI> attributeNames) throws AAException {
192 Map<String, AAAttribute> attributes = new HashMap<String, AAAttribute>();
193 for (URI name : attributeNames) {
195 AAAttribute attribute = new AAAttribute(name.toString(), false);
196 attributes.put(attribute.getName(), attribute);
199 Collection<URI> constraintAttributes = arpEngine.listRequiredConstraintAttributes(principal, requester,
201 for (URI name : constraintAttributes) {
202 if (!attributes.containsKey(name.toString())) {
203 // don't care about schema hack since these attributes won't be returned to SP
204 AAAttribute attribute = new AAAttribute(name.toString(), false);
205 attributes.put(attribute.getName(), attribute);
209 return resolveAttributes(principal, requester, relyingParty.getIdentityProvider().getProviderId(),
212 } catch (SAMLException e) {
213 log.error("An error occurred while creating attributes for principal (" + principal.getName() + ") :"
215 throw new AAException("Error retrieving data for principal.");
217 } catch (ArpProcessingException e) {
218 log.error("An error occurred while processing the ARPs for principal (" + principal.getName() + ") :"
220 throw new AAException("Error retrieving data for principal.");
224 public Collection<? extends SAMLAttribute> resolveAttributes(Principal principal, String requester,
225 String responder, Map<String, AAAttribute> attributeSet) throws ArpProcessingException {
227 resolver.resolveAttributes(principal, requester, responder, attributeSet);
228 arpEngine.filterAttributes(attributeSet.values(), principal, requester);
229 return attributeSet.values();
232 public Collection<? extends SAMLAttribute> resolveAttributesNoPolicies(Principal principal, String requester,
233 String responder, Map<String, AAAttribute> attributeSet) {
235 resolver.resolveAttributes(principal, requester, responder, attributeSet);
236 return attributeSet.values();
240 * Cleanup resources that won't be released when this object is garbage-collected
242 public void destroy() {
248 public ArtifactMapper getArtifactMapper() {
250 return artifactMapper;
253 public TrustEngine<X509EntityCredential> getTrust() {
258 public boolean requireValidMetadata() {
260 return wrappedMetadataProvider.requireValidMetadata();
263 public void setRequireValidMetadata(boolean requireValidMetadata) {
265 wrappedMetadataProvider.setRequireValidMetadata(requireValidMetadata);
268 public MetadataFilter getMetadataFilter() {
270 return wrappedMetadataProvider.getMetadataFilter();
273 public void setMetadataFilter(MetadataFilter newFilter) throws MetadataProviderException {
275 wrappedMetadataProvider.setMetadataFilter(newFilter);
278 public XMLObject getMetadata() throws MetadataProviderException {
280 return wrappedMetadataProvider.getMetadata();
283 public EntitiesDescriptor getEntitiesDescriptor(String name) throws MetadataProviderException {
285 return wrappedMetadataProvider.getEntitiesDescriptor(name);
288 public EntityDescriptor getEntityDescriptor(String entityID) throws MetadataProviderException {
290 return wrappedMetadataProvider.getEntityDescriptor(entityID);
293 public List<RoleDescriptor> getRole(String entityID, QName roleName) throws MetadataProviderException {
295 return wrappedMetadataProvider.getRole(entityID, roleName);
298 public RoleDescriptor getRole(String entityID, QName roleName, String supportedProtocol)
299 throws MetadataProviderException {
301 return wrappedMetadataProvider.getRole(entityID, roleName, supportedProtocol);
304 public int providerCount() {
306 return wrappedMetadataProvider.getProviders().size();
309 private class Semaphore {
313 public Semaphore(int value) {
318 public synchronized void enter() {
324 } catch (InterruptedException e) {
325 // squelch and continue
330 public synchronized void exit() {