jdk/src/share/classes/sun/security/krb5/KrbKdcRep.java
author weijun
Wed, 07 Nov 2012 14:13:01 +0800
changeset 14413 e954df027393
parent 13247 74902cfeb9c6
permissions -rw-r--r--
6355584: Introduce constrained Kerberos delegation Reviewed-by: valeriep
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;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import sun.security.krb5.internal.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
abstract class KrbKdcRep {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
    static void check(
13247
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 5506
diff changeset
    38
                      boolean isAsReq,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
                      KDCReq req,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
                      KDCRep rep
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
                      ) throws KrbApErrException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
13247
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 5506
diff changeset
    43
        if (isAsReq && !req.reqBody.cname.equals(rep.cname)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
            rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
13247
74902cfeb9c6 6966259: Make PrincipalName and Realm immutable
weijun
parents: 5506
diff changeset
    48
        if (!req.reqBody.sname.equals(rep.encKDCRepPart.sname)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
            rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        if (req.reqBody.getNonce() != rep.encKDCRepPart.nonce) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
            rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        if (
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
            ((req.reqBody.addresses != null && rep.encKDCRepPart.caddr != null) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
             !req.reqBody.addresses.equals(rep.encKDCRepPart.caddr))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        for (int i = 1; i < 6; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            if (req.reqBody.kdcOptions.get(i) !=
14413
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 13247
diff changeset
    67
                   rep.encKDCRepPart.flags.get(i)) {
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 13247
diff changeset
    68
                if (Krb5.DEBUG) {
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 13247
diff changeset
    69
                    System.out.println("> KrbKdcRep.check: at #" + i
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 13247
diff changeset
    70
                            + ". request for " + req.reqBody.kdcOptions.get(i)
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 13247
diff changeset
    71
                            + ", received " + rep.encKDCRepPart.flags.get(i));
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 13247
diff changeset
    72
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
                throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        // XXX Can renew a ticket but not ask for a renewable renewed ticket
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        // See impl of Credentials.renew().
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        if (req.reqBody.kdcOptions.get(KDCOptions.RENEWABLE) !=
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            rep.encKDCRepPart.flags.get(KDCOptions.RENEWABLE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        if ((req.reqBody.from == null) || req.reqBody.from.isZero())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            // verify this is allowed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            if ((rep.encKDCRepPart.starttime != null) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                !rep.encKDCRepPart.starttime.inClockSkew()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
                throw new KrbApErrException(Krb5.KRB_AP_ERR_SKEW);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        if ((req.reqBody.from != null) && !req.reqBody.from.isZero())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            // verify this is allowed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            if ((rep.encKDCRepPart.starttime != null) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                !req.reqBody.from.equals(rep.encKDCRepPart.starttime)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        if (!req.reqBody.till.isZero() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            rep.encKDCRepPart.endtime.greaterThan(req.reqBody.till)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        if (req.reqBody.kdcOptions.get(KDCOptions.RENEWABLE))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            if (req.reqBody.rtime != null && !req.reqBody.rtime.isZero())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                                // verify this is required
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                if ((rep.encKDCRepPart.renewTill == null) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                    rep.encKDCRepPart.renewTill.greaterThan(req.reqBody.rtime)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                    ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                    rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                    throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        if (req.reqBody.kdcOptions.get(KDCOptions.RENEWABLE_OK) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            rep.encKDCRepPart.flags.get(KDCOptions.RENEWABLE))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            if (!req.reqBody.till.isZero())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                                // verify this is required
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                if ((rep.encKDCRepPart.renewTill == null) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                    rep.encKDCRepPart.renewTill.greaterThan(req.reqBody.till)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                    ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                    rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                    throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
}