9

我正在尝试使用 Spring LDAP 和 Spring security 进行身份验证,然后查询我们的公司 LDAP。我设法使身份验证工作,但是当我尝试运行搜索时,我总是得到以下异常

为了执行此操作,必须在连接上完成成功的绑定

经过大量研究,我有一个理论,即在我进行身份验证之后,在我可以查询之前,我需要绑定到连接。我只是不知道什么和如何?

顺便提一下 - 我可以使用 JXplorer 成功浏览和搜索我们的 LDAP,所以我的参数是正确的。

这是我的 securityContext.xml 的一部分

<security:http auto-config='true'>
    <security:intercept-url pattern="/reports/goodbye.html" 
            access="ROLE_LOGOUT" />
    <security:intercept-url pattern="/reports/**" access="ROLE_USER" />
    <security:http-basic />
    <security:logout logout-url="/reports/logout" 
            logout-success-url="/reports/goodbye.html" />
</security:http>
<security:ldap-server url="ldap://s140.foo.com:1389/dc=td,dc=foo,dc=com" />
<security:authentication-manager>
    <security:authentication-provider ref="ldapAuthProvider">
</security:authentication-provider>
</security:authentication-manager>
<!-- Security beans -->
<bean id="contextSource" class="org.springframework.security.ldap.DefaultSpringSecurityContextSource">
    <constructor-arg value="ldap://s140.foo.com:1389/dc=td,dc=foo,dc=com" />
</bean>
<bean id="ldapAuthProvider" 
   class="org.springframework.security.ldap.authentication.LdapAuthenticationProvider">
    <constructor-arg>
        <bean class="foo.bar.reporting.server.security.ldap.LdapAuthenticatorImpl">
            <property name="contextFactory" ref="contextSource" />
            <property name="principalPrefix" value="TD\" />
            <property name="employee" ref="employee"></property>
        </bean>
    </constructor-arg>
    <constructor-arg>
      <bean class="foo.bar.reporting.server.security.ldap.LdapAuthoritiesPopulator" />
    </constructor-arg>
</bean>
<!-- DAOs -->
<bean id="ldapTemplate" class="org.springframework.ldap.core.LdapTemplate">
  <constructor-arg ref="contextSource" />

LdapAuthenticatorImpl这是执行身份验证的代码片段。这里没问题:

@Override
public DirContextOperations authenticate(final Authentication authentication) {
    // Grab the username and password out of the authentication object.
    final String name = authentication.getName();
    final String principal = this.principalPrefix + name;
    String password = "";
    if (authentication.getCredentials() != null) {
        password = authentication.getCredentials().toString();
    }
    if (!("".equals(principal.trim())) && !("".equals(password.trim()))) {
        final InitialLdapContext ldapContext = (InitialLdapContext)
     this.contextFactory.getContext(principal, password);
        // We need to pass the context back out, so that the auth provider 
        // can add it to the Authentication object.
        final DirContextOperations authAdapter = new DirContextAdapter();
        authAdapter.addAttributeValue("ldapContext", ldapContext);
        this.employee.setqId(name);
        return authAdapter;
    } else {
        throw new BadCredentialsException("Blank username and/or password!");
    }
}

EmployeeDao这是我徒劳地尝试查询的另一个代码片段:

public List<Employee> queryEmployeesByName(String query) 
   throws BARServerException {
    AndFilter filter = new AndFilter();
    filter.and(new EqualsFilter("objectclass", "person"));
    filter.and(new WhitespaceWildcardsFilter("cn", query));
    try {
        // the following line throws bind exception
        List result = ldapTemplate.search(BASE, filter.encode(), 
            new AttributesMapper() {
            @Override
            public Employee mapFromAttributes(Attributes attrs) 
                throws NamingException {
                Employee emp = new Employee((String) attrs.get("cn").get(), 
                   (String) attrs.get("cn").get(),
                        (String) attrs.get("cn").get());
                return emp;
            }
        });
        return result;
    } catch (Exception e) { 
        throw new BarServerException("Failed to query LDAP", e);
    }
}

最后 - 我得到的例外

org.springframework.ldap.UncategorizedLdapException: 
    Uncategorized exception occured during LDAP processing; nested exception is 
    javax.naming.NamingException: [LDAP: error code 1 - 00000000: LdapErr: 
    DSID-0C090627, comment: In order to perform this operation a successful bind 
    must be completed on the connection., data 0, vece]; remaining name 
    'DC=TD,DC=FOO,DC=COM'
4

3 回答 3

4

看起来您的 LDAP 配置为不允许在未绑定的情况下进行搜索(无匿名绑定)。此外,您已经实现PasswordComparisonAuthenticator而不是BindAuthenticator向LDAP进行身份验证。

您可以尝试修改您的queryEmployeesByName()方法以绑定然后搜索,查看文档中的一些示例。

于 2011-03-10T04:28:05.430 回答
3

我将接受@Raghuram 的回答,主要是因为它让我朝着正确的方向思考。

为什么我的代码失败了?原来 - 我连接它的方式是我试图执行系统禁止的匿名搜索 - 因此出现错误。

如何重新连接上面的示例以工作?首先(也是丑陋的事情),您需要提供将用于访问系统的用户名和用户密码。即使您登录并进行身份验证,也非常违反直觉,即使您正在使用BindAuthenticator系统也不会尝试重用您的凭据。真可惜。因此,您需要将 2 个参数添加到contextSource定义中,如下所示:

   <bean id="contextSource" class="org.springframework.security.ldap.DefaultSpringSecurityContextSource">
    <constructor-arg value="ldap://foo.com:389/dc=td,dc=foo,dc=com" />
    <!-- TODO - need to hide this or encrypt a password -->
    <property name="userDn" value="CN=admin,OU=Application,DC=TD,DC=FOO,DC=COM" />
    <property name="password" value="blah" />
</bean>

这样做允许我用泛型替换身份验证器的自定义实现,BindAuthenticator然后我的 Java 搜索开始工作

于 2011-03-11T03:53:58.293 回答
0

我遇到了同样的错误,找不到解决方案。最后,我将应用程序池标识更改为网络服务,一切都像魅力一样工作。(我在我的网站上启用了 Windows 身份验证和匿名)

于 2013-01-09T17:09:11.133 回答