Search in sources :

Example 6 with Packet

use of com.sun.xml.ws.api.message.Packet in project Payara by payara.

the class CommonServerSecurityPipe method preDestroy.

/**
 * This method is called once in server side and at most one in client side.
 */
@Override
public void preDestroy() {
    helper.disable();
    try {
        Packet request = new Packet();
        PacketMessageInfo info = new PacketMapMessageInfo(request, new Packet());
        Subject subj = new Subject();
        ServerAuthContext sAC = helper.getServerAuthContext(info, subj);
        if (sAC != null && WSIT_SERVER_AUTH_CONTEXT.equals(sAC.getClass().getName())) {
            sAC.cleanSubject(info, subj);
        }
    } catch (Exception ex) {
    // ignore exceptions
    }
    /**
     *         Fix for bug 3932/4052
     */
    next.preDestroy();
}
Also used : Packet(com.sun.xml.ws.api.message.Packet) PacketMapMessageInfo(com.sun.enterprise.security.jmac.provider.PacketMapMessageInfo) Subject(javax.security.auth.Subject) PrivilegedActionException(java.security.PrivilegedActionException) AuthException(javax.security.auth.message.AuthException) WebServiceException(javax.xml.ws.WebServiceException) PacketMessageInfo(com.sun.enterprise.security.jmac.provider.PacketMessageInfo)

Example 7 with Packet

use of com.sun.xml.ws.api.message.Packet in project Payara by payara.

the class CommonServerSecurityPipe method processRequest.

private Packet processRequest(Packet request) throws Exception {
    AuthStatus status = AuthStatus.SUCCESS;
    PacketMessageInfo info = new PacketMapMessageInfo(request, new Packet());
    // XXX at this time, we expect the server subject to be null
    Subject serverSubject = (Subject) request.invocationProperties.get(PipeConstants.SERVER_SUBJECT);
    // could change the request packet
    ServerAuthContext sAC = helper.getServerAuthContext(info, serverSubject);
    Subject clientSubject = getClientSubject(request);
    final Packet validatedRequest;
    try {
        if (sAC != null) {
            // client subject must not be null
            // and when return status is SUCCESS, module
            // must have called handler.handle(CallerPrincipalCallback)
            status = sAC.validateRequest(info, clientSubject, serverSubject);
        }
    } catch (Exception e) {
        _logger.log(Level.SEVERE, LogUtils.ERROR_REQUEST_VALIDATION, e);
        WebServiceException wse = new WebServiceException(localStrings.getLocalString("enterprise.webservice.cantValidateRequest", "Cannot validate request for {0}", new Object[] { helper.getModelName() }), e);
        // set status for audit
        status = AuthStatus.SEND_FAILURE;
        // if unable to determine if two-way will return empty response
        return helper.getFaultResponse(info.getRequestPacket(), info.getResponsePacket(), wse);
    } finally {
        validatedRequest = info.getRequestPacket();
        helper.auditInvocation(validatedRequest, status);
    }
    Packet response = null;
    if (status == AuthStatus.SUCCESS) {
        boolean authorized = false;
        try {
            helper.authorize(validatedRequest);
            authorized = true;
        } catch (Exception e) {
            // not authorized, construct fault and proceded
            response = helper.getFaultResponse(validatedRequest, info.getResponsePacket(), e);
        }
        if (authorized) {
            // only do doAdPriv if SecurityManager is in effect
            if (System.getSecurityManager() == null) {
                try {
                    // proceed to invoke the endpoint
                    response = next.process(validatedRequest);
                } catch (Exception e) {
                    _logger.log(Level.SEVERE, LogUtils.NEXT_PIPE, e);
                    response = helper.getFaultResponse(validatedRequest, info.getResponsePacket(), e);
                }
            } else {
                try {
                    response = (Packet) Subject.doAsPrivileged(clientSubject, new PrivilegedExceptionAction() {

                        @Override
                        public Object run() throws Exception {
                            // proceed to invoke the endpoint
                            return next.process(validatedRequest);
                        }
                    }, null);
                } catch (PrivilegedActionException pae) {
                    Throwable cause = pae.getCause();
                    _logger.log(Level.SEVERE, LogUtils.NEXT_PIPE, cause);
                    response = helper.getFaultResponse(validatedRequest, info.getResponsePacket(), cause);
                }
            }
        }
        // pipes are not supposed to return a null response packet
        if (response == null) {
            WebServiceException wse = new WebServiceException(localStrings.getLocalString("enterprise.webservice.nullResponsePacket", "Invocation of Service {0} returned null response packet", new Object[] { helper.getModelName() }));
            response = helper.getFaultResponse(validatedRequest, info.getResponsePacket(), wse);
            _logger.log(Level.SEVERE, LogUtils.EXCEPTION_THROWN, wse);
        }
        // secure response, including if it is a fault
        if (sAC != null && response.getMessage() != null) {
            info.setResponsePacket(response);
            response = processResponse(info, sAC, serverSubject);
        }
    } else {
        // validateRequest did not return success
        if (_logger.isLoggable(Level.FINE)) {
            _logger.log(Level.FINE, "ws.status_validate_request", status);
        }
        // even for one-way mep, may return response with non-empty message
        response = info.getResponsePacket();
    }
    return response;
}
Also used : Packet(com.sun.xml.ws.api.message.Packet) WebServiceException(javax.xml.ws.WebServiceException) PrivilegedActionException(java.security.PrivilegedActionException) PrivilegedExceptionAction(java.security.PrivilegedExceptionAction) Subject(javax.security.auth.Subject) PrivilegedActionException(java.security.PrivilegedActionException) AuthException(javax.security.auth.message.AuthException) WebServiceException(javax.xml.ws.WebServiceException) PacketMapMessageInfo(com.sun.enterprise.security.jmac.provider.PacketMapMessageInfo) AuthStatus(javax.security.auth.message.AuthStatus) PacketMessageInfo(com.sun.enterprise.security.jmac.provider.PacketMessageInfo)

