com.yubico.client.v2.impl.YubicoClientImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yubico-validation-client2 Show documentation
Show all versions of yubico-validation-client2 Show documentation
Client library written in Java for verifying Yubikey one-time passwords (OTPs) with validation protocol 2.
/* Copyright (c) 2011, Linus Widströmer. All rights reserved.
Copyright (c) 2011, Simon Buckle. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
Written by Linus Widströmer , January 2011.
Modified by Simon Buckle , September 2011.
- Added support for generating and validating signatures
*/
package com.yubico.client.v2.impl;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import com.yubico.client.v2.Signature;
import com.yubico.client.v2.YubicoClient;
import com.yubico.client.v2.YubicoResponse;
import com.yubico.client.v2.YubicoResponseStatus;
import com.yubico.client.v2.YubicoValidationService;
import com.yubico.client.v2.exceptions.YubicoSignatureException;
import com.yubico.client.v2.exceptions.YubicoValidationException;
import com.yubico.client.v2.exceptions.YubicoValidationFailure;
public class YubicoClientImpl extends YubicoClient {
public YubicoClientImpl() {
}
public YubicoClientImpl(Integer id) {
this.clientId=id;
}
public YubicoClientImpl(Integer id, String key) {
this.clientId = id;
setKey(key);
}
public YubicoClientImpl(Integer id, String key, String sync) {
this.clientId = id;
setKey(key);
setSync(sync);
}
/** {@inheritDoc} */
public YubicoResponse verify(String otp) throws YubicoValidationException, YubicoValidationFailure {
if (!isValidOTPFormat(otp)) {
throw new IllegalArgumentException("The OTP is not a valid format");
}
String nonce=java.util.UUID.randomUUID().toString().replaceAll("-","");
String syncParam = "";
if(sync != null) {
syncParam = String.format("&sl=%s", sync);
}
String paramStr = String.format("id=%d&nonce=%s&otp=%s%s×tamp=%s", clientId, nonce, otp, syncParam, "1");
if (key != null) {
String s;
try {
s = Signature.calculate(paramStr.toString(), key).replaceAll("\\+", "%2B");
} catch (YubicoSignatureException e) {
throw new YubicoValidationException("Failed signing of request", e);
}
paramStr += "&h="; paramStr += s;
}
String[] wsapiUrls = this.getWsapiUrls();
List validationUrls = new ArrayList();
for(String wsapiUrl : wsapiUrls) {
validationUrls.add(wsapiUrl + "?" + paramStr);
}
YubicoResponse response = new YubicoValidationService().fetch(validationUrls);
// Verify the signature
if (key != null) {
StringBuffer keyValueStr = new StringBuffer();
for (Map.Entry entry : response.getKeyValueMap().entrySet()) {
if ("h".equals(entry.getKey())) { continue; }
if (keyValueStr.length() > 0) { keyValueStr.append("&"); }
keyValueStr.append(entry.getKey()).append("=").append(entry.getValue());
}
try {
String signature = Signature.calculate(keyValueStr.toString(), key).trim();
if (!response.getH().equals(signature)) {
// if we input a key not matching our clientId, we'll get this error here,
// as the server signs the response with our real key.
throw new YubicoValidationFailure("Signatures do not match");
}
} catch (YubicoSignatureException e) {
throw new YubicoValidationException("Failed to calculate the response signature.", e);
}
}
// NONCE/OTP fields are not returned to the client when sending error codes.
// If there is an error response, don't need to check them.
if (!isError(response.getStatus())) {
if (response.getOtp() == null || !otp.equals(response.getOtp())) {
throw new YubicoValidationFailure("OTP mismatch in response, is there a man-in-the-middle?");
}
if (response.getNonce() == null || !nonce.equals(response.getNonce())) {
throw new YubicoValidationFailure("Nonce mismatch in response, is there a man-in-the-middle?");
}
}
return response;
}
/**
* Function is used to determine if the response status is an error or not.
*
* @param status
* @return boolean
*/
private boolean isError(YubicoResponseStatus status)
{
return (YubicoResponseStatus.BACKEND_ERROR.equals(status) ||
YubicoResponseStatus.BAD_OTP.equals(status) ||
YubicoResponseStatus.BAD_SIGNATURE.equals(status) ||
YubicoResponseStatus.NO_SUCH_CLIENT.equals(status) ||
YubicoResponseStatus.MISSING_PARAMETER.equals(status));
}
}