mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
412 lines
16 KiB
Java
412 lines
16 KiB
Java
/*
|
|
* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation. Oracle designates this
|
|
* particular file as subject to the "Classpath" exception as provided
|
|
* by Oracle in the LICENSE file that accompanied this code.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* (C) Copyright IBM Corp. 1999 All Rights Reserved.
|
|
* Copyright 1997 The Open Group Research Institute. All rights reserved.
|
|
*/
|
|
|
|
package sun.security.krb5.internal;
|
|
|
|
import sun.security.krb5.*;
|
|
import java.io.IOException;
|
|
import java.util.LinkedList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* This class is a utility that contains much of the TGS-Exchange
|
|
* protocol. It is used by ../Credentials.java for service ticket
|
|
* acquisition in both the normal and the x-realm case.
|
|
*/
|
|
public class CredentialsUtil {
|
|
|
|
private static boolean DEBUG = sun.security.krb5.internal.Krb5.DEBUG;
|
|
|
|
/**
|
|
* Used by a middle server to acquire credentials on behalf of a
|
|
* client to itself using the S4U2self extension.
|
|
* @param client the client to impersonate
|
|
* @param ccreds the TGT of the middle service
|
|
* @return the new creds (cname=client, sname=middle)
|
|
*/
|
|
public static Credentials acquireS4U2selfCreds(PrincipalName client,
|
|
Credentials ccreds) throws KrbException, IOException {
|
|
String uRealm = client.getRealmString();
|
|
String localRealm = ccreds.getClient().getRealmString();
|
|
if (!uRealm.equals(localRealm)) {
|
|
// TODO: we do not support kerberos referral now
|
|
throw new KrbException("Cross realm impersonation not supported");
|
|
}
|
|
if (!ccreds.isForwardable()) {
|
|
throw new KrbException("S4U2self needs a FORWARDABLE ticket");
|
|
}
|
|
Credentials creds = serviceCreds(KDCOptions.with(KDCOptions.FORWARDABLE),
|
|
ccreds, ccreds.getClient(), ccreds.getClient(), null,
|
|
new PAData[] {new PAData(Krb5.PA_FOR_USER,
|
|
new PAForUserEnc(client,
|
|
ccreds.getSessionKey()).asn1Encode())});
|
|
if (!creds.getClient().equals(client)) {
|
|
throw new KrbException("S4U2self request not honored by KDC");
|
|
}
|
|
if (!creds.isForwardable()) {
|
|
throw new KrbException("S4U2self ticket must be FORWARDABLE");
|
|
}
|
|
return creds;
|
|
}
|
|
|
|
/**
|
|
* Used by a middle server to acquire a service ticket to a backend
|
|
* server using the S4U2proxy extension.
|
|
* @param backend the name of the backend service
|
|
* @param second the client's service ticket to the middle server
|
|
* @param ccreds the TGT of the middle server
|
|
* @return the creds (cname=client, sname=backend)
|
|
*/
|
|
public static Credentials acquireS4U2proxyCreds(
|
|
String backend, Ticket second,
|
|
PrincipalName client, Credentials ccreds)
|
|
throws KrbException, IOException {
|
|
Credentials creds = serviceCreds(KDCOptions.with(
|
|
KDCOptions.CNAME_IN_ADDL_TKT, KDCOptions.FORWARDABLE),
|
|
ccreds, ccreds.getClient(), new PrincipalName(backend),
|
|
new Ticket[] {second}, null);
|
|
if (!creds.getClient().equals(client)) {
|
|
throw new KrbException("S4U2proxy request not honored by KDC");
|
|
}
|
|
return creds;
|
|
}
|
|
|
|
/**
|
|
* Acquires credentials for a specified service using initial
|
|
* credential. When the service has a different realm from the initial
|
|
* credential, we do cross-realm authentication - first, we use the
|
|
* current credential to get a cross-realm credential from the local KDC,
|
|
* then use that cross-realm credential to request service credential
|
|
* from the foreign KDC.
|
|
*
|
|
* @param service the name of service principal
|
|
* @param ccreds client's initial credential
|
|
*/
|
|
public static Credentials acquireServiceCreds(
|
|
String service, Credentials ccreds)
|
|
throws KrbException, IOException {
|
|
PrincipalName sname = new PrincipalName(service,
|
|
PrincipalName.KRB_NT_SRV_HST);
|
|
return serviceCreds(sname, ccreds);
|
|
}
|
|
|
|
/**
|
|
* Gets a TGT to another realm
|
|
* @param localRealm this realm
|
|
* @param serviceRealm the other realm, cannot equals to localRealm
|
|
* @param ccreds TGT in this realm
|
|
* @param okAsDelegate an [out] argument to receive the okAsDelegate
|
|
* property. True only if all realms allow delegation.
|
|
* @return the TGT for the other realm, null if cannot find a path
|
|
* @throws KrbException if something goes wrong
|
|
*/
|
|
private static Credentials getTGTforRealm(String localRealm,
|
|
String serviceRealm, Credentials ccreds, boolean[] okAsDelegate)
|
|
throws KrbException {
|
|
|
|
// Get a list of realms to traverse
|
|
String[] realms = Realm.getRealmsList(localRealm, serviceRealm);
|
|
|
|
int i = 0, k = 0;
|
|
Credentials cTgt = null, newTgt = null, theTgt = null;
|
|
PrincipalName tempService = null;
|
|
String newTgtRealm = null;
|
|
|
|
okAsDelegate[0] = true;
|
|
for (cTgt = ccreds, i = 0; i < realms.length;) {
|
|
tempService = PrincipalName.tgsService(serviceRealm, realms[i]);
|
|
|
|
if (DEBUG) {
|
|
System.out.println(
|
|
">>> Credentials acquireServiceCreds: main loop: ["
|
|
+ i +"] tempService=" + tempService);
|
|
}
|
|
|
|
try {
|
|
newTgt = serviceCreds(tempService, cTgt);
|
|
} catch (Exception exc) {
|
|
newTgt = null;
|
|
}
|
|
|
|
if (newTgt == null) {
|
|
if (DEBUG) {
|
|
System.out.println(">>> Credentials acquireServiceCreds: "
|
|
+ "no tgt; searching thru capath");
|
|
}
|
|
|
|
/*
|
|
* No tgt found. Let's go thru the realms list one by one.
|
|
*/
|
|
for (newTgt = null, k = i+1;
|
|
newTgt == null && k < realms.length; k++) {
|
|
tempService = PrincipalName.tgsService(realms[k], realms[i]);
|
|
if (DEBUG) {
|
|
System.out.println(
|
|
">>> Credentials acquireServiceCreds: "
|
|
+ "inner loop: [" + k
|
|
+ "] tempService=" + tempService);
|
|
}
|
|
try {
|
|
newTgt = serviceCreds(tempService, cTgt);
|
|
} catch (Exception exc) {
|
|
newTgt = null;
|
|
}
|
|
}
|
|
} // Ends 'if (newTgt == null)'
|
|
|
|
if (newTgt == null) {
|
|
if (DEBUG) {
|
|
System.out.println(">>> Credentials acquireServiceCreds: "
|
|
+ "no tgt; cannot get creds");
|
|
}
|
|
break;
|
|
}
|
|
|
|
/*
|
|
* We have a tgt. It may or may not be for the target.
|
|
* If it's for the target realm, we're done looking for a tgt.
|
|
*/
|
|
newTgtRealm = newTgt.getServer().getInstanceComponent();
|
|
if (okAsDelegate[0] && !newTgt.checkDelegate()) {
|
|
if (DEBUG) {
|
|
System.out.println(">>> Credentials acquireServiceCreds: " +
|
|
"global OK-AS-DELEGATE turned off at " +
|
|
newTgt.getServer());
|
|
}
|
|
okAsDelegate[0] = false;
|
|
}
|
|
|
|
if (DEBUG) {
|
|
System.out.println(">>> Credentials acquireServiceCreds: "
|
|
+ "got tgt");
|
|
}
|
|
|
|
if (newTgtRealm.equals(serviceRealm)) {
|
|
/* We got the right tgt */
|
|
theTgt = newTgt;
|
|
break;
|
|
}
|
|
|
|
/*
|
|
* The new tgt is not for the target realm.
|
|
* See if the realm of the new tgt is in the list of realms
|
|
* and continue looking from there.
|
|
*/
|
|
for (k = i+1; k < realms.length; k++) {
|
|
if (newTgtRealm.equals(realms[k])) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (k < realms.length) {
|
|
/*
|
|
* (re)set the counter so we start looking
|
|
* from the realm we just obtained a tgt for.
|
|
*/
|
|
i = k;
|
|
cTgt = newTgt;
|
|
|
|
if (DEBUG) {
|
|
System.out.println(">>> Credentials acquireServiceCreds: "
|
|
+ "continuing with main loop counter reset to " + i);
|
|
}
|
|
continue;
|
|
}
|
|
else {
|
|
/*
|
|
* The new tgt's realm is not in the hierarchy of realms.
|
|
* It's probably not safe to get a tgt from
|
|
* a tgs that is outside the known list of realms.
|
|
* Give up now.
|
|
*/
|
|
break;
|
|
}
|
|
} // Ends outermost/main 'for' loop
|
|
|
|
return theTgt;
|
|
}
|
|
|
|
/*
|
|
* This method does the real job to request the service credential.
|
|
*/
|
|
private static Credentials serviceCreds(
|
|
PrincipalName service, Credentials ccreds)
|
|
throws KrbException, IOException {
|
|
return serviceCreds(new KDCOptions(), ccreds,
|
|
ccreds.getClient(), service, null, null);
|
|
}
|
|
|
|
/*
|
|
* Obtains credentials for a service (TGS).
|
|
* Cross-realm referrals are handled if enabled. A fallback scheme
|
|
* without cross-realm referrals supports is used in case of server
|
|
* error to maintain backward compatibility.
|
|
*/
|
|
private static Credentials serviceCreds(
|
|
KDCOptions options, Credentials asCreds,
|
|
PrincipalName cname, PrincipalName sname,
|
|
Ticket[] additionalTickets, PAData[] extraPAs)
|
|
throws KrbException, IOException {
|
|
if (!Config.DISABLE_REFERRALS) {
|
|
try {
|
|
return serviceCredsReferrals(options, asCreds,
|
|
cname, sname, additionalTickets, extraPAs);
|
|
} catch (KrbException e) {
|
|
// Server may raise an error if CANONICALIZE is true.
|
|
// Try CANONICALIZE false.
|
|
}
|
|
}
|
|
return serviceCredsSingle(options, asCreds, cname,
|
|
asCreds.getClientAlias(), sname, sname, additionalTickets,
|
|
extraPAs);
|
|
}
|
|
|
|
/*
|
|
* Obtains credentials for a service (TGS).
|
|
* May handle and follow cross-realm referrals as defined by RFC 6806.
|
|
*/
|
|
private static Credentials serviceCredsReferrals(
|
|
KDCOptions options, Credentials asCreds,
|
|
PrincipalName cname, PrincipalName sname,
|
|
Ticket[] additionalTickets, PAData[] extraPAs)
|
|
throws KrbException, IOException {
|
|
options = new KDCOptions(options.toBooleanArray());
|
|
options.set(KDCOptions.CANONICALIZE, true);
|
|
PrincipalName cSname = sname;
|
|
PrincipalName refSname = sname; // May change with referrals
|
|
Credentials creds = null;
|
|
boolean isReferral = false;
|
|
List<String> referrals = new LinkedList<>();
|
|
PrincipalName clientAlias = asCreds.getClientAlias();
|
|
while (referrals.size() <= Config.MAX_REFERRALS) {
|
|
ReferralsCache.ReferralCacheEntry ref =
|
|
ReferralsCache.get(cname, sname, refSname.getRealmString());
|
|
String toRealm = null;
|
|
if (ref == null) {
|
|
creds = serviceCredsSingle(options, asCreds, cname,
|
|
clientAlias, refSname, cSname, additionalTickets,
|
|
extraPAs);
|
|
PrincipalName server = creds.getServer();
|
|
if (!refSname.equals(server)) {
|
|
String[] serverNameStrings = server.getNameStrings();
|
|
if (serverNameStrings.length == 2 &&
|
|
serverNameStrings[0].equals(
|
|
PrincipalName.TGS_DEFAULT_SRV_NAME) &&
|
|
!refSname.getRealmAsString().equals(serverNameStrings[1])) {
|
|
// Server Name (sname) has the following format:
|
|
// krbtgt/TO-REALM.COM@FROM-REALM.COM
|
|
ReferralsCache.put(cname, sname, server.getRealmString(),
|
|
serverNameStrings[1], creds);
|
|
toRealm = serverNameStrings[1];
|
|
isReferral = true;
|
|
asCreds = creds;
|
|
}
|
|
}
|
|
} else {
|
|
toRealm = ref.getToRealm();
|
|
asCreds = ref.getCreds();
|
|
isReferral = true;
|
|
}
|
|
if (isReferral) {
|
|
if (referrals.contains(toRealm)) {
|
|
// Referrals loop detected
|
|
return null;
|
|
}
|
|
refSname = new PrincipalName(refSname.getNameString(),
|
|
refSname.getNameType(), toRealm);
|
|
referrals.add(toRealm);
|
|
isReferral = false;
|
|
continue;
|
|
}
|
|
break;
|
|
}
|
|
return creds;
|
|
}
|
|
|
|
/*
|
|
* Obtains credentials for a service (TGS).
|
|
* If the service realm is different than the one in the TGT, a new TGT for
|
|
* the service realm is obtained first (see getTGTforRealm call). This is
|
|
* not expected when following cross-realm referrals because the referral
|
|
* TGT realm matches the service realm.
|
|
*/
|
|
private static Credentials serviceCredsSingle(
|
|
KDCOptions options, Credentials asCreds,
|
|
PrincipalName cname, PrincipalName clientAlias,
|
|
PrincipalName refSname, PrincipalName sname,
|
|
Ticket[] additionalTickets, PAData[] extraPAs)
|
|
throws KrbException, IOException {
|
|
Credentials theCreds = null;
|
|
boolean[] okAsDelegate = new boolean[]{true};
|
|
String[] serverAsCredsNames = asCreds.getServer().getNameStrings();
|
|
String tgtRealm = serverAsCredsNames[1];
|
|
String serviceRealm = refSname.getRealmString();
|
|
if (!serviceRealm.equals(tgtRealm)) {
|
|
// This is a cross-realm service request
|
|
if (DEBUG) {
|
|
System.out.println(">>> serviceCredsSingle:" +
|
|
" cross-realm authentication");
|
|
System.out.println(">>> serviceCredsSingle:" +
|
|
" obtaining credentials from " + tgtRealm +
|
|
" to " + serviceRealm);
|
|
}
|
|
Credentials newTgt = getTGTforRealm(tgtRealm, serviceRealm,
|
|
asCreds, okAsDelegate);
|
|
if (newTgt == null) {
|
|
throw new KrbApErrException(Krb5.KRB_AP_ERR_GEN_CRED,
|
|
"No service creds");
|
|
}
|
|
if (DEBUG) {
|
|
System.out.println(">>> Cross-realm TGT Credentials" +
|
|
" serviceCredsSingle: ");
|
|
Credentials.printDebug(newTgt);
|
|
}
|
|
asCreds = newTgt;
|
|
cname = asCreds.getClient();
|
|
} else if (DEBUG) {
|
|
System.out.println(">>> Credentials serviceCredsSingle:" +
|
|
" same realm");
|
|
}
|
|
KrbTgsReq req = new KrbTgsReq(options, asCreds, cname, clientAlias,
|
|
refSname, sname, additionalTickets, extraPAs);
|
|
theCreds = req.sendAndGetCreds();
|
|
if (theCreds != null) {
|
|
if (DEBUG) {
|
|
System.out.println(">>> TGS credentials serviceCredsSingle:");
|
|
Credentials.printDebug(theCreds);
|
|
}
|
|
if (!okAsDelegate[0]) {
|
|
theCreds.resetDelegate();
|
|
}
|
|
}
|
|
return theCreds;
|
|
}
|
|
}
|