Example 8 with Packet

use of com.sun.xml.ws.api.message.Packet in project Payara by payara.

the class CommonServerSecurityTube method processResponse.

@Override
public NextAction processResponse(Packet response) {
    try {
        // could be oneway
        if ((response == null) || (response.getMessage() == null)) {
            return doReturnWith(response);
        }
        Packet resp = response;
        // secure response, including if it is a fault
        if (sAC != null && response.getMessage() != null) {
            info.setResponsePacket(response);
            resp = processResponse(info, sAC, serverSubject);
        }
        return doReturnWith(resp);
    } catch (Throwable t) {
        if (!(t instanceof WebServiceException)) {
            t = new WebServiceException(t);
        }
        return doThrow(t);
    }
}
Also used : Packet(com.sun.xml.ws.api.message.Packet) WebServiceException(javax.xml.ws.WebServiceException)

Example 9 with Packet

use of com.sun.xml.ws.api.message.Packet in project Payara by payara.

the class CommonServerSecurityTube method processRequest.

@Override
public NextAction processRequest(Packet request) {
    try {
        if (isHttpBinding) {
            return doInvoke(super.next, request);
        }
        AuthStatus status = AuthStatus.SUCCESS;
        info = new PacketMapMessageInfo(request, new Packet());
        // XXX at this time, we expect the server subject to be null
        serverSubject = (Subject) request.invocationProperties.get(PipeConstants.SERVER_SUBJECT);
        // could change the request packet
        sAC = helper.getServerAuthContext(info, serverSubject);
        Subject clientSubject = getClientSubject(request);
        final Packet validatedRequest;
        try {
            if (sAC != null) {
                // client subject must not be null
                // and when return status is SUCCESS, module
                // must have called handler.handle(CallerPrincipalCallback)
                status = sAC.validateRequest(info, clientSubject, serverSubject);
            }
        } catch (Exception e) {
            _logger.log(Level.SEVERE, LogUtils.ERROR_REQUEST_VALIDATION, e);
            WebServiceException wse = new WebServiceException(localStrings.getLocalString("enterprise.webservice.cantValidateRequest", "Cannot validate request for {0}", new Object[] { helper.getModelName() }), e);
            // set status for audit
            status = AuthStatus.SEND_FAILURE;
            // if unable to determine if two-way will return empty response
            Packet ret = helper.getFaultResponse(info.getRequestPacket(), info.getResponsePacket(), wse);
            return doReturnWith(ret);
        } finally {
            validatedRequest = info.getRequestPacket();
            helper.auditInvocation(validatedRequest, status);
        }
        Packet response = null;
        if (status == AuthStatus.SUCCESS) {
            boolean authorized = false;
            try {
                helper.authorize(validatedRequest);
                authorized = true;
            } catch (Exception e) {
                // not authorized, construct fault and proceded
                response = helper.getFaultResponse(validatedRequest, info.getResponsePacket(), e);
                return doReturnWith(response);
            }
            if (authorized) {
                // only do doAdPriv if SecurityManager is in effect
                if (System.getSecurityManager() == null) {
                    try {
                        // proceed to invoke the endpoint
                        return doInvoke(super.next, validatedRequest);
                    } catch (Exception e) {
                        _logger.log(Level.SEVERE, LogUtils.NEXT_PIPE, e);
                        response = helper.getFaultResponse(validatedRequest, info.getResponsePacket(), e);
                        return doReturnWith(response);
                    }
                } else {
                    try {
                        final Tube next = super.next;
                        NextAction action = (NextAction) Subject.doAsPrivileged(clientSubject, new PrivilegedExceptionAction() {

                            public Object run() throws Exception {
                                // proceed to invoke the endpoint
                                return doInvoke(next, validatedRequest);
                            }
                        }, null);
                        return action;
                    } catch (PrivilegedActionException pae) {
                        Throwable cause = pae.getCause();
                        _logger.log(Level.SEVERE, LogUtils.NEXT_PIPE, cause);
                        response = helper.getFaultResponse(validatedRequest, info.getResponsePacket(), cause);
                        return doReturnWith(response);
                    }
                }
            } else {
                // if not authorized
                // not authorized, construct fault and proceded
                response = helper.getFaultResponse(validatedRequest, info.getResponsePacket(), new Exception("Client Not Authorized"));
                return doReturnWith(response);
            }
        } else {
            // validateRequest did not return success
            if (_logger.isLoggable(Level.FINE)) {
                _logger.log(Level.FINE, "ws.status_validate_request", status);
            }
            // even for one-way mep, may return response with non-empty message
            response = info.getResponsePacket();
            return doReturnWith(response);
        }
    } catch (Throwable t) {
        if (!(t instanceof WebServiceException)) {
            t = new WebServiceException(t);
        }
        return doThrow(t);
    }
}
Also used : Packet(com.sun.xml.ws.api.message.Packet) PacketMapMessageInfo(com.sun.enterprise.security.jmac.provider.PacketMapMessageInfo) Tube(com.sun.xml.ws.api.pipe.Tube) WebServiceException(javax.xml.ws.WebServiceException) AuthStatus(javax.security.auth.message.AuthStatus) PrivilegedActionException(java.security.PrivilegedActionException) PrivilegedExceptionAction(java.security.PrivilegedExceptionAction) NextAction(com.sun.xml.ws.api.pipe.NextAction) Subject(javax.security.auth.Subject) PrivilegedActionException(java.security.PrivilegedActionException) AuthException(javax.security.auth.message.AuthException) WebServiceException(javax.xml.ws.WebServiceException)

