src/java.security.jgss/share/classes/sun/security/jgss/krb5/Krb5Util.java
author weijun
Tue, 14 Aug 2018 22:39:34 +0800
changeset 51398 3c389a284345
parent 47216 71c04702a3d5
child 55613 a55b46a208d1
child 58678 9cf78a70fa4f
permissions -rw-r--r--
8209416: Refactoring GetPropertyAction calls in security libs Reviewed-by: xuelei, rriggs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
51398
3c389a284345 8209416: Refactoring GetPropertyAction calls in security libs
weijun
parents: 47216
diff changeset
     2
 * Copyright (c) 2003, 2018, 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
     * Retrieve the service ticket for serverPrincipal from caller's Subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * or from Subject obtained by logging in, or if not found, via the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * Ticket Granting Service using the TGT obtained from the Subject.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * Caller must have permission to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     *    - access and update Subject's private credentials
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     *    - create LoginContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     *    - read the auth.login.defaultCallbackHandler security property
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * NOTE: This method is used by JSSE Kerberos Cipher Suites
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     */
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    72
    public static KerberosTicket getTicketFromSubjectAndTgs(GSSCaller caller,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        String clientPrincipal, String serverPrincipal, String tgsPrincipal,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        AccessControlContext acc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        throws LoginException, KrbException, IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        // 1. Try to find service ticket in acc subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        Subject accSubj = Subject.getSubject(acc);
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
    79
        KerberosTicket ticket = SubjectComber.find(accSubj,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            serverPrincipal, clientPrincipal, KerberosTicket.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        if (ticket != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            return ticket;  // found it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        Subject loginSubj = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        if (!GSSUtil.useSubjectCredsOnly(caller)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            // 2. Try to get ticket from login
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
                loginSubj = GSSUtil.login(caller, GSSUtil.GSS_KRB5_MECH_OID);
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
    91
                ticket = SubjectComber.find(loginSubj,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                    serverPrincipal, clientPrincipal, KerberosTicket.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                if (ticket != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                    return ticket; // found it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            } catch (LoginException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
                // No login entry to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                // ignore and continue
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        // Service ticket not found in subject or login
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        // Try to get TGT to acquire service ticket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        // 3. Try to get TGT from acc subject
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   106
        KerberosTicket tgt = SubjectComber.find(accSubj,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            tgsPrincipal, clientPrincipal, KerberosTicket.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        boolean fromAcc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        if (tgt == null && loginSubj != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            // 4. Try to get TGT from login subject
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   112
            tgt = SubjectComber.find(loginSubj,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                tgsPrincipal, clientPrincipal, KerberosTicket.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            fromAcc = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            fromAcc = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        // 5. Try to get service ticket using TGT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        if (tgt != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            Credentials tgtCreds = ticketToCreds(tgt);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            Credentials serviceCreds = Credentials.acquireServiceCreds(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                        serverPrincipal, tgtCreds);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            if (serviceCreds != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                ticket = credsToTicket(serviceCreds);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                // Store service ticket in acc's Subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                if (fromAcc && accSubj != null && !accSubj.isReadOnly()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                    accSubj.getPrivateCredentials().add(ticket);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        return ticket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * Retrieves the ticket corresponding to the client/server principal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * pair from the Subject in the specified AccessControlContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * If the ticket can not be found in the Subject, and if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * useSubjectCredsOnly is false, then obtain ticket from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * a LoginContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     */
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
   143
    static KerberosTicket getTicket(GSSCaller caller,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        String clientPrincipal, String serverPrincipal,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        AccessControlContext acc) throws LoginException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        // Try to get ticket from acc's Subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        Subject accSubj = Subject.getSubject(acc);
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   149
        KerberosTicket ticket =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            SubjectComber.find(accSubj, serverPrincipal, clientPrincipal,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                  KerberosTicket.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        // Try to get ticket from Subject obtained from GSSUtil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        if (ticket == null && !GSSUtil.useSubjectCredsOnly(caller)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            Subject subject = GSSUtil.login(caller, GSSUtil.GSS_KRB5_MECH_OID);
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   156
            ticket = SubjectComber.find(subject,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                serverPrincipal, clientPrincipal, KerberosTicket.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        return ticket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * Retrieves the caller's Subject, or Subject obtained by logging in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * via the specified caller.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * Caller must have permission to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *    - access the Subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *    - create LoginContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     *    - read the auth.login.defaultCallbackHandler security property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * NOTE: This method is used by JSSE Kerberos Cipher Suites
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     */
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
   173
    public static Subject getSubject(GSSCaller caller,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        AccessControlContext acc) throws LoginException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        // Try to get the Subject from acc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        Subject subject = Subject.getSubject(acc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        // Try to get Subject obtained from GSSUtil
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        if (subject == null && !GSSUtil.useSubjectCredsOnly(caller)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            subject = GSSUtil.login(caller, GSSUtil.GSS_KRB5_MECH_OID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        return subject;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    /**
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   187
     * Retrieves the ServiceCreds for the specified server principal from
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   188
     * the Subject in the specified AccessControlContext. If not found, and if
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   189
     * useSubjectCredsOnly is false, then obtain from a LoginContext.
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   190
     *
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   191
     * NOTE: This method is also used by JSSE Kerberos Cipher Suites
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   192
     */
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   193
    public static ServiceCreds getServiceCreds(GSSCaller caller,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        String serverPrincipal, AccessControlContext acc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
                throws LoginException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        Subject accSubj = Subject.getSubject(acc);
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   198
        ServiceCreds sc = null;
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   199
        if (accSubj != null) {
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   200
            sc = ServiceCreds.getInstance(accSubj, serverPrincipal);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        }
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   202
        if (sc == null && !GSSUtil.useSubjectCredsOnly(caller)) {
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   203
            Subject subject = GSSUtil.login(caller, GSSUtil.GSS_KRB5_MECH_OID);
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   204
            sc = ServiceCreds.getInstance(subject, serverPrincipal);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        }
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   206
        return sc;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    public static KerberosTicket credsToTicket(Credentials serviceCreds) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        EncryptionKey sessionKey =  serviceCreds.getSessionKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        return new KerberosTicket(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            serviceCreds.getEncoded(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            new KerberosPrincipal(serviceCreds.getClient().getName()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            new KerberosPrincipal(serviceCreds.getServer().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                                KerberosPrincipal.KRB_NT_SRV_INST),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            sessionKey.getBytes(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            sessionKey.getEType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            serviceCreds.getFlags(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            serviceCreds.getAuthTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            serviceCreds.getStartTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            serviceCreds.getEndTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            serviceCreds.getRenewTill(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            serviceCreds.getClientAddresses());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    public static Credentials ticketToCreds(KerberosTicket kerbTicket)
14413
e954df027393 6355584: Introduce constrained Kerberos delegation
weijun
parents: 10336
diff changeset
   227
            throws KrbException, IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        return new Credentials(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            kerbTicket.getEncoded(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            kerbTicket.getClient().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            kerbTicket.getServer().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            kerbTicket.getSessionKey().getEncoded(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            kerbTicket.getSessionKeyType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
            kerbTicket.getFlags(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
            kerbTicket.getAuthTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            kerbTicket.getStartTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            kerbTicket.getEndTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            kerbTicket.getRenewTill(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            kerbTicket.getClientAddresses());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    }
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   241
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   242
    /**
15649
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   243
     * 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
   244
     * @param ktab the javax..KeyTab object
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   245
     * @return the sun..KeyTab object
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   246
     */
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   247
    public static sun.security.krb5.internal.ktab.KeyTab
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   248
            snapshotFromJavaxKeyTab(KeyTab ktab) {
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   249
        return KerberosSecrets.getJavaxSecurityAuthKerberosAccess()
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   250
                .keyTabTakeSnapshot(ktab);
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   251
    }
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   252
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   253
    /**
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   254
     * 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
   255
     * @param ktab the javax..KeyTab object
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   256
     * @param cname the PrincipalName
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   257
     * @return the EKeys, never null, might be empty
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   258
     */
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   259
    public static EncryptionKey[] keysFromJavaxKeyTab(
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   260
            KeyTab ktab, PrincipalName cname) {
15649
f6bd3d34f844 8001104: Unbound SASL service: the GSSAPI/krb5 mech
weijun
parents: 15006
diff changeset
   261
        return snapshotFromJavaxKeyTab(ktab).readServiceKeys(cname);
9499
f3115698a012 6894072: always refresh keytab
weijun
parents: 5506
diff changeset
   262
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
}