jdk/src/share/classes/sun/security/krb5/KrbException.java
author weijun
Fri, 20 Jun 2014 10:27:10 +0800
changeset 25151 7a670121602e
parent 24969 afa6934dd8e8
permissions -rw-r--r--
8029994: Support "include" and "includedir" in krb5.conf Reviewed-by: mullan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
14342
8435a30053c1 7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents: 13247
diff changeset
     2
 * Copyright (c) 2000, 2012, 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
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 *  (C) Copyright IBM Corp. 1999 All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *  Copyright 1997 The Open Group Research Institute.  All rights reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
package sun.security.krb5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.security.krb5.internal.Krb5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import sun.security.krb5.internal.KRBError;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
public class KrbException extends Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    private static final long serialVersionUID = -4993302876451928596L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    private int returnCode;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    private KRBError error;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    public KrbException(String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        super(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
13247
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 5506
diff changeset
    48
    public KrbException(Throwable cause) {
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 5506
diff changeset
    49
        super(cause);
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 5506
diff changeset
    50
    }
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 5506
diff changeset
    51
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    public KrbException(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        returnCode = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    public KrbException(int i, String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        this(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        returnCode = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    public KrbException(KRBError e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        returnCode = e.getErrorCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        error = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    public KrbException(KRBError e, String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        this(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        returnCode = e.getErrorCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        error = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    public KRBError getError() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        return error;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    public int returnCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        return returnCode;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    public String returnCodeSymbol() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        return returnCodeSymbol(returnCode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    public static String returnCodeSymbol(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        return "not yet implemented";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    public String returnCodeMessage() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        return Krb5.getErrorMessage(returnCode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    public static String errorMessage(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        return Krb5.getErrorMessage(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    public String krbErrorMessage() {
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 14342
diff changeset
    99
        StringBuilder strbuf = new StringBuilder("krb_error " + returnCode);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        String msg =  getMessage();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        if (msg != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            strbuf.append(" ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            strbuf.append(msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        return strbuf.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * Returns messages like:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * "Integrity check on decrypted field failed (31) - \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *                         Could not decrypt service ticket"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * If the error code is 0 then the first half is skipped.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    public String getMessage() {
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 14342
diff changeset
   115
        StringBuilder message = new StringBuilder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        int returnCode = returnCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        if (returnCode != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            message.append(returnCodeMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            message.append(" (").append(returnCode()).append(')');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        String consMessage = super.getMessage();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        if (consMessage != null && consMessage.length() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            if (returnCode != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                message.append(" - ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            message.append(consMessage);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        return message.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        return ("KrbException: " + getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    @Override public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        int result = 17;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        result = 37 * result + returnCode;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        if (error != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            result = 37 * result + error.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    @Override public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        if (this == obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        if (!(obj instanceof KrbException)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        KrbException other = (KrbException)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        if (returnCode != other.returnCode) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        return (error == null)?(other.error == null):
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
            (error.equals(other.error));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
}