/* * Copyright (c) 2003, 2018, 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. */ import com.sun.net.httpserver.*; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.math.BigInteger; import java.net.InetSocketAddress; import java.nio.file.Files; import java.nio.file.Paths; import java.security.KeyStore; import java.security.PrivateKey; import java.security.Signature; import java.security.cert.Certificate; import java.security.cert.CertificateException; import java.security.cert.CertificateFactory; import java.security.cert.X509Certificate; import java.time.Instant; import java.time.temporal.ChronoUnit; import java.util.*; import java.util.jar.JarEntry; import java.util.jar.JarFile; import jdk.test.lib.SecurityTools; import jdk.test.lib.process.OutputAnalyzer; import jdk.test.lib.util.JarUtils; import sun.security.pkcs.ContentInfo; import sun.security.pkcs.PKCS7; import sun.security.pkcs.PKCS9Attribute; import sun.security.pkcs.SignerInfo; import sun.security.timestamp.TimestampToken; import sun.security.util.DerOutputStream; import sun.security.util.DerValue; import sun.security.util.ObjectIdentifier; import sun.security.x509.AlgorithmId; import sun.security.x509.X500Name; /* * @test * @bug 6543842 6543440 6939248 8009636 8024302 8163304 8169911 8180289 * @summary checking response of timestamp * @modules java.base/sun.security.pkcs * java.base/sun.security.timestamp * java.base/sun.security.x509 * java.base/sun.security.util * java.base/sun.security.tools.keytool * @library /lib/testlibrary * @library /test/lib * @build jdk.test.lib.util.JarUtils * jdk.test.lib.SecurityTools * jdk.test.lib.Utils * jdk.test.lib.Asserts * jdk.test.lib.JDKToolFinder * jdk.test.lib.JDKToolLauncher * jdk.test.lib.Platform * jdk.test.lib.process.* * @compile -XDignore.symbol.file TimestampCheck.java * @run main/timeout=600 TimestampCheck */ public class TimestampCheck { static final String defaultPolicyId = "2.3.4"; static String host = null; static class Handler implements HttpHandler, AutoCloseable { private final HttpServer httpServer; private final String keystore; @Override public void handle(HttpExchange t) throws IOException { int len = 0; for (String h: t.getRequestHeaders().keySet()) { if (h.equalsIgnoreCase("Content-length")) { len = Integer.valueOf(t.getRequestHeaders().get(h).get(0)); } } byte[] input = new byte[len]; t.getRequestBody().read(input); try { String path = t.getRequestURI().getPath().substring(1); byte[] output = sign(input, path); Headers out = t.getResponseHeaders(); out.set("Content-Type", "application/timestamp-reply"); t.sendResponseHeaders(200, output.length); OutputStream os = t.getResponseBody(); os.write(output); } catch (Exception e) { e.printStackTrace(); t.sendResponseHeaders(500, 0); } t.close(); } /** * @param input The data to sign * @param path different cases to simulate, impl on URL path * @returns the signed */ byte[] sign(byte[] input, String path) throws Exception { DerValue value = new DerValue(input); System.out.println("#\n# Incoming Request\n==================="); System.out.println("# Version: " + value.data.getInteger()); DerValue messageImprint = value.data.getDerValue(); AlgorithmId aid = AlgorithmId.parse( messageImprint.data.getDerValue()); System.out.println("# AlgorithmId: " + aid); ObjectIdentifier policyId = new ObjectIdentifier(defaultPolicyId); BigInteger nonce = null; while (value.data.available() > 0) { DerValue v = value.data.getDerValue(); if (v.tag == DerValue.tag_Integer) { nonce = v.getBigInteger(); System.out.println("# nonce: " + nonce); } else if (v.tag == DerValue.tag_Boolean) { System.out.println("# certReq: " + v.getBoolean()); } else if (v.tag == DerValue.tag_ObjectId) { policyId = v.getOID(); System.out.println("# PolicyID: " + policyId); } } System.out.println("#\n# Response\n==================="); KeyStore ks = KeyStore.getInstance( new File(keystore), "changeit".toCharArray()); // If path starts with "ts", use the TSA it points to. // Otherwise, always use "ts". String alias = path.startsWith("ts") ? path : "ts"; if (path.equals("diffpolicy")) { policyId = new ObjectIdentifier(defaultPolicyId); } DerOutputStream statusInfo = new DerOutputStream(); statusInfo.putInteger(0); AlgorithmId[] algorithms = {aid}; Certificate[] chain = ks.getCertificateChain(alias); X509Certificate[] signerCertificateChain; X509Certificate signer = (X509Certificate)chain[0]; if (path.equals("fullchain")) { // Only case 5 uses full chain signerCertificateChain = new X509Certificate[chain.length]; for (int i=0; i old.length) { return null; } if (Arrays.equals(Arrays.copyOfRange(old, pos, pos+from.length), from)) { byte[] result = old.clone(); System.arraycopy(to, 0, result, pos, from.length); return result; } pos++; } } private static void checkMissingOrInvalidFiles(String s) throws Throwable { JarUtils.updateJar(s, "1.jar", Map.of("META-INF/SIGNER.SF", Boolean.FALSE)); verify("1.jar", "-verbose") .shouldHaveExitValue(16) .shouldContain("treated as unsigned") .shouldContain("Missing signature-related file META-INF/SIGNER.SF"); JarUtils.updateJar(s, "2.jar", Map.of("META-INF/SIGNER.RSA", Boolean.FALSE)); verify("2.jar", "-verbose") .shouldHaveExitValue(16) .shouldContain("treated as unsigned") .shouldContain("Missing block file for signature-related file META-INF/SIGNER.SF"); JarUtils.updateJar(s, "3.jar", Map.of("META-INF/SIGNER.SF", "dummy")); verify("3.jar", "-verbose") .shouldHaveExitValue(16) .shouldContain("treated as unsigned") .shouldContain("Unparsable signature-related file META-INF/SIGNER.SF"); JarUtils.updateJar(s, "4.jar", Map.of("META-INF/SIGNER.RSA", "dummy")); verify("4.jar", "-verbose") .shouldHaveExitValue(16) .shouldContain("treated as unsigned") .shouldContain("Unparsable signature-related file META-INF/SIGNER.RSA"); } static OutputAnalyzer jarsigner(List extra) throws Exception { List args = new ArrayList<>( List.of("-keystore", "ks", "-storepass", "changeit")); args.addAll(extra); return SecurityTools.jarsigner(args); } static OutputAnalyzer verify(String file, String... extra) throws Exception { List args = new ArrayList<>(); args.add("-verify"); args.add("-strict"); args.add(file); args.addAll(Arrays.asList(extra)); return jarsigner(args); } static void checkBadKU(String file) throws Exception { verify(file) .shouldHaveExitValue(16) .shouldContain("treated as unsigned") .shouldContain("re-run jarsigner with debug enabled"); verify(file, "-verbose") .shouldHaveExitValue(16) .shouldContain("Signed by") .shouldContain("treated as unsigned") .shouldContain("re-run jarsigner with debug enabled"); verify(file, "-J-Djava.security.debug=jar") .shouldHaveExitValue(16) .shouldContain("SignatureException: Key usage restricted") .shouldContain("treated as unsigned") .shouldContain("re-run jarsigner with debug enabled"); } static void checkWeak(String file) throws Exception { verify(file) .shouldHaveExitValue(16) .shouldContain("treated as unsigned") .shouldMatch("weak algorithm that is now disabled.") .shouldMatch("Re-run jarsigner with the -verbose option for more details"); verify(file, "-verbose") .shouldHaveExitValue(16) .shouldContain("treated as unsigned") .shouldMatch("weak algorithm that is now disabled by") .shouldMatch("Digest algorithm: .*weak") .shouldMatch("Signature algorithm: .*weak") .shouldMatch("Timestamp digest algorithm: .*weak") .shouldNotMatch("Timestamp signature algorithm: .*weak.*weak") .shouldMatch("Timestamp signature algorithm: .*key.*weak"); verify(file, "-J-Djava.security.debug=jar") .shouldHaveExitValue(16) .shouldMatch("SignatureException:.*disabled"); // For 8171319: keytool should print out warnings when reading or // generating cert/cert req using weak algorithms. // Must call keytool the command, otherwise doPrintCert() might not // be able to reset "jdk.certpath.disabledAlgorithms". String sout = SecurityTools.keytool("-printcert -jarfile " + file) .stderrShouldContain("The TSA certificate uses a 512-bit RSA key" + " which is considered a security risk.") .getStdout(); if (sout.indexOf("weak", sout.indexOf("Timestamp:")) < 0) { throw new RuntimeException("timestamp not weak: " + sout); } } static void checkHalfWeak(String file) throws Exception { verify(file) .shouldHaveExitValue(16) .shouldContain("treated as unsigned") .shouldMatch("weak algorithm that is now disabled.") .shouldMatch("Re-run jarsigner with the -verbose option for more details"); verify(file, "-verbose") .shouldHaveExitValue(16) .shouldContain("treated as unsigned") .shouldMatch("weak algorithm that is now disabled by") .shouldMatch("Digest algorithm: .*weak") .shouldNotMatch("Signature algorithm: .*weak") .shouldNotMatch("Timestamp digest algorithm: .*weak") .shouldNotMatch("Timestamp signature algorithm: .*weak.*weak") .shouldNotMatch("Timestamp signature algorithm: .*key.*weak"); } static void checkMultiple(String file) throws Exception { verify(file) .shouldHaveExitValue(0) .shouldContain("jar verified"); verify(file, "-verbose", "-certs") .shouldHaveExitValue(0) .shouldContain("jar verified") .shouldMatch("X.509.*CN=dsakey") .shouldNotMatch("X.509.*CN=weakkeysize") .shouldMatch("Signed by .*CN=dsakey") .shouldMatch("Signed by .*CN=weakkeysize") .shouldMatch("Signature algorithm: .*key.*weak"); } static void checkTimestamp(String file, String policyId, String digestAlg) throws Exception { try (JarFile jf = new JarFile(file)) { JarEntry je = jf.getJarEntry("META-INF/SIGNER.RSA"); try (InputStream is = jf.getInputStream(je)) { byte[] content = is.readAllBytes(); PKCS7 p7 = new PKCS7(content); SignerInfo[] si = p7.getSignerInfos(); if (si == null || si.length == 0) { throw new Exception("Not signed"); } PKCS9Attribute p9 = si[0].getUnauthenticatedAttributes() .getAttribute(PKCS9Attribute.SIGNATURE_TIMESTAMP_TOKEN_OID); PKCS7 tsToken = new PKCS7((byte[]) p9.getValue()); TimestampToken tt = new TimestampToken(tsToken.getContentInfo().getData()); if (!tt.getHashAlgorithm().toString().equals(digestAlg)) { throw new Exception("Digest alg different"); } if (!tt.getPolicyID().equals(policyId)) { throw new Exception("policyId different"); } } } } static int which = 0; /** * Sign with a TSA path. Always use alias "signer" to sign "unsigned.jar". * The signed jar name is always path.jar. * * @param extra more args given to jarsigner */ static OutputAnalyzer sign(String path, String... extra) throws Exception { return signVerbose( path, "unsigned.jar", path + ".jar", "signer", extra); } static OutputAnalyzer signVerbose( String path, // TSA URL path String oldJar, String newJar, String alias, // signer String...extra) throws Exception { which++; System.out.println("\n>> Test #" + which); List args = new ArrayList<>(List.of( "-strict", "-verbose", "-debug", "-signedjar", newJar, oldJar, alias)); if (path != null) { args.add("-tsa"); args.add(host + path); } args.addAll(Arrays.asList(extra)); return jarsigner(args); } static void prepare() throws Exception { JarUtils.createJar("unsigned.jar", "A"); Files.deleteIfExists(Paths.get("ks")); keytool("-alias signer -genkeypair -ext bc -dname CN=signer"); keytool("-alias oldsigner -genkeypair -dname CN=oldsigner"); keytool("-alias dsakey -genkeypair -keyalg DSA -dname CN=dsakey"); keytool("-alias weakkeysize -genkeypair -keysize 512 -dname CN=weakkeysize"); keytool("-alias badku -genkeypair -dname CN=badku"); keytool("-alias ts -genkeypair -dname CN=ts"); keytool("-alias tsold -genkeypair -dname CN=tsold"); keytool("-alias tsweak -genkeypair -keysize 512 -dname CN=tsweak"); keytool("-alias tsbad1 -genkeypair -dname CN=tsbad1"); keytool("-alias tsbad2 -genkeypair -dname CN=tsbad2"); keytool("-alias tsbad3 -genkeypair -dname CN=tsbad3"); keytool("-alias tsnoca -genkeypair -dname CN=tsnoca"); keytool("-alias expired -genkeypair -dname CN=expired"); keytool("-alias expiring -genkeypair -dname CN=expiring"); keytool("-alias long -genkeypair -dname CN=long"); keytool("-alias tsexpired -genkeypair -dname CN=tsexpired"); keytool("-alias tsexpiring -genkeypair -dname CN=tsexpiring"); keytool("-alias tsexpiringsoon -genkeypair -dname CN=tsexpiringsoon"); keytool("-alias tslong -genkeypair -dname CN=tslong"); // tsnoca's issuer will be removed from keystore later keytool("-alias ca -genkeypair -ext bc -dname CN=CA"); gencert("tsnoca", "-ext eku:critical=ts"); keytool("-delete -alias ca"); keytool("-alias ca -genkeypair -ext bc -dname CN=CA -startdate -40d"); gencert("signer"); gencert("oldsigner", "-startdate -30d -validity 20"); gencert("dsakey"); gencert("weakkeysize"); gencert("badku", "-ext ku:critical=keyAgreement"); gencert("ts", "-ext eku:critical=ts -validity 500"); gencert("expired", "-validity 10 -startdate -12d"); gencert("expiring", "-validity 178"); gencert("long", "-validity 182"); gencert("tsexpired", "-ext eku:critical=ts -validity 10 -startdate -12d"); gencert("tsexpiring", "-ext eku:critical=ts -validity 364"); gencert("tsexpiringsoon", "-ext eku:critical=ts -validity 170"); // earlier than expiring gencert("tslong", "-ext eku:critical=ts -validity 367"); for (int i = 0; i < 5; i++) { // Issue another cert for "ts" with a different EKU. // Length might be different because serial number is // random. Try several times until a cert with the same // length is generated so we can substitute ts.cert // embedded in the PKCS7 block with ts2.cert. // If cannot create one, related test will be ignored. keytool("-gencert -alias ca -infile ts.req -outfile ts2.cert " + "-ext eku:critical=1.3.6.1.5.5.7.3.9"); if (Files.size(Paths.get("ts.cert")) != Files.size(Paths.get("ts2.cert"))) { Files.delete(Paths.get("ts2.cert")); System.out.println("Warning: cannot create same length"); } else { break; } } gencert("tsold", "-ext eku:critical=ts -startdate -40d -validity 500"); gencert("tsweak", "-ext eku:critical=ts"); gencert("tsbad1"); gencert("tsbad2", "-ext eku=ts"); gencert("tsbad3", "-ext eku:critical=cs"); } static void gencert(String alias, String... extra) throws Exception { keytool("-alias " + alias + " -certreq -file " + alias + ".req"); String genCmd = "-gencert -alias ca -infile " + alias + ".req -outfile " + alias + ".cert"; for (String s : extra) { genCmd += " " + s; } keytool(genCmd); keytool("-alias " + alias + " -importcert -file " + alias + ".cert"); } static void keytool(String cmd) throws Exception { cmd = "-keystore ks -storepass changeit -keypass changeit " + "-keyalg rsa -validity 200 " + cmd; sun.security.tools.keytool.Main.main(cmd.split(" ")); } }