2015-03-13 16:32:54 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015, 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 8074064
|
|
|
|
* @summary OCSPResponse.SingleResponse objects do not parse singleExtensions
|
2015-05-28 17:54:48 +00:00
|
|
|
* @modules java.base/sun.security.x509
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Chris Hegarty <chris.hegarty@oracle.com>
Co-authored-by: Alexandr Scherbatiy <alexandr.scherbatiy@oracle.com>
Co-authored-by: Amy Lu <amy.lu@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Daniel Fuchs <daniel.fuchs@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Jaroslav Bachorik <jaroslav.bachorik@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jan Lahoda <jan.lahoda@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Miroslav Kos <miroslav.kos@oracle.com>
Co-authored-by: Huaming Li <huaming.li@oracle.com>
Co-authored-by: Sean Mullan <sean.mullan@oracle.com>
Co-authored-by: Naoto Sato <naoto.sato@oracle.com>
Co-authored-by: Masayoshi Okutsu <masayoshi.okutsu@oracle.com>
Co-authored-by: Peter Levart <peter.levart@gmail.com>
Co-authored-by: Philip Race <philip.race@oracle.com>
Co-authored-by: Claes Redestad <claes.redestad@oracle.com>
Co-authored-by: Sergey Bylokhov <sergey.bylokhov@oracle.com>
Co-authored-by: Alexandre Iline <alexandre.iline@oracle.com>
Co-authored-by: Volker Simonis <volker.simonis@gmail.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Stuart Marks <stuart.marks@oracle.com>
Co-authored-by: Semyon Sadetsky <semyon.sadetsky@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Co-authored-by: Valerie Peng <valerie.peng@oracle.com>
Co-authored-by: Vincent Ryan <vincent.x.ryan@oracle.com>
Co-authored-by: Weijun Wang <weijun.wang@oracle.com>
Co-authored-by: Yuri Nesterenko <yuri.nesterenko@oracle.com>
Co-authored-by: Yekaterina Kantserova <yekaterina.kantserova@oracle.com>
Co-authored-by: Alexander Kulyakthin <alexander.kulyakhtin@oracle.com>
Co-authored-by: Felix Yang <felix.yang@oracle.com>
Co-authored-by: Andrei Eremeev <andrei.eremeev@oracle.com>
Co-authored-by: Frank Yuan <frank.yuan@oracle.com>
Co-authored-by: Sergei Pikalev <sergei.pikalev@oracle.com>
Co-authored-by: Sibabrata Sahoo <sibabrata.sahoo@oracle.com>
Co-authored-by: Tiantian Du <tiantian.du@oracle.com>
Co-authored-by: Sha Jiang <sha.jiang@oracle.com>
Reviewed-by: alanb, mchung, naoto, rriggs, psandoz, plevart, mullan, ascarpino, vinnie, prr, sherman, dfuchs, mhaupt
2016-03-17 19:04:16 +00:00
|
|
|
* java.base/sun.security.provider.certpath
|
|
|
|
* @run main/othervm OCSPSingleExtensions
|
2015-03-13 16:32:54 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
import java.io.*;
|
|
|
|
import java.util.*;
|
|
|
|
import java.security.cert.*;
|
|
|
|
|
|
|
|
import sun.security.x509.SerialNumber;
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Chris Hegarty <chris.hegarty@oracle.com>
Co-authored-by: Alexandr Scherbatiy <alexandr.scherbatiy@oracle.com>
Co-authored-by: Amy Lu <amy.lu@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Daniel Fuchs <daniel.fuchs@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Jaroslav Bachorik <jaroslav.bachorik@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jan Lahoda <jan.lahoda@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Miroslav Kos <miroslav.kos@oracle.com>
Co-authored-by: Huaming Li <huaming.li@oracle.com>
Co-authored-by: Sean Mullan <sean.mullan@oracle.com>
Co-authored-by: Naoto Sato <naoto.sato@oracle.com>
Co-authored-by: Masayoshi Okutsu <masayoshi.okutsu@oracle.com>
Co-authored-by: Peter Levart <peter.levart@gmail.com>
Co-authored-by: Philip Race <philip.race@oracle.com>
Co-authored-by: Claes Redestad <claes.redestad@oracle.com>
Co-authored-by: Sergey Bylokhov <sergey.bylokhov@oracle.com>
Co-authored-by: Alexandre Iline <alexandre.iline@oracle.com>
Co-authored-by: Volker Simonis <volker.simonis@gmail.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Stuart Marks <stuart.marks@oracle.com>
Co-authored-by: Semyon Sadetsky <semyon.sadetsky@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Co-authored-by: Valerie Peng <valerie.peng@oracle.com>
Co-authored-by: Vincent Ryan <vincent.x.ryan@oracle.com>
Co-authored-by: Weijun Wang <weijun.wang@oracle.com>
Co-authored-by: Yuri Nesterenko <yuri.nesterenko@oracle.com>
Co-authored-by: Yekaterina Kantserova <yekaterina.kantserova@oracle.com>
Co-authored-by: Alexander Kulyakthin <alexander.kulyakhtin@oracle.com>
Co-authored-by: Felix Yang <felix.yang@oracle.com>
Co-authored-by: Andrei Eremeev <andrei.eremeev@oracle.com>
Co-authored-by: Frank Yuan <frank.yuan@oracle.com>
Co-authored-by: Sergei Pikalev <sergei.pikalev@oracle.com>
Co-authored-by: Sibabrata Sahoo <sibabrata.sahoo@oracle.com>
Co-authored-by: Tiantian Du <tiantian.du@oracle.com>
Co-authored-by: Sha Jiang <sha.jiang@oracle.com>
Reviewed-by: alanb, mchung, naoto, rriggs, psandoz, plevart, mullan, ascarpino, vinnie, prr, sherman, dfuchs, mhaupt
2016-03-17 19:04:16 +00:00
|
|
|
import sun.security.provider.certpath.*;
|
2015-03-13 16:32:54 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Tester note:
|
|
|
|
* For this test, all input files should be co-located with the test source
|
|
|
|
* code. All test input data should be in PEM format, and may be commented
|
|
|
|
* with the '#' character at the beginning of any comment line. Most tests were
|
|
|
|
* generated using the "openssl ocsp" utility in server mode and used the same
|
|
|
|
* utility as a client to drive the responses. In rare cases
|
|
|
|
* (ocsp-good-witharchcut.resp, etc.) the test input was manually modified
|
|
|
|
* because openssl's ocsp could not generate data in that format (e.g. a
|
|
|
|
* "good" response with singleExtensions in the SingleResponse structure.)
|
|
|
|
* These tests were created to force the code to walk codepaths reached only
|
|
|
|
* with invalid OCSP data or legal formats that are not easily generated using
|
|
|
|
* the tools at hand. These hand-modified test cases will not verify.
|
|
|
|
*/
|
|
|
|
|
|
|
|
public class OCSPSingleExtensions {
|
|
|
|
public static CertificateFactory CF;
|
|
|
|
public static final File testDir =
|
|
|
|
new File(System.getProperty("test.src", "."));
|
|
|
|
public static final Base64.Decoder B64D = Base64.getMimeDecoder();
|
|
|
|
|
|
|
|
public static void main(String [] args) throws Exception {
|
|
|
|
// Get a CertificateFactory for various tests
|
|
|
|
CF = CertificateFactory.getInstance("X509");
|
|
|
|
ByteArrayInputStream bais =
|
|
|
|
new ByteArrayInputStream(readFile("int.crt").getBytes());
|
|
|
|
X509Certificate intCA = (X509Certificate)CF.generateCertificate(bais);
|
|
|
|
System.out.println("Successfully instantiated CA cert \"" +
|
|
|
|
intCA.getSubjectX500Principal() + "\"");
|
|
|
|
|
|
|
|
CertId cid0x1500 = new CertId(intCA, new SerialNumber(0x1500));
|
|
|
|
boolean noFailures = true;
|
|
|
|
|
|
|
|
OCSPResponse.SingleResponse sr =
|
|
|
|
getSRByFilename("ocsp-good-nonext.resp", cid0x1500);
|
|
|
|
noFailures &= checkSingleExts(sr, 0);
|
|
|
|
|
|
|
|
if (sr.getRevocationTime() != null) {
|
|
|
|
throw new RuntimeException("Oops. revocationTime is non-null " +
|
|
|
|
sr.getRevocationTime());
|
|
|
|
} else if (sr.getRevocationReason() != null) {
|
|
|
|
throw new RuntimeException("Oops. revocationReason is non-null " +
|
|
|
|
sr.getRevocationReason());
|
|
|
|
}
|
|
|
|
|
|
|
|
sr = getSRByFilename("ocsp-good-withnext.resp", cid0x1500);
|
|
|
|
noFailures &= checkSingleExts(sr, 0);
|
|
|
|
|
|
|
|
sr = getSRByFilename("ocsp-good-witharchcut.resp", cid0x1500);
|
|
|
|
noFailures &= checkSingleExts(sr, 1);
|
|
|
|
|
|
|
|
sr = getSRByFilename("ocsp-rev-nocerts.resp", cid0x1500);
|
|
|
|
noFailures &= checkSingleExts(sr, 1);
|
|
|
|
|
|
|
|
sr = getSRByFilename("ocsp-rev-nonext-noinv.resp", cid0x1500);
|
|
|
|
noFailures &= checkSingleExts(sr, 0);
|
|
|
|
|
|
|
|
sr = getSRByFilename("ocsp-rev-withnext-noinv.resp", cid0x1500);
|
|
|
|
noFailures &= checkSingleExts(sr, 0);
|
|
|
|
|
|
|
|
sr = getSRByFilename("ocsp-rev-nonext-withinv.resp", cid0x1500);
|
|
|
|
noFailures &= checkSingleExts(sr, 1);
|
|
|
|
|
|
|
|
sr = getSRByFilename("ocsp-rev-withnext-withinv.resp", cid0x1500);
|
|
|
|
noFailures &= checkSingleExts(sr, 1);
|
|
|
|
|
|
|
|
try {
|
|
|
|
sr = getSRByFilename("ocsp-rev-twonext.resp", cid0x1500);
|
|
|
|
System.out.println("FAIL: Allowed two nextUpdate fields");
|
|
|
|
noFailures = false;
|
|
|
|
} catch (IOException ioe) {
|
|
|
|
System.out.println("Caught expected exception: " + ioe);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
sr = getSRByFilename("ocsp-rev-bad-sr-tag.resp", cid0x1500);
|
|
|
|
System.out.println("FAIL: Allowed invalid singleResponse item");
|
|
|
|
noFailures = false;
|
|
|
|
} catch (IOException ioe) {
|
|
|
|
System.out.println("Caught expected exception: " + ioe);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
sr = getSRByFilename("ocsp-rev-sr-cont-reverse.resp", cid0x1500);
|
|
|
|
System.out.println("FAIL: Allowed reversed " +
|
|
|
|
"nextUpdate/singleExtensions");
|
|
|
|
noFailures = false;
|
|
|
|
} catch (IOException ioe) {
|
|
|
|
System.out.println("Caught expected exception: " + ioe);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!noFailures) {
|
|
|
|
throw new RuntimeException("One or more tests failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static OCSPResponse.SingleResponse getSRByFilename(String fileName,
|
|
|
|
CertId cid) throws IOException {
|
|
|
|
byte[] respDER = B64D.decode(readFile(fileName));
|
|
|
|
OCSPResponse or = new OCSPResponse(respDER);
|
|
|
|
OCSPResponse.SingleResponse sr = or.getSingleResponse(cid);
|
|
|
|
return sr;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static String readFile(String fileName) throws IOException {
|
|
|
|
String filePath = testDir + "/" + fileName;
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
|
|
|
|
try (FileReader fr = new FileReader(filePath);
|
|
|
|
BufferedReader br = new BufferedReader(fr)) {
|
|
|
|
String line;
|
|
|
|
while ((line = br.readLine()) != null) {
|
|
|
|
if (!line.trim().startsWith("#")) {
|
|
|
|
sb.append(line).append("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
System.out.println("Successfully read " + fileName);
|
|
|
|
return sb.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean checkSingleExts(OCSPResponse.SingleResponse sr,
|
|
|
|
int singleExtCount) {
|
|
|
|
Map<String, Extension> singleExts;
|
|
|
|
try {
|
|
|
|
singleExts = sr.getSingleExtensions();
|
|
|
|
} catch (NullPointerException npe) {
|
|
|
|
System.out.println(
|
|
|
|
"Warning: Sent null singleResponse into checkSingleExts");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (String key : singleExts.keySet()) {
|
|
|
|
System.out.println("singleExtension: " + singleExts.get(key));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (singleExts.size() != singleExtCount) {
|
|
|
|
System.out.println("Single Extension count mismatch, " +
|
|
|
|
"expected " + singleExtCount + ", got " +
|
|
|
|
singleExts.size());
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|