Skip to content

Commit de93b1d

Browse files
author
Hai-May Chao
committedOct 28, 2021
8257722: Improve "keytool -printcert -jarfile" output
Reviewed-by: weijun
1 parent 21da218 commit de93b1d

File tree

4 files changed

+169
-87
lines changed

4 files changed

+169
-87
lines changed
 

‎src/java.base/share/classes/sun/security/tools/keytool/Main.java

+67-39
Original file line numberDiff line numberDiff line change
@@ -2847,6 +2847,23 @@ private static String oneInMany(String label, int i, int num) {
28472847
}
28482848
}
28492849

2850+
private static String oneInManys(String label, int certNo, int certCnt, int signerNo,
2851+
int signerCnt) {
2852+
if (certCnt == 1 && signerCnt == 1) {
2853+
return label;
2854+
}
2855+
if (certCnt > 1 && signerCnt == 1) {
2856+
return String.format(rb.getString("one.in.many1"), label, certNo);
2857+
}
2858+
if (certCnt == 1 && signerCnt > 1) {
2859+
return String.format(rb.getString("one.in.many2"), label, signerNo);
2860+
}
2861+
if (certCnt > 1 && signerCnt > 1) {
2862+
return String.format(rb.getString("one.in.many3"), label, certNo, signerNo);
2863+
}
2864+
return label;
2865+
}
2866+
28502867
private void doPrintCert(final PrintStream out) throws Exception {
28512868
if (jarfile != null) {
28522869
// reset "jdk.certpath.disabledAlgorithms" security property
@@ -2855,7 +2872,7 @@ private void doPrintCert(final PrintStream out) throws Exception {
28552872

28562873
JarFile jf = new JarFile(jarfile, true);
28572874
Enumeration<JarEntry> entries = jf.entries();
2858-
Set<CodeSigner> ss = new HashSet<>();
2875+
LinkedHashSet<CodeSigner> ss = new LinkedHashSet<>();
28592876
byte[] buffer = new byte[8192];
28602877
int pos = 0;
28612878
while (entries.hasMoreElements()) {
@@ -2872,48 +2889,59 @@ private void doPrintCert(final PrintStream out) throws Exception {
28722889
for (CodeSigner signer: signers) {
28732890
if (!ss.contains(signer)) {
28742891
ss.add(signer);
2875-
out.printf(rb.getString("Signer.d."), ++pos);
2876-
out.println();
2877-
out.println();
2878-
out.println(rb.getString("Signature."));
2879-
out.println();
2880-
2881-
List<? extends Certificate> certs
2882-
= signer.getSignerCertPath().getCertificates();
2883-
int cc = 0;
2884-
for (Certificate cert: certs) {
2885-
X509Certificate x = (X509Certificate)cert;
2886-
if (rfc) {
2887-
out.println(rb.getString("Certificate.owner.") + x.getSubjectX500Principal() + "\n");
2888-
dumpCert(x, out);
2889-
} else {
2890-
printX509Cert(x, out);
2891-
}
2892-
out.println();
2893-
checkWeak(oneInMany(rb.getString("the.certificate"), cc++, certs.size()), x);
2894-
}
2895-
Timestamp ts = signer.getTimestamp();
2896-
if (ts != null) {
2897-
out.println(rb.getString("Timestamp."));
2898-
out.println();
2899-
certs = ts.getSignerCertPath().getCertificates();
2900-
cc = 0;
2901-
for (Certificate cert: certs) {
2902-
X509Certificate x = (X509Certificate)cert;
2903-
if (rfc) {
2904-
out.println(rb.getString("Certificate.owner.") + x.getSubjectX500Principal() + "\n");
2905-
dumpCert(x, out);
2906-
} else {
2907-
printX509Cert(x, out);
2908-
}
2909-
out.println();
2910-
checkWeak(oneInMany(rb.getString("the.tsa.certificate"), cc++, certs.size()), x);
2911-
}
2912-
}
29132892
}
29142893
}
29152894
}
29162895
}
2896+
2897+
for (CodeSigner signer: ss) {
2898+
out.printf(rb.getString("Signer.d."), ++pos);
2899+
out.println();
2900+
out.println();
2901+
2902+
List<? extends Certificate> certs
2903+
= signer.getSignerCertPath().getCertificates();
2904+
int cc = 0;
2905+
for (Certificate cert: certs) {
2906+
out.printf(rb.getString("Certificate.d."), ++cc);
2907+
out.println();
2908+
X509Certificate x = (X509Certificate)cert;
2909+
if (rfc) {
2910+
out.println(rb.getString("Certificate.owner.") + x.getSubjectX500Principal() + "\n");
2911+
dumpCert(x, out);
2912+
} else {
2913+
printX509Cert(x, out);
2914+
}
2915+
out.println();
2916+
checkWeak(oneInManys(rb.getString(
2917+
"the.certificate"), cc,
2918+
certs.size(), pos,
2919+
ss.size()), x);
2920+
}
2921+
Timestamp ts = signer.getTimestamp();
2922+
if (ts != null) {
2923+
out.println(rb.getString("Timestamp."));
2924+
out.println();
2925+
certs = ts.getSignerCertPath().getCertificates();
2926+
cc = 0;
2927+
for (Certificate cert: certs) {
2928+
out.printf(rb.getString("Certificate.d."), ++cc);
2929+
out.println();
2930+
X509Certificate x = (X509Certificate)cert;
2931+
if (rfc) {
2932+
out.println(rb.getString("Certificate.owner.") + x.getSubjectX500Principal() + "\n");
2933+
dumpCert(x, out);
2934+
} else {
2935+
printX509Cert(x, out);
2936+
}
2937+
out.println();
2938+
checkWeak(oneInManys(rb.getString(
2939+
"the.tsa.certificate"), cc,
2940+
certs.size(), pos,
2941+
ss.size()), x);
2942+
}
2943+
}
2944+
}
29172945
jf.close();
29182946
if (ss.isEmpty()) {
29192947
out.println(rb.getString("Not.a.signed.jar.file"));

‎src/java.base/share/classes/sun/security/tools/keytool/Resources.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -397,8 +397,8 @@ public class Resources extends java.util.ListResourceBundle {
397397
{".WARNING.WARNING.WARNING.",
398398
"***************** WARNING WARNING WARNING *****************"},
399399
{"Signer.d.", "Signer #%d:"},
400+
{"Certificate.d.", "Certificate #%d:"},
400401
{"Timestamp.", "Timestamp:"},
401-
{"Signature.", "Signature:"},
402402
{"Certificate.owner.", "Certificate owner: "},
403403
{"Not.a.signed.jar.file", "Not a signed jar file"},
404404
{"No.certificate.from.the.SSL.server",
@@ -465,6 +465,9 @@ public class Resources extends java.util.ListResourceBundle {
465465
{"the.input", "The input"},
466466
{"reply", "Reply"},
467467
{"one.in.many", "%1$s #%2$d of %3$d"},
468+
{"one.in.many1", "%1$s #%2$d"},
469+
{"one.in.many2", "%1$s of signer #%2$d"},
470+
{"one.in.many3", "%1$s #%2$d of signer #%3$d"},
468471
{"alias.in.cacerts", "Issuer <%s> in cacerts"},
469472
{"alias.in.keystore", "Issuer <%s>"},
470473
{"with.weak", "%s (weak)"},

‎test/jdk/sun/security/tools/jarsigner/TimestampCheck.java

-45
Original file line numberDiff line numberDiff line change
@@ -722,51 +722,6 @@ static void checkMultiple(String file) throws Exception {
722722
.shouldMatch("Signature algorithm: .*key.*(disabled)");
723723
}
724724

725-
static void checkWeak(String file) throws Exception {
726-
verify(file)
727-
.shouldHaveExitValue(0)
728-
.shouldNotContain("treated as unsigned");
729-
verify(file, "-verbose")
730-
.shouldHaveExitValue(0)
731-
.shouldNotContain("treated as unsigned")
732-
.shouldMatch("Digest algorithm: .*(weak)")
733-
.shouldMatch("Signature algorithm: .*(weak)")
734-
.shouldMatch("Timestamp digest algorithm: .*(weak)")
735-
.shouldNotMatch("Timestamp signature algorithm: .*(weak).*(weak)")
736-
.shouldMatch("Timestamp signature algorithm: .*key.*(weak)");
737-
verify(file, "-J-Djava.security.debug=jar")
738-
.shouldHaveExitValue(0)
739-
.shouldNotMatch("SignatureException:.*disabled");
740-
741-
// keytool should print out warnings when reading or
742-
// generating cert/cert req using legacy algorithms.
743-
String sout = SecurityTools.keytool("-printcert -jarfile " + file)
744-
.stderrShouldContain("The TSA certificate uses a 1024-bit RSA key" +
745-
" which is considered a security risk." +
746-
" This key size will be disabled in a future update.")
747-
.getStdout();
748-
if (sout.indexOf("weak", sout.indexOf("Timestamp:")) < 0) {
749-
throw new RuntimeException("timestamp not weak: " + sout);
750-
}
751-
}
752-
753-
static void checkHalfWeak(String file) throws Exception {
754-
verify(file)
755-
.shouldHaveExitValue(0)
756-
.shouldNotContain("treated as unsigned");
757-
verify(file, "-verbose")
758-
.shouldHaveExitValue(0)
759-
.shouldNotContain("treated as unsigned")
760-
.shouldMatch("Digest algorithm: .*(weak)")
761-
.shouldNotMatch("Signature algorithm: .*(weak)")
762-
.shouldNotMatch("Signature algorithm: .*(disabled)")
763-
.shouldNotMatch("Timestamp digest algorithm: .*(weak)")
764-
.shouldNotMatch("Timestamp signature algorithm: .*(weak).*(weak)")
765-
.shouldNotMatch("Timestamp signature algorithm: .*(disabled).*(disabled)")
766-
.shouldNotMatch("Timestamp signature algorithm: .*key.*(weak)")
767-
.shouldNotMatch("Timestamp signature algorithm: .*key.*(disabled)");
768-
}
769-
770725
static void checkMultipleWeak(String file) throws Exception {
771726
verify(file)
772727
.shouldHaveExitValue(0)

‎test/jdk/sun/security/tools/keytool/ReadJar.java

+98-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,7 @@
2323

2424
/**
2525
* @test
26-
* @bug 6890872 8168882
26+
* @bug 6890872 8168882 8257722
2727
* @summary keytool -printcert to recognize signed jar files
2828
* @library /test/lib
2929
* @build jdk.test.lib.SecurityTools
@@ -42,11 +42,24 @@
4242
import jdk.test.lib.SecurityTools;
4343
import jdk.test.lib.process.OutputAnalyzer;
4444
import jdk.test.lib.util.JarUtils;
45+
import java.nio.file.Path;
4546

4647
public class ReadJar {
4748

49+
static OutputAnalyzer kt(String cmd, String ks) throws Exception {
50+
return SecurityTools.keytool("-storepass changeit " + cmd +
51+
" -keystore " + ks);
52+
}
53+
54+
static void gencert(String owner, String cmd) throws Exception {
55+
kt("-certreq -alias " + owner + " -file tmp.req", "ks");
56+
kt("-gencert -infile tmp.req -outfile tmp.cert " + cmd, "ks");
57+
kt("-importcert -alias " + owner + " -file tmp.cert", "ks");
58+
}
59+
4860
public static void main(String[] args) throws Throwable {
4961
testWithMD5();
62+
testCertOutput();
5063
}
5164

5265
// make sure that -printcert option works
@@ -91,4 +104,87 @@ private static void printCert(String jar) throws Throwable {
91104
out.shouldHaveExitValue(0);
92105
out.shouldNotContain("Not a signed jar file");
93106
}
107+
108+
private static void testCertOutput() throws Throwable {
109+
kt("-genkeypair -keyalg rsa -alias e0 -dname CN=E0 " +
110+
"-keysize 512", "ks");
111+
JarUtils.createJarFile(Path.of("a0.jar"), Path.of("."), Path.of("ks"));
112+
// sign a0.jar file
113+
SecurityTools.jarsigner("-keystore ks -storepass changeit " +
114+
" a0.jar e0")
115+
.shouldHaveExitValue(0);
116+
117+
SecurityTools.keytool("-printcert -jarfile a0.jar")
118+
.shouldNotContain("Signature:")
119+
.shouldContain("Signer #1:")
120+
.shouldContain("Certificate #1:")
121+
.shouldNotContain("Certificate #2:")
122+
.shouldNotContain("Signer #2:")
123+
.shouldMatch("The certificate uses a 512-bit RSA key.*is disabled")
124+
.shouldHaveExitValue(0);
125+
126+
kt("-genkeypair -keyalg rsa -alias ca1 -dname CN=CA1 -ext bc:c " +
127+
"-keysize 512", "ks");
128+
kt("-genkeypair -keyalg rsa -alias e1 -dname CN=E1", "ks");
129+
gencert("e1", "-alias ca1 -ext san=dns:e1");
130+
131+
JarUtils.createJarFile(Path.of("a1.jar"), Path.of("."), Path.of("ks"));
132+
// sign a1.jar file
133+
SecurityTools.jarsigner("-keystore ks -storepass changeit " +
134+
" a1.jar e1")
135+
.shouldHaveExitValue(0);
136+
137+
SecurityTools.keytool("-printcert -jarfile a1.jar")
138+
.shouldNotContain("Signature:")
139+
.shouldContain("Signer #1:")
140+
.shouldContain("Certificate #1:")
141+
.shouldContain("Certificate #2:")
142+
.shouldNotContain("Signer #2:")
143+
.shouldMatch("The certificate #2 uses a 512-bit RSA key.*is disabled")
144+
.shouldHaveExitValue(0);
145+
146+
kt("-genkeypair -keyalg rsa -alias ca2 -dname CN=CA2 -ext bc:c " +
147+
"-sigalg SHA1withRSA", "ks");
148+
kt("-genkeypair -keyalg rsa -alias e2 -dname CN=E2", "ks");
149+
gencert("e2", "-alias ca2 -ext san=dns:e2");
150+
151+
// sign a1.jar file again with different signer
152+
SecurityTools.jarsigner("-keystore ks -storepass changeit " +
153+
" a1.jar e2")
154+
.shouldHaveExitValue(0);
155+
156+
SecurityTools.keytool("-printcert -jarfile a1.jar")
157+
.shouldNotContain("Signature:")
158+
.shouldContain("Signer #1:")
159+
.shouldContain("Certificate #1:")
160+
.shouldContain("Certificate #2:")
161+
.shouldContain("Signer #2:")
162+
.shouldMatch("The certificate #.* of signer #.*" + "uses the SHA1withRSA.*will be disabled")
163+
.shouldMatch("The certificate #.* of signer #.*" + "uses a 512-bit RSA key.*is disabled")
164+
.shouldHaveExitValue(0);
165+
166+
kt("-genkeypair -keyalg rsa -alias e3 -dname CN=E3",
167+
"ks");
168+
JarUtils.createJarFile(Path.of("a2.jar"), Path.of("."), Path.of("ks"));
169+
// sign a2.jar file
170+
SecurityTools.jarsigner("-keystore ks -storepass changeit " +
171+
" a2.jar e3")
172+
.shouldHaveExitValue(0);
173+
174+
kt("-genkeypair -keyalg rsa -alias e4 -dname CN=E4 " +
175+
"-keysize 1024", "ks");
176+
// sign a2.jar file again with different signer
177+
SecurityTools.jarsigner("-keystore ks -storepass changeit " +
178+
" a2.jar e4")
179+
.shouldHaveExitValue(0);
180+
181+
SecurityTools.keytool("-printcert -jarfile a2.jar")
182+
.shouldNotContain("Signature:")
183+
.shouldContain("Signer #1:")
184+
.shouldContain("Certificate #1:")
185+
.shouldNotContain("Certificate #2:")
186+
.shouldContain("Signer #2:")
187+
.shouldMatch("The certificate of signer #.*" + "uses a 1024-bit RSA key.*will be disabled")
188+
.shouldHaveExitValue(0);
189+
}
94190
}

0 commit comments

Comments
 (0)
Please sign in to comment.