This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8245527: LDAP Channel Binding support for Java GSS/Kerberos
Backport-of: cfa3f7493149170f2b23a516bc95110dab43fd06
- Loading branch information
Yuri Nesterenko
committed
Jul 12, 2022
1 parent
148dbd4
commit 2a32692
Showing
10 changed files
with
543 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
146 changes: 146 additions & 0 deletions
146
src/java.naming/share/classes/com/sun/jndi/ldap/sasl/TlsChannelBinding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
/* | ||
* Copyright (c) 2020, Azul Systems, Inc. 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. | ||
*/ | ||
package com.sun.jndi.ldap.sasl; | ||
|
||
import javax.naming.NamingException; | ||
import javax.security.sasl.SaslException; | ||
import java.security.MessageDigest; | ||
import java.security.NoSuchAlgorithmException; | ||
import java.security.cert.CertificateEncodingException; | ||
import java.security.cert.X509Certificate; | ||
import java.util.Arrays; | ||
import java.util.Hashtable; | ||
|
||
/** | ||
* This class implements the Channel Binding for TLS as defined in | ||
* <a href="https://www.ietf.org/rfc/rfc5929.txt"> | ||
* Channel Bindings for TLS</a> | ||
* | ||
* Format of the Channel Binding data is also defined in | ||
* <a href="https://www.ietf.org/rfc/rfc5056.txt"> | ||
* On the Use of Channel Bindings to Secure Channels</a> | ||
* section 2.1. | ||
* | ||
*/ | ||
|
||
public class TlsChannelBinding { | ||
|
||
// TLS channel binding type property | ||
public static final String CHANNEL_BINDING_TYPE = | ||
"com.sun.jndi.ldap.tls.cbtype"; | ||
|
||
// internal TLS channel binding property | ||
public static final String CHANNEL_BINDING = | ||
"jdk.internal.sasl.tlschannelbinding"; | ||
|
||
public enum TlsChannelBindingType { | ||
|
||
/** | ||
* Channel binding on the basis of TLS Finished message. | ||
* TLS_UNIQUE is defined by RFC 5929 but is not supported | ||
* by the current LDAP stack. | ||
*/ | ||
TLS_UNIQUE("tls-unique"), | ||
|
||
/** | ||
* Channel binding on the basis of TLS server certificate. | ||
*/ | ||
TLS_SERVER_END_POINT("tls-server-end-point"); | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
final private String name; | ||
TlsChannelBindingType(String name) { | ||
this.name = name; | ||
} | ||
} | ||
|
||
/** | ||
* Parse value of "com.sun.jndi.ldap.tls.cbtype" property | ||
* @param cbType | ||
* @return TLS Channel Binding type or null if | ||
* "com.sun.jndi.ldap.tls.cbtype" property has not been set. | ||
* @throws NamingException | ||
*/ | ||
public static TlsChannelBindingType parseType(String cbType) throws NamingException { | ||
if (cbType != null) { | ||
if (cbType.equals(TlsChannelBindingType.TLS_SERVER_END_POINT.getName())) { | ||
return TlsChannelBindingType.TLS_SERVER_END_POINT; | ||
} else { | ||
throw new NamingException("Illegal value for " + | ||
CHANNEL_BINDING_TYPE + " property."); | ||
} | ||
} | ||
return null; | ||
} | ||
|
||
final private TlsChannelBindingType cbType; | ||
final private byte[] cbData; | ||
|
||
/** | ||
* Construct tls-server-end-point Channel Binding data | ||
* @param serverCertificate | ||
* @throws SaslException | ||
*/ | ||
public static TlsChannelBinding create(X509Certificate serverCertificate) throws SaslException { | ||
try { | ||
final byte[] prefix = | ||
TlsChannelBindingType.TLS_SERVER_END_POINT.getName().concat(":").getBytes(); | ||
String hashAlg = serverCertificate.getSigAlgName(). | ||
replace("SHA", "SHA-").toUpperCase(); | ||
int ind = hashAlg.indexOf("WITH"); | ||
if (ind > 0) { | ||
hashAlg = hashAlg.substring(0, ind); | ||
if (hashAlg.equals("MD5") || hashAlg.equals("SHA-1")) { | ||
hashAlg = "SHA-256"; | ||
} | ||
} else { | ||
hashAlg = "SHA-256"; | ||
} | ||
MessageDigest md = MessageDigest.getInstance(hashAlg); | ||
byte[] hash = md.digest(serverCertificate.getEncoded()); | ||
byte[] cbData = Arrays.copyOf(prefix, prefix.length + hash.length ); | ||
System.arraycopy(hash, 0, cbData, prefix.length, hash.length); | ||
return new TlsChannelBinding(TlsChannelBindingType.TLS_SERVER_END_POINT, cbData); | ||
} catch (NoSuchAlgorithmException | CertificateEncodingException e) { | ||
throw new SaslException("Cannot create TLS channel binding data", e); | ||
} | ||
} | ||
|
||
private TlsChannelBinding(TlsChannelBindingType cbType, byte[] cbData) { | ||
this.cbType = cbType; | ||
this.cbData = cbData; | ||
} | ||
|
||
public TlsChannelBindingType getType() { | ||
return cbType; | ||
} | ||
|
||
public byte[] getData() { | ||
return cbData; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
2a32692
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues