jdk/src/share/classes/sun/security/krb5/KrbKdcRep.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;
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(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
                      KDCReq req,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
                      KDCRep rep
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
                      ) throws KrbApErrException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
        if (!req.reqBody.cname.equalsWithoutRealm(rep.cname)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
            rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        /**** XXX
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
              if (!req.reqBody.crealm.equals(rep.crealm)) {
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        if (!req.reqBody.sname.equalsWithoutRealm(rep.encKDCRepPart.sname)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
            rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        if (!req.reqBody.crealm.equals(rep.encKDCRepPart.srealm)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
            rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        if (req.reqBody.getNonce() != rep.encKDCRepPart.nonce) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        if (
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            ((req.reqBody.addresses != null && rep.encKDCRepPart.caddr != null) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
             !req.reqBody.addresses.equals(rep.encKDCRepPart.caddr))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            rep.encKDCRepPart.key.destroy();
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
        for (int i = 1; i < 6; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            if (req.reqBody.kdcOptions.get(i) !=
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                rep.encKDCRepPart.flags.get(i)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        // XXX Can renew a ticket but not ask for a renewable renewed ticket
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        // See impl of Credentials.renew().
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        if (req.reqBody.kdcOptions.get(KDCOptions.RENEWABLE) !=
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            rep.encKDCRepPart.flags.get(KDCOptions.RENEWABLE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        if ((req.reqBody.from == null) || req.reqBody.from.isZero())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            // verify this is allowed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            if ((rep.encKDCRepPart.starttime != null) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                !rep.encKDCRepPart.starttime.inClockSkew()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                throw new KrbApErrException(Krb5.KRB_AP_ERR_SKEW);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        if ((req.reqBody.from != null) && !req.reqBody.from.isZero())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            // verify this is allowed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            if ((rep.encKDCRepPart.starttime != null) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                !req.reqBody.from.equals(rep.encKDCRepPart.starttime)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        if (!req.reqBody.till.isZero() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            rep.encKDCRepPart.endtime.greaterThan(req.reqBody.till)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        if (req.reqBody.kdcOptions.get(KDCOptions.RENEWABLE))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            if (req.reqBody.rtime != null && !req.reqBody.rtime.isZero())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                                // verify this is required
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                if ((rep.encKDCRepPart.renewTill == null) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                    rep.encKDCRepPart.renewTill.greaterThan(req.reqBody.rtime)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                    ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                    rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                    throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        if (req.reqBody.kdcOptions.get(KDCOptions.RENEWABLE_OK) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            rep.encKDCRepPart.flags.get(KDCOptions.RENEWABLE))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            if (!req.reqBody.till.isZero())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                                // verify this is required
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                if ((rep.encKDCRepPart.renewTill == null) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                    rep.encKDCRepPart.renewTill.greaterThan(req.reqBody.till)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                    ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                    rep.encKDCRepPart.key.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                    throw new KrbApErrException(Krb5.KRB_AP_ERR_MODIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
}