2 Unix SMB/CIFS implementation.
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/>.
31 #include "../libcli/security/security.h"
34 #define DBGC_CLASS DBGC_IDMAP
41 static char *idmap_fetch_secret(const char *backend
,
42 const char *domain
, const char *identity
)
47 r
= asprintf(&tmp
, "IDMAP_%s_%s", backend
, domain
);
52 strupper_m(tmp
); /* make sure the key is case insensitive */
53 ret
= secrets_fetch_generic(tmp
, identity
);
60 struct idmap_ldap_context
{
61 struct smbldap_state
*smbldap_state
;
66 struct idmap_rw_ops
*rw_ops
;
69 #define CHECK_ALLOC_DONE(mem) do { \
71 DEBUG(0, ("Out of memory!\n")); \
72 ret = NT_STATUS_NO_MEMORY; \
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
,
89 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
91 const char *tmp
= NULL
;
95 /* assume anonymous if we don't have a specified user */
97 tmp
= lp_parm_const_string(-1, config_option
, "ldap_user_dn", NULL
);
101 DEBUG(0, ("get_credentials: Invalid domain 'NULL' "
102 "encountered for user DN %s\n",
104 ret
= NT_STATUS_UNSUCCESSFUL
;
107 secret
= idmap_fetch_secret("ldap", dom
->name
, tmp
);
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
;
117 *dn
= talloc_strdup(mem_ctx
, tmp
);
118 CHECK_ALLOC_DONE(*dn
);
120 if (!fetch_ldap_pw(&user_dn
, &secret
)) {
121 DEBUG(2, ("get_credentials: Failed to lookup ldap "
122 "bind creds. Using anonymous connection.\n"));
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
);
142 /**********************************************************************
143 Verify the sambaUnixIdPool entry in the directory.
144 **********************************************************************/
146 static NTSTATUS
verify_idpool(struct idmap_domain
*dom
)
150 LDAPMessage
*result
= NULL
;
151 LDAPMod
**mods
= NULL
;
152 const char **attr_list
;
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
,
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
);
191 DEBUG(0,("Multiple entries returned from %s (base == %s)\n",
192 filter
, ctx
->suffix
));
193 ret
= NT_STATUS_UNSUCCESSFUL
;
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
),
210 smbldap_set_mod(&mods
, LDAP_MOD_ADD
,
211 get_attr_key2string(idpool_attr_list
,
212 LDAP_ATTR_GIDNUMBER
),
215 rc
= smbldap_modify(ctx
->smbldap_state
,
218 ldap_mods_free(mods
, True
);
220 ret
= NT_STATUS_UNSUCCESSFUL
;
225 ret
= (rc
== LDAP_SUCCESS
)?NT_STATUS_OK
:NT_STATUS_UNSUCCESSFUL
;
227 talloc_free(mem_ctx
);
231 /********************************
232 Allocate a new uid or gid
233 ********************************/
235 static NTSTATUS
idmap_ldap_allocate_id(struct idmap_domain
*dom
,
239 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
240 int rc
= LDAP_SERVER_DOWN
;
242 LDAPMessage
*result
= NULL
;
243 LDAPMessage
*entry
= NULL
;
244 LDAPMod
**mods
= NULL
;
248 const char *dn
= NULL
;
249 const char **attr_list
;
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
);
262 DEBUG(0, ("Out of memory!\n"));
263 return NT_STATUS_NO_MEMORY
;
270 type
= get_attr_key2string(idpool_attr_list
,
271 LDAP_ATTR_UIDNUMBER
);
275 type
= get_attr_key2string(idpool_attr_list
,
276 LDAP_ATTR_GIDNUMBER
);
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
,
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
));
302 talloc_autofree_ldapmsg(mem_ctx
, result
);
304 count
= ldap_count_entries(ctx
->smbldap_state
->ldap_struct
, result
);
306 DEBUG(0,("Single %s object not found\n", LDAP_OBJ_IDPOOL
));
310 entry
= ldap_first_entry(ctx
->smbldap_state
->ldap_struct
, result
);
312 dn
= smbldap_talloc_dn(mem_ctx
,
313 ctx
->smbldap_state
->ldap_struct
,
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
;
328 xid
->id
= strtoul(id_str
, NULL
, 10);
330 /* make sure we still have room to grow */
334 if (xid
->id
> dom
->high_id
) {
335 DEBUG(0,("Cannot allocate uid above %lu!\n",
336 (unsigned long)dom
->high_id
));
342 if (xid
->id
> dom
->high_id
) {
343 DEBUG(0,("Cannot allocate gid above %lu!\n",
344 (unsigned long)dom
->high_id
));
354 new_id_str
= talloc_asprintf(mem_ctx
, "%lu", (unsigned long)xid
->id
+ 1);
356 DEBUG(0,("Out of memory\n"));
357 ret
= NT_STATUS_NO_MEMORY
;
361 smbldap_set_mod(&mods
, LDAP_MOD_DELETE
, type
, id_str
);
362 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, type
, new_id_str
);
365 DEBUG(0,("smbldap_set_mod() failed.\n"));
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
));
385 talloc_free(mem_ctx
);
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_get_new_id(struct idmap_domain
*dom
,
399 if (!strequal(dom
->name
, "*")) {
400 DEBUG(3, ("idmap_ldap_get_new_id: "
401 "Refusing allocation of a new unixid for domain'%s'. "
402 "Currently only supported for the default "
405 return NT_STATUS_NOT_IMPLEMENTED
;
408 ret
= idmap_ldap_allocate_id(dom
, id
);
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 */
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
,
438 struct idmap_ldap_context
*ctx
= NULL
;
439 char *config_option
= NULL
;
440 const char *tmp
= NULL
;
442 /* Only do init if we are online */
443 if (idmap_is_offline()) {
444 return NT_STATUS_FILE_IS_OFFLINE
;
447 ctx
= TALLOC_ZERO_P(dom
, struct idmap_ldap_context
);
449 DEBUG(0, ("Out of memory!\n"));
450 return NT_STATUS_NO_MEMORY
;
453 if (strequal(dom
->name
, "*")) {
454 /* more specific configuration can go here */
456 config_option
= talloc_asprintf(ctx
, "idmap config %s", dom
->name
);
457 if ( ! config_option
) {
458 DEBUG(0, ("Out of memory!\n"));
459 ret
= NT_STATUS_NO_MEMORY
;
464 if (params
!= NULL
) {
465 /* assume location is the only parameter */
466 ctx
->url
= talloc_strdup(ctx
, params
);
468 tmp
= lp_parm_const_string(-1, config_option
, "ldap_url", NULL
);
471 DEBUG(1, ("ERROR: missing idmap ldap url\n"));
472 ret
= NT_STATUS_UNSUCCESSFUL
;
476 ctx
->url
= talloc_strdup(ctx
, tmp
);
478 CHECK_ALLOC_DONE(ctx
->url
);
480 trim_char(ctx
->url
, '\"', '\"');
482 tmp
= lp_parm_const_string(-1, config_option
, "ldap_base_dn", NULL
);
483 if ( ! tmp
|| ! *tmp
) {
484 tmp
= lp_ldap_idmap_suffix();
486 DEBUG(1, ("ERROR: missing idmap ldap suffix\n"));
487 ret
= NT_STATUS_UNSUCCESSFUL
;
492 ctx
->suffix
= talloc_strdup(ctx
, tmp
);
493 CHECK_ALLOC_DONE(ctx
->suffix
);
495 ctx
->rw_ops
= talloc_zero(ctx
, struct idmap_rw_ops
);
496 CHECK_ALLOC_DONE(ctx
->rw_ops
);
498 ctx
->rw_ops
->get_new_id
= idmap_ldap_get_new_id
;
499 ctx
->rw_ops
->set_mapping
= idmap_ldap_set_mapping
;
501 ret
= smbldap_init(ctx
, winbind_event_context(), ctx
->url
,
502 &ctx
->smbldap_state
);
503 if (!NT_STATUS_IS_OK(ret
)) {
504 DEBUG(1, ("ERROR: smbldap_init (%s) failed!\n", ctx
->url
));
508 ret
= get_credentials( ctx
, ctx
->smbldap_state
, config_option
,
509 dom
, &ctx
->user_dn
);
510 if ( !NT_STATUS_IS_OK(ret
) ) {
511 DEBUG(1,("idmap_ldap_db_init: Failed to get connection "
512 "credentials (%s)\n", nt_errstr(ret
)));
516 /* set the destructor on the context, so that resource are properly
517 freed if the contexts is released */
519 talloc_set_destructor(ctx
, idmap_ldap_close_destructor
);
521 dom
->private_data
= ctx
;
523 ret
= verify_idpool(dom
);
524 if (!NT_STATUS_IS_OK(ret
)) {
525 DEBUG(1, ("idmap_ldap_db_init: failed to verify ID pool (%s)\n",
530 talloc_free(config_option
);
543 /* TODO: change this: This function cannot be called to modify a mapping,
544 * only set a new one */
546 static NTSTATUS
idmap_ldap_set_mapping(struct idmap_domain
*dom
,
547 const struct id_map
*map
)
551 struct idmap_ldap_context
*ctx
;
552 LDAPMessage
*entry
= NULL
;
553 LDAPMod
**mods
= NULL
;
560 /* Only do query if we are online */
561 if (idmap_is_offline()) {
562 return NT_STATUS_FILE_IS_OFFLINE
;
565 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ldap_context
);
567 switch(map
->xid
.type
) {
569 type
= get_attr_key2string(sidmap_attr_list
,
570 LDAP_ATTR_UIDNUMBER
);
574 type
= get_attr_key2string(sidmap_attr_list
,
575 LDAP_ATTR_GIDNUMBER
);
579 return NT_STATUS_INVALID_PARAMETER
;
582 memctx
= talloc_new(ctx
);
584 DEBUG(0, ("Out of memory!\n"));
585 return NT_STATUS_NO_MEMORY
;
588 id_str
= talloc_asprintf(memctx
, "%lu", (unsigned long)map
->xid
.id
);
589 CHECK_ALLOC_DONE(id_str
);
591 sid
= talloc_strdup(memctx
, sid_string_talloc(memctx
, map
->sid
));
592 CHECK_ALLOC_DONE(sid
);
594 dn
= talloc_asprintf(memctx
, "%s=%s,%s",
595 get_attr_key2string(sidmap_attr_list
, LDAP_ATTR_SID
),
598 CHECK_ALLOC_DONE(dn
);
600 smbldap_set_mod(&mods
, LDAP_MOD_ADD
,
601 "objectClass", LDAP_OBJ_IDMAP_ENTRY
);
603 smbldap_make_mod(ctx
->smbldap_state
->ldap_struct
,
604 entry
, &mods
, type
, id_str
);
606 smbldap_make_mod(ctx
->smbldap_state
->ldap_struct
, entry
, &mods
,
607 get_attr_key2string(sidmap_attr_list
, LDAP_ATTR_SID
),
611 DEBUG(2, ("ERROR: No mods?\n"));
612 ret
= NT_STATUS_UNSUCCESSFUL
;
616 /* TODO: remove conflicting mappings! */
618 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", LDAP_OBJ_SID_ENTRY
);
620 DEBUG(10, ("Set DN %s (%s -> %s)\n", dn
, sid
, id_str
));
622 rc
= smbldap_add(ctx
->smbldap_state
, dn
, mods
);
623 ldap_mods_free(mods
, True
);
625 if (rc
!= LDAP_SUCCESS
) {
626 char *ld_error
= NULL
;
627 ldap_get_option(ctx
->smbldap_state
->ldap_struct
,
628 LDAP_OPT_ERROR_STRING
, &ld_error
);
629 DEBUG(0,("ldap_set_mapping_internals: Failed to add %s to %lu "
630 "mapping [%s]\n", sid
,
631 (unsigned long)map
->xid
.id
, type
));
632 DEBUG(0, ("ldap_set_mapping_internals: Error was: %s (%s)\n",
633 ld_error
? ld_error
: "(NULL)", ldap_err2string (rc
)));
635 ldap_memfree(ld_error
);
637 ret
= NT_STATUS_UNSUCCESSFUL
;
641 DEBUG(10,("ldap_set_mapping: Successfully created mapping from %s to "
642 "%lu [%s]\n", sid
, (unsigned long)map
->xid
.id
, type
));
652 * Create a new mapping for an unmapped SID, also allocating a new ID.
653 * If possible, this should be run inside a transaction to make the
656 static NTSTATUS
idmap_ldap_new_mapping(struct idmap_domain
*dom
, struct id_map
*map
)
659 struct idmap_ldap_context
*ctx
;
661 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ldap_context
);
663 ret
= idmap_rw_new_mapping(dom
, ctx
->rw_ops
, map
);
669 /* max number of ids requested per batch query */
670 #define IDMAP_LDAP_MAX_IDS 30
672 /**********************************
673 lookup a set of unix ids.
674 **********************************/
676 /* this function searches up to IDMAP_LDAP_MAX_IDS entries
677 * in maps for a match */
678 static struct id_map
*find_map_by_id(struct id_map
**maps
,
684 for (i
= 0; i
< IDMAP_LDAP_MAX_IDS
; i
++) {
685 if (maps
[i
] == NULL
) { /* end of the run */
688 if ((maps
[i
]->xid
.type
== type
) && (maps
[i
]->xid
.id
== id
)) {
696 static NTSTATUS
idmap_ldap_unixids_to_sids(struct idmap_domain
*dom
,
701 struct idmap_ldap_context
*ctx
;
702 LDAPMessage
*result
= NULL
;
703 LDAPMessage
*entry
= NULL
;
704 const char *uidNumber
;
705 const char *gidNumber
;
706 const char **attr_list
;
715 /* Only do query if we are online */
716 if (idmap_is_offline()) {
717 return NT_STATUS_FILE_IS_OFFLINE
;
720 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ldap_context
);
722 memctx
= talloc_new(ctx
);
724 DEBUG(0, ("Out of memory!\n"));
725 return NT_STATUS_NO_MEMORY
;
728 uidNumber
= get_attr_key2string(idpool_attr_list
, LDAP_ATTR_UIDNUMBER
);
729 gidNumber
= get_attr_key2string(idpool_attr_list
, LDAP_ATTR_GIDNUMBER
);
731 attr_list
= get_attr_list(memctx
, sidmap_attr_list
);
734 /* if we are requested just one mapping use the simple filter */
736 filter
= talloc_asprintf(memctx
, "(&(objectClass=%s)(%s=%lu))",
737 LDAP_OBJ_IDMAP_ENTRY
,
738 (ids
[0]->xid
.type
==ID_TYPE_UID
)?uidNumber
:gidNumber
,
739 (unsigned long)ids
[0]->xid
.id
);
740 CHECK_ALLOC_DONE(filter
);
741 DEBUG(10, ("Filter: [%s]\n", filter
));
743 /* multiple mappings */
747 for (i
= 0; ids
[i
]; i
++) {
748 ids
[i
]->status
= ID_UNKNOWN
;
755 filter
= talloc_asprintf(memctx
,
756 "(&(objectClass=%s)(|",
757 LDAP_OBJ_IDMAP_ENTRY
);
758 CHECK_ALLOC_DONE(filter
);
761 for (i
= 0; (i
< IDMAP_LDAP_MAX_IDS
) && ids
[idx
]; i
++, idx
++) {
762 filter
= talloc_asprintf_append_buffer(filter
, "(%s=%lu)",
763 (ids
[idx
]->xid
.type
==ID_TYPE_UID
)?uidNumber
:gidNumber
,
764 (unsigned long)ids
[idx
]->xid
.id
);
765 CHECK_ALLOC_DONE(filter
);
767 filter
= talloc_asprintf_append_buffer(filter
, "))");
768 CHECK_ALLOC_DONE(filter
);
769 DEBUG(10, ("Filter: [%s]\n", filter
));
775 rc
= smbldap_search(ctx
->smbldap_state
, ctx
->suffix
, LDAP_SCOPE_SUBTREE
,
776 filter
, attr_list
, 0, &result
);
778 if (rc
!= LDAP_SUCCESS
) {
779 DEBUG(3,("Failure looking up ids (%s)\n", ldap_err2string(rc
)));
780 ret
= NT_STATUS_UNSUCCESSFUL
;
784 count
= ldap_count_entries(ctx
->smbldap_state
->ldap_struct
, result
);
787 DEBUG(10, ("NO SIDs found\n"));
790 for (i
= 0; i
< count
; i
++) {
797 if (i
== 0) { /* first entry */
798 entry
= ldap_first_entry(ctx
->smbldap_state
->ldap_struct
,
800 } else { /* following ones */
801 entry
= ldap_next_entry(ctx
->smbldap_state
->ldap_struct
,
805 DEBUG(2, ("ERROR: Unable to fetch ldap entries "
810 /* first check if the SID is present */
811 sidstr
= smbldap_talloc_single_attribute(
812 ctx
->smbldap_state
->ldap_struct
,
813 entry
, LDAP_ATTRIBUTE_SID
, memctx
);
814 if ( ! sidstr
) { /* no sid, skip entry */
815 DEBUG(2, ("WARNING SID not found on entry\n"));
819 /* now try to see if it is a uid, if not try with a gid
820 * (gid is more common, but in case both uidNumber and
821 * gidNumber are returned the SID is mapped to the uid
824 tmp
= smbldap_talloc_single_attribute(
825 ctx
->smbldap_state
->ldap_struct
,
826 entry
, uidNumber
, memctx
);
829 tmp
= smbldap_talloc_single_attribute(
830 ctx
->smbldap_state
->ldap_struct
,
831 entry
, gidNumber
, memctx
);
833 if ( ! tmp
) { /* wow very strange entry, how did it match ? */
834 DEBUG(5, ("Unprobable match on (%s), no uidNumber, "
835 "nor gidNumber returned\n", sidstr
));
840 id
= strtoul(tmp
, NULL
, 10);
841 if (!idmap_unix_id_is_in_range(id
, dom
)) {
842 DEBUG(5, ("Requested id (%u) out of range (%u - %u). "
844 dom
->low_id
, dom
->high_id
));
851 map
= find_map_by_id(&ids
[bidx
], type
, id
);
853 DEBUG(2, ("WARNING: couldn't match sid (%s) "
854 "with requested ids\n", sidstr
));
859 if ( ! string_to_sid(map
->sid
, sidstr
)) {
860 DEBUG(2, ("ERROR: Invalid SID on entry\n"));
865 if (map
->status
== ID_MAPPED
) {
866 DEBUG(1, ("WARNING: duplicate %s mapping in LDAP. "
867 "overwriting mapping %u -> %s with %u -> %s\n",
868 (type
== ID_TYPE_UID
) ? "UID" : "GID",
869 id
, sid_string_dbg(map
->sid
), id
, sidstr
));
875 map
->status
= ID_MAPPED
;
877 DEBUG(10, ("Mapped %s -> %lu (%d)\n", sid_string_dbg(map
->sid
),
878 (unsigned long)map
->xid
.id
, map
->xid
.type
));
881 /* free the ldap results */
883 ldap_msgfree(result
);
887 if (multi
&& ids
[idx
]) { /* still some values to map */
893 /* mark all unknwon/expired ones as unmapped */
894 for (i
= 0; ids
[i
]; i
++) {
895 if (ids
[i
]->status
!= ID_MAPPED
)
896 ids
[i
]->status
= ID_UNMAPPED
;
904 /**********************************
905 lookup a set of sids.
906 **********************************/
908 /* this function searches up to IDMAP_LDAP_MAX_IDS entries
909 * in maps for a match */
910 static struct id_map
*find_map_by_sid(struct id_map
**maps
, struct dom_sid
*sid
)
914 for (i
= 0; i
< IDMAP_LDAP_MAX_IDS
; i
++) {
915 if (maps
[i
] == NULL
) { /* end of the run */
918 if (dom_sid_equal(maps
[i
]->sid
, sid
)) {
926 static NTSTATUS
idmap_ldap_sids_to_unixids(struct idmap_domain
*dom
,
929 LDAPMessage
*entry
= NULL
;
932 struct idmap_ldap_context
*ctx
;
933 LDAPMessage
*result
= NULL
;
934 const char *uidNumber
;
935 const char *gidNumber
;
936 const char **attr_list
;
945 /* Only do query if we are online */
946 if (idmap_is_offline()) {
947 return NT_STATUS_FILE_IS_OFFLINE
;
950 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ldap_context
);
952 memctx
= talloc_new(ctx
);
954 DEBUG(0, ("Out of memory!\n"));
955 return NT_STATUS_NO_MEMORY
;
958 uidNumber
= get_attr_key2string(idpool_attr_list
, LDAP_ATTR_UIDNUMBER
);
959 gidNumber
= get_attr_key2string(idpool_attr_list
, LDAP_ATTR_GIDNUMBER
);
961 attr_list
= get_attr_list(memctx
, sidmap_attr_list
);
964 /* if we are requested just one mapping use the simple filter */
966 filter
= talloc_asprintf(memctx
, "(&(objectClass=%s)(%s=%s))",
967 LDAP_OBJ_IDMAP_ENTRY
,
969 sid_string_talloc(memctx
, ids
[0]->sid
));
970 CHECK_ALLOC_DONE(filter
);
971 DEBUG(10, ("Filter: [%s]\n", filter
));
973 /* multiple mappings */
977 for (i
= 0; ids
[i
]; i
++) {
978 ids
[i
]->status
= ID_UNKNOWN
;
985 filter
= talloc_asprintf(memctx
,
986 "(&(objectClass=%s)(|",
987 LDAP_OBJ_IDMAP_ENTRY
);
988 CHECK_ALLOC_DONE(filter
);
991 for (i
= 0; (i
< IDMAP_LDAP_MAX_IDS
) && ids
[idx
]; i
++, idx
++) {
992 filter
= talloc_asprintf_append_buffer(filter
, "(%s=%s)",
994 sid_string_talloc(memctx
,
996 CHECK_ALLOC_DONE(filter
);
998 filter
= talloc_asprintf_append_buffer(filter
, "))");
999 CHECK_ALLOC_DONE(filter
);
1000 DEBUG(10, ("Filter: [%s]", filter
));
1006 rc
= smbldap_search(ctx
->smbldap_state
, ctx
->suffix
, LDAP_SCOPE_SUBTREE
,
1007 filter
, attr_list
, 0, &result
);
1009 if (rc
!= LDAP_SUCCESS
) {
1010 DEBUG(3,("Failure looking up sids (%s)\n",
1011 ldap_err2string(rc
)));
1012 ret
= NT_STATUS_UNSUCCESSFUL
;
1016 count
= ldap_count_entries(ctx
->smbldap_state
->ldap_struct
, result
);
1019 DEBUG(10, ("NO SIDs found\n"));
1022 for (i
= 0; i
< count
; i
++) {
1023 char *sidstr
= NULL
;
1030 if (i
== 0) { /* first entry */
1031 entry
= ldap_first_entry(ctx
->smbldap_state
->ldap_struct
,
1033 } else { /* following ones */
1034 entry
= ldap_next_entry(ctx
->smbldap_state
->ldap_struct
,
1038 DEBUG(2, ("ERROR: Unable to fetch ldap entries "
1043 /* first check if the SID is present */
1044 sidstr
= smbldap_talloc_single_attribute(
1045 ctx
->smbldap_state
->ldap_struct
,
1046 entry
, LDAP_ATTRIBUTE_SID
, memctx
);
1047 if ( ! sidstr
) { /* no sid ??, skip entry */
1048 DEBUG(2, ("WARNING SID not found on entry\n"));
1052 if ( ! string_to_sid(&sid
, sidstr
)) {
1053 DEBUG(2, ("ERROR: Invalid SID on entry\n"));
1054 TALLOC_FREE(sidstr
);
1058 map
= find_map_by_sid(&ids
[bidx
], &sid
);
1060 DEBUG(2, ("WARNING: couldn't find entry sid (%s) "
1062 TALLOC_FREE(sidstr
);
1066 /* now try to see if it is a uid, if not try with a gid
1067 * (gid is more common, but in case both uidNumber and
1068 * gidNumber are returned the SID is mapped to the uid
1071 tmp
= smbldap_talloc_single_attribute(
1072 ctx
->smbldap_state
->ldap_struct
,
1073 entry
, uidNumber
, memctx
);
1076 tmp
= smbldap_talloc_single_attribute(
1077 ctx
->smbldap_state
->ldap_struct
,
1078 entry
, gidNumber
, memctx
);
1080 if ( ! tmp
) { /* no ids ?? */
1081 DEBUG(5, ("no uidNumber, "
1082 "nor gidNumber attributes found\n"));
1083 TALLOC_FREE(sidstr
);
1087 id
= strtoul(tmp
, NULL
, 10);
1088 if (!idmap_unix_id_is_in_range(id
, dom
)) {
1089 DEBUG(5, ("Requested id (%u) out of range (%u - %u). "
1091 dom
->low_id
, dom
->high_id
));
1092 TALLOC_FREE(sidstr
);
1098 if (map
->status
== ID_MAPPED
) {
1099 DEBUG(1, ("WARNING: duplicate %s mapping in LDAP. "
1100 "overwriting mapping %s -> %u with %s -> %u\n",
1101 (type
== ID_TYPE_UID
) ? "UID" : "GID",
1102 sidstr
, map
->xid
.id
, sidstr
, id
));
1105 TALLOC_FREE(sidstr
);
1108 map
->xid
.type
= type
;
1110 map
->status
= ID_MAPPED
;
1112 DEBUG(10, ("Mapped %s -> %lu (%d)\n", sid_string_dbg(map
->sid
),
1113 (unsigned long)map
->xid
.id
, map
->xid
.type
));
1116 /* free the ldap results */
1118 ldap_msgfree(result
);
1122 if (multi
&& ids
[idx
]) { /* still some values to map */
1127 * try to create new mappings for unmapped sids
1129 for (i
= 0; ids
[i
]; i
++) {
1130 if (ids
[i
]->status
!= ID_MAPPED
) {
1131 ids
[i
]->status
= ID_UNMAPPED
;
1132 if (ids
[i
]->sid
!= NULL
) {
1133 ret
= idmap_ldap_new_mapping(dom
, ids
[i
]);
1134 if (!NT_STATUS_IS_OK(ret
)) {
1144 talloc_free(memctx
);
1148 /**********************************
1149 Close the idmap ldap instance
1150 **********************************/
1152 static struct idmap_methods idmap_ldap_methods
= {
1154 .init
= idmap_ldap_db_init
,
1155 .unixids_to_sids
= idmap_ldap_unixids_to_sids
,
1156 .sids_to_unixids
= idmap_ldap_sids_to_unixids
,
1157 .allocate_id
= idmap_ldap_get_new_id
,
1160 NTSTATUS
idmap_ldap_init(void);
1161 NTSTATUS
idmap_ldap_init(void)
1163 return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION
, "ldap",
1164 &idmap_ldap_methods
);