/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.picketlink.identity.federation.core.saml.v2.util; import org.picketlink.common.ErrorCodes; import org.picketlink.common.PicketLinkLogger; import org.picketlink.common.PicketLinkLoggerFactory; import org.picketlink.common.exceptions.ConfigurationException; import org.picketlink.common.exceptions.ProcessingException; import org.picketlink.common.exceptions.fed.IssueInstantMissingException; import org.picketlink.common.util.DocumentUtil; import org.picketlink.common.util.StaxUtil; import org.picketlink.config.federation.SPType; import org.picketlink.identity.federation.api.saml.v2.sig.SAML2Signature; import org.picketlink.identity.federation.core.saml.v2.writers.SAMLAssertionWriter; import org.picketlink.identity.federation.saml.v1.assertion.SAML11AssertionType; import org.picketlink.identity.federation.saml.v1.assertion.SAML11AttributeStatementType; import org.picketlink.identity.federation.saml.v1.assertion.SAML11AttributeType; import org.picketlink.identity.federation.saml.v1.assertion.SAML11ConditionsType; import org.picketlink.identity.federation.saml.v1.assertion.SAML11StatementAbstractType; import org.picketlink.identity.federation.saml.v2.assertion.AssertionType; import org.picketlink.identity.federation.saml.v2.assertion.AttributeStatementType; import org.picketlink.identity.federation.saml.v2.assertion.AttributeStatementType.ASTChoiceType; import org.picketlink.identity.federation.saml.v2.assertion.AttributeType; import org.picketlink.identity.federation.saml.v2.assertion.AudienceRestrictionType; import org.picketlink.identity.federation.saml.v2.assertion.ConditionAbstractType; import org.picketlink.identity.federation.saml.v2.assertion.ConditionsType; import org.picketlink.identity.federation.saml.v2.assertion.NameIDType; import org.picketlink.identity.federation.saml.v2.assertion.StatementAbstractType; import org.picketlink.identity.federation.saml.v2.assertion.SubjectType; import org.picketlink.identity.federation.saml.v2.assertion.SubjectType.STSubType; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import javax.xml.datatype.XMLGregorianCalendar; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.net.URI; import java.security.PublicKey; import java.util.ArrayList; import java.util.List; import java.util.Set; /** * Utility to deal with assertions * * @author Anil.Saldhana@redhat.com * @since Jun 3, 2009 */ public class AssertionUtil { private static final PicketLinkLogger logger = PicketLinkLoggerFactory.getLogger(); /** * Given {@code AssertionType}, convert it into a String * * @param assertion * * @return * * @throws ProcessingException */ public static String asString(AssertionType assertion) throws ProcessingException { ByteArrayOutputStream baos = new ByteArrayOutputStream(); SAMLAssertionWriter writer = new SAMLAssertionWriter(StaxUtil.getXMLStreamWriter(baos)); writer.write(assertion); return new String(baos.toByteArray()); } /** * Given {@code AssertionType}, convert it into a DOM Document. * * @param assertion * * @return * * @throws ProcessingException */ public static Document asDocument(AssertionType assertion) throws ProcessingException { ByteArrayOutputStream baos = new ByteArrayOutputStream(); SAMLAssertionWriter writer = new SAMLAssertionWriter(StaxUtil.getXMLStreamWriter(baos)); writer.write(assertion); try { return DocumentUtil.getDocument(new ByteArrayInputStream(baos.toByteArray())); } catch (Exception e) { throw logger.processingError(e); } } /** * Create an assertion * * @param id * @param issuer * * @return */ public static SAML11AssertionType createSAML11Assertion(String id, XMLGregorianCalendar issueInstant, String issuer) { SAML11AssertionType assertion = new SAML11AssertionType(id, issueInstant); assertion.setIssuer(issuer); return assertion; } /** * Create an assertion * * @param id * @param issuer * * @return */ public static AssertionType createAssertion(String id, NameIDType issuer) { XMLGregorianCalendar issueInstant = null; try { issueInstant = XMLTimeUtil.getIssueInstant(); } catch (ConfigurationException e) { throw new RuntimeException(e); } AssertionType assertion = new AssertionType(id, issueInstant); assertion.setIssuer(issuer); return assertion; } /** * Given a user name, create a {@code SubjectType} that can then be inserted into an assertion * * @param userName * * @return */ public static SubjectType createAssertionSubject(String userName) { SubjectType assertionSubject = new SubjectType(); STSubType subType = new STSubType(); NameIDType anil = new NameIDType(); anil.setValue(userName); subType.addBaseID(anil); assertionSubject.setSubType(subType); return assertionSubject; } /** * Create an attribute type * * @param name Name of the attribute * @param nameFormat name format uri * @param attributeValues an object array of attribute values * * @return */ public static AttributeType createAttribute(String name, String nameFormat, Object... attributeValues) { AttributeType att = new AttributeType(name); att.setNameFormat(nameFormat); if (attributeValues != null && attributeValues.length > 0) { for (Object attributeValue : attributeValues) { att.addAttributeValue(attributeValue); } } return att; } /** * <p> * Add validity conditions to the SAML2 Assertion * </p> * <p> * There is no clock skew added. * * @param assertion * @param durationInMilis * * @throws ConfigurationException * @throws IssueInstantMissingException * @see {{@link #createTimedConditions(AssertionType, long, long)} * </p> */ public static void createTimedConditions(AssertionType assertion, long durationInMilis) throws ConfigurationException, IssueInstantMissingException { XMLGregorianCalendar issueInstant = assertion.getIssueInstant(); if (issueInstant == null) throw new IssueInstantMissingException(ErrorCodes.NULL_ISSUE_INSTANT); XMLGregorianCalendar assertionValidityLength = XMLTimeUtil.add(issueInstant, durationInMilis); ConditionsType conditionsType = new ConditionsType(); conditionsType.setNotBefore(issueInstant); conditionsType.setNotOnOrAfter(assertionValidityLength); assertion.setConditions(conditionsType); } /** * Add validity conditions to the SAML2 Assertion * * @param assertion * @param durationInMilis * * @throws ConfigurationException * @throws IssueInstantMissingException */ public static void createTimedConditions(AssertionType assertion, long durationInMilis, long clockSkew) throws ConfigurationException, IssueInstantMissingException { XMLGregorianCalendar issueInstant = assertion.getIssueInstant(); if (issueInstant == null) throw logger.samlIssueInstantMissingError(); XMLGregorianCalendar assertionValidityLength = XMLTimeUtil.add(issueInstant, durationInMilis + clockSkew); ConditionsType conditionsType = new ConditionsType(); XMLGregorianCalendar beforeInstant = XMLTimeUtil.subtract(issueInstant, clockSkew); conditionsType.setNotBefore(beforeInstant); conditionsType.setNotOnOrAfter(assertionValidityLength); assertion.setConditions(conditionsType); } /** * Add validity conditions to the SAML2 Assertion * * @param assertion * @param durationInMilis * * @throws ConfigurationException * @throws IssueInstantMissingException */ public static void createSAML11TimedConditions(SAML11AssertionType assertion, long durationInMilis, long clockSkew) throws ConfigurationException, IssueInstantMissingException { XMLGregorianCalendar issueInstant = assertion.getIssueInstant(); if (issueInstant == null) throw new IssueInstantMissingException(ErrorCodes.NULL_ISSUE_INSTANT); XMLGregorianCalendar assertionValidityLength = XMLTimeUtil.add(issueInstant, durationInMilis + clockSkew); SAML11ConditionsType conditionsType = new SAML11ConditionsType(); XMLGregorianCalendar beforeInstant = XMLTimeUtil.subtract(issueInstant, clockSkew); conditionsType.setNotBefore(beforeInstant); conditionsType.setNotOnOrAfter(assertionValidityLength); assertion.setConditions(conditionsType); } /** * Given an assertion element, validate the signature * * @param assertionElement * @param publicKey the {@link PublicKey} * * @return */ public static boolean isSignatureValid(Element assertionElement, PublicKey publicKey) { try { Document doc = DocumentUtil.createDocument(); Node n = doc.importNode(assertionElement, true); doc.appendChild(n); return new SAML2Signature().validate(doc, publicKey); } catch (Exception e) { logger.signatureAssertionValidationError(e); } return false; } /** * Check whether the assertion has expired * * @param assertion * * @return * * @throws ConfigurationException */ public static boolean hasExpired(AssertionType assertion) throws ConfigurationException { boolean expiry = false; // Check for validity of assertion ConditionsType conditionsType = assertion.getConditions(); if (conditionsType != null) { XMLGregorianCalendar now = XMLTimeUtil.getIssueInstant(); XMLGregorianCalendar notBefore = conditionsType.getNotBefore(); XMLGregorianCalendar notOnOrAfter = conditionsType.getNotOnOrAfter(); if (notBefore != null) { logger.trace("Assertion: " + assertion.getID() + " ::Now=" + now.toXMLFormat() + " ::notBefore=" + notBefore.toXMLFormat()); } if (notOnOrAfter != null) { logger.trace("Assertion: " + assertion.getID() + " ::Now=" + now.toXMLFormat() + " ::notOnOrAfter=" + notOnOrAfter); } expiry = !XMLTimeUtil.isValid(now, notBefore, notOnOrAfter); if (expiry) { logger.samlAssertionExpired(assertion.getID()); } } // TODO: if conditions do not exist, assume the assertion to be everlasting? return expiry; } /** * Verify whether the assertion has expired. You can add in a clock skew to adapt to conditions where in the IDP and * SP are * out of sync. * * @param assertion * @param clockSkewInMilis in miliseconds * * @return * * @throws ConfigurationException */ public static boolean hasExpired(AssertionType assertion, long clockSkewInMilis) throws ConfigurationException { boolean expiry = false; // Check for validity of assertion ConditionsType conditionsType = assertion.getConditions(); if (conditionsType != null) { XMLGregorianCalendar now = XMLTimeUtil.getIssueInstant(); XMLGregorianCalendar notBefore = conditionsType.getNotBefore(); XMLGregorianCalendar updatedNotBefore = XMLTimeUtil.subtract(notBefore, clockSkewInMilis); XMLGregorianCalendar notOnOrAfter = conditionsType.getNotOnOrAfter(); XMLGregorianCalendar updatedOnOrAfter = XMLTimeUtil.add(notOnOrAfter, clockSkewInMilis); logger.trace("Now=" + now.toXMLFormat() + " ::notBefore=" + notBefore.toXMLFormat() + " ::notOnOrAfter=" + notOnOrAfter); expiry = !XMLTimeUtil.isValid(now, updatedNotBefore, updatedOnOrAfter); if (expiry) { logger.samlAssertionExpired(assertion.getID()); } } // TODO: if conditions do not exist, assume the assertion to be everlasting? return expiry; } /** * <p>Checks whether the given assertion is intended for the given {@link org.picketlink.config.federation.SPType} or not.</p> * * @param assertionType * @param spType * @return */ public static boolean isAudience(AssertionType assertionType, SPType spType) { ConditionsType conditionsType = assertionType.getConditions(); if (conditionsType != null) { List<ConditionAbstractType> conditions = conditionsType.getConditions(); if (conditions != null) { for (ConditionAbstractType condition : conditions) { if (AudienceRestrictionType.class.isInstance(condition)) { AudienceRestrictionType audienceRestrictionType = (AudienceRestrictionType) condition; List<URI> audiences = audienceRestrictionType.getAudience(); if (audiences != null) { for (URI audienceUri : audiences) { String audience = audienceUri.toString(); if (audience.startsWith(spType.getServiceURL()) || audience.equals(spType.getEntityId())) { return true; } } } String entityId = spType.getEntityId() != null ? " or " + spType.getEntityId() : ""; logger.warn("Assertion [" + assertionType.getID() + "] does not contain [" + spType.getServiceURL() + entityId + "] in audience list [" + audiences + "]. Expected audience is [" + spType.getServiceURL() + entityId + "]."); return false; } } } } return true; } /** * Check whether the assertion has expired * * @param assertion * * @return * * @throws ConfigurationException */ public static boolean hasExpired(SAML11AssertionType assertion) throws ConfigurationException { boolean expiry = false; // Check for validity of assertion SAML11ConditionsType conditionsType = assertion.getConditions(); if (conditionsType != null) { XMLGregorianCalendar now = XMLTimeUtil.getIssueInstant(); XMLGregorianCalendar notBefore = conditionsType.getNotBefore(); XMLGregorianCalendar notOnOrAfter = conditionsType.getNotOnOrAfter(); logger.trace("Now=" + now.toXMLFormat() + " ::notBefore=" + notBefore.toXMLFormat() + " ::notOnOrAfter=" + notOnOrAfter); expiry = !XMLTimeUtil.isValid(now, notBefore, notOnOrAfter); if (expiry) { logger.samlAssertionExpired(assertion.getID()); } } // TODO: if conditions do not exist, assume the assertion to be everlasting? return expiry; } /** * Verify whether the assertion has expired. You can add in a clock skew to adapt to conditions where in the IDP and * SP are * out of sync. * * @param assertion * @param clockSkewInMilis in miliseconds * * @return * * @throws ConfigurationException */ public static boolean hasExpired(SAML11AssertionType assertion, long clockSkewInMilis) throws ConfigurationException { boolean expiry = false; // Check for validity of assertion SAML11ConditionsType conditionsType = assertion.getConditions(); if (conditionsType != null) { XMLGregorianCalendar now = XMLTimeUtil.getIssueInstant(); XMLGregorianCalendar notBefore = conditionsType.getNotBefore(); XMLGregorianCalendar updatedNotBefore = XMLTimeUtil.subtract(notBefore, clockSkewInMilis); XMLGregorianCalendar notOnOrAfter = conditionsType.getNotOnOrAfter(); XMLGregorianCalendar updatedOnOrAfter = XMLTimeUtil.add(notOnOrAfter, clockSkewInMilis); logger.trace("Now=" + now.toXMLFormat() + " ::notBefore=" + notBefore.toXMLFormat() + " ::notOnOrAfter=" + notOnOrAfter); expiry = !XMLTimeUtil.isValid(now, updatedNotBefore, updatedOnOrAfter); if (expiry) { logger.samlAssertionExpired(assertion.getID()); } } // TODO: if conditions do not exist, assume the assertion to be everlasting? return expiry; } /** * Extract the expiration time from an {@link AssertionType} * * @param assertion * * @return */ public static XMLGregorianCalendar getExpiration(AssertionType assertion) { XMLGregorianCalendar expiry = null; ConditionsType conditionsType = assertion.getConditions(); if (conditionsType != null) { expiry = conditionsType.getNotOnOrAfter(); } return expiry; } /** * Given an assertion, return the list of roles it may have * * @param assertion The {@link AssertionType} * @param roleKeys a list of string values representing the role keys. The list can be null. * * @return */ public static List<String> getRoles(AssertionType assertion, List<String> roleKeys) { List<String> roles = new ArrayList<String>(); Set<StatementAbstractType> statements = assertion.getStatements(); for (StatementAbstractType statement : statements) { if (statement instanceof AttributeStatementType) { AttributeStatementType attributeStatement = (AttributeStatementType) statement; List<ASTChoiceType> attList = attributeStatement.getAttributes(); for (ASTChoiceType obj : attList) { AttributeType attr = obj.getAttribute(); if (roleKeys != null && roleKeys.size() > 0) { if (!roleKeys.contains(attr.getName())) continue; } List<Object> attributeValues = attr.getAttributeValue(); if (attributeValues != null) { for (Object attrValue : attributeValues) { if (attrValue instanceof String) { roles.add((String) attrValue); } else if (attrValue instanceof Node) { Node roleNode = (Node) attrValue; roles.add(roleNode.getFirstChild().getNodeValue()); } else throw logger.unknownObjectType(attrValue); } } } } } return roles; } /** * Given an assertion, return the list of roles it may have * * @param assertion The {@link SAML11AssertionType} * @param roleKeys a list of string values representing the role keys. The list can be null. * * @return */ public static List<String> getRoles(SAML11AssertionType assertion, List<String> roleKeys) { List<String> roles = new ArrayList<String>(); List<SAML11StatementAbstractType> statements = assertion.getStatements(); for (SAML11StatementAbstractType statement : statements) { if (statement instanceof SAML11AttributeStatementType) { SAML11AttributeStatementType attributeStatement = (SAML11AttributeStatementType) statement; List<SAML11AttributeType> attributes = attributeStatement.get(); for (SAML11AttributeType attr : attributes) { if (roleKeys != null && roleKeys.size() > 0) { if (!roleKeys.contains(attr.getAttributeName())) continue; } List<Object> attributeValues = attr.get(); if (attributeValues != null) { for (Object attrValue : attributeValues) { if (attrValue instanceof String) { roles.add((String) attrValue); } else if (attrValue instanceof Node) { Node roleNode = (Node) attrValue; roles.add(roleNode.getFirstChild().getNodeValue()); } else throw logger.unknownObjectType(attrValue); } } } } } return roles; } }