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
|
/*
* Copyright (c) 2003, 2025, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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 General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 4856968 7054918 8130181
* @library /test/lib
* @summary make sure getInstance() works correctly, including failover
* and delayed provider selection for Signatures
* @author Andreas Sterbenz
*/
import java.util.*;
import java.security.*;
import java.security.cert.*;
import jdk.test.lib.security.ProvidersSnapshot;
public class GetInstance {
private static void same(Provider p1, Provider p2) throws Exception {
if (p1 != p2) {
throw new Exception("Wrong provider");
}
}
public static void main(String[] args) throws Exception {
ProvidersSnapshot snapshot = ProvidersSnapshot.create();
try {
main0(args);
} finally {
snapshot.restore();
}
}
public static void main0(String[] args) throws Exception {
long start = System.currentTimeMillis();
Provider foo = new FooProvider();
Provider bar = new BarProvider();
Provider baz = new BazProvider();
Security.addProvider(foo);
Security.addProvider(bar);
Security.addProvider(baz);
System.out.println("Testing MessageDigest.getInstance()...");
MessageDigest m;
m = MessageDigest.getInstance("foo");
m = MessageDigest.getInstance("foo", "foo");
m = MessageDigest.getInstance("foo", foo);
System.out.println("Testing Signature.getInstance() for SPI...");
Signature sig;
PrivateKey privateKey = new FooPrivateKey();
sig = Signature.getInstance("foo");
same(foo, sig.getProvider());
sig = Signature.getInstance("foo");
sig.initSign(privateKey);
same(foo, sig.getProvider());
sig = Signature.getInstance("foo", "foo");
sig.initSign(privateKey);
same(foo, sig.getProvider());
sig = Signature.getInstance("foo", foo);
sig.initSign(privateKey);
same(foo, sig.getProvider());
System.out.println("Testing Signature.getInstance() for Signature...");
sig = Signature.getInstance("fuu");
same(foo, sig.getProvider());
sig = Signature.getInstance("fuu");
sig.initSign(privateKey);
same(foo, sig.getProvider());
sig = Signature.getInstance("fuu", "foo");
sig.initSign(privateKey);
same(foo, sig.getProvider());
sig = Signature.getInstance("fuu", foo);
sig.initSign(privateKey);
same(foo, sig.getProvider());
System.out.println("Testing CertStore.getInstance()...");
CertStoreParameters params = new CollectionCertStoreParameters(Collections.EMPTY_LIST);
CertStore cs;
cs = CertStore.getInstance("foo", params);
cs = CertStore.getInstance("foo", params, "foo");
cs = CertStore.getInstance("foo", params, foo);
System.out.println("Testing failover...");
m = MessageDigest.getInstance("bar");
same(m.getProvider(), baz);
sig = Signature.getInstance("bar");
same(sig.getProvider(), baz);
cs = CertStore.getInstance("bar", params);
same(cs.getProvider(), baz);
System.out.println("Testing Signature delayed provider selection...");
sig = Signature.getInstance("baz");
sig.initVerify(new FooPublicKey());
same(sig.getProvider(), baz);
Provider.Service s = foo.getService("CertStore", "foo");
s.newInstance(null);
s.newInstance(params);
try {
s.newInstance(0);
throw new Exception("call should not succeed");
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
Throwable cause = e.getCause();
if (cause instanceof InvalidParameterException == false) {
throw new Exception("incorrect exception");
}
}
long stop = System.currentTimeMillis();
System.out.println("Done (" + (stop - start) + " ms).");
}
public static class FooProvider extends Provider {
FooProvider() {
super("foo", "1.0", "none");
put("MessageDigest.foo", "GetInstance$FooDigest");
put("CertStore.foo", "GetInstance$FooStore");
put("Signature.foo", "GetInstance$FooSignatureSpi");
put("Signature.fuu", "GetInstance$BazSignature");
// throws InvalidKeyException, skipped in delayed provider selection
put("Signature.baz", "GetInstance$BazSignatureSpi");
}
}
public static class BarProvider extends Provider {
BarProvider() {
super("bar", "1.0", "none");
// all entries invalid for failover
put("MessageDigest.bar", "GetInstance$FooKey");
put("Signature.bar", "GetInstance$FooKey");
put("Certstore.bar", "GetInstance$FooKey");
// not an SPI, skipped in delayed provider selection
put("Signature.baz", "GetInstance$BazSignature");
}
}
public static class BazProvider extends Provider {
BazProvider() {
super("baz", "1.0", "none");
put("MessageDigest.bar", "GetInstance$FooDigest");
put("CertStore.bar", "GetInstance$FooStore");
put("Signature.bar", "GetInstance$FooSignatureSpi");
put("Signature.baz", "GetInstance$FooSignatureSpi");
}
}
public static class FooDigest extends MessageDigestSpi {
public byte[] engineDigest() { return new byte[0]; }
public void engineReset() {}
public void engineUpdate(byte input) {}
public void engineUpdate(byte[] b, int ofs, int len) {}
}
public static class FooStore extends CertStoreSpi {
public FooStore(CertStoreParameters params) throws InvalidAlgorithmParameterException { super(params); }
public Collection engineGetCertificates(CertSelector sel) { return Collections.EMPTY_LIST; }
public Collection engineGetCRLs(CRLSelector sel) { return Collections.EMPTY_LIST; }
}
public static class BaseSignatureSpi extends SignatureSpi {
protected void engineInitVerify(PublicKey publicKey) throws InvalidKeyException {
}
protected void engineInitSign(PrivateKey privateKey) throws InvalidKeyException {
}
protected void engineUpdate(byte b) throws SignatureException { }
protected void engineUpdate(byte[] b, int off, int len) throws SignatureException { }
protected byte[] engineSign() throws SignatureException {
return new byte[0];
}
protected boolean engineVerify(byte[] sigBytes) throws SignatureException {
return false;
}
protected void engineSetParameter(String param, Object value) throws InvalidParameterException {
}
protected Object engineGetParameter(String param) throws InvalidParameterException {
return null;
}
}
public static class BaseSignature extends Signature {
BaseSignature(String s) {
super(s);
}
protected void engineInitVerify(PublicKey publicKey) throws InvalidKeyException {
//
}
protected void engineInitSign(PrivateKey privateKey) throws InvalidKeyException { }
protected void engineUpdate(byte b) throws SignatureException { }
protected void engineUpdate(byte[] b, int off, int len) throws SignatureException { }
protected byte[] engineSign() throws SignatureException {
return new byte[0];
}
protected boolean engineVerify(byte[] sigBytes) throws SignatureException {
return false;
}
protected void engineSetParameter(String param, Object value) throws InvalidParameterException {
}
protected Object engineGetParameter(String param) throws InvalidParameterException {
return null;
}
}
public static abstract class FooKey implements Key {
public String getFormat() { return null; }
public byte[] getEncoded() { return null; }
public String getAlgorithm() { return "foo"; }
}
public static class FooPrivateKey extends FooKey implements PrivateKey { }
public static class FooPublicKey extends FooKey implements PublicKey { }
public static class FooSignatureSpi extends BaseSignatureSpi {
public FooSignatureSpi() {
super();
System.out.println("FooSignatureSpi constructor");
}
}
public static class BazSignatureSpi extends BaseSignatureSpi {
public BazSignatureSpi() {
super();
System.out.println("BazSignatureSpi constructor");
}
protected void engineInitVerify(PublicKey publicKey) throws InvalidKeyException {
throw new InvalidKeyException("verify not supported");
}
}
public static class BazSignature extends BaseSignature {
public BazSignature() {
super("baz");
System.out.println("BazSignature constructor");
}
}
}
|