mirror of
https://github.com/mainnika/nginx-auth-ldap.git
synced 2026-05-22 15:53:39 +00:00
Revert "Merge pull request #199 from AVENTER-UG/issue_180"
This reverts commitbf64cf217a, reversing changes made tof022103e31. This change isn't right -- it an LDAP setup when `group_attribute_is_dn on` is enabled, which is what this section of code (https://github.com/kvspb/nginx-auth-ldap/commit/bf64cf217abbe79917f9d44a651c2ecbb82ec993#diff-c05c0daefb48996cbf510b81002b49bcR2230) is conditionally targeting. This original PR #199 changed the underlying LDAP query (eg `user_val`) from looking up the user's DN as a group attribute in LDAP (eg set via the `group_attribute` directive in nginx) to looking up the _group's_ DN, which isn't right and won't work. This PR reverts the previous change to make this work correctly again. Fwiw, the originally-referenced issue #180 seems to be a completely different issue, relating to escaping and parentheses.
This commit is contained in:
@@ -2216,7 +2216,6 @@ ngx_http_auth_ldap_check_group(ngx_http_request_t *r, ngx_http_auth_ldap_ctx_t *
|
||||
ngx_memcpy(gr, val.data, val.len);
|
||||
gr[val.len] = '\0';
|
||||
tail_gr = ngx_strchr(gr, ',');
|
||||
|
||||
if (tail_gr == NULL) {
|
||||
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "http_auth_ldap: Incorrect group DN: \"%s\"", gr);
|
||||
ctx->outcome = OUTCOME_ERROR;
|
||||
@@ -2230,9 +2229,9 @@ ngx_http_auth_ldap_check_group(ngx_http_request_t *r, ngx_http_auth_ldap_ctx_t *
|
||||
if (ctx->server->group_attribute_dn == 1) {
|
||||
user_val = ngx_pcalloc(
|
||||
r->pool,
|
||||
ctx->dn.len + 1);
|
||||
ngx_memcpy(user_val, ctx->dn.data, ctx->dn.len);
|
||||
user_val[ctx->dn.len] = '\0';
|
||||
ctx->user_dn.len + 1);
|
||||
ngx_memcpy(user_val, ctx->user_dn.data, ctx->user_dn.len);
|
||||
user_val[ctx->user_dn.len] = '\0';
|
||||
} else {
|
||||
user_val = ngx_pcalloc(
|
||||
r->pool,
|
||||
|
||||
Reference in New Issue
Block a user