Example 10 with Packet

use of com.sun.xml.ws.api.message.Packet in project Payara by payara.

the class WebServicesDelegateImpl method getAuthContextID.

public String getAuthContextID(MessageInfo messageInfo) {
    // make this more efficient by operating on packet
    String rvalue = null;
    if (messageInfo instanceof PacketMessageInfo) {
        PacketMessageInfo pmi = (PacketMessageInfo) messageInfo;
        Packet p = (Packet) pmi.getRequestPacket();
        if (p != null) {
            Message m = p.getMessage();
            if (m != null) {
                WSDLPort port = (WSDLPort) messageInfo.getMap().get("WSDL_MODEL");
                if (port != null) {
                    WSDLBoundOperation w = m.getOperation(port);
                    if (w != null) {
                        QName n = w.getName();
                        if (n != null) {
                            rvalue = n.getLocalPart();
                        }
                    }
                }
            }
        }
        return rvalue;
    } else {
        // make this more efficient by operating on packet
        return getOpName((SOAPMessage) messageInfo.getRequestMessage());
    }
}
Also used : Packet(com.sun.xml.ws.api.message.Packet) Message(com.sun.xml.ws.api.message.Message) SOAPMessage(javax.xml.soap.SOAPMessage) WSDLBoundOperation(com.sun.xml.ws.api.model.wsdl.WSDLBoundOperation) QName(javax.xml.namespace.QName) PacketMessageInfo(com.sun.enterprise.security.jmac.provider.PacketMessageInfo) WSDLPort(com.sun.xml.ws.api.model.wsdl.WSDLPort)

Aggregations

Packet (com.sun.xml.ws.api.message.Packet)14 WebServiceException (javax.xml.ws.WebServiceException)11 PacketMapMessageInfo (com.sun.enterprise.security.jmac.provider.PacketMapMessageInfo)9 Subject (javax.security.auth.Subject)9 PacketMessageInfo (com.sun.enterprise.security.jmac.provider.PacketMessageInfo)8 WSSecureConversationException (com.sun.xml.ws.security.secconv.WSSecureConversationException)7 AuthStatus (javax.security.auth.message.AuthStatus)5 Message (com.sun.xml.ws.api.message.Message)3 PrivilegedActionException (java.security.PrivilegedActionException)3 AuthException (javax.security.auth.message.AuthException)3 PrivilegedExceptionAction (java.security.PrivilegedExceptionAction)2 HashMap (java.util.HashMap)2 JAXBElement (javax.xml.bind.JAXBElement)2 WSDLBoundOperation (com.sun.xml.ws.api.model.wsdl.WSDLBoundOperation)1 WSDLPort (com.sun.xml.ws.api.model.wsdl.WSDLPort)1 NextAction (com.sun.xml.ws.api.pipe.NextAction)1 Tube (com.sun.xml.ws.api.pipe.Tube)1 HttpServletRequest (javax.servlet.http.HttpServletRequest)1 HttpServletResponse (javax.servlet.http.HttpServletResponse)1 QName (javax.xml.namespace.QName)1