1 /*
2  * Copyright (c) 2014, 2020, 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 6997010 7191662
27  * @summary Consolidate java.security files into one file with modifications
28  * @run main/othervm CheckSecurityProvider
29  */
30 
31 import java.security.Provider;
32 import java.security.Security;
33 import java.util.ArrayList;
34 import java.util.Iterator;
35 import java.util.List;
36 import java.util.stream.Collectors;
37 import java.util.stream.Stream;
38 
39 /*
40  * The main benefit of this test is to catch merge errors or other types
41  * of issues where one or more of the security providers are accidentally
42  * removed. With the security manager enabled, this test can also catch
43  * scenarios where the default permission policy needs to be updated.
44  */
45 public class CheckSecurityProvider {
main(String[] args)46     public static void main(String[] args) throws Exception {
47         ModuleLayer layer = ModuleLayer.boot();
48 
49         System.setSecurityManager(new SecurityManager());
50 
51         String os = System.getProperty("os.name");
52         /*
53          * This array should be updated whenever new security providers
54          * are added to the the java.security file.
55          * NOTE: it should be in the same order as the java.security file
56          */
57 
58         List<String> expected = new ArrayList<>();
59 
60         // NOTE: the ordering must match what's defined inside java.security
61         expected.add("sun.security.provider.Sun");
62         expected.add("sun.security.rsa.SunRsaSign");
63         layer.findModule("jdk.crypto.ec")
64             .ifPresent(m -> expected.add("sun.security.ec.SunEC"));
65         expected.add("sun.security.ssl.SunJSSE");
66         expected.add("com.sun.crypto.provider.SunJCE");
67         layer.findModule("jdk.security.jgss")
68             .ifPresent(m -> expected.add("sun.security.jgss.SunProvider"));
69         layer.findModule("java.security.sasl")
70             .ifPresent(m -> expected.add("com.sun.security.sasl.Provider"));
71         layer.findModule("java.xml.crypto")
72             .ifPresent(m -> expected.add("org.jcp.xml.dsig.internal.dom.XMLDSigRI"));
73         layer.findModule("java.smartcardio")
74             .ifPresent(m -> expected.add("sun.security.smartcardio.SunPCSC"));
75         layer.findModule("java.naming")
76             .ifPresent(m -> expected.add("sun.security.provider.certpath.ldap.JdkLDAP"));
77         layer.findModule("jdk.security.jgss")
78             .ifPresent(m -> expected.add("com.sun.security.sasl.gsskerb.JdkSASL"));
79         if (os.startsWith("Windows")) {
80             layer.findModule("jdk.crypto.mscapi")
81                 .ifPresent(m -> expected.add("sun.security.mscapi.SunMSCAPI"));
82         }
83         if (os.contains("OS X")) {
84             expected.add("apple.security.AppleProvider");
85         }
86         layer.findModule("jdk.crypto.cryptoki")
87             .ifPresent(m -> expected.add("sun.security.pkcs11.SunPKCS11"));
88 
89         List<String> actual = Stream.of(Security.getProviders())
90             .map(p -> p.getClass().getName())
91             .collect(Collectors.toList());
92 
93         System.out.println("Expected providers:");
94         expected.stream().forEach(System.out::println);
95         System.out.println("Actual providers:");
96         actual.stream().forEach(System.out::println);
97 
98         if (expected.size() != actual.size()) {
99             throw new Exception("Unexpected provider count. "
100                 + "Expected: " + expected.size() + ". Actual: " + actual.size());
101         }
102         Iterator<String> iter = expected.iterator();
103         for (String p: actual) {
104             String nextExpected = iter.next();
105             if (!nextExpected.equals(p)) {
106                 throw new Exception("Expected " + nextExpected + ", actual " + p);
107             }
108         }
109     }
110 }
111