我正在尝试在以域用户身份登录的 Windows 计算机上使用 GSS 绑定到 Active Directory 服务器。通常,这可以正常工作。但是在执行签名和绑定时
GSS 无法绑定。根据https://bugs.openjdk.java.net/browse/JDK-8245527,JDK 16(b18)中添加了此功能,但我无法成功绑定失败并显示错误消息
javax.naming.AuthenticationException: [LDAP: error code 49 - 80090346: LdapErr: DSID-0C090595, comment: AcceptSecurityContext error, data 80090346, v3839
其他相关细节:
我的公司有 3 个域控制器,每个都返回相同的错误。它们当前设置为 value=1(当支持时),尽管 value=2(总是)具有相同的效果。
我相当确定我的项目使用的是 JDK 16 build 20。
使用用户名和密码绑定时,一切都按预期工作。
此外,通过 LDAP(而不是 LDAPS)的绑定适用于 GSS。
关键组合是 GSS + LDAPS。
编辑 我在 JDK 15.0.1.9 中得到与在 JDK 16 中相同的行为。这让我认为该功能在 JDK16b20 中没有完全实现,但是在检查包含的源代码后,我可以看到代码的添加位置。
下面是用于连接服务器的代码:
public class ActiveDirectory {
public LdapContext getConnection(boolean ssl) throws NamingException {
return getConnection(null, null, ssl);
}
public LdapContext getConnection(String username, String password, boolean ssl) throws NamingException {
String domainName = "";
try {
String fqdn = java.net.InetAddress.getLocalHost().getCanonicalHostName(); //lookup the domain
if (fqdn.split("\\.").length > 1) {
domainName = fqdn.substring(fqdn.indexOf(".") + 1);
}
} catch (java.net.UnknownHostException e) {
}
Hashtable props = new Hashtable();
if (password != null) {
password = password.trim();
if (password.length() == 0) { //the password was blank. Bind with GSS anyway
password = null;
}
}
if (password != null) { // a password was provided. Bind as that user
String principalName = username + "@" + domainName;
props.put(Context.SECURITY_PRINCIPAL, principalName);
props.put(Context.SECURITY_AUTHENTICATION, "simple");
props.put(Context.SECURITY_CREDENTIALS, password);
} else { //no password. Bind with GSS
String principalName = System.getProperty("user.name") + "@" + domainName;
username=System.getProperty("user.name");
props.put(Context.SECURITY_PRINCIPAL, principalName);
props.put(Context.SECURITY_AUTHENTICATION, "GSSAPI");
System.setProperty("sun.security.jgss.native", "true");
}
props.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
String ldapURL = "";
for (String server : domainControllers) {
if (ssl) { //use SSL to bind
ldapURL = "ldaps://" + server + "." + domainName + "/";
props.put(Context.SECURITY_PROTOCOL, "ssl");
props.put("com.sun.jndi.ldap.tls.cbtype", "tls-server-end-point"); //use channel binding !!! DOESNT WORK WITH GSS. See https://bugs.openjdk.java.net/browse/JDK-8245527?attachmentViewMode=gallery
props.put("com.sun.jndi.ldap.connect.timeout", "2000");
} else { //dont use ssl to bind
ldapURL = "ldap://" + server + "." + domainName + '/';
props.put(Context.SECURITY_PROTOCOL, "");
}
props.put(Context.PROVIDER_URL,ldapURL);
try {
return connect(props);
} catch (NamingException e) {
System.out.println(e.toString());
}
}
throw new NamingException("Failed to authenticate " + username + "@" + domainName);
}
private LdapContext connect(Hashtable props) throws NamingException {
return new InitialLdapContext(props, null);
}
如果有人能发现我做错了什么,那将不胜感激。谢谢!