/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.cxf.ws.security.wss4j.saml; import java.security.cert.X509Certificate; import java.util.Arrays; import java.util.Collections; import javax.security.auth.callback.CallbackHandler; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.apache.wss4j.common.saml.SAMLCallback; import org.apache.wss4j.common.saml.bean.ActionBean; import org.apache.wss4j.common.saml.bean.AttributeBean; import org.apache.wss4j.common.saml.bean.AttributeStatementBean; import org.apache.wss4j.common.saml.bean.AuthDecisionStatementBean; import org.apache.wss4j.common.saml.bean.AuthenticationStatementBean; import org.apache.wss4j.common.saml.bean.KeyInfoBean; import org.apache.wss4j.common.saml.bean.KeyInfoBean.CERT_IDENTIFIER; import org.apache.wss4j.common.saml.bean.SubjectBean; import org.apache.wss4j.dom.WSConstants; import org.apache.wss4j.dom.message.WSSecEncryptedKey; /** * A base implementation of a Callback Handler for a SAML assertion. By default it creates an * authentication assertion. */ public abstract class AbstractSAMLCallbackHandler implements CallbackHandler { public enum Statement { AUTHN, ATTR, AUTHZ }; protected String subjectName; protected String subjectQualifier; protected String confirmationMethod; protected X509Certificate[] certs; protected Statement statement = Statement.AUTHN; protected CERT_IDENTIFIER certIdentifier = CERT_IDENTIFIER.X509_CERT; protected byte[] ephemeralKey; protected boolean multiValue = true; public void setConfirmationMethod(String confMethod) { confirmationMethod = confMethod; } public void setStatement(Statement statement) { this.statement = statement; } public void setCertIdentifier(CERT_IDENTIFIER certIdentifier) { this.certIdentifier = certIdentifier; } public void setCerts(X509Certificate[] certs) { this.certs = certs; } public byte[] getEphemeralKey() { return ephemeralKey; } /** * Note that the SubjectBean parameter should be null for SAML2.0 */ protected void createAndSetStatement(SubjectBean subjectBean, SAMLCallback callback) { if (statement == Statement.AUTHN) { AuthenticationStatementBean authBean = new AuthenticationStatementBean(); if (subjectBean != null) { authBean.setSubject(subjectBean); } authBean.setAuthenticationMethod("Password"); callback.setAuthenticationStatementData(Collections.singletonList(authBean)); } else if (statement == Statement.ATTR) { AttributeStatementBean attrBean = new AttributeStatementBean(); if (multiValue) { // <saml:Attribute xmlns:saml="urn:oasis:names:tc:SAML:1.0:assertion" // AttributeNamespace="http://schemas.xmlsoap.org/claims" AttributeName="roles"> // <saml:AttributeValue>Value1</saml:AttributeValue> // <saml:AttributeValue>Value2</saml:AttributeValue> // </saml:Attribute> AttributeBean attributeBean = new AttributeBean(); if (subjectBean != null) { attrBean.setSubject(subjectBean); attributeBean.setSimpleName("role"); attributeBean.setQualifiedName("http://custom-ns"); } else { attributeBean.setQualifiedName("role"); } attributeBean.addAttributeValue("user"); attributeBean.addAttributeValue("admin"); attrBean.setSamlAttributes(Collections.singletonList(attributeBean)); } else { // <saml:Attribute xmlns:saml="urn:oasis:names:tc:SAML:1.0:assertion" // AttributeNamespace="http://schemas.xmlsoap.org/claims" AttributeName="roles"> // <saml:AttributeValue>Value1</saml:AttributeValue> // </saml:Attribute> // <saml:Attribute xmlns:saml="urn:oasis:names:tc:SAML:1.0:assertion" // AttributeNamespace="http://schemas.xmlsoap.org/claims" AttributeName="roles"> // <saml:AttributeValue>Value2</saml:AttributeValue> // </saml:Attribute> AttributeBean attributeBean = new AttributeBean(); if (subjectBean != null) { attrBean.setSubject(subjectBean); attributeBean.setSimpleName("role"); attributeBean.setQualifiedName("http://custom-ns"); } else { attributeBean.setQualifiedName("role"); } attributeBean.addAttributeValue("user"); AttributeBean attributeBean2 = new AttributeBean(); if (subjectBean != null) { attributeBean2.setSimpleName("role"); attributeBean2.setQualifiedName("http://custom-ns"); } else { attributeBean2.setQualifiedName("role"); } attributeBean2.addAttributeValue("admin"); attrBean.setSamlAttributes(Arrays.asList(attributeBean, attributeBean2)); } callback.setAttributeStatementData(Collections.singletonList(attrBean)); } else { AuthDecisionStatementBean authzBean = new AuthDecisionStatementBean(); if (subjectBean != null) { authzBean.setSubject(subjectBean); } ActionBean actionBean = new ActionBean(); actionBean.setContents("Read"); authzBean.setActions(Collections.singletonList(actionBean)); authzBean.setResource("endpoint"); authzBean.setDecision(AuthDecisionStatementBean.Decision.PERMIT); callback.setAuthDecisionStatementData(Collections.singletonList(authzBean)); } } protected KeyInfoBean createKeyInfo() throws Exception { KeyInfoBean keyInfo = new KeyInfoBean(); if (statement == Statement.AUTHN) { keyInfo.setCertificate(certs[0]); keyInfo.setCertIdentifer(certIdentifier); } else if (statement == Statement.ATTR) { // Build a new Document DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance(); docBuilderFactory.setNamespaceAware(true); DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder(); Document doc = docBuilder.newDocument(); // Create an Encrypted Key WSSecEncryptedKey encrKey = new WSSecEncryptedKey(doc); encrKey.setKeyIdentifierType(WSConstants.X509_KEY_IDENTIFIER); encrKey.setUseThisCert(certs[0]); encrKey.prepare(null); ephemeralKey = encrKey.getEphemeralKey(); Element encryptedKeyElement = encrKey.getEncryptedKeyElement(); // Append the EncryptedKey to a KeyInfo element Element keyInfoElement = doc.createElementNS( WSConstants.SIG_NS, WSConstants.SIG_PREFIX + ":" + WSConstants.KEYINFO_LN ); keyInfoElement.setAttributeNS( WSConstants.XMLNS_NS, "xmlns:" + WSConstants.SIG_PREFIX, WSConstants.SIG_NS ); keyInfoElement.appendChild(encryptedKeyElement); keyInfo.setElement(keyInfoElement); } return keyInfo; } }