jdk/src/share/classes/sun/security/krb5/KrbAppMessage.java
author weijun
Thu, 24 Jun 2010 14:26:35 +0800
changeset 5975 076cd013e5e4
parent 5506 202f599c92aa
child 13247 74902cfeb9c6
permissions -rw-r--r--
6946669: SSL/Krb5 should not call EncryptedData.reset(data, false) 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 KrbAppMessage {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
    private static boolean DEBUG = Krb5.DEBUG;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
     * Common checks for KRB-PRIV and KRB-SAFE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    void check(KerberosTime packetTimestamp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
               Integer packetUsec,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
               Integer packetSeqNumber,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
               HostAddress packetSAddress,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
               HostAddress packetRAddress,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
               SeqNumber seqNumber,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
               HostAddress sAddress,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
               HostAddress rAddress,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
               boolean timestampRequired,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
               boolean seqNumberRequired,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
               PrincipalName packetPrincipal,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
               Realm packetRealm)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        throws KrbApErrException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        if (!Krb5.AP_EMPTY_ADDRESSES_ALLOWED || sAddress != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            if (packetSAddress == null || sAddress == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
                !packetSAddress.equals(sAddress)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
                if (DEBUG && packetSAddress == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
                    System.out.println("packetSAddress is null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                if (DEBUG && sAddress == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
                    System.out.println("sAddress is null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
                throw new KrbApErrException(Krb5.KRB_AP_ERR_BADADDR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        if (!Krb5.AP_EMPTY_ADDRESSES_ALLOWED || rAddress != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            if (packetRAddress == null || rAddress == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                !packetRAddress.equals(rAddress))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                throw new KrbApErrException(Krb5.KRB_AP_ERR_BADADDR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        if (packetTimestamp != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            packetTimestamp.setMicroSeconds(packetUsec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            if (!packetTimestamp.inClockSkew())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                throw new KrbApErrException(Krb5.KRB_AP_ERR_SKEW);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        } else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            if (timestampRequired)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                throw new KrbApErrException(Krb5.KRB_AP_ERR_SKEW);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        // XXX check replay cache
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        // if (rcache.repeated(packetTimestamp, packetUsec, packetSAddress))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        //      throw new KrbApErrException(Krb5.KRB_AP_ERR_REPEAT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        // XXX consider moving up to api level
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        if (seqNumber == null && seqNumberRequired == true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            throw new KrbApErrException(Krb5.API_INVALID_ARG);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        if (packetSeqNumber != null && seqNumber != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            if (packetSeqNumber.intValue() != seqNumber.current())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                throw new KrbApErrException(Krb5.KRB_AP_ERR_BADORDER);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            // should be done only when no more exceptions are possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            seqNumber.step();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            if (seqNumberRequired) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
                throw new KrbApErrException(Krb5.KRB_AP_ERR_BADORDER);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        // Must not be relaxed, per RFC 4120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        if (packetTimestamp == null && packetSeqNumber == null)
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
        // XXX check replay cache
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        // rcache.save_identifier(packetTimestamp, packetUsec, packetSAddress,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        // packetPrincipal, pcaketRealm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
}