1 /*
   2  * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 4856966
  27  * @summary Test the new RSA provider can verify all the RSA certs in the cacerts file
  28  * @author Andreas Sterbenz
  29  * @library /test/lib ..
  30  * @library ../../../../java/security/testlibrary
  31  * @modules jdk.crypto.cryptoki
  32  * @run main/othervm TestCACerts
  33  * @run main/othervm TestCACerts sm TestCACerts.policy
  34  */
  35 
  36 // this test serves as our known answer test
  37 
  38 import java.io.FileInputStream;
  39 import java.io.InputStream;
  40 import java.security.KeyStore;
  41 import java.security.Provider;
  42 import java.security.PublicKey;
  43 import java.security.Security;
  44 import java.security.cert.X509Certificate;
  45 import java.util.Enumeration;
  46 
  47 public class TestCACerts extends PKCS11Test {
  48 
  49     public static void main(String[] args) throws Exception {
  50         main(new TestCACerts(), args);
  51     }
  52 
  53     @Override
  54     public void main(Provider p) throws Exception {
  55 
  56         /*
  57          * Use Solaris SPARC 11.2 or later to avoid an intermittent failure
  58          * when running SunPKCS11-Solaris (8044554)
  59          */
  60         if (p.getName().equals("SunPKCS11-Solaris") &&
  61             props.getProperty("os.name").equals("SunOS") &&
  62             props.getProperty("os.arch").equals("sparcv9") &&
  63             props.getProperty("os.version").compareTo("5.11") <= 0 &&
  64             getDistro().compareTo("11.2") < 0) {
  65 
  66             System.out.println("SunPKCS11-Solaris provider requires " +
  67                 "Solaris SPARC 11.2 or later, skipping");
  68             return;
  69         }
  70 
  71         long start = System.currentTimeMillis();
  72         Providers.setAt(p, 1);
  73         try {
  74             String PROVIDER = p.getName();
  75             String javaHome = props.getProperty("java.home");
  76             String caCerts = javaHome + SEP + "lib" + SEP + "security" + SEP + "cacerts";
  77             KeyStore ks;
  78             try (InputStream in = new FileInputStream(caCerts)) {
  79                 ks = KeyStore.getInstance(KeyStore.getDefaultType());
  80                 ks.load(in, null);
  81             }
  82             for (Enumeration e = ks.aliases(); e.hasMoreElements(); ) {
  83                 String alias = (String)e.nextElement();
  84                 if (ks.isCertificateEntry(alias)) {
  85                     System.out.println("* Testing " + alias + "...");
  86                     X509Certificate cert = (X509Certificate)ks.getCertificate(alias);
  87                     PublicKey key = cert.getPublicKey();
  88                     String alg = key.getAlgorithm();
  89                     if (alg.equals("RSA")) {
  90                         System.out.println("Signature algorithm: " + cert.getSigAlgName());
  91                         cert.verify(key, PROVIDER);
  92                     } else {
  93                         System.out.println("Skipping cert with key: " + alg);
  94                     }
  95                 } else {
  96                     System.out.println("Skipping alias " + alias);
  97                 }
  98             }
  99             long stop = System.currentTimeMillis();
 100             System.out.println("All tests passed (" + (stop - start) + " ms).");
 101          } finally {
 102             Security.removeProvider(p.getName());
 103          }
 104     }
 105 }