s3:idmap_ldap: allow creation of ldap stored mappings for explicitly configured domains.
[Samba/gebeck_regimport.git] / source3 / winbindd / idmap_ldap.c
bloba9cb4fc3c2c759f867a08d437d91a6dbcde461ce
1 /*
2 Unix SMB/CIFS implementation.
4 idmap LDAP backend
6 Copyright (C) Tim Potter 2000
7 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
8 Copyright (C) Gerald Carter 2003
9 Copyright (C) Simo Sorce 2003-2007
10 Copyright (C) Michael Adam 2010
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "includes.h"
27 #include "winbindd.h"
28 #include "secrets.h"
29 #include "idmap.h"
30 #include "idmap_rw.h"
31 #include "../libcli/security/security.h"
33 #undef DBGC_CLASS
34 #define DBGC_CLASS DBGC_IDMAP
36 #include <lber.h>
37 #include <ldap.h>
39 #include "smbldap.h"
41 static char *idmap_fetch_secret(const char *backend,
42 const char *domain, const char *identity)
44 char *tmp, *ret;
45 int r;
47 r = asprintf(&tmp, "IDMAP_%s_%s", backend, domain);
49 if (r < 0)
50 return NULL;
52 strupper_m(tmp); /* make sure the key is case insensitive */
53 ret = secrets_fetch_generic(tmp, identity);
55 SAFE_FREE(tmp);
57 return ret;
60 struct idmap_ldap_context {
61 struct smbldap_state *smbldap_state;
62 char *url;
63 char *suffix;
64 char *user_dn;
65 bool anon;
66 struct idmap_rw_ops *rw_ops;
69 #define CHECK_ALLOC_DONE(mem) do { \
70 if (!mem) { \
71 DEBUG(0, ("Out of memory!\n")); \
72 ret = NT_STATUS_NO_MEMORY; \
73 goto done; \
74 } } while (0)
76 /**********************************************************************
77 IDMAP ALLOC TDB BACKEND
78 **********************************************************************/
80 /*********************************************************************
81 ********************************************************************/
83 static NTSTATUS get_credentials( TALLOC_CTX *mem_ctx,
84 struct smbldap_state *ldap_state,
85 const char *config_option,
86 struct idmap_domain *dom,
87 char **dn )
89 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
90 char *secret = NULL;
91 const char *tmp = NULL;
92 char *user_dn = NULL;
93 bool anon = False;
95 /* assume anonymous if we don't have a specified user */
97 tmp = lp_parm_const_string(-1, config_option, "ldap_user_dn", NULL);
99 if ( tmp ) {
100 if (!dom) {
101 DEBUG(0, ("get_credentials: Invalid domain 'NULL' "
102 "encountered for user DN %s\n",
103 tmp));
104 ret = NT_STATUS_UNSUCCESSFUL;
105 goto done;
106 } else {
107 secret = idmap_fetch_secret("ldap", dom->name, tmp);
110 if (!secret) {
111 DEBUG(0, ("get_credentials: Unable to fetch "
112 "auth credentials for %s in %s\n",
113 tmp, (dom==NULL)?"ALLOC":dom->name));
114 ret = NT_STATUS_ACCESS_DENIED;
115 goto done;
117 *dn = talloc_strdup(mem_ctx, tmp);
118 CHECK_ALLOC_DONE(*dn);
119 } else {
120 if (!fetch_ldap_pw(&user_dn, &secret)) {
121 DEBUG(2, ("get_credentials: Failed to lookup ldap "
122 "bind creds. Using anonymous connection.\n"));
123 anon = True;
124 *dn = NULL;
125 } else {
126 *dn = talloc_strdup(mem_ctx, user_dn);
127 SAFE_FREE( user_dn );
128 CHECK_ALLOC_DONE(*dn);
132 smbldap_set_creds(ldap_state, anon, *dn, secret);
133 ret = NT_STATUS_OK;
135 done:
136 SAFE_FREE(secret);
138 return ret;
142 /**********************************************************************
143 Verify the sambaUnixIdPool entry in the directory.
144 **********************************************************************/
146 static NTSTATUS verify_idpool(struct idmap_domain *dom)
148 NTSTATUS ret;
149 TALLOC_CTX *mem_ctx;
150 LDAPMessage *result = NULL;
151 LDAPMod **mods = NULL;
152 const char **attr_list;
153 char *filter;
154 int count;
155 int rc;
156 struct idmap_ldap_context *ctx;
158 ctx = talloc_get_type(dom->private_data, struct idmap_ldap_context);
160 mem_ctx = talloc_new(ctx);
161 if (mem_ctx == NULL) {
162 DEBUG(0, ("Out of memory!\n"));
163 return NT_STATUS_NO_MEMORY;
166 filter = talloc_asprintf(mem_ctx, "(objectclass=%s)", LDAP_OBJ_IDPOOL);
167 CHECK_ALLOC_DONE(filter);
169 attr_list = get_attr_list(mem_ctx, idpool_attr_list);
170 CHECK_ALLOC_DONE(attr_list);
172 rc = smbldap_search(ctx->smbldap_state,
173 ctx->suffix,
174 LDAP_SCOPE_SUBTREE,
175 filter,
176 attr_list,
178 &result);
180 if (rc != LDAP_SUCCESS) {
181 DEBUG(1, ("Unable to verify the idpool, "
182 "cannot continue initialization!\n"));
183 return NT_STATUS_UNSUCCESSFUL;
186 count = ldap_count_entries(ctx->smbldap_state->ldap_struct, result);
188 ldap_msgfree(result);
190 if ( count > 1 ) {
191 DEBUG(0,("Multiple entries returned from %s (base == %s)\n",
192 filter, ctx->suffix));
193 ret = NT_STATUS_UNSUCCESSFUL;
194 goto done;
196 else if (count == 0) {
197 char *uid_str, *gid_str;
199 uid_str = talloc_asprintf(mem_ctx, "%lu",
200 (unsigned long)dom->low_id);
201 gid_str = talloc_asprintf(mem_ctx, "%lu",
202 (unsigned long)dom->low_id);
204 smbldap_set_mod(&mods, LDAP_MOD_ADD,
205 "objectClass", LDAP_OBJ_IDPOOL);
206 smbldap_set_mod(&mods, LDAP_MOD_ADD,
207 get_attr_key2string(idpool_attr_list,
208 LDAP_ATTR_UIDNUMBER),
209 uid_str);
210 smbldap_set_mod(&mods, LDAP_MOD_ADD,
211 get_attr_key2string(idpool_attr_list,
212 LDAP_ATTR_GIDNUMBER),
213 gid_str);
214 if (mods) {
215 rc = smbldap_modify(ctx->smbldap_state,
216 ctx->suffix,
217 mods);
218 ldap_mods_free(mods, True);
219 } else {
220 ret = NT_STATUS_UNSUCCESSFUL;
221 goto done;
225 ret = (rc == LDAP_SUCCESS)?NT_STATUS_OK:NT_STATUS_UNSUCCESSFUL;
226 done:
227 talloc_free(mem_ctx);
228 return ret;
231 /********************************
232 Allocate a new uid or gid
233 ********************************/
235 static NTSTATUS idmap_ldap_allocate_id_internal(struct idmap_domain *dom,
236 struct unixid *xid)
238 TALLOC_CTX *mem_ctx;
239 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
240 int rc = LDAP_SERVER_DOWN;
241 int count = 0;
242 LDAPMessage *result = NULL;
243 LDAPMessage *entry = NULL;
244 LDAPMod **mods = NULL;
245 char *id_str;
246 char *new_id_str;
247 char *filter = NULL;
248 const char *dn = NULL;
249 const char **attr_list;
250 const char *type;
251 struct idmap_ldap_context *ctx;
253 /* Only do query if we are online */
254 if (idmap_is_offline()) {
255 return NT_STATUS_FILE_IS_OFFLINE;
258 ctx = talloc_get_type(dom->private_data, struct idmap_ldap_context);
260 mem_ctx = talloc_new(ctx);
261 if (!mem_ctx) {
262 DEBUG(0, ("Out of memory!\n"));
263 return NT_STATUS_NO_MEMORY;
266 /* get type */
267 switch (xid->type) {
269 case ID_TYPE_UID:
270 type = get_attr_key2string(idpool_attr_list,
271 LDAP_ATTR_UIDNUMBER);
272 break;
274 case ID_TYPE_GID:
275 type = get_attr_key2string(idpool_attr_list,
276 LDAP_ATTR_GIDNUMBER);
277 break;
279 default:
280 DEBUG(2, ("Invalid ID type (0x%x)\n", xid->type));
281 return NT_STATUS_INVALID_PARAMETER;
284 filter = talloc_asprintf(mem_ctx, "(objectClass=%s)", LDAP_OBJ_IDPOOL);
285 CHECK_ALLOC_DONE(filter);
287 attr_list = get_attr_list(mem_ctx, idpool_attr_list);
288 CHECK_ALLOC_DONE(attr_list);
290 DEBUG(10, ("Search of the id pool (filter: %s)\n", filter));
292 rc = smbldap_search(ctx->smbldap_state,
293 ctx->suffix,
294 LDAP_SCOPE_SUBTREE, filter,
295 attr_list, 0, &result);
297 if (rc != LDAP_SUCCESS) {
298 DEBUG(0,("%s object not found\n", LDAP_OBJ_IDPOOL));
299 goto done;
302 talloc_autofree_ldapmsg(mem_ctx, result);
304 count = ldap_count_entries(ctx->smbldap_state->ldap_struct, result);
305 if (count != 1) {
306 DEBUG(0,("Single %s object not found\n", LDAP_OBJ_IDPOOL));
307 goto done;
310 entry = ldap_first_entry(ctx->smbldap_state->ldap_struct, result);
312 dn = smbldap_talloc_dn(mem_ctx,
313 ctx->smbldap_state->ldap_struct,
314 entry);
315 if ( ! dn) {
316 goto done;
319 id_str = smbldap_talloc_single_attribute(
320 ctx->smbldap_state->ldap_struct,
321 entry, type, mem_ctx);
322 if (id_str == NULL) {
323 DEBUG(0,("%s attribute not found\n", type));
324 ret = NT_STATUS_UNSUCCESSFUL;
325 goto done;
328 xid->id = strtoul(id_str, NULL, 10);
330 /* make sure we still have room to grow */
332 switch (xid->type) {
333 case ID_TYPE_UID:
334 if (xid->id > dom->high_id) {
335 DEBUG(0,("Cannot allocate uid above %lu!\n",
336 (unsigned long)dom->high_id));
337 goto done;
339 break;
341 case ID_TYPE_GID:
342 if (xid->id > dom->high_id) {
343 DEBUG(0,("Cannot allocate gid above %lu!\n",
344 (unsigned long)dom->high_id));
345 goto done;
347 break;
349 default:
350 /* impossible */
351 goto done;
354 new_id_str = talloc_asprintf(mem_ctx, "%lu", (unsigned long)xid->id + 1);
355 if ( ! new_id_str) {
356 DEBUG(0,("Out of memory\n"));
357 ret = NT_STATUS_NO_MEMORY;
358 goto done;
361 smbldap_set_mod(&mods, LDAP_MOD_DELETE, type, id_str);
362 smbldap_set_mod(&mods, LDAP_MOD_ADD, type, new_id_str);
364 if (mods == NULL) {
365 DEBUG(0,("smbldap_set_mod() failed.\n"));
366 goto done;
369 DEBUG(10, ("Try to atomically increment the id (%s -> %s)\n",
370 id_str, new_id_str));
372 rc = smbldap_modify(ctx->smbldap_state, dn, mods);
374 ldap_mods_free(mods, True);
376 if (rc != LDAP_SUCCESS) {
377 DEBUG(1,("Failed to allocate new %s. "
378 "smbldap_modify() failed.\n", type));
379 goto done;
382 ret = NT_STATUS_OK;
384 done:
385 talloc_free(mem_ctx);
386 return ret;
390 * Allocate a new unix-ID.
391 * For now this is for the default idmap domain only.
392 * Should be extended later on.
394 static NTSTATUS idmap_ldap_allocate_id(struct idmap_domain *dom,
395 struct unixid *id)
397 NTSTATUS ret;
399 if (!strequal(dom->name, "*")) {
400 DEBUG(3, ("idmap_ldap_allocate_id: "
401 "Refusing allocation of a new unixid for domain'%s'. "
402 "This is only supported for the default "
403 "domain \"*\".\n",
404 dom->name));
405 return NT_STATUS_NOT_IMPLEMENTED;
408 ret = idmap_ldap_allocate_id_internal(dom, id);
410 return ret;
414 /**********************************************************************
415 IDMAP MAPPING LDAP BACKEND
416 **********************************************************************/
418 static int idmap_ldap_close_destructor(struct idmap_ldap_context *ctx)
420 smbldap_free_struct(&ctx->smbldap_state);
421 DEBUG(5,("The connection to the LDAP server was closed\n"));
422 /* maybe free the results here --metze */
424 return 0;
427 /********************************
428 Initialise idmap database.
429 ********************************/
431 static NTSTATUS idmap_ldap_set_mapping(struct idmap_domain *dom,
432 const struct id_map *map);
434 static NTSTATUS idmap_ldap_db_init(struct idmap_domain *dom)
436 NTSTATUS ret;
437 struct idmap_ldap_context *ctx = NULL;
438 char *config_option = NULL;
439 const char *tmp = NULL;
441 /* Only do init if we are online */
442 if (idmap_is_offline()) {
443 return NT_STATUS_FILE_IS_OFFLINE;
446 ctx = TALLOC_ZERO_P(dom, struct idmap_ldap_context);
447 if ( ! ctx) {
448 DEBUG(0, ("Out of memory!\n"));
449 return NT_STATUS_NO_MEMORY;
452 config_option = talloc_asprintf(ctx, "idmap config %s", dom->name);
453 if (!config_option) {
454 DEBUG(0, ("Out of memory!\n"));
455 ret = NT_STATUS_NO_MEMORY;
456 goto done;
459 tmp = lp_parm_const_string(-1, config_option, "ldap_url", NULL);
461 if ( ! tmp) {
462 DEBUG(1, ("ERROR: missing idmap ldap url\n"));
463 ret = NT_STATUS_UNSUCCESSFUL;
464 goto done;
467 ctx->url = talloc_strdup(ctx, tmp);
469 trim_char(ctx->url, '\"', '\"');
471 tmp = lp_parm_const_string(-1, config_option, "ldap_base_dn", NULL);
472 if ( ! tmp || ! *tmp) {
473 tmp = lp_ldap_idmap_suffix();
474 if ( ! tmp) {
475 DEBUG(1, ("ERROR: missing idmap ldap suffix\n"));
476 ret = NT_STATUS_UNSUCCESSFUL;
477 goto done;
481 ctx->suffix = talloc_strdup(ctx, tmp);
482 CHECK_ALLOC_DONE(ctx->suffix);
484 ctx->rw_ops = talloc_zero(ctx, struct idmap_rw_ops);
485 CHECK_ALLOC_DONE(ctx->rw_ops);
487 ctx->rw_ops->get_new_id = idmap_ldap_allocate_id_internal;
488 ctx->rw_ops->set_mapping = idmap_ldap_set_mapping;
490 ret = smbldap_init(ctx, winbind_event_context(), ctx->url,
491 &ctx->smbldap_state);
492 if (!NT_STATUS_IS_OK(ret)) {
493 DEBUG(1, ("ERROR: smbldap_init (%s) failed!\n", ctx->url));
494 goto done;
497 ret = get_credentials( ctx, ctx->smbldap_state, config_option,
498 dom, &ctx->user_dn );
499 if ( !NT_STATUS_IS_OK(ret) ) {
500 DEBUG(1,("idmap_ldap_db_init: Failed to get connection "
501 "credentials (%s)\n", nt_errstr(ret)));
502 goto done;
506 * Set the destructor on the context, so that resources are
507 * properly freed when the context is released.
509 talloc_set_destructor(ctx, idmap_ldap_close_destructor);
511 dom->private_data = ctx;
513 ret = verify_idpool(dom);
514 if (!NT_STATUS_IS_OK(ret)) {
515 DEBUG(1, ("idmap_ldap_db_init: failed to verify ID pool (%s)\n",
516 nt_errstr(ret)));
517 goto done;
520 talloc_free(config_option);
521 return NT_STATUS_OK;
523 /*failed */
524 done:
525 talloc_free(ctx);
526 return ret;
530 * set a mapping.
533 /* TODO: change this: This function cannot be called to modify a mapping,
534 * only set a new one */
536 static NTSTATUS idmap_ldap_set_mapping(struct idmap_domain *dom,
537 const struct id_map *map)
539 NTSTATUS ret;
540 TALLOC_CTX *memctx;
541 struct idmap_ldap_context *ctx;
542 LDAPMessage *entry = NULL;
543 LDAPMod **mods = NULL;
544 const char *type;
545 char *id_str;
546 char *sid;
547 char *dn;
548 int rc = -1;
550 /* Only do query if we are online */
551 if (idmap_is_offline()) {
552 return NT_STATUS_FILE_IS_OFFLINE;
555 ctx = talloc_get_type(dom->private_data, struct idmap_ldap_context);
557 switch(map->xid.type) {
558 case ID_TYPE_UID:
559 type = get_attr_key2string(sidmap_attr_list,
560 LDAP_ATTR_UIDNUMBER);
561 break;
563 case ID_TYPE_GID:
564 type = get_attr_key2string(sidmap_attr_list,
565 LDAP_ATTR_GIDNUMBER);
566 break;
568 default:
569 return NT_STATUS_INVALID_PARAMETER;
572 memctx = talloc_new(ctx);
573 if ( ! memctx) {
574 DEBUG(0, ("Out of memory!\n"));
575 return NT_STATUS_NO_MEMORY;
578 id_str = talloc_asprintf(memctx, "%lu", (unsigned long)map->xid.id);
579 CHECK_ALLOC_DONE(id_str);
581 sid = talloc_strdup(memctx, sid_string_talloc(memctx, map->sid));
582 CHECK_ALLOC_DONE(sid);
584 dn = talloc_asprintf(memctx, "%s=%s,%s",
585 get_attr_key2string(sidmap_attr_list, LDAP_ATTR_SID),
586 sid,
587 ctx->suffix);
588 CHECK_ALLOC_DONE(dn);
590 smbldap_set_mod(&mods, LDAP_MOD_ADD,
591 "objectClass", LDAP_OBJ_IDMAP_ENTRY);
593 smbldap_make_mod(ctx->smbldap_state->ldap_struct,
594 entry, &mods, type, id_str);
596 smbldap_make_mod(ctx->smbldap_state->ldap_struct, entry, &mods,
597 get_attr_key2string(sidmap_attr_list, LDAP_ATTR_SID),
598 sid);
600 if ( ! mods) {
601 DEBUG(2, ("ERROR: No mods?\n"));
602 ret = NT_STATUS_UNSUCCESSFUL;
603 goto done;
606 /* TODO: remove conflicting mappings! */
608 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_SID_ENTRY);
610 DEBUG(10, ("Set DN %s (%s -> %s)\n", dn, sid, id_str));
612 rc = smbldap_add(ctx->smbldap_state, dn, mods);
613 ldap_mods_free(mods, True);
615 if (rc != LDAP_SUCCESS) {
616 char *ld_error = NULL;
617 ldap_get_option(ctx->smbldap_state->ldap_struct,
618 LDAP_OPT_ERROR_STRING, &ld_error);
619 DEBUG(0,("ldap_set_mapping_internals: Failed to add %s to %lu "
620 "mapping [%s]\n", sid,
621 (unsigned long)map->xid.id, type));
622 DEBUG(0, ("ldap_set_mapping_internals: Error was: %s (%s)\n",
623 ld_error ? ld_error : "(NULL)", ldap_err2string (rc)));
624 if (ld_error) {
625 ldap_memfree(ld_error);
627 ret = NT_STATUS_UNSUCCESSFUL;
628 goto done;
631 DEBUG(10,("ldap_set_mapping: Successfully created mapping from %s to "
632 "%lu [%s]\n", sid, (unsigned long)map->xid.id, type));
634 ret = NT_STATUS_OK;
636 done:
637 talloc_free(memctx);
638 return ret;
642 * Create a new mapping for an unmapped SID, also allocating a new ID.
643 * If possible, this should be run inside a transaction to make the
644 * action atomic.
646 static NTSTATUS idmap_ldap_new_mapping(struct idmap_domain *dom, struct id_map *map)
648 NTSTATUS ret;
649 struct idmap_ldap_context *ctx;
651 ctx = talloc_get_type(dom->private_data, struct idmap_ldap_context);
653 ret = idmap_rw_new_mapping(dom, ctx->rw_ops, map);
655 return ret;
659 /* max number of ids requested per batch query */
660 #define IDMAP_LDAP_MAX_IDS 30
662 /**********************************
663 lookup a set of unix ids.
664 **********************************/
666 /* this function searches up to IDMAP_LDAP_MAX_IDS entries
667 * in maps for a match */
668 static struct id_map *find_map_by_id(struct id_map **maps,
669 enum id_type type,
670 uint32_t id)
672 int i;
674 for (i = 0; i < IDMAP_LDAP_MAX_IDS; i++) {
675 if (maps[i] == NULL) { /* end of the run */
676 return NULL;
678 if ((maps[i]->xid.type == type) && (maps[i]->xid.id == id)) {
679 return maps[i];
683 return NULL;
686 static NTSTATUS idmap_ldap_unixids_to_sids(struct idmap_domain *dom,
687 struct id_map **ids)
689 NTSTATUS ret;
690 TALLOC_CTX *memctx;
691 struct idmap_ldap_context *ctx;
692 LDAPMessage *result = NULL;
693 LDAPMessage *entry = NULL;
694 const char *uidNumber;
695 const char *gidNumber;
696 const char **attr_list;
697 char *filter = NULL;
698 bool multi = False;
699 int idx = 0;
700 int bidx = 0;
701 int count;
702 int rc;
703 int i;
705 /* Only do query if we are online */
706 if (idmap_is_offline()) {
707 return NT_STATUS_FILE_IS_OFFLINE;
710 ctx = talloc_get_type(dom->private_data, struct idmap_ldap_context);
712 memctx = talloc_new(ctx);
713 if ( ! memctx) {
714 DEBUG(0, ("Out of memory!\n"));
715 return NT_STATUS_NO_MEMORY;
718 uidNumber = get_attr_key2string(idpool_attr_list, LDAP_ATTR_UIDNUMBER);
719 gidNumber = get_attr_key2string(idpool_attr_list, LDAP_ATTR_GIDNUMBER);
721 attr_list = get_attr_list(memctx, sidmap_attr_list);
723 if ( ! ids[1]) {
724 /* if we are requested just one mapping use the simple filter */
726 filter = talloc_asprintf(memctx, "(&(objectClass=%s)(%s=%lu))",
727 LDAP_OBJ_IDMAP_ENTRY,
728 (ids[0]->xid.type==ID_TYPE_UID)?uidNumber:gidNumber,
729 (unsigned long)ids[0]->xid.id);
730 CHECK_ALLOC_DONE(filter);
731 DEBUG(10, ("Filter: [%s]\n", filter));
732 } else {
733 /* multiple mappings */
734 multi = True;
737 for (i = 0; ids[i]; i++) {
738 ids[i]->status = ID_UNKNOWN;
741 again:
742 if (multi) {
744 talloc_free(filter);
745 filter = talloc_asprintf(memctx,
746 "(&(objectClass=%s)(|",
747 LDAP_OBJ_IDMAP_ENTRY);
748 CHECK_ALLOC_DONE(filter);
750 bidx = idx;
751 for (i = 0; (i < IDMAP_LDAP_MAX_IDS) && ids[idx]; i++, idx++) {
752 filter = talloc_asprintf_append_buffer(filter, "(%s=%lu)",
753 (ids[idx]->xid.type==ID_TYPE_UID)?uidNumber:gidNumber,
754 (unsigned long)ids[idx]->xid.id);
755 CHECK_ALLOC_DONE(filter);
757 filter = talloc_asprintf_append_buffer(filter, "))");
758 CHECK_ALLOC_DONE(filter);
759 DEBUG(10, ("Filter: [%s]\n", filter));
760 } else {
761 bidx = 0;
762 idx = 1;
765 rc = smbldap_search(ctx->smbldap_state, ctx->suffix, LDAP_SCOPE_SUBTREE,
766 filter, attr_list, 0, &result);
768 if (rc != LDAP_SUCCESS) {
769 DEBUG(3,("Failure looking up ids (%s)\n", ldap_err2string(rc)));
770 ret = NT_STATUS_UNSUCCESSFUL;
771 goto done;
774 count = ldap_count_entries(ctx->smbldap_state->ldap_struct, result);
776 if (count == 0) {
777 DEBUG(10, ("NO SIDs found\n"));
780 for (i = 0; i < count; i++) {
781 char *sidstr = NULL;
782 char *tmp = NULL;
783 enum id_type type;
784 struct id_map *map;
785 uint32_t id;
787 if (i == 0) { /* first entry */
788 entry = ldap_first_entry(ctx->smbldap_state->ldap_struct,
789 result);
790 } else { /* following ones */
791 entry = ldap_next_entry(ctx->smbldap_state->ldap_struct,
792 entry);
794 if ( ! entry) {
795 DEBUG(2, ("ERROR: Unable to fetch ldap entries "
796 "from results\n"));
797 break;
800 /* first check if the SID is present */
801 sidstr = smbldap_talloc_single_attribute(
802 ctx->smbldap_state->ldap_struct,
803 entry, LDAP_ATTRIBUTE_SID, memctx);
804 if ( ! sidstr) { /* no sid, skip entry */
805 DEBUG(2, ("WARNING SID not found on entry\n"));
806 continue;
809 /* now try to see if it is a uid, if not try with a gid
810 * (gid is more common, but in case both uidNumber and
811 * gidNumber are returned the SID is mapped to the uid
812 *not the gid) */
813 type = ID_TYPE_UID;
814 tmp = smbldap_talloc_single_attribute(
815 ctx->smbldap_state->ldap_struct,
816 entry, uidNumber, memctx);
817 if ( ! tmp) {
818 type = ID_TYPE_GID;
819 tmp = smbldap_talloc_single_attribute(
820 ctx->smbldap_state->ldap_struct,
821 entry, gidNumber, memctx);
823 if ( ! tmp) { /* wow very strange entry, how did it match ? */
824 DEBUG(5, ("Unprobable match on (%s), no uidNumber, "
825 "nor gidNumber returned\n", sidstr));
826 TALLOC_FREE(sidstr);
827 continue;
830 id = strtoul(tmp, NULL, 10);
831 if (!idmap_unix_id_is_in_range(id, dom)) {
832 DEBUG(5, ("Requested id (%u) out of range (%u - %u). "
833 "Filtered!\n", id,
834 dom->low_id, dom->high_id));
835 TALLOC_FREE(sidstr);
836 TALLOC_FREE(tmp);
837 continue;
839 TALLOC_FREE(tmp);
841 map = find_map_by_id(&ids[bidx], type, id);
842 if (!map) {
843 DEBUG(2, ("WARNING: couldn't match sid (%s) "
844 "with requested ids\n", sidstr));
845 TALLOC_FREE(sidstr);
846 continue;
849 if ( ! string_to_sid(map->sid, sidstr)) {
850 DEBUG(2, ("ERROR: Invalid SID on entry\n"));
851 TALLOC_FREE(sidstr);
852 continue;
855 if (map->status == ID_MAPPED) {
856 DEBUG(1, ("WARNING: duplicate %s mapping in LDAP. "
857 "overwriting mapping %u -> %s with %u -> %s\n",
858 (type == ID_TYPE_UID) ? "UID" : "GID",
859 id, sid_string_dbg(map->sid), id, sidstr));
862 TALLOC_FREE(sidstr);
864 /* mapped */
865 map->status = ID_MAPPED;
867 DEBUG(10, ("Mapped %s -> %lu (%d)\n", sid_string_dbg(map->sid),
868 (unsigned long)map->xid.id, map->xid.type));
871 /* free the ldap results */
872 if (result) {
873 ldap_msgfree(result);
874 result = NULL;
877 if (multi && ids[idx]) { /* still some values to map */
878 goto again;
881 ret = NT_STATUS_OK;
883 /* mark all unknwon/expired ones as unmapped */
884 for (i = 0; ids[i]; i++) {
885 if (ids[i]->status != ID_MAPPED)
886 ids[i]->status = ID_UNMAPPED;
889 done:
890 talloc_free(memctx);
891 return ret;
894 /**********************************
895 lookup a set of sids.
896 **********************************/
898 /* this function searches up to IDMAP_LDAP_MAX_IDS entries
899 * in maps for a match */
900 static struct id_map *find_map_by_sid(struct id_map **maps, struct dom_sid *sid)
902 int i;
904 for (i = 0; i < IDMAP_LDAP_MAX_IDS; i++) {
905 if (maps[i] == NULL) { /* end of the run */
906 return NULL;
908 if (dom_sid_equal(maps[i]->sid, sid)) {
909 return maps[i];
913 return NULL;
916 static NTSTATUS idmap_ldap_sids_to_unixids(struct idmap_domain *dom,
917 struct id_map **ids)
919 LDAPMessage *entry = NULL;
920 NTSTATUS ret;
921 TALLOC_CTX *memctx;
922 struct idmap_ldap_context *ctx;
923 LDAPMessage *result = NULL;
924 const char *uidNumber;
925 const char *gidNumber;
926 const char **attr_list;
927 char *filter = NULL;
928 bool multi = False;
929 int idx = 0;
930 int bidx = 0;
931 int count;
932 int rc;
933 int i;
935 /* Only do query if we are online */
936 if (idmap_is_offline()) {
937 return NT_STATUS_FILE_IS_OFFLINE;
940 ctx = talloc_get_type(dom->private_data, struct idmap_ldap_context);
942 memctx = talloc_new(ctx);
943 if ( ! memctx) {
944 DEBUG(0, ("Out of memory!\n"));
945 return NT_STATUS_NO_MEMORY;
948 uidNumber = get_attr_key2string(idpool_attr_list, LDAP_ATTR_UIDNUMBER);
949 gidNumber = get_attr_key2string(idpool_attr_list, LDAP_ATTR_GIDNUMBER);
951 attr_list = get_attr_list(memctx, sidmap_attr_list);
953 if ( ! ids[1]) {
954 /* if we are requested just one mapping use the simple filter */
956 filter = talloc_asprintf(memctx, "(&(objectClass=%s)(%s=%s))",
957 LDAP_OBJ_IDMAP_ENTRY,
958 LDAP_ATTRIBUTE_SID,
959 sid_string_talloc(memctx, ids[0]->sid));
960 CHECK_ALLOC_DONE(filter);
961 DEBUG(10, ("Filter: [%s]\n", filter));
962 } else {
963 /* multiple mappings */
964 multi = True;
967 for (i = 0; ids[i]; i++) {
968 ids[i]->status = ID_UNKNOWN;
971 again:
972 if (multi) {
974 TALLOC_FREE(filter);
975 filter = talloc_asprintf(memctx,
976 "(&(objectClass=%s)(|",
977 LDAP_OBJ_IDMAP_ENTRY);
978 CHECK_ALLOC_DONE(filter);
980 bidx = idx;
981 for (i = 0; (i < IDMAP_LDAP_MAX_IDS) && ids[idx]; i++, idx++) {
982 filter = talloc_asprintf_append_buffer(filter, "(%s=%s)",
983 LDAP_ATTRIBUTE_SID,
984 sid_string_talloc(memctx,
985 ids[idx]->sid));
986 CHECK_ALLOC_DONE(filter);
988 filter = talloc_asprintf_append_buffer(filter, "))");
989 CHECK_ALLOC_DONE(filter);
990 DEBUG(10, ("Filter: [%s]", filter));
991 } else {
992 bidx = 0;
993 idx = 1;
996 rc = smbldap_search(ctx->smbldap_state, ctx->suffix, LDAP_SCOPE_SUBTREE,
997 filter, attr_list, 0, &result);
999 if (rc != LDAP_SUCCESS) {
1000 DEBUG(3,("Failure looking up sids (%s)\n",
1001 ldap_err2string(rc)));
1002 ret = NT_STATUS_UNSUCCESSFUL;
1003 goto done;
1006 count = ldap_count_entries(ctx->smbldap_state->ldap_struct, result);
1008 if (count == 0) {
1009 DEBUG(10, ("NO SIDs found\n"));
1012 for (i = 0; i < count; i++) {
1013 char *sidstr = NULL;
1014 char *tmp = NULL;
1015 enum id_type type;
1016 struct id_map *map;
1017 struct dom_sid sid;
1018 uint32_t id;
1020 if (i == 0) { /* first entry */
1021 entry = ldap_first_entry(ctx->smbldap_state->ldap_struct,
1022 result);
1023 } else { /* following ones */
1024 entry = ldap_next_entry(ctx->smbldap_state->ldap_struct,
1025 entry);
1027 if ( ! entry) {
1028 DEBUG(2, ("ERROR: Unable to fetch ldap entries "
1029 "from results\n"));
1030 break;
1033 /* first check if the SID is present */
1034 sidstr = smbldap_talloc_single_attribute(
1035 ctx->smbldap_state->ldap_struct,
1036 entry, LDAP_ATTRIBUTE_SID, memctx);
1037 if ( ! sidstr) { /* no sid ??, skip entry */
1038 DEBUG(2, ("WARNING SID not found on entry\n"));
1039 continue;
1042 if ( ! string_to_sid(&sid, sidstr)) {
1043 DEBUG(2, ("ERROR: Invalid SID on entry\n"));
1044 TALLOC_FREE(sidstr);
1045 continue;
1048 map = find_map_by_sid(&ids[bidx], &sid);
1049 if (!map) {
1050 DEBUG(2, ("WARNING: couldn't find entry sid (%s) "
1051 "in ids", sidstr));
1052 TALLOC_FREE(sidstr);
1053 continue;
1056 /* now try to see if it is a uid, if not try with a gid
1057 * (gid is more common, but in case both uidNumber and
1058 * gidNumber are returned the SID is mapped to the uid
1059 * not the gid) */
1060 type = ID_TYPE_UID;
1061 tmp = smbldap_talloc_single_attribute(
1062 ctx->smbldap_state->ldap_struct,
1063 entry, uidNumber, memctx);
1064 if ( ! tmp) {
1065 type = ID_TYPE_GID;
1066 tmp = smbldap_talloc_single_attribute(
1067 ctx->smbldap_state->ldap_struct,
1068 entry, gidNumber, memctx);
1070 if ( ! tmp) { /* no ids ?? */
1071 DEBUG(5, ("no uidNumber, "
1072 "nor gidNumber attributes found\n"));
1073 TALLOC_FREE(sidstr);
1074 continue;
1077 id = strtoul(tmp, NULL, 10);
1078 if (!idmap_unix_id_is_in_range(id, dom)) {
1079 DEBUG(5, ("Requested id (%u) out of range (%u - %u). "
1080 "Filtered!\n", id,
1081 dom->low_id, dom->high_id));
1082 TALLOC_FREE(sidstr);
1083 TALLOC_FREE(tmp);
1084 continue;
1086 TALLOC_FREE(tmp);
1088 if (map->status == ID_MAPPED) {
1089 DEBUG(1, ("WARNING: duplicate %s mapping in LDAP. "
1090 "overwriting mapping %s -> %u with %s -> %u\n",
1091 (type == ID_TYPE_UID) ? "UID" : "GID",
1092 sidstr, map->xid.id, sidstr, id));
1095 TALLOC_FREE(sidstr);
1097 /* mapped */
1098 map->xid.type = type;
1099 map->xid.id = id;
1100 map->status = ID_MAPPED;
1102 DEBUG(10, ("Mapped %s -> %lu (%d)\n", sid_string_dbg(map->sid),
1103 (unsigned long)map->xid.id, map->xid.type));
1106 /* free the ldap results */
1107 if (result) {
1108 ldap_msgfree(result);
1109 result = NULL;
1112 if (multi && ids[idx]) { /* still some values to map */
1113 goto again;
1117 * try to create new mappings for unmapped sids
1119 for (i = 0; ids[i]; i++) {
1120 if (ids[i]->status != ID_MAPPED) {
1121 ids[i]->status = ID_UNMAPPED;
1122 if (ids[i]->sid != NULL) {
1123 ret = idmap_ldap_new_mapping(dom, ids[i]);
1124 if (!NT_STATUS_IS_OK(ret)) {
1125 goto done;
1131 ret = NT_STATUS_OK;
1133 done:
1134 talloc_free(memctx);
1135 return ret;
1138 /**********************************
1139 Close the idmap ldap instance
1140 **********************************/
1142 static struct idmap_methods idmap_ldap_methods = {
1144 .init = idmap_ldap_db_init,
1145 .unixids_to_sids = idmap_ldap_unixids_to_sids,
1146 .sids_to_unixids = idmap_ldap_sids_to_unixids,
1147 .allocate_id = idmap_ldap_allocate_id,
1150 NTSTATUS idmap_ldap_init(void);
1151 NTSTATUS idmap_ldap_init(void)
1153 return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION, "ldap",
1154 &idmap_ldap_methods);