src/java.security.jgss/share/classes/sun/security/jgss/krb5/Krb5Util.java
author weijun
Sat, 06 Jul 2019 08:11:19 +0800
changeset 55613 a55b46a208d1
parent 51398 3c389a284345
child 57487 643978a35f6e
permissions -rw-r--r--
8227305: Krb5Util::getTicketFromSubjectAndTgs is useless Reviewed-by: xuelei
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
55613
a55b46a208d1 8227305: Krb5Util::getTicketFromSubjectAndTgs is useless
weijun
parents: 51398
diff changeset
     2
 * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2942
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2942
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2942
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2942
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2942
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.security.jgss.krb5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import javax.security.auth.kerberos.KerberosTicket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import javax.security.auth.kerberos.KerberosPrincipal;
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
    30
import javax.security.auth.kerberos.KeyTab;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import javax.security.auth.Subject;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import javax.security.auth.login.LoginException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.security.AccessControlContext;
51398
3c389a284345 8209416: Refactoring GetPropertyAction calls in security libs
weijun
parents: 47216
diff changeset
    34
3c389a284345 8209416: Refactoring GetPropertyAction calls in security libs
weijun
parents: 47216
diff changeset
    35
import sun.security.action.GetBooleanAction;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import sun.security.jgss.GSSUtil;
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    37
import sun.security.jgss.GSSCaller;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import sun.security.krb5.Credentials;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import sun.security.krb5.EncryptionKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import sun.security.krb5.KrbException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.io.IOException;
10044
413c0f8ca341 7048466: Move sun.misc.JavaxSecurityAuthKerberosAccess to sun.security.krb5 package
weijun
parents: 9499
diff changeset
    43
import sun.security.krb5.KerberosSecrets;
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
    44
import sun.security.krb5.PrincipalName;
51398
3c389a284345 8209416: Refactoring GetPropertyAction calls in security libs
weijun
parents: 47216
diff changeset
    45
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * Utilities for obtaining and converting Kerberos tickets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
public class Krb5Util {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
51398
3c389a284345 8209416: Refactoring GetPropertyAction calls in security libs
weijun
parents: 47216
diff changeset
    51
    static final boolean DEBUG = GetBooleanAction
3c389a284345 8209416: Refactoring GetPropertyAction calls in security libs
weijun
parents: 47216
diff changeset
    52
            .privilegedGetProperty("sun.security.krb5.debug");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * Default constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    private Krb5Util() {  // Cannot create one of these
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * Retrieves the ticket corresponding to the client/server principal
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * pair from the Subject in the specified AccessControlContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * If the ticket can not be found in the Subject, and if
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * useSubjectCredsOnly is false, then obtain ticket from
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * a LoginContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     */
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    67
    static KerberosTicket getTicket(GSSCaller caller,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        String clientPrincipal, String serverPrincipal,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        AccessControlContext acc) throws LoginException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        // Try to get ticket from acc's Subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        Subject accSubj = Subject.getSubject(acc);
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
    73
        KerberosTicket ticket =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            SubjectComber.find(accSubj, serverPrincipal, clientPrincipal,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                  KerberosTicket.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        // Try to get ticket from Subject obtained from GSSUtil
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        if (ticket == null && !GSSUtil.useSubjectCredsOnly(caller)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            Subject subject = GSSUtil.login(caller, GSSUtil.GSS_KRB5_MECH_OID);
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
    80
            ticket = SubjectComber.find(subject,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
                serverPrincipal, clientPrincipal, KerberosTicket.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        return ticket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * Retrieves the caller's Subject, or Subject obtained by logging in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * via the specified caller.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * Caller must have permission to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     *    - access the Subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     *    - create LoginContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     *    - read the auth.login.defaultCallbackHandler security property
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * NOTE: This method is used by JSSE Kerberos Cipher Suites
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     */
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    97
    public static Subject getSubject(GSSCaller caller,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        AccessControlContext acc) throws LoginException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        // Try to get the Subject from acc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        Subject subject = Subject.getSubject(acc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        // Try to get Subject obtained from GSSUtil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        if (subject == null && !GSSUtil.useSubjectCredsOnly(caller)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            subject = GSSUtil.login(caller, GSSUtil.GSS_KRB5_MECH_OID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        return subject;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    /**
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   111
     * Retrieves the ServiceCreds for the specified server principal from
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   112
     * the Subject in the specified AccessControlContext. If not found, and if
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   113
     * useSubjectCredsOnly is false, then obtain from a LoginContext.
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   114
     *
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   115
     * NOTE: This method is also used by JSSE Kerberos Cipher Suites
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   116
     */
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   117
    public static ServiceCreds getServiceCreds(GSSCaller caller,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        String serverPrincipal, AccessControlContext acc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                throws LoginException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        Subject accSubj = Subject.getSubject(acc);
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   122
        ServiceCreds sc = null;
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   123
        if (accSubj != null) {
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   124
            sc = ServiceCreds.getInstance(accSubj, serverPrincipal);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        }
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   126
        if (sc == null && !GSSUtil.useSubjectCredsOnly(caller)) {
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   127
            Subject subject = GSSUtil.login(caller, GSSUtil.GSS_KRB5_MECH_OID);
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   128
            sc = ServiceCreds.getInstance(subject, serverPrincipal);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        }
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   130
        return sc;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    public static KerberosTicket credsToTicket(Credentials serviceCreds) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        EncryptionKey sessionKey =  serviceCreds.getSessionKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        return new KerberosTicket(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            serviceCreds.getEncoded(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            new KerberosPrincipal(serviceCreds.getClient().getName()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            new KerberosPrincipal(serviceCreds.getServer().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
                                KerberosPrincipal.KRB_NT_SRV_INST),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            sessionKey.getBytes(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            sessionKey.getEType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            serviceCreds.getFlags(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            serviceCreds.getAuthTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            serviceCreds.getStartTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            serviceCreds.getEndTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            serviceCreds.getRenewTill(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            serviceCreds.getClientAddresses());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    public static Credentials ticketToCreds(KerberosTicket kerbTicket)
14413
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 10336
diff changeset
   151
            throws KrbException, IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        return new Credentials(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            kerbTicket.getEncoded(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            kerbTicket.getClient().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            kerbTicket.getServer().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            kerbTicket.getSessionKey().getEncoded(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
            kerbTicket.getSessionKeyType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            kerbTicket.getFlags(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            kerbTicket.getAuthTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            kerbTicket.getStartTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            kerbTicket.getEndTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            kerbTicket.getRenewTill(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            kerbTicket.getClientAddresses());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    }
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   165
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   166
    /**
15649
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   167
     * A helper method to get a sun..KeyTab from a javax..KeyTab
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   168
     * @param ktab the javax..KeyTab object
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   169
     * @return the sun..KeyTab object
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   170
     */
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   171
    public static sun.security.krb5.internal.ktab.KeyTab
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   172
            snapshotFromJavaxKeyTab(KeyTab ktab) {
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   173
        return KerberosSecrets.getJavaxSecurityAuthKerberosAccess()
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   174
                .keyTabTakeSnapshot(ktab);
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   175
    }
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   176
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   177
    /**
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   178
     * A helper method to get EncryptionKeys from a javax..KeyTab
15649
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   179
     * @param ktab the javax..KeyTab object
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   180
     * @param cname the PrincipalName
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   181
     * @return the EKeys, never null, might be empty
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   182
     */
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   183
    public static EncryptionKey[] keysFromJavaxKeyTab(
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   184
            KeyTab ktab, PrincipalName cname) {
15649
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   185
        return snapshotFromJavaxKeyTab(ktab).readServiceKeys(cname);
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   186
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
}