/** * 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.wss4j.dom.handler; import java.io.IOException; import java.util.ArrayList; import java.util.List; import javax.security.auth.callback.Callback; import javax.security.auth.callback.CallbackHandler; import javax.security.auth.callback.UnsupportedCallbackException; import org.apache.wss4j.dom.WSConstants; import org.apache.wss4j.dom.common.CustomHandler; import org.apache.wss4j.dom.common.SOAPUtil; import org.apache.wss4j.dom.common.SecurityTestUtil; import org.apache.wss4j.dom.engine.WSSConfig; import org.apache.wss4j.dom.engine.WSSecurityEngine; import org.junit.Test; import org.apache.wss4j.common.crypto.CryptoFactory; import org.apache.wss4j.common.ext.WSPasswordCallback; import org.apache.wss4j.common.util.XMLUtils; import org.w3c.dom.Document; /** * This is a test for WSS-194 - "Support overriding KeyStore alias for signature so that it can * be different than user name used for UsernameToken". */ public class SignatureUTAliasTest extends org.junit.Assert implements CallbackHandler { private static final org.slf4j.Logger LOG = org.slf4j.LoggerFactory.getLogger(SignatureUTAliasTest.class); private WSSecurityEngine secEngine = new WSSecurityEngine(); @org.junit.AfterClass public static void cleanup() throws Exception { SecurityTestUtil.cleanup(); } /** * Test involving adding a Username Token to a SOAP message and signing it, where the * private key for signature is extracted from the KeyStore using a different username/alias * to the UsernameToken. */ @Test public void testUsernameTokenSignatureHandler() throws Exception { final WSSConfig cfg = WSSConfig.getNewInstance(); final RequestData reqData = new RequestData(); reqData.setWssConfig(cfg); reqData.setUsername("alice"); reqData.setPwType(WSConstants.PASSWORD_TEXT); java.util.Map<String, Object> messageContext = new java.util.TreeMap<String, Object>(); messageContext.put( WSHandlerConstants.PW_CALLBACK_REF, this ); messageContext.put(WSHandlerConstants.SIGNATURE_USER, "wss40"); messageContext.put(WSHandlerConstants.SIG_PROP_FILE, "wss40.properties"); messageContext.put( WSHandlerConstants.SIGNATURE_PARTS, "{}{" + WSConstants.WSSE_NS + "}" + "UsernameToken" ); messageContext.put(WSHandlerConstants.SIG_KEY_ID, "DirectReference"); reqData.setMsgContext(messageContext); final Document doc = SOAPUtil.toSOAPPart(SOAPUtil.SAMPLE_SOAP_MSG); CustomHandler handler = new CustomHandler(); List<HandlerAction> actions = new ArrayList<>(); actions.add(new HandlerAction(WSConstants.UT)); actions.add(new HandlerAction(WSConstants.SIGN)); handler.send( doc, reqData, actions, true ); if (LOG.isDebugEnabled()) { LOG.debug("After Signing...."); String outputString = XMLUtils.prettyDocumentToString(doc); LOG.debug(outputString); } verify(doc); } /** * Verifies the soap envelope * <p/> * * @param doc * @throws Exception Thrown when there is a problem in verification */ private WSHandlerResult verify(Document doc) throws Exception { WSHandlerResult results = secEngine.processSecurityHeader( doc, null, this, CryptoFactory.getInstance("wss40CA.properties") ); if (LOG.isDebugEnabled()) { LOG.debug("Verfied and decrypted message:"); String outputString = XMLUtils.prettyDocumentToString(doc); LOG.debug(outputString); } return results; } public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException { for (int i = 0; i < callbacks.length; i++) { if (callbacks[i] instanceof WSPasswordCallback) { WSPasswordCallback pc = (WSPasswordCallback) callbacks[i]; if (pc.getUsage() == WSPasswordCallback.USERNAME_TOKEN && "alice".equals(pc.getIdentifier())) { pc.setPassword("verySecret"); } else if (pc.getUsage() == WSPasswordCallback.SIGNATURE && "wss40".equals(pc.getIdentifier())) { pc.setPassword("security"); } else { throw new IOException("Authentication failed"); } } else { throw new UnsupportedCallbackException(callbacks[i], "Unrecognized Callback"); } } } }