jdk/src/share/classes/sun/security/krb5/internal/ccache/CCacheInputStream.java
author weijun
Mon, 30 Dec 2013 11:51:19 +0800
changeset 22093 741504ef3df7
parent 13247 74902cfeb9c6
child 25169 365cba5326f9
permissions -rw-r--r--
8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt Reviewed-by: xuelei
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 77
diff changeset
     6
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 77
diff changeset
     8
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 77
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 77
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 77
diff changeset
    22
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 */
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
 *  (C) Copyright IBM Corp. 1999 All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 *  Copyright 1997 The Open Group Research Institute.  All rights reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
package sun.security.krb5.internal.ccache;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.io.InputStream;
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
    35
import java.util.ArrayList;
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
    36
import java.util.List;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.util.StringTokenizer;
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
    38
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
    39
import sun.misc.IOUtils;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import sun.security.krb5.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import sun.security.krb5.internal.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import sun.security.krb5.internal.util.KrbDataInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * This class extends KrbDataInputStream. It is used for parsing FCC-format
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * data from file to memory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * @author Yanni Zhang
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
public class CCacheInputStream extends KrbDataInputStream implements FileCCacheConstants {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * FCC version 2 contains type information for principals.  FCC
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * version 1 does not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     * FCC version 3 contains keyblock encryption type information, and is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * architecture independent.  Previous versions are not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * The code will accept version 1, 2, and 3 ccaches, and depending
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * what KRB5_FCC_DEFAULT_FVNO is set to, it will create version 1, 2,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * or 3 FCC caches.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * The default credentials cache should be type 3 for now (see
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * init_ctx.c).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    /* V4 of the credentials cache format allows for header tags */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    private static boolean DEBUG = Krb5.DEBUG;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    public CCacheInputStream(InputStream is){
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        super(is);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    /* Read tag field introduced in KRB5_FCC_FVNO_4 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    // this needs to be public for Kinit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    public Tag readTag() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        char[] buf = new char[1024];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        int len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        int tag = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        int taglen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        Integer time_offset = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        Integer usec_offset = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        len = read(2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        if (len < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            throw new IOException("stop.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        if (len > buf.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            throw new IOException("Invalid tag length.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        while (len > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            tag    = read(2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            taglen = read(2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            switch (tag) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            case FCC_TAG_DELTATIME:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
                time_offset = new Integer(read(4));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                usec_offset = new Integer(read(4));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            len = len - (4 + taglen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        }
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   104
        return new Tag(len, tag, time_offset, usec_offset);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * In file-based credential cache, the realm name is stored as part of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * principal name at the first place.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    // made public for KinitOptions to call directly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    public PrincipalName readPrincipal(int version) throws IOException, RealmException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        int type, length, namelength, kret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        String[] pname = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        String realm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        /* Read principal type */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        if (version == KRB5_FCC_FVNO_1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            type = KRB5_NT_UNKNOWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            type = read(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        length = read(4);
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   122
        List<String> result = new ArrayList<String>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
         * DCE includes the principal's realm in the count; the new format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
         * does not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        if (version == KRB5_FCC_FVNO_1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            length--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        for (int i = 0; i <= length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            namelength = read(4);
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   131
            byte[] bytes = IOUtils.readFully(this, namelength, true);
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   132
            result.add(new String(bytes));
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   133
        }
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   134
        if (result.isEmpty()) {
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   135
            throw new IOException("No realm or principal");
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   136
        }
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   137
        if (isRealm(result.get(0))) {
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   138
            realm = result.remove(0);
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   139
            if (result.isEmpty()) {
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   140
                throw new IOException("No principal name components");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            }
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   142
            return new PrincipalName(
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   143
                    type,
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   144
                    result.toArray(new String[result.size()]),
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   145
                    new Realm(realm));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        }
13247
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 11011
diff changeset
   147
        try {
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   148
            return new PrincipalName(
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   149
                    result.toArray(new String[result.size()]),
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   150
                    type);
13247
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 11011
diff changeset
   151
        } catch (RealmException re) {
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 11011
diff changeset
   152
            return null;
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 11011
diff changeset
   153
        }
2
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
     * In practice, a realm is named by uppercasing the DNS domain name. we currently
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * rely on this to determine if the string within the principal identifier is realm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    boolean isRealm(String str) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            Realm r = new Realm(str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        StringTokenizer st = new StringTokenizer(str, ".");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        String s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        while (st.hasMoreTokens()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            s = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            for (int i = 0; i < s.length(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                if (s.charAt(i) >= 141) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    EncryptionKey readKey(int version) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        int keyType, keyLen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        keyType = read(2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        if (version == KRB5_FCC_FVNO_3)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            read(2); /* keytype recorded twice in fvno 3 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        keyLen = read(4);
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   188
        byte[] bytes = IOUtils.readFully(this, keyLen, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        return new EncryptionKey(bytes, keyType, new Integer(version));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    long[] readTimes() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        long[] times = new long[4];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        times[0] = (long)read(4) * 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        times[1] = (long)read(4) * 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        times[2] = (long)read(4) * 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        times[3] = (long)read(4) * 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        return times;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    boolean readskey() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        if (read() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        else return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    HostAddress[] readAddr() throws IOException, KrbApErrException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        int numAddrs, addrType, addrLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        numAddrs = read(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        if (numAddrs > 0) {
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   212
            List<HostAddress> addrs = new ArrayList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            for (int i = 0; i < numAddrs; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                addrType = read(2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                addrLength = read(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                if (!(addrLength == 4 || addrLength == 16)) {
77
41259df8c6e4 6664612: debug output leaked
weijun
parents: 76
diff changeset
   217
                    if (DEBUG) {
41259df8c6e4 6664612: debug output leaked
weijun
parents: 76
diff changeset
   218
                        System.out.println("Incorrect address format.");
41259df8c6e4 6664612: debug output leaked
weijun
parents: 76
diff changeset
   219
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
                byte[] result = new byte[addrLength];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
                for (int j = 0; j < addrLength; j++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                    result[j] = (byte)read(1);
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   225
                addrs.add(new HostAddress(addrType, result));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            }
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   227
            return addrs.toArray(new HostAddress[addrs.size()]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    AuthorizationDataEntry[] readAuth() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        int num, adtype, adlength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        num = read(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        if (num > 0) {
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   236
            List<AuthorizationDataEntry> auData = new ArrayList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            byte[] data = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            for (int i = 0; i < num; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
                adtype = read(2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
                adlength = read(4);
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   241
                data = IOUtils.readFully(this, adlength, true);
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   242
                auData.add(new AuthorizationDataEntry(adtype, data));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            }
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   244
            return auData.toArray(new AuthorizationDataEntry[auData.size()]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        else return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
7288
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   249
    byte[] readData() throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        int length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        length = read(4);
7288
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   252
        if (length == 0) {
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   253
            return null;
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   254
        } else {
22093
741504ef3df7 8028780: JDK KRB5 module throws OutOfMemoryError when CCache is corrupt
weijun
parents: 13247
diff changeset
   255
            return IOUtils.readFully(this, length, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    boolean[] readFlags() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        boolean[] flags = new boolean[Krb5.TKT_OPTS_MAX+1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        int ticketFlags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        ticketFlags = read(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        if ((ticketFlags & 0x40000000) == TKT_FLG_FORWARDABLE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        flags[1] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        if ((ticketFlags & 0x20000000) == TKT_FLG_FORWARDED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        flags[2] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        if ((ticketFlags & 0x10000000) == TKT_FLG_PROXIABLE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        flags[3] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        if ((ticketFlags & 0x08000000) == TKT_FLG_PROXY)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        flags[4] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        if ((ticketFlags & 0x04000000) == TKT_FLG_MAY_POSTDATE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        flags[5] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        if ((ticketFlags & 0x02000000) == TKT_FLG_POSTDATED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        flags[6] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        if ((ticketFlags & 0x01000000) == TKT_FLG_INVALID)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        flags[7] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        if ((ticketFlags & 0x00800000) == TKT_FLG_RENEWABLE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        flags[8] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        if ((ticketFlags & 0x00400000) == TKT_FLG_INITIAL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        flags[9] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        if ((ticketFlags & 0x00200000) == TKT_FLG_PRE_AUTH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        flags[10] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        if ((ticketFlags & 0x00100000) == TKT_FLG_HW_AUTH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        flags[11] = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        if (DEBUG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
            String msg = ">>> CCacheInputStream: readFlags() ";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            if (flags[1] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                msg += " FORWARDABLE;";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
            if (flags[2] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                msg += " FORWARDED;";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
            if (flags[3] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                msg += " PROXIABLE;";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            if (flags[4] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                msg += " PROXY;";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
            if (flags[5] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                msg += " MAY_POSTDATE;";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            if (flags[6] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                msg += " POSTDATED;";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
            if (flags[7] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                msg += " INVALID;";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            if (flags[8] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                msg += " RENEWABLE;";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
            if (flags[9] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
                msg += " INITIAL;";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
            if (flags[10] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
                msg += " PRE_AUTH;";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            if (flags[11] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
                msg += " HW_AUTH;";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
            System.out.println(msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        return flags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    }
7288
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   325
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   326
    /**
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   327
     * Reads the next cred in stream.
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   328
     * @return the next cred, null if ticket or second_ticket unparseable.
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   329
     *
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   330
     * Note: MIT krb5 1.8.1 might generate a config entry with server principal
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   331
     * X-CACHECONF:/krb5_ccache_conf_data/fast_avail/krbtgt/REALM@REALM. The
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   332
     * entry is used by KDC to inform the client that it support certain
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   333
     * features. Its ticket is not a valid krb5 ticket and thus this method
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   334
     * returns null.
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   335
     */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    Credentials readCred(int version) throws IOException,RealmException, KrbApErrException, Asn1Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        PrincipalName cpname = readPrincipal(version);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        if (DEBUG)
13247
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 11011
diff changeset
   339
            System.out.println(">>>DEBUG <CCacheInputStream>  client principal is " + cpname);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        PrincipalName spname = readPrincipal(version);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        if (DEBUG)
13247
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 11011
diff changeset
   342
            System.out.println(">>>DEBUG <CCacheInputStream> server principal is " + spname);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        EncryptionKey key = readKey(version);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        if (DEBUG)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
            System.out.println(">>>DEBUG <CCacheInputStream> key type: " + key.getEType());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        long times[] = readTimes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        KerberosTime authtime = new KerberosTime(times[0]);
76
87bd6df367b8 6590930: reed/write does not match for ccache
weijun
parents: 2
diff changeset
   348
        KerberosTime starttime =
87bd6df367b8 6590930: reed/write does not match for ccache
weijun
parents: 2
diff changeset
   349
                (times[1]==0) ? null : new KerberosTime(times[1]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        KerberosTime endtime = new KerberosTime(times[2]);
76
87bd6df367b8 6590930: reed/write does not match for ccache
weijun
parents: 2
diff changeset
   351
        KerberosTime renewTill =
87bd6df367b8 6590930: reed/write does not match for ccache
weijun
parents: 2
diff changeset
   352
                (times[3]==0) ? null : new KerberosTime(times[3]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        if (DEBUG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            System.out.println(">>>DEBUG <CCacheInputStream> auth time: " + authtime.toDate().toString());
76
87bd6df367b8 6590930: reed/write does not match for ccache
weijun
parents: 2
diff changeset
   356
            System.out.println(">>>DEBUG <CCacheInputStream> start time: " +
87bd6df367b8 6590930: reed/write does not match for ccache
weijun
parents: 2
diff changeset
   357
                    ((starttime==null)?"null":starttime.toDate().toString()));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            System.out.println(">>>DEBUG <CCacheInputStream> end time: " + endtime.toDate().toString());
76
87bd6df367b8 6590930: reed/write does not match for ccache
weijun
parents: 2
diff changeset
   359
            System.out.println(">>>DEBUG <CCacheInputStream> renew_till time: " +
87bd6df367b8 6590930: reed/write does not match for ccache
weijun
parents: 2
diff changeset
   360
                    ((renewTill==null)?"null":renewTill.toDate().toString()));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        boolean skey = readskey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        boolean flags[] = readFlags();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        TicketFlags tFlags = new TicketFlags(flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        HostAddress addr[] = readAddr();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        HostAddresses addrs = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        if (addr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
            addrs = new HostAddresses(addr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        AuthorizationDataEntry[] auDataEntry = readAuth();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        AuthorizationData auData = null;
11011
d14a696e3ab5 7107019: sun.security.krb5.internal.ccache.CCacheInputStream.readCred does not use auth data
weijun
parents: 7288
diff changeset
   372
        if (auDataEntry != null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
            auData = new AuthorizationData(auDataEntry);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        }
7288
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   375
        byte[] ticketData = readData();
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   376
        byte[] ticketData2 = readData();
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   377
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   378
        try {
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   379
            return new Credentials(cpname, spname, key, authtime, starttime,
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   380
                endtime, renewTill, skey, tFlags,
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   381
                addrs, auData,
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   382
                ticketData != null ? new Ticket(ticketData) : null,
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   383
                ticketData2 != null ? new Ticket(ticketData2) : null);
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   384
        } catch (Exception e) {     // If any of new Ticket(*) fails.
a38f3099e518 6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
weijun
parents: 5506
diff changeset
   385
            return null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
}