src/java.security.jgss/share/classes/sun/security/krb5/internal/TicketFlags.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58331 e4ce29f6094e
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
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: 2
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: 2
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: 2
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import sun.security.krb5.Asn1Exception;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.security.krb5.internal.util.KerberosFlags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import sun.security.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * Implements the ASN.1TicketFlags type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *    TicketFlags ::= BIT STRING
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *                  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *                   reserved(0),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *                   forwardable(1),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *                   forwarded(2),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *                   proxiable(3),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *                   proxy(4),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *                   may-postdate(5),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *                   postdated(6),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *                   invalid(7),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *                   renewable(8),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *                   initial(9),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *                   pre-authent(10),
55258
d65d3c37232c 8215032: Support Kerberos cross-realm referrals (RFC 6806)
mbalao
parents: 47216
diff changeset
    54
 *                   hw-authent(11),
d65d3c37232c 8215032: Support Kerberos cross-realm referrals (RFC 6806)
mbalao
parents: 47216
diff changeset
    55
 *                   enc-pa-rep(15)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *                  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
public class TicketFlags extends KerberosFlags {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    public TicketFlags() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        super(Krb5.TKT_OPTS_MAX + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    public TicketFlags (boolean[] flags) throws Asn1Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        super(flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        if (flags.length > Krb5.TKT_OPTS_MAX + 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            throw new Asn1Exception(Krb5.BITSTRING_BAD_LENGTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
58331
e4ce29f6094e 8228659: Record which Java methods are called by native codes in JGSS and JAAS
weijun
parents: 55258
diff changeset
    70
    // Warning: called by NativeCreds.c and nativeccache.c
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    public TicketFlags(int size, byte[] data) throws Asn1Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        super(size, data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        if ((size > data.length * BITS_PER_UNIT) || (size > Krb5.TKT_OPTS_MAX + 1))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            throw new Asn1Exception(Krb5.BITSTRING_BAD_LENGTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    public TicketFlags(DerValue encoding) throws IOException, Asn1Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        this(encoding.getUnalignedBitString(true).toBooleanArray());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * Parse (unmarshal) a ticket flag from a DER input stream.  This form
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * parsing might be used when expanding a value which is part of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * a constructed sequence and uses explicitly tagged type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * @exception Asn1Exception on error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * @param data the Der input stream value, which contains one or more marshaled value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @param explicitTag tag number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * @param optional indicate if this data field is optional
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * @return an instance of TicketFlags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    public static TicketFlags parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        DerValue der = data.getDerValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        if (explicitTag != (der.getTag() & (byte)0x1F))  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            throw new Asn1Exception(Krb5.ASN1_BAD_ID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            DerValue subDer = der.getData().getDerValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            return new TicketFlags(subDer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    public Object clone() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            return new TicketFlags(this.toBooleanArray());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    public boolean match(LoginOptions options) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        boolean matched = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        //We currently only consider if forwardable renewable and proxiable are match
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        if (this.get(Krb5.TKT_OPTS_FORWARDABLE) == (options.get(KDCOptions.FORWARDABLE))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            if (this.get(Krb5.TKT_OPTS_PROXIABLE) == (options.get(KDCOptions.PROXIABLE))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                if (this.get(Krb5.TKT_OPTS_RENEWABLE) == (options.get(KDCOptions.RENEWABLE))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                    matched = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        return matched;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    public boolean match(TicketFlags flags) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        boolean matched = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        for (int i = 0; i <= Krb5.TKT_OPTS_MAX; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            if (this.get(i) != flags.get(i)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        return matched;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * Returns the string representative of ticket flags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    public String toString() {
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 5506
diff changeset
   142
        StringBuilder sb = new StringBuilder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        boolean[] flags = toBooleanArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        for (int i = 0; i < flags.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            if (flags[i] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                switch (i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                case 0:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                    sb.append("RESERVED;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                case 1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                    sb.append("FORWARDABLE;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                case 2:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                    sb.append("FORWARDED;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                case 3:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                    sb.append("PROXIABLE;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                case 4:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                    sb.append("PROXY;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                case 5:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                    sb.append("MAY-POSTDATE;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                case 6:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                    sb.append("POSTDATED;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                case 7:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                    sb.append("INVALID;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                case 8:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                    sb.append("RENEWABLE;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                case 9:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                    sb.append("INITIAL;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                case 10:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                    sb.append("PRE-AUTHENT;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                case 11:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                    sb.append("HW-AUTHENT;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                    break;
55258
d65d3c37232c 8215032: Support Kerberos cross-realm referrals (RFC 6806)
mbalao
parents: 47216
diff changeset
   183
                case 15:
d65d3c37232c 8215032: Support Kerberos cross-realm referrals (RFC 6806)
mbalao
parents: 47216
diff changeset
   184
                    sb.append("ENC-PA-REP;");
d65d3c37232c 8215032: Support Kerberos cross-realm referrals (RFC 6806)
mbalao
parents: 47216
diff changeset
   185
                    break;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        String result = sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        if (result.length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            result = result.substring(0, result.length() - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
}