org.apache.ws.security.validate.JAASUsernameTokenValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wss4j Show documentation
Show all versions of wss4j Show documentation
The Apache WSS4J project provides a Java implementation of the primary security standards
for Web Services, namely the OASIS Web Services Security (WS-Security) specifications
from the OASIS Web Services Security TC.
/**
* 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.ws.security.validate;
import javax.security.auth.Subject;
import javax.security.auth.callback.CallbackHandler;
import javax.security.auth.login.LoginContext;
import javax.security.auth.login.LoginException;
import org.apache.ws.security.NamePasswordCallbackHandler;
import org.apache.ws.security.WSConstants;
import org.apache.ws.security.WSSecurityException;
import org.apache.ws.security.handler.RequestData;
import org.apache.ws.security.message.token.UsernameToken;
/**
* This class validates a processed UsernameToken, extracted from the Credential passed to
* the validate method.
* Username/password validation is delegated to JAAS LoginContext.
*/
public class JAASUsernameTokenValidator implements Validator {
private static org.apache.commons.logging.Log log =
org.apache.commons.logging.LogFactory.getLog(JAASUsernameTokenValidator.class);
private String contextName = null;
public void setContextName(String name) {
contextName = name;
}
public String getContextName() {
return contextName;
}
/**
* Validate the credential argument. It must contain a non-null UsernameToken. A
* CallbackHandler implementation is also required to be set.
* Validator
* If the password type is either digest or plaintext, it extracts a password from the
* CallbackHandler and then compares the passwords appropriately.
*
* If the password is null it queries a hook to allow the user to validate UsernameTokens
* of this type.
*
* @param credential the Credential to be validated
* @param data the RequestData associated with the request
* @throws WSSecurityException on a failed validation
*/
public Credential validate(Credential credential, RequestData data) throws WSSecurityException {
if (credential == null || credential.getUsernametoken() == null) {
throw new WSSecurityException(WSSecurityException.FAILURE, "noCredential");
}
String user = null;
String password = null;
UsernameToken usernameToken = credential.getUsernametoken();
user = usernameToken.getName();
String pwType = usernameToken.getPasswordType();
if (log.isDebugEnabled()) {
log.debug("UsernameToken user " + usernameToken.getName());
log.debug("UsernameToken password type " + pwType);
}
if (usernameToken.isHashed()) {
log.warn("Authentication failed as hashed username token not supported");
throw new WSSecurityException(WSSecurityException.FAILED_AUTHENTICATION);
}
password = usernameToken.getPassword();
if (!WSConstants.PASSWORD_TEXT.equals(pwType)) {
log.warn("Password type " + pwType + " not supported");
throw new WSSecurityException(WSSecurityException.FAILED_AUTHENTICATION);
}
if (!(user != null && user.length() > 0 && password != null && password.length() > 0)) {
log.warn("User or password empty");
throw new WSSecurityException(WSSecurityException.FAILED_AUTHENTICATION);
}
try {
CallbackHandler handler = getCallbackHandler(user, password);
LoginContext ctx = new LoginContext(getContextName(), handler);
ctx.login();
Subject subject = ctx.getSubject();
credential.setSubject(subject);
} catch (LoginException ex) {
log.info("Authentication failed", ex);
throw new WSSecurityException(
WSSecurityException.FAILED_AUTHENTICATION, null, null, ex
);
}
return credential;
}
protected CallbackHandler getCallbackHandler(String name, String password) {
return new NamePasswordCallbackHandler(name, password);
}
}