jdk/src/java.security.jgss/share/classes/sun/security/krb5/KrbKdcRep.java
author weijun
Tue, 21 Jul 2015 18:02:36 +0800
changeset 31817 1cd8bae1ef0c
parent 28670 bb9afe681988
permissions -rw-r--r--
8131051: KDC might issue a renewable ticket even if not requested 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: 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
28670
bb9afe681988 8022582: Relax response flags checking in sun.security.krb5.KrbKdcRep.check.
weijun
parents: 27946
diff changeset
    65
        // We allow KDC to return a non-forwardable ticket if request has -f
bb9afe681988 8022582: Relax response flags checking in sun.security.krb5.KrbKdcRep.check.
weijun
parents: 27946
diff changeset
    66
        for (int i = 2; i < 6; i++) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            if (req.reqBody.kdcOptions.get(i) !=
14413
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 13247
diff changeset
    68
                   rep.encKDCRepPart.flags.get(i)) {
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 13247
diff changeset
    69
                if (Krb5.DEBUG) {
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 13247
diff changeset
    70
                    System.out.println("> KrbKdcRep.check: at #" + i
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 13247
diff changeset
    71
                            + ". request for " + req.reqBody.kdcOptions.get(i)
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 13247
diff changeset
    72
                            + ", received " + rep.encKDCRepPart.flags.get(i));
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 13247
diff changeset
    73
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
                throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
31817
1cd8bae1ef0c 8131051: KDC might issue a renewable ticket even if not requested
weijun
parents: 28670
diff changeset
    78
        // Reply to a renewable request should be renewable, but if request does
1cd8bae1ef0c 8131051: KDC might issue a renewable ticket even if not requested
weijun
parents: 28670
diff changeset
    79
        // not contain renewable, KDC is free to issue a renewable ticket (for
1cd8bae1ef0c 8131051: KDC might issue a renewable ticket even if not requested
weijun
parents: 28670
diff changeset
    80
        // example, if ticket_lifetime is too big).
1cd8bae1ef0c 8131051: KDC might issue a renewable ticket even if not requested
weijun
parents: 28670
diff changeset
    81
        if (req.reqBody.kdcOptions.get(KDCOptions.RENEWABLE) &&
1cd8bae1ef0c 8131051: KDC might issue a renewable ticket even if not requested
weijun
parents: 28670
diff changeset
    82
                !rep.encKDCRepPart.flags.get(KDCOptions.RENEWABLE)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        }
27946
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
    85
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
    86
        if ((req.reqBody.from == null) || req.reqBody.from.isZero()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            // verify this is allowed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            if ((rep.encKDCRepPart.starttime != null) &&
27946
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
    89
                    !rep.encKDCRepPart.starttime.inClockSkew()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
                rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                throw new KrbApErrException(Krb5.KRB_AP_ERR_SKEW);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            }
27946
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
    93
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
27946
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
    95
        if ((req.reqBody.from != null) && !req.reqBody.from.isZero()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            // verify this is allowed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            if ((rep.encKDCRepPart.starttime != null) &&
27946
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
    98
                    !req.reqBody.from.equals(rep.encKDCRepPart.starttime)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            }
27946
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
   102
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        if (!req.reqBody.till.isZero() &&
27946
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
   105
                rep.encKDCRepPart.endtime.greaterThan(req.reqBody.till)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
27946
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
   110
        if (req.reqBody.kdcOptions.get(KDCOptions.RENEWABLE)) {
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
   111
            if (req.reqBody.rtime != null && !req.reqBody.rtime.isZero()) {
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
   112
                // verify this is required
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                if ((rep.encKDCRepPart.renewTill == null) ||
27946
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
   114
                        rep.encKDCRepPart.renewTill.greaterThan(req.reqBody.rtime)
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
   115
                        ) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                    rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                    throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                }
27946
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
   119
            }
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 25859
diff changeset
   120
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
}