jdk/src/share/classes/sun/security/util/Debug.java
author weijun
Tue, 21 Feb 2012 15:11:27 +0800
changeset 11912 49b066b32693
parent 10788 680a3dbfcaba
child 13796 792402bbac8d
permissions -rw-r--r--
7147336: clarification on warning of keytool -printcrl Reviewed-by: xuelei
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
10788
680a3dbfcaba 7102686: Restructure timestamp code so that jars and modules can more easily share the same code
mullan
parents: 6122
diff changeset
     2
 * Copyright (c) 1998, 2011, 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
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.security.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.math.BigInteger;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.regex.Pattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.regex.Matcher;
6122
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
    31
import java.util.Locale;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * A utility class for debuging.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * @author Roland Schemers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
public class Debug {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    private String prefix;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    private static String args;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        args = java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
                (new sun.security.action.GetPropertyAction
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
                ("java.security.debug"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        String args2 = java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
                (new sun.security.action.GetPropertyAction
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
                ("java.security.auth.debug"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        if (args == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
            args = args2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            if (args2 != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
               args = args + "," + args2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        if (args != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            args = marshal(args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            if (args.equals("help")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                Help();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    public static void Help()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        System.err.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        System.err.println("all           turn on all debugging");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        System.err.println("access        print all checkPermission results");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        System.err.println("combiner      SubjectDomainCombiner debugging");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        System.err.println("gssloginconfig");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        System.err.println("configfile    JAAS ConfigFile loading");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        System.err.println("configparser  JAAS ConfigFile parsing");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        System.err.println("              GSS LoginConfigImpl debugging");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        System.err.println("jar           jar verification");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        System.err.println("logincontext  login context results");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        System.err.println("policy        loading and granting");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        System.err.println("provider      security provider debugging");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        System.err.println("scl           permissions SecureClassLoader assigns");
10788
680a3dbfcaba 7102686: Restructure timestamp code so that jars and modules can more easily share the same code
mullan
parents: 6122
diff changeset
    83
        System.err.println("ts            timestamping");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        System.err.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        System.err.println("The following can be used with access:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        System.err.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        System.err.println("stack         include stack trace");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        System.err.println("domain        dump all domains in context");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        System.err.println("failure       before throwing exception, dump stack");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        System.err.println("              and domain that didn't have permission");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        System.err.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        System.err.println("The following can be used with stack and domain:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        System.err.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        System.err.println("permission=<classname>");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        System.err.println("              only dump output if specified permission");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        System.err.println("              is being checked");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        System.err.println("codebase=<URL>");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        System.err.println("              only dump output if specified codebase");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        System.err.println("              is being checked");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        System.err.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        System.err.println("Note: Separate multiple options with a comma");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        System.exit(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * Get a Debug object corresponding to whether or not the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * option is set. Set the prefix to be the same as option.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    public static Debug getInstance(String option)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        return getInstance(option, option);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * Get a Debug object corresponding to whether or not the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * option is set. Set the prefix to be prefix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    public static Debug getInstance(String option, String prefix)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        if (isOn(option)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            Debug d = new Debug();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            d.prefix = prefix;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            return d;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * True if the system property "security.debug" contains the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * string "option".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    public static boolean isOn(String option)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        if (args == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            if (args.indexOf("all") != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                return (args.indexOf(option) != -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * print a message to stderr that is prefixed with the prefix
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * created from the call to getInstance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    public void println(String message)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        System.err.println(prefix + ": "+message);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * print a blank line to stderr that is prefixed with the prefix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    public void println()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        System.err.println(prefix + ":");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * print a message to stderr that is prefixed with the prefix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    public static void println(String prefix, String message)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        System.err.println(prefix + ": "+message);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * return a hexadecimal printed representation of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * BigInteger object. the value is formatted to fit on lines of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * at least 75 characters, with embedded newlines. Words are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * separated for readability, with eight words (32 bytes) per line.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    public static String toHexString(BigInteger b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        String hexValue = b.toString(16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        StringBuffer buf = new StringBuffer(hexValue.length()*2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        if (hexValue.startsWith("-")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            buf.append("   -");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            hexValue = hexValue.substring(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            buf.append("    ");     // four spaces
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        if ((hexValue.length()%2) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            // add back the leading 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            hexValue = "0" + hexValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        int i=0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        while (i < hexValue.length()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
            // one byte at a time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
            buf.append(hexValue.substring(i, i+2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
            i+=2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
            if (i!= hexValue.length()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
                if ((i%64) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
                    buf.append("\n    ");     // line after eight words
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
                } else if (i%8 == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
                    buf.append(" ");     // space between words
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        return buf.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * change a string into lower case except permission classes and URLs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    private static String marshal(String args) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        if (args != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            StringBuffer target = new StringBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            StringBuffer source = new StringBuffer(args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            // obtain the "permission=<classname>" options
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            // the syntax of classname: IDENTIFIER.IDENTIFIER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            // the regular express to match a class name:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            // "[a-zA-Z_$][a-zA-Z0-9_$]*([.][a-zA-Z_$][a-zA-Z0-9_$]*)*"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
            String keyReg = "[Pp][Ee][Rr][Mm][Ii][Ss][Ss][Ii][Oo][Nn]=";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            String keyStr = "permission=";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            String reg = keyReg +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
                "[a-zA-Z_$][a-zA-Z0-9_$]*([.][a-zA-Z_$][a-zA-Z0-9_$]*)*";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            Pattern pattern = Pattern.compile(reg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            Matcher matcher = pattern.matcher(source);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            StringBuffer left = new StringBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            while (matcher.find()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
                String matched = matcher.group();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
                target.append(matched.replaceFirst(keyReg, keyStr));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
                target.append("  ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
                // delete the matched sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
                matcher.appendReplacement(left, "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            matcher.appendTail(left);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            source = left;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
            // obtain the "codebase=<URL>" options
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            // the syntax of URL is too flexible, and here assumes that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            // URL contains no space, comma(','), and semicolon(';'). That
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
            // also means those characters also could be used as separator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
            // after codebase option.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
            // However, the assumption is incorrect in some special situation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            // when the URL contains comma or semicolon
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            keyReg = "[Cc][Oo][Dd][Ee][Bb][Aa][Ss][Ee]=";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            keyStr = "codebase=";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            reg = keyReg + "[^, ;]*";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            pattern = Pattern.compile(reg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
            matcher = pattern.matcher(source);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
            left = new StringBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
            while (matcher.find()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
                String matched = matcher.group();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                target.append(matched.replaceFirst(keyReg, keyStr));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
                target.append("  ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
                // delete the matched sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
                matcher.appendReplacement(left, "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            matcher.appendTail(left);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
            source = left;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
            // convert the rest to lower-case characters
6122
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   267
            target.append(source.toString().toLowerCase(Locale.ENGLISH));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
            return target.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    private final static char[] hexDigits = "0123456789abcdef".toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    public static String toString(byte[] b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        if (b == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
            return "(null)";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        StringBuilder sb = new StringBuilder(b.length * 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        for (int i = 0; i < b.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
            int k = b[i] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
            if (i != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
                sb.append(':');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            sb.append(hexDigits[k >>> 4]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
            sb.append(hexDigits[k & 0xf]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
}