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