1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
|
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.ws.extensions.security;
// $Id: SecurityStore.java 5034 2007-11-12 14:08:23Z alessio.soldano@jboss.com $
import java.io.BufferedReader;
import java.io.File;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.net.MalformedURLException;
import java.net.URL;
import java.security.InvalidAlgorithmParameterException;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.PrivateKey;
import java.security.cert.CertPath;
import java.security.cert.CertPathValidator;
import java.security.cert.CertPathValidatorException;
import java.security.cert.Certificate;
import java.security.cert.CertificateFactory;
import java.security.cert.PKIXParameters;
import java.security.cert.X509Certificate;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.List;
import java.util.StringTokenizer;
import org.jboss.logging.Logger;
import org.jboss.ws.extensions.security.exception.FailedAuthenticationException;
import org.jboss.ws.extensions.security.exception.WSSecurityException;
/**
* <code>SecurityStore</code> holds and loads the keystore and truststore required for encyption and signing.
*
* @author <a href="mailto:jason.greene@jboss.com">Jason T. Greene</a>
* @author Magesh Kumar B
* @author Thomas.Diesler@jboss.com
*/
public class SecurityStore
{
private static Logger log = Logger.getLogger(SecurityStore.class);
private KeyStore keyStore;
private String keyStorePassword;
private KeyStore trustStore;
private String trustStorePassword;
private HashMap<String, String> keyPasswords;
public SecurityStore() throws WSSecurityException
{
this(null, null, null, null, null, null, null);
}
public SecurityStore(URL keyStoreURL, String keyStoreType, String keyStorePassword, HashMap<String, String> keyPasswords) throws WSSecurityException
{
loadKeyStore(keyStoreURL, keyStoreType, keyStorePassword);
loadTrustStore(keyStoreURL, keyStoreType, keyStorePassword);
this.keyPasswords = keyPasswords;
}
public SecurityStore(URL keyStoreURL, String keyStoreType, String keyStorePassword, HashMap<String, String> keyPasswords, URL trustStoreURL, String trustStoreType, String trustStorePassword)
throws WSSecurityException
{
loadKeyStore(keyStoreURL, keyStoreType, keyStorePassword);
loadTrustStore(trustStoreURL, trustStoreType, trustStorePassword);
this.keyPasswords = keyPasswords;
}
private void loadKeyStore(URL keyStoreURL, String keyStoreType, String keyStorePassword) throws WSSecurityException
{
if (keyStorePassword == null)
keyStorePassword = System.getProperty("org.jboss.ws.wsse.keyStorePassword");
keyStore = loadStore("org.jboss.ws.wsse.keyStore", "Keystore", keyStoreURL, keyStoreType, keyStorePassword);
this.keyStorePassword = keyStorePassword;
}
private void loadTrustStore(URL trustStoreURL, String trustStoreType, String trustStorePassword) throws WSSecurityException
{
if (trustStorePassword == null)
trustStorePassword = System.getProperty("org.jboss.ws.wsse.trustStorePassword");
trustStore = loadStore("org.jboss.ws.wsse.trustStore", "Truststore", trustStoreURL, trustStoreType, trustStorePassword);
this.trustStorePassword = trustStorePassword;
}
private KeyStore loadStore(String property, String type, URL storeURL, String storeType, String storePassword) throws WSSecurityException
{
if (storeURL == null)
{
String defaultStore = System.getProperty(property);
if (defaultStore == null)
{
return null;
}
File storeFile = new File(defaultStore);
try
{
storeURL = storeFile.toURL();
}
catch (MalformedURLException e)
{
throw new WSSecurityException("Problems loading " + type + ": " + e.getMessage(), e);
}
}
if (storeType == null)
storeType = System.getProperty(property + "Type");
if (storeType == null)
storeType = "jks";
KeyStore keyStore = null;
try
{
log.debug("loadStore: " + storeURL);
InputStream stream = storeURL.openStream();
if (stream == null)
throw new WSSecurityException("Cannot load store from: " + storeURL);
keyStore = KeyStore.getInstance(storeType);
if (keyStore == null)
throw new WSSecurityException("Cannot get keystore for type: " + storeType);
String decryptedPassword = decryptPassword(storePassword);
if (decryptedPassword == null)
throw new WSSecurityException("Cannot decrypt store password");
keyStore.load(stream, decryptedPassword.toCharArray());
}
catch (RuntimeException rte)
{
throw rte;
}
catch (WSSecurityException ex)
{
throw ex;
}
catch (Exception ex)
{
throw new WSSecurityException("Problems loading " + type + ": " + ex.getMessage(), ex);
}
return keyStore;
}
/**
* This method examines the password for the presence of a encryption algorithm, if found
* decrypts and returns the password, else returns the password as is.
*/
private String decryptPassword(String password) throws WSSecurityException
{
log.trace("decrypt password: " + password);
if (password == null)
throw new WSSecurityException("Invalid null password for security store");
if (password.charAt(0) == '{')
{
StringTokenizer tokenizer = new StringTokenizer(password, "{}");
String keyStorePasswordCmdType = tokenizer.nextToken();
String keyStorePasswordCmd = tokenizer.nextToken();
if (keyStorePasswordCmdType.equals("EXT"))
{
password = execPasswordCmd(keyStorePasswordCmd);
}
else if (keyStorePasswordCmdType.equals("CLASS"))
{
password = invokePasswordClass(keyStorePasswordCmd);
}
else
{
throw new WSSecurityException("Unknown keyStorePasswordCmdType: " + keyStorePasswordCmdType);
}
}
if (password == null)
throw new WSSecurityException("Cannot decrypt password, result is null");
log.trace("decrypted password: " + password);
return password;
}
private String execPasswordCmd(String keyStorePasswordCmd) throws WSSecurityException
{
log.debug("Executing cmd: " + keyStorePasswordCmd);
try
{
String password = null;
Runtime rt = Runtime.getRuntime();
Process p = rt.exec(keyStorePasswordCmd);
int status = p.waitFor();
if (status == 0)
{
InputStream stdin = p.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(stdin));
password = reader.readLine();
stdin.close();
}
else
{
InputStream stderr = p.getErrorStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(stderr));
String line = reader.readLine();
while (line != null)
{
log.error(line);
line = reader.readLine();
}
stderr.close();
}
log.debug("Command exited with: " + status);
return password;
}
catch (Exception e)
{
throw new WSSecurityException("Problems executing password cmd: " + keyStorePasswordCmd, e);
}
}
private String invokePasswordClass(String keyStorePasswordCmd) throws WSSecurityException
{
String password = null;
String classname = keyStorePasswordCmd;
String ctorArg = null;
int colon = keyStorePasswordCmd.indexOf(':');
if (colon > 0)
{
classname = keyStorePasswordCmd.substring(0, colon);
ctorArg = keyStorePasswordCmd.substring(colon + 1);
}
log.debug("Loading class: " + classname + ", ctorArg=" + ctorArg);
try
{
ClassLoader loader = Thread.currentThread().getContextClassLoader();
Class c = loader.loadClass(classname);
Object instance = null;
if (ctorArg != null)
{
Class[] sig = { String.class };
Constructor ctor = c.getConstructor(sig);
Object[] args = { ctorArg };
instance = ctor.newInstance(args);
}
else
{
instance = c.newInstance();
}
try
{
log.debug("Checking for toCharArray");
Class[] sig = {};
Method toCharArray = c.getMethod("toCharArray", sig);
Object[] args = {};
log.debug("Invoking toCharArray");
password = new String((char[])toCharArray.invoke(instance, args));
}
catch (NoSuchMethodException e)
{
log.debug("No toCharArray found, invoking toString");
password = instance.toString();
}
}
catch (Exception e)
{
throw new WSSecurityException("Problems loading or invoking Password class : " + classname, e);
}
return password;
}
public static byte[] getSubjectKeyIdentifier(X509Certificate cert)
{
// Maybee we should make one ourselves if it isn't there?
byte[] encoded = cert.getExtensionValue("2.5.29.14");
if (encoded == null)
return null;
// We need to skip 4 bytes [(OCTET STRING) (LENGTH)[(OCTET STRING) (LENGTH) (Actual data)]]
int trunc = encoded.length - 4;
byte[] identifier = new byte[trunc];
System.arraycopy(encoded, 4, identifier, 0, trunc);
return identifier;
}
public X509Certificate getCertificate(String alias) throws WSSecurityException
{
if (keyStore == null)
{
throw new WSSecurityException("KeyStore not set.");
}
X509Certificate cert;
try
{
cert = (X509Certificate)keyStore.getCertificate(alias);
}
catch (Exception e)
{
throw new WSSecurityException("Problems retrieving cert: " + e.getMessage(), e);
}
if (cert == null)
throw new WSSecurityException("Certificate (" + alias + ") not in keystore");
return cert;
}
public X509Certificate getCertificateBySubjectKeyIdentifier(byte[] identifier) throws WSSecurityException
{
if (identifier == null)
return null;
if (keyStore == null)
{
throw new WSSecurityException("KeyStore not set.");
}
try
{
Enumeration<String> i = keyStore.aliases();
while (i.hasMoreElements())
{
String alias = (String)i.nextElement();
Certificate cert = keyStore.getCertificate(alias);
if (!(cert instanceof X509Certificate))
continue;
byte[] subjectKeyIdentifier = getSubjectKeyIdentifier((X509Certificate)cert);
if (subjectKeyIdentifier == null)
continue;
if (Arrays.equals(identifier, subjectKeyIdentifier))
return (X509Certificate)cert;
}
}
catch (KeyStoreException e)
{
throw new WSSecurityException("Problems retrieving cert: " + e.getMessage(), e);
}
return null;
}
public X509Certificate getCertificateByIssuerSerial(String issuer, String serial) throws WSSecurityException
{
if (keyStore == null)
{
throw new WSSecurityException("KeyStore not set.");
}
try
{
Enumeration i = keyStore.aliases();
while (i.hasMoreElements())
{
String alias = (String)i.nextElement();
Certificate cert = keyStore.getCertificate(alias);
if (!(cert instanceof X509Certificate))
continue;
X509Certificate x509 = (X509Certificate)cert;
if (issuer.equals(x509.getIssuerDN().toString()) && serial.equals(x509.getSerialNumber().toString()))
return x509;
}
}
catch (KeyStoreException e)
{
throw new WSSecurityException("Problems retrieving cert: " + e.getMessage(), e);
}
return null;
}
public PrivateKey getPrivateKey(String alias) throws WSSecurityException
{
if (keyStore == null)
{
throw new WSSecurityException("KeyStore not set.");
}
PrivateKey key;
try
{
String password = keyStorePassword;
if (keyPasswords != null && keyPasswords.containsKey(alias))
password = keyPasswords.get(alias);
key = (PrivateKey)keyStore.getKey(alias, decryptPassword(password).toCharArray());
}
catch (Exception e)
{
throw new WSSecurityException("Problems retrieving private key: " + e.getMessage(), e);
}
if (key == null)
throw new WSSecurityException("Private key (" + alias + ") not in keystore");
return key;
}
public PrivateKey getPrivateKey(X509Certificate cert) throws WSSecurityException
{
if (keyStore == null)
{
throw new WSSecurityException("KeyStore not set.");
}
try
{
String alias = keyStore.getCertificateAlias(cert);
return getPrivateKey(alias);
}
catch (Exception e)
{
throw new WSSecurityException("Problems retrieving private key: " + e.getMessage(), e);
}
}
public void validateCertificate(X509Certificate cert) throws WSSecurityException
{
try
{
cert.checkValidity();
}
catch (Exception e)
{
log.debug("Certificate is invalid", e);
throw new FailedAuthenticationException();
}
if (keyStore == null)
{
throw new WSSecurityException("TrustStore not set.");
}
// Check for the exact entry in the truststore first, then fallback to a CA check
try
{
if (trustStore.getCertificateAlias(cert) != null)
{
return;
}
}
catch (KeyStoreException e)
{
throw new WSSecurityException("Problems searching truststore", e);
}
List list = new ArrayList(1);
list.add(cert);
CertPath cp;
CertPathValidator cpv;
PKIXParameters parameters;
try
{
cp = CertificateFactory.getInstance("X.509").generateCertPath(list);
cpv = CertPathValidator.getInstance("PKIX");
parameters = new PKIXParameters(trustStore);
// We currently don't support CRLs
parameters.setRevocationEnabled(false);
}
catch (Exception e)
{
throw new WSSecurityException("Problems setting up certificate validation", e);
}
try
{
cpv.validate(cp, parameters);
}
catch (CertPathValidatorException cpve)
{
log.debug("Certificate is invalid:", cpve);
throw new FailedAuthenticationException();
}
catch (InvalidAlgorithmParameterException e)
{
throw new WSSecurityException("Problems setting up certificate validation", e);
}
}
}
|