jdk/src/share/classes/javax/security/auth/kerberos/KerberosTicket.java
author psandoz
Mon, 16 Jun 2014 17:45:26 +0100
changeset 24969 afa6934dd8e8
parent 18830 90956ead732f
child 25661 929c829a8400
permissions -rw-r--r--
8041679: Replace uses of StringBuffer with StringBuilder within core library classes Reviewed-by: psandoz, alanb, xuelei, dfuchs, jfranck, prr, serb, chegar Contributed-by: otaviopolianasantana@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5506
diff changeset
     2
 * Copyright (c) 2000, 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
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 488
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: 488
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: 488
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 488
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 488
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 javax.security.auth.kerberos;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.Date;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.Arrays;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.net.InetAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import javax.crypto.SecretKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import javax.security.auth.Refreshable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import javax.security.auth.Destroyable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import javax.security.auth.RefreshFailedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import javax.security.auth.DestroyFailedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import sun.misc.HexDumpEncoder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import sun.security.krb5.EncryptionKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import sun.security.krb5.Asn1Exception;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import sun.security.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * This class encapsulates a Kerberos ticket and associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * information as viewed from the client's point of view. It captures all
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * information that the Key Distribution Center (KDC) sends to the client
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * in the reply message KDC-REP defined in the Kerberos Protocol
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * Specification (<a href=http://www.ietf.org/rfc/rfc4120.txt>RFC 4120</a>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * All Kerberos JAAS login modules that authenticate a user to a KDC should
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * use this class. Where available, the login module might even read this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * information from a ticket cache in the operating system instead of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * directly communicating with the KDC. During the commit phase of the JAAS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * authentication process, the JAAS login module should instantiate this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * class and store the instance in the private credential set of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * {@link javax.security.auth.Subject Subject}.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * It might be necessary for the application to be granted a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * {@link javax.security.auth.PrivateCredentialPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * PrivateCredentialPermission} if it needs to access a KerberosTicket
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * instance from a Subject. This permission is not needed when the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * application depends on the default JGSS Kerberos mechanism to access the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * KerberosTicket. In that case, however, the application will need an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * {@link javax.security.auth.kerberos.ServicePermission ServicePermission}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * Note that this class is applicable to both ticket granting tickets and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * other regular service tickets. A ticket granting ticket is just a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * special case of a more generalized service ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * @see javax.security.auth.Subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * @see javax.security.auth.PrivateCredentialPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * @see javax.security.auth.login.LoginContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * @see org.ietf.jgss.GSSCredential
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * @see org.ietf.jgss.GSSManager
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * @author Mayank Upadhyay
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
public class KerberosTicket implements Destroyable, Refreshable,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
         java.io.Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    private static final long serialVersionUID = 7395334370157380539L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    // XXX Make these flag indices public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    private static final int FORWARDABLE_TICKET_FLAG = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    private static final int FORWARDED_TICKET_FLAG   = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    private static final int PROXIABLE_TICKET_FLAG   = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    private static final int PROXY_TICKET_FLAG       = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    private static final int POSTDATED_TICKET_FLAG   = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    private static final int RENEWABLE_TICKET_FLAG   = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    private static final int INITIAL_TICKET_FLAG     = 9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    private static final int NUM_FLAGS = 32;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * ASN.1 DER Encoding of the Ticket as defined in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * Kerberos Protocol Specification RFC4120.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    private byte[] asn1Encoding;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5506
diff changeset
   106
     *{@code KeyImpl} is serialized by writing out the ASN1 Encoded bytes
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * of the encryption key. The ASN1 encoding is defined in RFC4120 and as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * follows:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * EncryptionKey   ::= SEQUENCE {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *          keytype    [0] Int32 -- actually encryption type --,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     *          keyvalue   [1] OCTET STRING
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    private KeyImpl sessionKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * Ticket Flags as defined in the Kerberos Protocol Specification RFC4120.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    private boolean[] flags;
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
     * Time of initial authentication
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    private Date authTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * Time after which the ticket is valid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    private Date startTime;
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
     * Time after which the ticket will not be honored. (its expiration time).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    private Date endTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * For renewable Tickets it indicates the maximum endtime that may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * included in a renewal. It can be thought of as the absolute expiration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * time for the ticket, including all renewals. This field may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * for tickets that are not renewable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    private Date renewTill;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * Client that owns the service ticket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    private KerberosPrincipal client;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * The service for which the ticket was issued.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    private KerberosPrincipal server;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * The addresses from where the ticket may be used by the client.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * This field may be null when the ticket is usable from any address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    private InetAddress[] clientAddresses;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    private transient boolean destroyed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * Constructs a KerberosTicket using credentials information that a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * client either receives from a KDC or reads from a cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * @param asn1Encoding the ASN.1 encoding of the ticket as defined by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * the Kerberos protocol specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * @param client the client that owns this service
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * ticket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * @param server the service that this ticket is for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @param sessionKey the raw bytes for the session key that must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * used to encrypt the authenticator that will be sent to the server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @param keyType the key type for the session key as defined by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * Kerberos protocol specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * @param flags the ticket flags. Each element in this array indicates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * the value for the corresponding bit in the ASN.1 BitString that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * represents the ticket flags. If the number of elements in this array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * is less than the number of flags used by the Kerberos protocol,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * then the missing flags will be filled in with false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * @param authTime the time of initial authentication for the client
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * @param startTime the time after which the ticket will be valid. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * may be null in which case the value of authTime is treated as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * startTime.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * @param endTime the time after which the ticket will no longer be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * @param renewTill an absolute expiration time for the ticket,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * including all renewal that might be possible. This field may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * for tickets that are not renewable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * @param clientAddresses the addresses from where the ticket may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * used by the client. This field may be null when the ticket is usable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * from any address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    public KerberosTicket(byte[] asn1Encoding,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                         KerberosPrincipal client,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
                         KerberosPrincipal server,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
                         byte[] sessionKey,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
                         int keyType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
                         boolean[] flags,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
                         Date authTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
                         Date startTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
                         Date endTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
                         Date renewTill,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
                         InetAddress[] clientAddresses) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        init(asn1Encoding, client, server, sessionKey, keyType, flags,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
            authTime, startTime, endTime, renewTill, clientAddresses);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    private void init(byte[] asn1Encoding,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
                         KerberosPrincipal client,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                         KerberosPrincipal server,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
                         byte[] sessionKey,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                         int keyType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                         boolean[] flags,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
                         Date authTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
                         Date startTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
                         Date endTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                         Date renewTill,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
                         InetAddress[] clientAddresses) {
488
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   256
        if (sessionKey == null)
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   257
           throw new IllegalArgumentException("Session key for ticket"
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   258
                                              + " cannot be null");
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   259
        init(asn1Encoding, client, server,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   260
             new KeyImpl(sessionKey, keyType), flags, authTime,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   261
             startTime, endTime, renewTill, clientAddresses);
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   262
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
488
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   264
    private void init(byte[] asn1Encoding,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   265
                         KerberosPrincipal client,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   266
                         KerberosPrincipal server,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   267
                         KeyImpl sessionKey,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   268
                         boolean[] flags,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   269
                         Date authTime,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   270
                         Date startTime,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   271
                         Date endTime,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   272
                         Date renewTill,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   273
                         InetAddress[] clientAddresses) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        if (asn1Encoding == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
           throw new IllegalArgumentException("ASN.1 encoding of ticket"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                                              + " cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        this.asn1Encoding = asn1Encoding.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        if (client == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
           throw new IllegalArgumentException("Client name in ticket"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                                              + " cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        this.client = client;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        if (server == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
           throw new IllegalArgumentException("Server name in ticket"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                                              + " cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        this.server = server;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
488
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   289
        // Caller needs to make sure `sessionKey` will not be null
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   290
        this.sessionKey = sessionKey;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        if (flags != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
           if (flags.length >= NUM_FLAGS)
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   294
                this.flags = flags.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
           else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                this.flags = new boolean[NUM_FLAGS];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                // Fill in whatever we have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                for (int i = 0; i < flags.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                    this.flags[i] = flags[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
           }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        } else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
           this.flags = new boolean[NUM_FLAGS];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        if (this.flags[RENEWABLE_TICKET_FLAG]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
           if (renewTill == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                throw new IllegalArgumentException("The renewable period "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
                       + "end time cannot be null for renewable tickets.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
488
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   309
           this.renewTill = new Date(renewTill.getTime());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
488
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   312
        if (authTime != null) {
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   313
            this.authTime = new Date(authTime.getTime());
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   314
        }
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   315
        if (startTime != null) {
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   316
            this.startTime = new Date(startTime.getTime());
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   317
        } else {
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   318
            this.startTime = this.authTime;
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   319
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        if (endTime == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
           throw new IllegalArgumentException("End time for ticket validity"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
                                              + " cannot be null");
488
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   324
        this.endTime = new Date(endTime.getTime());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        if (clientAddresses != null)
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   327
           this.clientAddresses = clientAddresses.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * Returns the client principal associated with this ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * @return the client principal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    public final KerberosPrincipal getClient() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        return client;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * Returns the service principal associated with this ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * @return the service principal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    public final KerberosPrincipal getServer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        return server;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * Returns the session key associated with this ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * @return the session key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    public final SecretKey getSessionKey() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        if (destroyed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            throw new IllegalStateException("This ticket is no longer valid");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        return sessionKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * Returns the key type of the session key associated with this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * ticket as defined by the Kerberos Protocol Specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * @return the key type of the session key associated with this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * @see #getSessionKey()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    public final int getSessionKeyType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        if (destroyed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
            throw new IllegalStateException("This ticket is no longer valid");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        return sessionKey.getKeyType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * Determines if this ticket is forwardable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * @return true if this ticket is forwardable, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    public final boolean isForwardable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        return flags[FORWARDABLE_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * Determines if this ticket had been forwarded or was issued based on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * authentication involving a forwarded ticket-granting ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * @return true if this ticket had been forwarded or was issued based on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * authentication involving a forwarded ticket-granting ticket,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * false otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    public final boolean isForwarded() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        return flags[FORWARDED_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * Determines if this ticket is proxiable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * @return true if this ticket is proxiable, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
    public final boolean isProxiable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        return flags[PROXIABLE_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * Determines is this ticket is a proxy-ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * @return true if this ticket is a proxy-ticket, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    public final boolean isProxy() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        return flags[PROXY_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * Determines is this ticket is post-dated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * @return true if this ticket is post-dated, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    public final boolean isPostdated() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        return flags[POSTDATED_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * Determines is this ticket is renewable. If so, the {@link #refresh()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * refresh} method can be called, assuming the validity period for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * renewing is not already over.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * @return true if this ticket is renewable, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    public final boolean isRenewable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        return flags[RENEWABLE_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * Determines if this ticket was issued using the Kerberos AS-Exchange
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * protocol, and not issued based on some ticket-granting ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * @return true if this ticket was issued using the Kerberos AS-Exchange
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * protocol, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
    public final boolean isInitial() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        return flags[INITIAL_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * Returns the flags associated with this ticket. Each element in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * returned array indicates the value for the corresponding bit in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * ASN.1 BitString that represents the ticket flags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * @return the flags associated with this ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    public final boolean[]  getFlags() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   453
        return (flags == null? null: flags.clone());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * Returns the time that the client was authenticated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * @return the time that the client was authenticated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     *         or null if not set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
    public final java.util.Date getAuthTime() {
488
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   463
        return (authTime == null) ? null : (Date)authTime.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * Returns the start time for this ticket's validity period.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * @return the start time for this ticket's validity period
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     *         or null if not set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    public final java.util.Date getStartTime() {
488
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   473
        return (startTime == null) ? null : (Date)startTime.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * Returns the expiration time for this ticket's validity period.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * @return the expiration time for this ticket's validity period.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    public final java.util.Date getEndTime() {
488
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   482
        return (Date) endTime.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * Returns the latest expiration time for this ticket, including all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * renewals. This will return a null value for non-renewable tickets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * @return the latest expiration time for this ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
    public final java.util.Date getRenewTill() {
488
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   492
        return (renewTill == null) ? null: (Date)renewTill.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * Returns a list of addresses from where the ticket can be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * @return ths list of addresses or null, if the field was not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * provided.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
    public final java.net.InetAddress[] getClientAddresses() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   502
        return (clientAddresses == null) ? null: clientAddresses.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * Returns an ASN.1 encoding of the entire ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * @return an ASN.1 encoding of the entire ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    public final byte[] getEncoded() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        if (destroyed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
            throw new IllegalStateException("This ticket is no longer valid");
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   513
        return asn1Encoding.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    /** Determines if this ticket is still current.  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    public boolean isCurrent() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        return (System.currentTimeMillis() <= getEndTime().getTime());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * Extends the validity period of this ticket. The ticket will contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * a new session key if the refresh operation succeeds. The refresh
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * operation will fail if the ticket is not renewable or the latest
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * allowable renew time has passed. Any other error returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * KDC will also cause this method to fail.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * Note: This method is not synchronized with the the accessor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * methods of this object. Hence callers need to be aware of multiple
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * threads that might access this and try to renew it at the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     * time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * @throws RefreshFailedException if the ticket is not renewable, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * the latest allowable renew time has passed, or the KDC returns some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * @see #isRenewable()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * @see #getRenewTill()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    public void refresh() throws RefreshFailedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        if (destroyed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
            throw new RefreshFailedException("A destroyed ticket "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
                                             + "cannot be renewd.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        if (!isRenewable())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
            throw new RefreshFailedException("This ticket is not renewable");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        if (System.currentTimeMillis() > getRenewTill().getTime())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
            throw new RefreshFailedException("This ticket is past "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
                                             + "its last renewal time.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        Throwable e = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        sun.security.krb5.Credentials krb5Creds = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
            krb5Creds = new sun.security.krb5.Credentials(asn1Encoding,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
                                                    client.toString(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
                                                    server.toString(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
                                                    sessionKey.getEncoded(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
                                                    sessionKey.getKeyType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                                                    flags,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
                                                    authTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
                                                    startTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                                                    endTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                                                    renewTill,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                                                    clientAddresses);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
            krb5Creds = krb5Creds.renew();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
        } catch (sun.security.krb5.KrbException krbException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
            e = krbException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        } catch (java.io.IOException ioException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
            e = ioException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        if (e != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
            RefreshFailedException rfException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
                = new RefreshFailedException("Failed to renew Kerberos Ticket "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
                                             + "for client " + client
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
                                             + " and server " + server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
                                             + " - " + e.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
            rfException.initCause(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
            throw rfException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
         * In case multiple threads try to refresh it at the same time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
                this.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
            } catch (DestroyFailedException dfException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
                // Squelch it since we don't care about the old ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
            init(krb5Creds.getEncoded(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
                 new KerberosPrincipal(krb5Creds.getClient().getName()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
                 new KerberosPrincipal(krb5Creds.getServer().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
                                        KerberosPrincipal.KRB_NT_SRV_INST),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
                 krb5Creds.getSessionKey().getBytes(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
                 krb5Creds.getSessionKey().getEType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                 krb5Creds.getFlags(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
                 krb5Creds.getAuthTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
                 krb5Creds.getStartTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
                 krb5Creds.getEndTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
                 krb5Creds.getRenewTill(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
                 krb5Creds.getClientAddresses());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
            destroyed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     * Destroys the ticket and destroys any sensitive information stored in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     * it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
    public void destroy() throws DestroyFailedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        if (!destroyed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
            Arrays.fill(asn1Encoding, (byte) 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
            client = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            server = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
            sessionKey.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            flags = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            authTime = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
            startTime = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
            endTime = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
            renewTill = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
            clientAddresses = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
            destroyed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     * Determines if this ticket has been destroyed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
    public boolean isDestroyed() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
        return destroyed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        if (destroyed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
            throw new IllegalStateException("This ticket is no longer valid");
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 18830
diff changeset
   639
        StringBuilder caddrString = new StringBuilder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
        if (clientAddresses != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
            for (int i = 0; i < clientAddresses.length; i++) {
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 18830
diff changeset
   642
                caddrString.append("clientAddresses[" + i + "] = " +
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 18830
diff changeset
   643
                        clientAddresses[i].toString());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        return ("Ticket (hex) = " + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
                 (new HexDumpEncoder()).encodeBuffer(asn1Encoding) + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
                "Client Principal = " + client.toString() + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
                "Server Principal = " + server.toString() + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                "Session Key = " + sessionKey.toString() + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                "Forwardable Ticket " + flags[FORWARDABLE_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
                "Forwarded Ticket " + flags[FORWARDED_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
                "Proxiable Ticket " + flags[PROXIABLE_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
                "Proxy Ticket " + flags[PROXY_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
                "Postdated Ticket " + flags[POSTDATED_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
                "Renewable Ticket " + flags[RENEWABLE_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
                "Initial Ticket " + flags[RENEWABLE_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
                "Auth Time = " + String.valueOf(authTime) + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
                "Start Time = " + String.valueOf(startTime) + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
                "End Time = " + endTime.toString() + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
                "Renew Till = " + String.valueOf(renewTill) + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
                "Client Addresses " +
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 18830
diff changeset
   663
                (clientAddresses == null ? " Null " : caddrString.toString() +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
                "\n"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     * Returns a hashcode for this KerberosTicket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5506
diff changeset
   670
     * @return a hashCode() for the {@code KerberosTicket}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
        int result = 17;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        if (isDestroyed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
            return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        result = result * 37 + Arrays.hashCode(getEncoded());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        result = result * 37 + endTime.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        result = result * 37 + client.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
        result = result * 37 + server.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        result = result * 37 + sessionKey.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
        // authTime may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
        if (authTime != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
            result = result * 37 + authTime.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
        // startTime may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
        if (startTime != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
            result = result * 37 + startTime.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
        // renewTill may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        if (renewTill != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
            result = result * 37 + renewTill.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        // clientAddress may be null, the array's hashCode is 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        result = result * 37 + Arrays.hashCode(clientAddresses);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        return result * 37 + Arrays.hashCode(flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     * Compares the specified Object with this KerberosTicket for equality.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * Returns true if the given object is also a
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5506
diff changeset
   707
     * {@code KerberosTicket} and the two
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 5506
diff changeset
   708
     * {@code KerberosTicket} instances are equivalent.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * @param other the Object to compare to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * @return true if the specified object is equal to this KerberosTicket,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     * false otherwise. NOTE: Returns false if either of the KerberosTicket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * objects has been destroyed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
    public boolean equals(Object other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        if (other == this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        if (! (other instanceof KerberosTicket)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        KerberosTicket otherTicket = ((KerberosTicket) other);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
        if (isDestroyed() || otherTicket.isDestroyed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
        if (!Arrays.equals(getEncoded(), otherTicket.getEncoded()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
                !endTime.equals(otherTicket.getEndTime()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
                !server.equals(otherTicket.getServer()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
                !client.equals(otherTicket.getClient()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
                !sessionKey.equals(otherTicket.getSessionKey()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
                !Arrays.equals(clientAddresses, otherTicket.getClientAddresses()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
                !Arrays.equals(flags, otherTicket.getFlags())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
        // authTime may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
        if (authTime == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
            if (otherTicket.getAuthTime() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
            if (!authTime.equals(otherTicket.getAuthTime()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
        // startTime may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        if (startTime == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
            if (otherTicket.getStartTime() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
            if (!startTime.equals(otherTicket.getStartTime()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        if (renewTill == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
            if (otherTicket.getRenewTill() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
            if (!renewTill.equals(otherTicket.getRenewTill()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
    }
488
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   768
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   769
    private void readObject(ObjectInputStream s)
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   770
        throws IOException, ClassNotFoundException {
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   771
        s.defaultReadObject();
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   772
        if (sessionKey == null) {
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   773
           throw new InvalidObjectException("Session key cannot be null");
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   774
        }
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   775
        try {
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   776
            init(asn1Encoding, client, server, sessionKey,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   777
                 flags, authTime, startTime, endTime,
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   778
                 renewTill, clientAddresses);
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   779
        } catch (IllegalArgumentException iae) {
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   780
            throw (InvalidObjectException)
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   781
                new InvalidObjectException(iae.getMessage()).initCause(iae);
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   782
        }
5e84e13e8892 6659990: KerberosTicket.getEndTime does not copy date (findbugs)
valeriep
parents: 51
diff changeset
   783
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
}