jdk/src/share/classes/sun/security/krb5/internal/TicketFlags.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
Initial load
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * by Sun in the LICENSE file that accompanied this code.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * have any questions.
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),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *                   hw-authent(11)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *                  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
public class TicketFlags extends KerberosFlags {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    public TicketFlags() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        super(Krb5.TKT_OPTS_MAX + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    public TicketFlags (boolean[] flags) throws Asn1Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        super(flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        if (flags.length > Krb5.TKT_OPTS_MAX + 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            throw new Asn1Exception(Krb5.BITSTRING_BAD_LENGTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    public TicketFlags(int size, byte[] data) throws Asn1Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        super(size, data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        if ((size > data.length * BITS_PER_UNIT) || (size > Krb5.TKT_OPTS_MAX + 1))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            throw new Asn1Exception(Krb5.BITSTRING_BAD_LENGTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    public TicketFlags(DerValue encoding) throws IOException, Asn1Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        this(encoding.getUnalignedBitString(true).toBooleanArray());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * Parse (unmarshal) a ticket flag from a DER input stream.  This form
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * parsing might be used when expanding a value which is part of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * a constructed sequence and uses explicitly tagged type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * @exception Asn1Exception on error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * @param data the Der input stream value, which contains one or more marshaled value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * @param explicitTag tag number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * @param optional indicate if this data field is optional
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @return an instance of TicketFlags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    public static TicketFlags parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        DerValue der = data.getDerValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        if (explicitTag != (der.getTag() & (byte)0x1F))  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            throw new Asn1Exception(Krb5.ASN1_BAD_ID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            DerValue subDer = der.getData().getDerValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            return new TicketFlags(subDer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    public Object clone() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            return new TicketFlags(this.toBooleanArray());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    public boolean match(LoginOptions options) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        boolean matched = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        //We currently only consider if forwardable renewable and proxiable are match
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        if (this.get(Krb5.TKT_OPTS_FORWARDABLE) == (options.get(KDCOptions.FORWARDABLE))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            if (this.get(Krb5.TKT_OPTS_PROXIABLE) == (options.get(KDCOptions.PROXIABLE))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                if (this.get(Krb5.TKT_OPTS_RENEWABLE) == (options.get(KDCOptions.RENEWABLE))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                    matched = true;
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
        return matched;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    public boolean match(TicketFlags flags) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        boolean matched = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        for (int i = 0; i <= Krb5.TKT_OPTS_MAX; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            if (this.get(i) != flags.get(i)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        return matched;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * Returns the string representative of ticket flags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        StringBuffer sb = new StringBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        boolean[] flags = toBooleanArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        for (int i = 0; i < flags.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            if (flags[i] == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                switch (i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
                case 0:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                    sb.append("RESERVED;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                case 1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                    sb.append("FORWARDABLE;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                case 2:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                    sb.append("FORWARDED;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                case 3:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                    sb.append("PROXIABLE;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                case 4:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                    sb.append("PROXY;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                case 5:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                    sb.append("MAY-POSTDATE;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                case 6:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                    sb.append("POSTDATED;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                case 7:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                    sb.append("INVALID;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                case 8:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                    sb.append("RENEWABLE;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                case 9:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                    sb.append("INITIAL;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                case 10:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                    sb.append("PRE-AUTHENT;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                case 11:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                    sb.append("HW-AUTHENT;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        String result = sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        if (result.length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            result = result.substring(0, result.length() - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
}