jdk/test/sun/security/pkcs11/PKCS11Test.java
author ascarpino
Mon, 29 Jul 2013 13:43:24 -0700
changeset 19067 5271291b7121
parent 19066 daf668acb10e
child 21977 17f538f05b73
permissions -rw-r--r--
8020424: The NSS version should be detected before running crypto tests Reviewed-by: valeriep
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
19066
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
     2
 * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
// common infrastructure for SunPKCS11 tests
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.lang.reflect.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
public abstract class PKCS11Test {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
    // directory of the test source
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    static final String BASE = System.getProperty("test.src", ".");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    static final char SEP = File.separatorChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    private final static String REL_CLOSED = "../../../../closed/sun/security/pkcs11".replace('/', SEP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    // directory corresponding to BASE in the /closed hierarchy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    static final String CLOSED_BASE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        // hack
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        String absBase = new File(BASE).getAbsolutePath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        int k = absBase.indexOf(SEP + "test" + SEP + "sun" + SEP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        if (k < 0) k = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        String p1 = absBase.substring(0, k + 6);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        String p2 = absBase.substring(k + 5);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        CLOSED_BASE = p1 + "closed" + p2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    static String NSPR_PREFIX = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
19067
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
    57
    // NSS version info
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
    58
    public static enum ECCState { None, Basic, Extended };
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
    59
    static double nss_version = -1;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
    60
    static ECCState nss_ecc_status = ECCState.Extended;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
    61
19066
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
    62
    // The NSS library we need to search for in getNSSLibDir()
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
    63
    // Default is "libsoftokn3.so", listed as "softokn3"
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
    64
    // The other is "libnss3.so", listed as "nss3".
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
    65
    static String nss_library = "softokn3";
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
    66
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    static Provider getSunPKCS11(String config) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        Class clazz = Class.forName("sun.security.pkcs11.SunPKCS11");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        Constructor cons = clazz.getConstructor(new Class[] {String.class});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        Object obj = cons.newInstance(new Object[] {config});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        return (Provider)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    public abstract void main(Provider p) throws Exception;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    private void premain(Provider p) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        long start = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        System.out.println("Running test with provider " + p.getName() + "...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        main(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        long stop = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        System.out.println("Completed test with provider " + p.getName() + " (" + (stop - start) + " ms).");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    public static void main(PKCS11Test test) throws Exception {
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    85
        Provider[] oldProviders = Security.getProviders();
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    86
        try {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    87
            System.out.println("Beginning test run " + test.getClass().getName() + "...");
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    88
            testDefault(test);
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    89
            testNSS(test);
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    90
            testDeimos(test);
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    91
        } finally {
19066
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
    92
            // NOTE: Do not place a 'return' in any finally block
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
    93
            // as it will suppress exceptions and hide test failures.
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    94
            Provider[] newProviders = Security.getProviders();
19066
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
    95
            boolean found = true;
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    96
            // Do not restore providers if nothing changed. This is especailly
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    97
            // useful for ./Provider/Login.sh, where a SecurityManager exists.
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    98
            if (oldProviders.length == newProviders.length) {
19066
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
    99
                found = false;
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   100
                for (int i = 0; i<oldProviders.length; i++) {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   101
                    if (oldProviders[i] != newProviders[i]) {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   102
                        found = true;
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   103
                        break;
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   104
                    }
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   105
                }
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   106
            }
19066
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   107
            if (found) {
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   108
                for (Provider p: newProviders) {
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   109
                    Security.removeProvider(p.getName());
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   110
                }
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   111
                for (Provider p: oldProviders) {
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   112
                    Security.addProvider(p);
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   113
                }
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   114
            }
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   115
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    public static void testDeimos(PKCS11Test test) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        if (new File("/opt/SUNWconn/lib/libpkcs11.so").isFile() == false ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            "true".equals(System.getProperty("NO_DEIMOS"))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        String base = getBase();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        String p11config = base + SEP + "nss" + SEP + "p11-deimos.txt";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        Provider p = getSunPKCS11(p11config);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        test.premain(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    public static void testDefault(PKCS11Test test) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        // run test for default configured PKCS11 providers (if any)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        if ("true".equals(System.getProperty("NO_DEFAULT"))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        Provider[] providers = Security.getProviders();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        for (int i = 0; i < providers.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            Provider p = providers[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            if (p.getName().startsWith("SunPKCS11-")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
                test.premain(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    private static String PKCS11_BASE;
12294
f313586fc3cc 7152582: PKCS11 tests should use the NSS libraries available in the OS
vinnie
parents: 12042
diff changeset
   146
    static {
f313586fc3cc 7152582: PKCS11 tests should use the NSS libraries available in the OS
vinnie
parents: 12042
diff changeset
   147
        try {
f313586fc3cc 7152582: PKCS11 tests should use the NSS libraries available in the OS
vinnie
parents: 12042
diff changeset
   148
            PKCS11_BASE = getBase();
f313586fc3cc 7152582: PKCS11 tests should use the NSS libraries available in the OS
vinnie
parents: 12042
diff changeset
   149
        } catch (Exception e) {
f313586fc3cc 7152582: PKCS11 tests should use the NSS libraries available in the OS
vinnie
parents: 12042
diff changeset
   150
            // ignore
f313586fc3cc 7152582: PKCS11 tests should use the NSS libraries available in the OS
vinnie
parents: 12042
diff changeset
   151
        }
f313586fc3cc 7152582: PKCS11 tests should use the NSS libraries available in the OS
vinnie
parents: 12042
diff changeset
   152
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    private final static String PKCS11_REL_PATH = "sun/security/pkcs11";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    public static String getBase() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        if (PKCS11_BASE != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            return PKCS11_BASE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        File cwd = new File(System.getProperty("test.src", ".")).getCanonicalFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            File file = new File(cwd, "TEST.ROOT");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            if (file.isFile()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            cwd = cwd.getParentFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            if (cwd == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                throw new Exception("Test root directory not found");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        PKCS11_BASE = new File(cwd, PKCS11_REL_PATH.replace('/', SEP)).getAbsolutePath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        return PKCS11_BASE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    public static String getNSSLibDir() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        Properties props = System.getProperties();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        String osName = props.getProperty("os.name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        if (osName.startsWith("Win")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            osName = "Windows";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            NSPR_PREFIX = "lib";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        String osid = osName + "-"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                + props.getProperty("os.arch") + "-" + props.getProperty("sun.arch.data.model");
13565
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   184
        String[] nssLibDirs = osMap.get(osid);
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   185
        if (nssLibDirs == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            System.out.println("Unsupported OS, skipping: " + osid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        }
13565
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   189
        if (nssLibDirs.length == 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            System.out.println("NSS not supported on this platform, skipping test");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        }
13565
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   193
        String nssLibDir = null;
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   194
        for (String dir : nssLibDirs) {
19066
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   195
            if (new File(dir).exists() &&
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   196
                new File(dir + System.mapLibraryName(nss_library)).exists()) {
13565
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   197
                nssLibDir = dir;
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   198
                System.setProperty("pkcs11test.nss.libdir", nssLibDir);
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   199
                break;
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   200
            }
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   201
        }
12294
f313586fc3cc 7152582: PKCS11 tests should use the NSS libraries available in the OS
vinnie
parents: 12042
diff changeset
   202
        return nssLibDir;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   205
    protected static void safeReload(String lib) throws Exception {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   206
        try {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   207
            System.load(lib);
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   208
        } catch (UnsatisfiedLinkError e) {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   209
            if (e.getMessage().contains("already loaded")) {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   210
                return;
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   211
            }
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   212
        }
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   213
    }
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   214
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    static boolean loadNSPR(String libdir) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        // load NSS softoken dependencies in advance to avoid resolver issues
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   217
        safeReload(libdir + System.mapLibraryName(NSPR_PREFIX + "nspr4"));
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   218
        safeReload(libdir + System.mapLibraryName(NSPR_PREFIX + "plc4"));
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   219
        safeReload(libdir + System.mapLibraryName(NSPR_PREFIX + "plds4"));
12294
f313586fc3cc 7152582: PKCS11 tests should use the NSS libraries available in the OS
vinnie
parents: 12042
diff changeset
   220
        safeReload(libdir + System.mapLibraryName("sqlite3"));
f313586fc3cc 7152582: PKCS11 tests should use the NSS libraries available in the OS
vinnie
parents: 12042
diff changeset
   221
        safeReload(libdir + System.mapLibraryName("nssutil3"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
19067
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   225
    // Check the provider being used is NSS
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   226
    public static boolean isNSS(Provider p) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   227
        return p.getName().toUpperCase().equals("SUNPKCS11-NSS");
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   228
    }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   229
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   230
    static double getNSSVersion() {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   231
        if (nss_version == -1)
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   232
            getNSSInfo();
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   233
        return nss_version;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   234
    }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   235
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   236
    static ECCState getNSSECC() {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   237
        if (nss_version == -1)
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   238
            getNSSInfo();
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   239
        return nss_ecc_status;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   240
    }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   241
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   242
    /* Read the library to find out the verison */
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   243
    static void getNSSInfo() {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   244
        String nssHeader = "$Header: NSS";
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   245
        boolean found = false;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   246
        String s = null;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   247
        int i = 0;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   248
        String libfile = "";
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   249
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   250
        try {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   251
            libfile = getNSSLibDir() + System.mapLibraryName(nss_library);
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   252
            FileInputStream is = new FileInputStream(libfile);
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   253
            byte[] data = new byte[1000];
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   254
            int read = 0;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   255
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   256
            while (is.available() > 0) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   257
                if (read == 0) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   258
                    read = is.read(data, 0, 1000);
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   259
                } else {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   260
                    // Prepend last 100 bytes in case the header was split
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   261
                    // between the reads.
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   262
                    System.arraycopy(data, 900, data, 0, 100);
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   263
                    read = 100 + is.read(data, 100, 900);
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   264
                }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   265
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   266
                s = new String(data, 0, read);
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   267
                if ((i = s.indexOf(nssHeader)) > 0) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   268
                    found = true;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   269
                    // If the nssHeader is before 920 we can break, otherwise
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   270
                    // we may not have the whole header so do another read.  If
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   271
                    // no bytes are in the stream, that is ok, found is true.
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   272
                    if (i < 920) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   273
                        break;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   274
                    }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   275
                }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   276
            }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   277
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   278
            is.close();
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   279
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   280
        } catch (Exception e) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   281
            e.printStackTrace();
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   282
        }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   283
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   284
        if (!found) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   285
            System.out.println("NSS version not found, set to 0.0: "+libfile);
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   286
            nss_version = 0.0;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   287
            return;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   288
        }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   289
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   290
        // the index after whitespace after nssHeader
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   291
        int afterheader = s.indexOf("NSS", i) + 4;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   292
        String version = s.substring(afterheader, s.indexOf(' ', afterheader));
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   293
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   294
        // If a "dot dot" release, strip the extra dots for double parsing
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   295
        String[] dot = version.split("\\.");
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   296
        if (dot.length > 2) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   297
            version = dot[0]+"."+dot[1];
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   298
            for (int j = 2; dot.length > j; j++) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   299
                version += dot[j];
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   300
            }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   301
        }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   302
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   303
        // Convert to double for easier version value checking
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   304
        try {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   305
            nss_version = Double.parseDouble(version);
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   306
        } catch (NumberFormatException e) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   307
            System.out.println("Failed to parse NSS version. Set to 0.0");
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   308
            e.printStackTrace();
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   309
        }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   310
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   311
        System.out.print("NSS version = "+version+".  ");
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   312
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   313
        // Check for ECC
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   314
        if (s.indexOf("Basic") > 0) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   315
            nss_ecc_status = ECCState.Basic;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   316
            System.out.println("ECC Basic.");
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   317
        } else if (s.indexOf("Extended") > 0) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   318
            nss_ecc_status = ECCState.Extended;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   319
            System.out.println("ECC Extended.");
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   320
        }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   321
    }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 19066
diff changeset
   322
19066
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   323
    // Used to set the nss_library file to search for libsoftokn3.so
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   324
    public static void useNSS() {
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   325
        nss_library = "nss3";
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   326
    }
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   327
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    public static void testNSS(PKCS11Test test) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        String libdir = getNSSLibDir();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        if (libdir == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        String base = getBase();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        if (loadNSPR(libdir) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
19066
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   339
        String libfile = libdir + System.mapLibraryName(nss_library);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        String customDBdir = System.getProperty("CUSTOM_DB_DIR");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        String dbdir = (customDBdir != null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                                customDBdir :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                                base + SEP + "nss" + SEP + "db";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        // NSS always wants forward slashes for the config path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        dbdir = dbdir.replace('\\', '/');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
        String customConfig = System.getProperty("CUSTOM_P11_CONFIG");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        String customConfigName = System.getProperty("CUSTOM_P11_CONFIG_NAME", "p11-nss.txt");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        String p11config = (customConfig != null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
                                customConfig :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
                                base + SEP + "nss" + SEP + customConfigName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        System.setProperty("pkcs11test.nss.lib", libfile);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        System.setProperty("pkcs11test.nss.db", dbdir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        Provider p = getSunPKCS11(p11config);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        test.premain(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
13565
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   361
    private static final Map<String,String[]> osMap;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
12294
f313586fc3cc 7152582: PKCS11 tests should use the NSS libraries available in the OS
vinnie
parents: 12042
diff changeset
   363
    // Location of the NSS libraries on each supported platform
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
    static {
13565
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   365
        osMap = new HashMap<String,String[]>();
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   366
        osMap.put("SunOS-sparc-32", new String[]{"/usr/lib/mps/"});
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   367
        osMap.put("SunOS-sparcv9-64", new String[]{"/usr/lib/mps/64/"});
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   368
        osMap.put("SunOS-x86-32", new String[]{"/usr/lib/mps/"});
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   369
        osMap.put("SunOS-amd64-64", new String[]{"/usr/lib/mps/64/"});
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   370
        osMap.put("Linux-i386-32", new String[]{
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   371
            "/usr/lib/i386-linux-gnu/", "/usr/lib/"});
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   372
        osMap.put("Linux-amd64-64", new String[]{
19066
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   373
            "/usr/lib/x86_64-linux-gnu/", "/usr/lib/x86_64-linux-gnu/nss/",
daf668acb10e 8012971: PKCS11Test hiding exception failures
ascarpino
parents: 13565
diff changeset
   374
            "/usr/lib64/"});
13565
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   375
        osMap.put("Windows-x86-32", new String[]{
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   376
            PKCS11_BASE + "/nss/lib/windows-i586/".replace('/', SEP)});
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   377
        osMap.put("Windows-amd64-64", new String[]{
6298d600104f 7190945: pkcs11 problem loading NSS libs on Ubuntu
vinnie
parents: 13250
diff changeset
   378
            PKCS11_BASE + "/nss/lib/windows-amd64/".replace('/', SEP)});
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    private final static char[] hexDigits = "0123456789abcdef".toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    public static String toString(byte[] b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        if (b == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
            return "(null)";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        StringBuffer sb = new StringBuffer(b.length * 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        for (int i = 0; i < b.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
            int k = b[i] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
            if (i != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
                sb.append(':');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            sb.append(hexDigits[k >>> 4]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
            sb.append(hexDigits[k & 0xf]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    public static byte[] parse(String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        if (s.equals("(null)")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
            int n = s.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            ByteArrayOutputStream out = new ByteArrayOutputStream(n / 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
            StringReader r = new StringReader(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
            while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                int b1 = nextNibble(r);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
                if (b1 < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
                int b2 = nextNibble(r);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                if (b2 < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                    throw new RuntimeException("Invalid string " + s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                int b = (b1 << 4) | b2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
                out.write(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
            return out.toByteArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
            throw new RuntimeException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    private static int nextNibble(StringReader r) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
            int ch = r.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
            if (ch == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
            } else if ((ch >= '0') && (ch <= '9')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
                return ch - '0';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
            } else if ((ch >= 'a') && (ch <= 'f')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
                return ch - 'a' + 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
            } else if ((ch >= 'A') && (ch <= 'F')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
                return ch - 'A' + 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    <T> T[] concat(T[] a, T[] b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        if ((b == null) || (b.length == 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
            return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        T[] r = (T[])java.lang.reflect.Array.newInstance(a.getClass().getComponentType(), a.length + b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        System.arraycopy(a, 0, r, 0, a.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        System.arraycopy(b, 0, r, a.length, b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        return r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
}