blob: 3b8d0a4babea0f4a77e7fb21d7a3e9f75652e235 [file] [log] [blame]
/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed 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.rampart.handler;
import org.apache.axiom.om.OMException;
import org.apache.axiom.soap.SOAP11Constants;
import org.apache.axiom.soap.SOAP12Constants;
import org.apache.axiom.soap.SOAPHeader;
import org.apache.axiom.soap.SOAPHeaderBlock;
import org.apache.axis2.AxisFault;
import org.apache.axis2.context.MessageContext;
import org.apache.axis2.description.HandlerDescription;
import org.apache.axis2.description.Parameter;
import org.apache.axis2.engine.Handler;
import org.apache.axis2.namespace.Constants;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.rampart.RampartConstants;
import org.apache.rampart.RampartEngine;
import org.apache.rampart.RampartException;
import org.apache.ws.secpolicy.WSSPolicyException;
import org.apache.wss4j.common.ext.WSSecurityException;
import org.apache.wss4j.dom.WSConstants;
import org.apache.wss4j.dom.engine.WSSecurityEngineResult;
import org.apache.wss4j.dom.handler.WSHandlerConstants;
import org.apache.wss4j.dom.handler.WSHandlerResult;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import javax.xml.namespace.QName;
/**
* Rampart inflow handler.
* This processes the incoming message and validates it against the effective
* policy.
*/
public class RampartReceiver implements Handler {
private static Log mlog = LogFactory.getLog(RampartConstants.MESSAGE_LOG);
private static HandlerDescription EMPTY_HANDLER_METADATA =
new HandlerDescription("default Handler");
private HandlerDescription handlerDesc;
public RampartReceiver() {
this.handlerDesc = EMPTY_HANDLER_METADATA;
}
public void cleanup() {
}
public void init(HandlerDescription handlerdesc) {
this.handlerDesc = handlerdesc;
}
public void flowComplete(MessageContext msgContext)
{
}
public InvocationResponse invoke(MessageContext msgContext) throws AxisFault {
if (!msgContext.isEngaged(WSSHandlerConstants.SECURITY_MODULE_NAME)) {
return InvocationResponse.CONTINUE;
}
if(mlog.isDebugEnabled()){
mlog.debug("*********************** RampartReceiver received \n"
+ msgContext.getEnvelope());
}
RampartEngine engine = new RampartEngine();
List<WSSecurityEngineResult> wsResult = null;
try {
wsResult = engine.process(msgContext);
} catch (WSSecurityException e) {
setFaultCodeAndThrowAxisFault(msgContext, e);
} catch (WSSPolicyException e) {
setFaultCodeAndThrowAxisFault(msgContext, e);
} catch (RampartException e) {
setFaultCodeAndThrowAxisFault(msgContext, e);
}
if(wsResult == null) {
return InvocationResponse.CONTINUE;
}
List<WSHandlerResult> results = null;
if ((results = (List<WSHandlerResult>) msgContext
.getProperty(WSHandlerConstants.RECV_RESULTS)) == null) {
results = new ArrayList<WSHandlerResult>();
msgContext.setProperty(WSHandlerConstants.RECV_RESULTS, results);
}
WSHandlerResult rResult = new WSHandlerResult("", wsResult, filterActionResults(wsResult));
results.add(0, rResult);
SOAPHeader header = null;
try {
header = msgContext.getEnvelope().getHeader();
} catch (OMException ex) {
throw new AxisFault(
"RampartReceiver: cannot get SOAP header after security processing",
ex);
}
Iterator headers = header.getChildElements();
SOAPHeaderBlock headerBlock = null;
while (headers.hasNext()) { // Find the wsse header
SOAPHeaderBlock hb = (SOAPHeaderBlock) headers.next();
if (hb.getLocalName().equals(WSConstants.WSSE_LN)
&& hb.getNamespace().getNamespaceURI().equals(WSConstants.WSSE_NS)) {
headerBlock = hb;
break;
}
}
if(headerBlock != null) {
headerBlock.setProcessed();
}
return InvocationResponse.CONTINUE;
}
private Map<Integer, List<WSSecurityEngineResult>> filterActionResults( List<WSSecurityEngineResult> results) {
Map<Integer, List<WSSecurityEngineResult>> actionResultsMap = new HashMap();
for (WSSecurityEngineResult result : results) {
Integer resultTag = (Integer)result.get(WSSecurityEngineResult.TAG_ACTION);
if (null != resultTag) {
List<WSSecurityEngineResult> actionResults = actionResultsMap.get(resultTag);
if (null == actionResults) {
actionResults = new ArrayList<>();
actionResultsMap.put(resultTag, actionResults);
}
actionResults.add(result);
}
}
return actionResultsMap;
}
public HandlerDescription getHandlerDesc() {
return this.handlerDesc;
}
public String getName() {
return "Apache Rampart inflow handler";
}
public Parameter getParameter(String name) {
return this.handlerDesc.getParameter(name);
}
private void setFaultCodeAndThrowAxisFault(MessageContext msgContext, Exception e) throws AxisFault {
msgContext.setProperty(RampartConstants.SEC_FAULT, Boolean.TRUE);
String soapVersionURI = msgContext.getEnvelope().getNamespace().getNamespaceURI();
QName faultCode = null;
/*
* Get the faultCode from the thrown WSSecurity exception, if there is one
*/
if (e instanceof WSSecurityException)
{
faultCode = ((WSSecurityException)e).getFaultCode();
}
/*
* Otherwise default to InvalidSecurity
*/
if (faultCode == null)
{
faultCode = new QName(WSConstants.INVALID_SECURITY.getNamespaceURI(),WSConstants.INVALID_SECURITY.getLocalPart(),"wsse");
}
if (soapVersionURI.equals(SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI) ) {
throw new AxisFault(faultCode,e.getMessage(),e);
} else if (soapVersionURI.equals(SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI)) {
List subfaultCodes = new ArrayList();
subfaultCodes.add(faultCode);
throw new AxisFault(Constants.FAULT_SOAP12_SENDER,subfaultCodes,e.getMessage(),e);
}
}
}