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
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
29 #define DBGC_CLASS DBGC_IDMAP
36 static char *idmap_fetch_secret(const char *backend
, bool alloc
,
37 const char *domain
, const char *identity
)
43 r
= asprintf(&tmp
, "IDMAP_ALLOC_%s", backend
);
45 r
= asprintf(&tmp
, "IDMAP_%s_%s", backend
, domain
);
51 strupper_m(tmp
); /* make sure the key is case insensitive */
52 ret
= secrets_fetch_generic(tmp
, identity
);
59 struct idmap_ldap_context
{
60 struct smbldap_state
*smbldap_state
;
64 uint32_t filter_low_id
, filter_high_id
; /* Filter range */
68 struct idmap_ldap_alloc_context
{
69 struct smbldap_state
*smbldap_state
;
73 uid_t low_uid
, high_uid
; /* Range of uids */
74 gid_t low_gid
, high_gid
; /* Range of gids */
78 #define CHECK_ALLOC_DONE(mem) do { \
80 DEBUG(0, ("Out of memory!\n")); \
81 ret = NT_STATUS_NO_MEMORY; \
85 /**********************************************************************
86 IDMAP ALLOC TDB BACKEND
87 **********************************************************************/
89 static struct idmap_ldap_alloc_context
*idmap_alloc_ldap
;
91 /*********************************************************************
92 ********************************************************************/
94 static NTSTATUS
get_credentials( TALLOC_CTX
*mem_ctx
,
95 struct smbldap_state
*ldap_state
,
96 const char *config_option
,
97 struct idmap_domain
*dom
,
100 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
102 const char *tmp
= NULL
;
103 char *user_dn
= NULL
;
106 /* assume anonymous if we don't have a specified user */
108 tmp
= lp_parm_const_string(-1, config_option
, "ldap_user_dn", NULL
);
112 /* only the alloc backend can pass in a NULL dom */
113 secret
= idmap_fetch_secret("ldap", True
,
116 secret
= idmap_fetch_secret("ldap", False
,
121 DEBUG(0, ("get_credentials: Unable to fetch "
122 "auth credentials for %s in %s\n",
123 tmp
, (dom
==NULL
)?"ALLOC":dom
->name
));
124 ret
= NT_STATUS_ACCESS_DENIED
;
127 *dn
= talloc_strdup(mem_ctx
, tmp
);
128 CHECK_ALLOC_DONE(*dn
);
130 if (!fetch_ldap_pw(&user_dn
, &secret
)) {
131 DEBUG(2, ("get_credentials: Failed to lookup ldap "
132 "bind creds. Using anonymous connection.\n"));
135 *dn
= talloc_strdup(mem_ctx
, user_dn
);
136 SAFE_FREE( user_dn
);
137 CHECK_ALLOC_DONE(*dn
);
141 smbldap_set_creds(ldap_state
, anon
, *dn
, secret
);
151 /**********************************************************************
152 Verify the sambaUnixIdPool entry in the directory.
153 **********************************************************************/
155 static NTSTATUS
verify_idpool(void)
159 LDAPMessage
*result
= NULL
;
160 LDAPMod
**mods
= NULL
;
161 const char **attr_list
;
166 if ( ! idmap_alloc_ldap
) {
167 return NT_STATUS_UNSUCCESSFUL
;
170 ctx
= talloc_new(idmap_alloc_ldap
);
172 DEBUG(0, ("Out of memory!\n"));
173 return NT_STATUS_NO_MEMORY
;
176 filter
= talloc_asprintf(ctx
, "(objectclass=%s)", LDAP_OBJ_IDPOOL
);
177 CHECK_ALLOC_DONE(filter
);
179 attr_list
= get_attr_list(ctx
, idpool_attr_list
);
180 CHECK_ALLOC_DONE(attr_list
);
182 rc
= smbldap_search(idmap_alloc_ldap
->smbldap_state
,
183 idmap_alloc_ldap
->suffix
,
190 if (rc
!= LDAP_SUCCESS
) {
191 DEBUG(1, ("Unable to verify the idpool, "
192 "cannot continue initialization!\n"));
193 return NT_STATUS_UNSUCCESSFUL
;
196 count
= ldap_count_entries(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
199 ldap_msgfree(result
);
202 DEBUG(0,("Multiple entries returned from %s (base == %s)\n",
203 filter
, idmap_alloc_ldap
->suffix
));
204 ret
= NT_STATUS_UNSUCCESSFUL
;
207 else if (count
== 0) {
208 char *uid_str
, *gid_str
;
210 uid_str
= talloc_asprintf(ctx
, "%lu",
211 (unsigned long)idmap_alloc_ldap
->low_uid
);
212 gid_str
= talloc_asprintf(ctx
, "%lu",
213 (unsigned long)idmap_alloc_ldap
->low_gid
);
215 smbldap_set_mod(&mods
, LDAP_MOD_ADD
,
216 "objectClass", LDAP_OBJ_IDPOOL
);
217 smbldap_set_mod(&mods
, LDAP_MOD_ADD
,
218 get_attr_key2string(idpool_attr_list
,
219 LDAP_ATTR_UIDNUMBER
),
221 smbldap_set_mod(&mods
, LDAP_MOD_ADD
,
222 get_attr_key2string(idpool_attr_list
,
223 LDAP_ATTR_GIDNUMBER
),
226 rc
= smbldap_modify(idmap_alloc_ldap
->smbldap_state
,
227 idmap_alloc_ldap
->suffix
,
229 ldap_mods_free(mods
, True
);
231 ret
= NT_STATUS_UNSUCCESSFUL
;
236 ret
= (rc
== LDAP_SUCCESS
)?NT_STATUS_OK
:NT_STATUS_UNSUCCESSFUL
;
242 /*****************************************************************************
243 Initialise idmap database.
244 *****************************************************************************/
246 static NTSTATUS
idmap_ldap_alloc_init(const char *params
)
248 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
255 /* Only do init if we are online */
256 if (idmap_is_offline()) {
257 return NT_STATUS_FILE_IS_OFFLINE
;
260 idmap_alloc_ldap
= TALLOC_ZERO_P(NULL
, struct idmap_ldap_alloc_context
);
261 CHECK_ALLOC_DONE( idmap_alloc_ldap
);
265 if (!lp_idmap_uid(&low_uid
, &high_uid
)
266 || !lp_idmap_gid(&low_gid
, &high_gid
)) {
267 DEBUG(1, ("idmap uid or idmap gid missing\n"));
268 ret
= NT_STATUS_UNSUCCESSFUL
;
272 idmap_alloc_ldap
->low_uid
= low_uid
;
273 idmap_alloc_ldap
->high_uid
= high_uid
;
274 idmap_alloc_ldap
->low_gid
= low_gid
;
275 idmap_alloc_ldap
->high_gid
= high_gid
;
277 if (idmap_alloc_ldap
->high_uid
<= idmap_alloc_ldap
->low_uid
) {
278 DEBUG(1, ("idmap uid range invalid\n"));
279 DEBUGADD(1, ("idmap will be unable to map foreign SIDs\n"));
280 ret
= NT_STATUS_UNSUCCESSFUL
;
284 if (idmap_alloc_ldap
->high_gid
<= idmap_alloc_ldap
->low_gid
) {
285 DEBUG(1, ("idmap gid range invalid\n"));
286 DEBUGADD(1, ("idmap will be unable to map foreign SIDs\n"));
287 ret
= NT_STATUS_UNSUCCESSFUL
;
291 if (params
&& *params
) {
292 /* assume location is the only parameter */
293 idmap_alloc_ldap
->url
= talloc_strdup(idmap_alloc_ldap
, params
);
295 tmp
= lp_parm_const_string(-1, "idmap alloc config",
299 DEBUG(1, ("ERROR: missing idmap ldap url\n"));
300 ret
= NT_STATUS_UNSUCCESSFUL
;
304 idmap_alloc_ldap
->url
= talloc_strdup(idmap_alloc_ldap
, tmp
);
306 CHECK_ALLOC_DONE( idmap_alloc_ldap
->url
);
308 tmp
= lp_parm_const_string(-1, "idmap alloc config",
309 "ldap_base_dn", NULL
);
310 if ( ! tmp
|| ! *tmp
) {
311 tmp
= lp_ldap_idmap_suffix();
313 DEBUG(1, ("ERROR: missing idmap ldap suffix\n"));
314 ret
= NT_STATUS_UNSUCCESSFUL
;
319 idmap_alloc_ldap
->suffix
= talloc_strdup(idmap_alloc_ldap
, tmp
);
320 CHECK_ALLOC_DONE( idmap_alloc_ldap
->suffix
);
322 ret
= smbldap_init(idmap_alloc_ldap
, winbind_event_context(),
323 idmap_alloc_ldap
->url
,
324 &idmap_alloc_ldap
->smbldap_state
);
325 if (!NT_STATUS_IS_OK(ret
)) {
326 DEBUG(1, ("ERROR: smbldap_init (%s) failed!\n",
327 idmap_alloc_ldap
->url
));
331 ret
= get_credentials( idmap_alloc_ldap
,
332 idmap_alloc_ldap
->smbldap_state
,
333 "idmap alloc config", NULL
,
334 &idmap_alloc_ldap
->user_dn
);
335 if ( !NT_STATUS_IS_OK(ret
) ) {
336 DEBUG(1,("idmap_ldap_alloc_init: Failed to get connection "
337 "credentials (%s)\n", nt_errstr(ret
)));
341 /* see if the idmap suffix and sub entries exists */
343 ret
= verify_idpool();
346 if ( !NT_STATUS_IS_OK( ret
) )
347 TALLOC_FREE( idmap_alloc_ldap
);
352 /********************************
353 Allocate a new uid or gid
354 ********************************/
356 static NTSTATUS
idmap_ldap_allocate_id(struct unixid
*xid
)
359 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
360 int rc
= LDAP_SERVER_DOWN
;
362 LDAPMessage
*result
= NULL
;
363 LDAPMessage
*entry
= NULL
;
364 LDAPMod
**mods
= NULL
;
368 const char *dn
= NULL
;
369 const char **attr_list
;
372 /* Only do query if we are online */
373 if (idmap_is_offline()) {
374 return NT_STATUS_FILE_IS_OFFLINE
;
377 if ( ! idmap_alloc_ldap
) {
378 return NT_STATUS_UNSUCCESSFUL
;
381 ctx
= talloc_new(idmap_alloc_ldap
);
383 DEBUG(0, ("Out of memory!\n"));
384 return NT_STATUS_NO_MEMORY
;
391 type
= get_attr_key2string(idpool_attr_list
,
392 LDAP_ATTR_UIDNUMBER
);
396 type
= get_attr_key2string(idpool_attr_list
,
397 LDAP_ATTR_GIDNUMBER
);
401 DEBUG(2, ("Invalid ID type (0x%x)\n", xid
->type
));
402 return NT_STATUS_INVALID_PARAMETER
;
405 filter
= talloc_asprintf(ctx
, "(objectClass=%s)", LDAP_OBJ_IDPOOL
);
406 CHECK_ALLOC_DONE(filter
);
408 attr_list
= get_attr_list(ctx
, idpool_attr_list
);
409 CHECK_ALLOC_DONE(attr_list
);
411 DEBUG(10, ("Search of the id pool (filter: %s)\n", filter
));
413 rc
= smbldap_search(idmap_alloc_ldap
->smbldap_state
,
414 idmap_alloc_ldap
->suffix
,
415 LDAP_SCOPE_SUBTREE
, filter
,
416 attr_list
, 0, &result
);
418 if (rc
!= LDAP_SUCCESS
) {
419 DEBUG(0,("%s object not found\n", LDAP_OBJ_IDPOOL
));
423 talloc_autofree_ldapmsg(ctx
, result
);
425 count
= ldap_count_entries(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
428 DEBUG(0,("Single %s object not found\n", LDAP_OBJ_IDPOOL
));
432 entry
= ldap_first_entry(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
435 dn
= smbldap_talloc_dn(ctx
,
436 idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
442 if ( ! (id_str
= smbldap_talloc_single_attribute(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
443 entry
, type
, ctx
))) {
444 DEBUG(0,("%s attribute not found\n", type
));
448 DEBUG(0,("Out of memory\n"));
449 ret
= NT_STATUS_NO_MEMORY
;
453 xid
->id
= strtoul(id_str
, NULL
, 10);
455 /* make sure we still have room to grow */
459 if (xid
->id
> idmap_alloc_ldap
->high_uid
) {
460 DEBUG(0,("Cannot allocate uid above %lu!\n",
461 (unsigned long)idmap_alloc_ldap
->high_uid
));
467 if (xid
->id
> idmap_alloc_ldap
->high_gid
) {
468 DEBUG(0,("Cannot allocate gid above %lu!\n",
469 (unsigned long)idmap_alloc_ldap
->high_uid
));
479 new_id_str
= talloc_asprintf(ctx
, "%lu", (unsigned long)xid
->id
+ 1);
481 DEBUG(0,("Out of memory\n"));
482 ret
= NT_STATUS_NO_MEMORY
;
486 smbldap_set_mod(&mods
, LDAP_MOD_DELETE
, type
, id_str
);
487 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, type
, new_id_str
);
490 DEBUG(0,("smbldap_set_mod() failed.\n"));
494 DEBUG(10, ("Try to atomically increment the id (%s -> %s)\n",
495 id_str
, new_id_str
));
497 rc
= smbldap_modify(idmap_alloc_ldap
->smbldap_state
, dn
, mods
);
499 ldap_mods_free(mods
, True
);
501 if (rc
!= LDAP_SUCCESS
) {
502 DEBUG(1,("Failed to allocate new %s. "
503 "smbldap_modify() failed.\n", type
));
514 /**********************************
515 Get current highest id.
516 **********************************/
518 static NTSTATUS
idmap_ldap_get_hwm(struct unixid
*xid
)
521 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
522 int rc
= LDAP_SERVER_DOWN
;
524 LDAPMessage
*result
= NULL
;
525 LDAPMessage
*entry
= NULL
;
528 const char **attr_list
;
531 /* Only do query if we are online */
532 if (idmap_is_offline()) {
533 return NT_STATUS_FILE_IS_OFFLINE
;
536 if ( ! idmap_alloc_ldap
) {
537 return NT_STATUS_UNSUCCESSFUL
;
540 memctx
= talloc_new(idmap_alloc_ldap
);
542 DEBUG(0, ("Out of memory!\n"));
543 return NT_STATUS_NO_MEMORY
;
550 type
= get_attr_key2string(idpool_attr_list
,
551 LDAP_ATTR_UIDNUMBER
);
555 type
= get_attr_key2string(idpool_attr_list
,
556 LDAP_ATTR_GIDNUMBER
);
560 DEBUG(2, ("Invalid ID type (0x%x)\n", xid
->type
));
561 return NT_STATUS_INVALID_PARAMETER
;
564 filter
= talloc_asprintf(memctx
, "(objectClass=%s)", LDAP_OBJ_IDPOOL
);
565 CHECK_ALLOC_DONE(filter
);
567 attr_list
= get_attr_list(memctx
, idpool_attr_list
);
568 CHECK_ALLOC_DONE(attr_list
);
570 rc
= smbldap_search(idmap_alloc_ldap
->smbldap_state
,
571 idmap_alloc_ldap
->suffix
,
572 LDAP_SCOPE_SUBTREE
, filter
,
573 attr_list
, 0, &result
);
575 if (rc
!= LDAP_SUCCESS
) {
576 DEBUG(0,("%s object not found\n", LDAP_OBJ_IDPOOL
));
580 talloc_autofree_ldapmsg(memctx
, result
);
582 count
= ldap_count_entries(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
585 DEBUG(0,("Single %s object not found\n", LDAP_OBJ_IDPOOL
));
589 entry
= ldap_first_entry(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
592 id_str
= smbldap_talloc_single_attribute(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
593 entry
, type
, memctx
);
595 DEBUG(0,("%s attribute not found\n", type
));
599 DEBUG(0,("Out of memory\n"));
600 ret
= NT_STATUS_NO_MEMORY
;
604 xid
->id
= strtoul(id_str
, NULL
, 10);
611 /**********************************
613 **********************************/
615 static NTSTATUS
idmap_ldap_set_hwm(struct unixid
*xid
)
618 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
619 int rc
= LDAP_SERVER_DOWN
;
621 LDAPMessage
*result
= NULL
;
622 LDAPMessage
*entry
= NULL
;
623 LDAPMod
**mods
= NULL
;
626 const char *dn
= NULL
;
627 const char **attr_list
;
630 /* Only do query if we are online */
631 if (idmap_is_offline()) {
632 return NT_STATUS_FILE_IS_OFFLINE
;
635 if ( ! idmap_alloc_ldap
) {
636 return NT_STATUS_UNSUCCESSFUL
;
639 ctx
= talloc_new(idmap_alloc_ldap
);
641 DEBUG(0, ("Out of memory!\n"));
642 return NT_STATUS_NO_MEMORY
;
649 type
= get_attr_key2string(idpool_attr_list
,
650 LDAP_ATTR_UIDNUMBER
);
654 type
= get_attr_key2string(idpool_attr_list
,
655 LDAP_ATTR_GIDNUMBER
);
659 DEBUG(2, ("Invalid ID type (0x%x)\n", xid
->type
));
660 return NT_STATUS_INVALID_PARAMETER
;
663 filter
= talloc_asprintf(ctx
, "(objectClass=%s)", LDAP_OBJ_IDPOOL
);
664 CHECK_ALLOC_DONE(filter
);
666 attr_list
= get_attr_list(ctx
, idpool_attr_list
);
667 CHECK_ALLOC_DONE(attr_list
);
669 rc
= smbldap_search(idmap_alloc_ldap
->smbldap_state
,
670 idmap_alloc_ldap
->suffix
,
671 LDAP_SCOPE_SUBTREE
, filter
,
672 attr_list
, 0, &result
);
674 if (rc
!= LDAP_SUCCESS
) {
675 DEBUG(0,("%s object not found\n", LDAP_OBJ_IDPOOL
));
679 talloc_autofree_ldapmsg(ctx
, result
);
681 count
= ldap_count_entries(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
684 DEBUG(0,("Single %s object not found\n", LDAP_OBJ_IDPOOL
));
688 entry
= ldap_first_entry(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
691 dn
= smbldap_talloc_dn(ctx
,
692 idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
698 new_id_str
= talloc_asprintf(ctx
, "%lu", (unsigned long)xid
->id
);
700 DEBUG(0,("Out of memory\n"));
701 ret
= NT_STATUS_NO_MEMORY
;
705 smbldap_set_mod(&mods
, LDAP_MOD_REPLACE
, type
, new_id_str
);
708 DEBUG(0,("smbldap_set_mod() failed.\n"));
712 rc
= smbldap_modify(idmap_alloc_ldap
->smbldap_state
, dn
, mods
);
714 ldap_mods_free(mods
, True
);
716 if (rc
!= LDAP_SUCCESS
) {
717 DEBUG(1,("Failed to allocate new %s. "
718 "smbldap_modify() failed.\n", type
));
729 /**********************************
730 Close idmap ldap alloc
731 **********************************/
733 static NTSTATUS
idmap_ldap_alloc_close(void)
735 if (idmap_alloc_ldap
) {
736 smbldap_free_struct(&idmap_alloc_ldap
->smbldap_state
);
737 DEBUG(5,("The connection to the LDAP server was closed\n"));
738 /* maybe free the results here --metze */
739 TALLOC_FREE(idmap_alloc_ldap
);
745 /**********************************************************************
746 IDMAP MAPPING LDAP BACKEND
747 **********************************************************************/
749 static int idmap_ldap_close_destructor(struct idmap_ldap_context
*ctx
)
751 smbldap_free_struct(&ctx
->smbldap_state
);
752 DEBUG(5,("The connection to the LDAP server was closed\n"));
753 /* maybe free the results here --metze */
758 /********************************
759 Initialise idmap database.
760 ********************************/
762 static NTSTATUS
idmap_ldap_db_init(struct idmap_domain
*dom
,
766 struct idmap_ldap_context
*ctx
= NULL
;
767 char *config_option
= NULL
;
768 const char *range
= NULL
;
769 const char *tmp
= NULL
;
771 /* Only do init if we are online */
772 if (idmap_is_offline()) {
773 return NT_STATUS_FILE_IS_OFFLINE
;
776 ctx
= TALLOC_ZERO_P(dom
, struct idmap_ldap_context
);
778 DEBUG(0, ("Out of memory!\n"));
779 return NT_STATUS_NO_MEMORY
;
782 config_option
= talloc_asprintf(ctx
, "idmap config %s", dom
->name
);
783 if ( ! config_option
) {
784 DEBUG(0, ("Out of memory!\n"));
785 ret
= NT_STATUS_NO_MEMORY
;
790 range
= lp_parm_const_string(-1, config_option
, "range", NULL
);
791 if (range
&& range
[0]) {
792 if ((sscanf(range
, "%u - %u", &ctx
->filter_low_id
,
793 &ctx
->filter_high_id
) != 2) ||
794 (ctx
->filter_low_id
> ctx
->filter_high_id
)) {
795 DEBUG(1, ("ERROR: invalid filter range [%s]", range
));
796 ctx
->filter_low_id
= 0;
797 ctx
->filter_high_id
= 0;
801 if (params
!= NULL
) {
802 /* assume location is the only parameter */
803 ctx
->url
= talloc_strdup(ctx
, params
);
805 tmp
= lp_parm_const_string(-1, config_option
, "ldap_url", NULL
);
808 DEBUG(1, ("ERROR: missing idmap ldap url\n"));
809 ret
= NT_STATUS_UNSUCCESSFUL
;
813 ctx
->url
= talloc_strdup(ctx
, tmp
);
815 CHECK_ALLOC_DONE(ctx
->url
);
817 tmp
= lp_parm_const_string(-1, config_option
, "ldap_base_dn", NULL
);
818 if ( ! tmp
|| ! *tmp
) {
819 tmp
= lp_ldap_idmap_suffix();
821 DEBUG(1, ("ERROR: missing idmap ldap suffix\n"));
822 ret
= NT_STATUS_UNSUCCESSFUL
;
827 ctx
->suffix
= talloc_strdup(ctx
, tmp
);
828 CHECK_ALLOC_DONE(ctx
->suffix
);
830 ret
= smbldap_init(ctx
, winbind_event_context(), ctx
->url
,
831 &ctx
->smbldap_state
);
832 if (!NT_STATUS_IS_OK(ret
)) {
833 DEBUG(1, ("ERROR: smbldap_init (%s) failed!\n", ctx
->url
));
837 ret
= get_credentials( ctx
, ctx
->smbldap_state
, config_option
,
838 dom
, &ctx
->user_dn
);
839 if ( !NT_STATUS_IS_OK(ret
) ) {
840 DEBUG(1,("idmap_ldap_db_init: Failed to get connection "
841 "credentials (%s)\n", nt_errstr(ret
)));
845 /* set the destructor on the context, so that resource are properly
846 freed if the contexts is released */
848 talloc_set_destructor(ctx
, idmap_ldap_close_destructor
);
850 dom
->private_data
= ctx
;
852 talloc_free(config_option
);
861 /* max number of ids requested per batch query */
862 #define IDMAP_LDAP_MAX_IDS 30
864 /**********************************
865 lookup a set of unix ids.
866 **********************************/
868 /* this function searches up to IDMAP_LDAP_MAX_IDS entries
869 * in maps for a match */
870 static struct id_map
*find_map_by_id(struct id_map
**maps
,
876 for (i
= 0; i
< IDMAP_LDAP_MAX_IDS
; i
++) {
877 if (maps
[i
] == NULL
) { /* end of the run */
880 if ((maps
[i
]->xid
.type
== type
) && (maps
[i
]->xid
.id
== id
)) {
888 static NTSTATUS
idmap_ldap_unixids_to_sids(struct idmap_domain
*dom
,
893 struct idmap_ldap_context
*ctx
;
894 LDAPMessage
*result
= NULL
;
895 const char *uidNumber
;
896 const char *gidNumber
;
897 const char **attr_list
;
906 /* Only do query if we are online */
907 if (idmap_is_offline()) {
908 return NT_STATUS_FILE_IS_OFFLINE
;
911 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ldap_context
);
913 memctx
= talloc_new(ctx
);
915 DEBUG(0, ("Out of memory!\n"));
916 return NT_STATUS_NO_MEMORY
;
919 uidNumber
= get_attr_key2string(idpool_attr_list
, LDAP_ATTR_UIDNUMBER
);
920 gidNumber
= get_attr_key2string(idpool_attr_list
, LDAP_ATTR_GIDNUMBER
);
922 attr_list
= get_attr_list(memctx
, sidmap_attr_list
);
925 /* if we are requested just one mapping use the simple filter */
927 filter
= talloc_asprintf(memctx
, "(&(objectClass=%s)(%s=%lu))",
928 LDAP_OBJ_IDMAP_ENTRY
,
929 (ids
[0]->xid
.type
==ID_TYPE_UID
)?uidNumber
:gidNumber
,
930 (unsigned long)ids
[0]->xid
.id
);
931 CHECK_ALLOC_DONE(filter
);
932 DEBUG(10, ("Filter: [%s]\n", filter
));
934 /* multiple mappings */
942 filter
= talloc_asprintf(memctx
,
943 "(&(objectClass=%s)(|",
944 LDAP_OBJ_IDMAP_ENTRY
);
945 CHECK_ALLOC_DONE(filter
);
948 for (i
= 0; (i
< IDMAP_LDAP_MAX_IDS
) && ids
[idx
]; i
++, idx
++) {
949 filter
= talloc_asprintf_append_buffer(filter
, "(%s=%lu)",
950 (ids
[idx
]->xid
.type
==ID_TYPE_UID
)?uidNumber
:gidNumber
,
951 (unsigned long)ids
[idx
]->xid
.id
);
952 CHECK_ALLOC_DONE(filter
);
954 filter
= talloc_asprintf_append_buffer(filter
, "))");
955 CHECK_ALLOC_DONE(filter
);
956 DEBUG(10, ("Filter: [%s]\n", filter
));
962 rc
= smbldap_search(ctx
->smbldap_state
, ctx
->suffix
, LDAP_SCOPE_SUBTREE
,
963 filter
, attr_list
, 0, &result
);
965 if (rc
!= LDAP_SUCCESS
) {
966 DEBUG(3,("Failure looking up ids (%s)\n", ldap_err2string(rc
)));
967 ret
= NT_STATUS_UNSUCCESSFUL
;
971 count
= ldap_count_entries(ctx
->smbldap_state
->ldap_struct
, result
);
974 DEBUG(10, ("NO SIDs found\n"));
977 for (i
= 0; i
< count
; i
++) {
978 LDAPMessage
*entry
= NULL
;
985 if (i
== 0) { /* first entry */
986 entry
= ldap_first_entry(ctx
->smbldap_state
->ldap_struct
,
988 } else { /* following ones */
989 entry
= ldap_next_entry(ctx
->smbldap_state
->ldap_struct
,
993 DEBUG(2, ("ERROR: Unable to fetch ldap entries "
998 /* first check if the SID is present */
999 sidstr
= smbldap_talloc_single_attribute(
1000 ctx
->smbldap_state
->ldap_struct
,
1001 entry
, LDAP_ATTRIBUTE_SID
, memctx
);
1002 if ( ! sidstr
) { /* no sid, skip entry */
1003 DEBUG(2, ("WARNING SID not found on entry\n"));
1007 /* now try to see if it is a uid, if not try with a gid
1008 * (gid is more common, but in case both uidNumber and
1009 * gidNumber are returned the SID is mapped to the uid
1012 tmp
= smbldap_talloc_single_attribute(
1013 ctx
->smbldap_state
->ldap_struct
,
1014 entry
, uidNumber
, memctx
);
1017 tmp
= smbldap_talloc_single_attribute(
1018 ctx
->smbldap_state
->ldap_struct
,
1019 entry
, gidNumber
, memctx
);
1021 if ( ! tmp
) { /* wow very strange entry, how did it match ? */
1022 DEBUG(5, ("Unprobable match on (%s), no uidNumber, "
1023 "nor gidNumber returned\n", sidstr
));
1024 TALLOC_FREE(sidstr
);
1028 id
= strtoul(tmp
, NULL
, 10);
1030 (ctx
->filter_low_id
&& (id
< ctx
->filter_low_id
)) ||
1031 (ctx
->filter_high_id
&& (id
> ctx
->filter_high_id
))) {
1032 DEBUG(5, ("Requested id (%u) out of range (%u - %u). "
1034 ctx
->filter_low_id
, ctx
->filter_high_id
));
1035 TALLOC_FREE(sidstr
);
1041 map
= find_map_by_id(&ids
[bidx
], type
, id
);
1043 DEBUG(2, ("WARNING: couldn't match sid (%s) "
1044 "with requested ids\n", sidstr
));
1045 TALLOC_FREE(sidstr
);
1049 if ( ! string_to_sid(map
->sid
, sidstr
)) {
1050 DEBUG(2, ("ERROR: Invalid SID on entry\n"));
1051 TALLOC_FREE(sidstr
);
1054 TALLOC_FREE(sidstr
);
1057 map
->status
= ID_MAPPED
;
1059 DEBUG(10, ("Mapped %s -> %lu (%d)\n", sid_string_dbg(map
->sid
),
1060 (unsigned long)map
->xid
.id
, map
->xid
.type
));
1063 /* free the ldap results */
1065 ldap_msgfree(result
);
1069 if (multi
&& ids
[idx
]) { /* still some values to map */
1075 /* mark all unknwon/expired ones as unmapped */
1076 for (i
= 0; ids
[i
]; i
++) {
1077 if (ids
[i
]->status
!= ID_MAPPED
)
1078 ids
[i
]->status
= ID_UNMAPPED
;
1082 talloc_free(memctx
);
1086 /**********************************
1087 lookup a set of sids.
1088 **********************************/
1090 /* this function searches up to IDMAP_LDAP_MAX_IDS entries
1091 * in maps for a match */
1092 static struct id_map
*find_map_by_sid(struct id_map
**maps
, DOM_SID
*sid
)
1096 for (i
= 0; i
< IDMAP_LDAP_MAX_IDS
; i
++) {
1097 if (maps
[i
] == NULL
) { /* end of the run */
1100 if (sid_equal(maps
[i
]->sid
, sid
)) {
1108 static NTSTATUS
idmap_ldap_sids_to_unixids(struct idmap_domain
*dom
,
1109 struct id_map
**ids
)
1111 LDAPMessage
*entry
= NULL
;
1114 struct idmap_ldap_context
*ctx
;
1115 LDAPMessage
*result
= NULL
;
1116 const char *uidNumber
;
1117 const char *gidNumber
;
1118 const char **attr_list
;
1119 char *filter
= NULL
;
1127 /* Only do query if we are online */
1128 if (idmap_is_offline()) {
1129 return NT_STATUS_FILE_IS_OFFLINE
;
1132 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ldap_context
);
1134 memctx
= talloc_new(ctx
);
1136 DEBUG(0, ("Out of memory!\n"));
1137 return NT_STATUS_NO_MEMORY
;
1140 uidNumber
= get_attr_key2string(idpool_attr_list
, LDAP_ATTR_UIDNUMBER
);
1141 gidNumber
= get_attr_key2string(idpool_attr_list
, LDAP_ATTR_GIDNUMBER
);
1143 attr_list
= get_attr_list(memctx
, sidmap_attr_list
);
1146 /* if we are requested just one mapping use the simple filter */
1148 filter
= talloc_asprintf(memctx
, "(&(objectClass=%s)(%s=%s))",
1149 LDAP_OBJ_IDMAP_ENTRY
,
1151 sid_string_talloc(memctx
, ids
[0]->sid
));
1152 CHECK_ALLOC_DONE(filter
);
1153 DEBUG(10, ("Filter: [%s]\n", filter
));
1155 /* multiple mappings */
1162 TALLOC_FREE(filter
);
1163 filter
= talloc_asprintf(memctx
,
1164 "(&(objectClass=%s)(|",
1165 LDAP_OBJ_IDMAP_ENTRY
);
1166 CHECK_ALLOC_DONE(filter
);
1169 for (i
= 0; (i
< IDMAP_LDAP_MAX_IDS
) && ids
[idx
]; i
++, idx
++) {
1170 filter
= talloc_asprintf_append_buffer(filter
, "(%s=%s)",
1172 sid_string_talloc(memctx
,
1174 CHECK_ALLOC_DONE(filter
);
1176 filter
= talloc_asprintf_append_buffer(filter
, "))");
1177 CHECK_ALLOC_DONE(filter
);
1178 DEBUG(10, ("Filter: [%s]", filter
));
1184 rc
= smbldap_search(ctx
->smbldap_state
, ctx
->suffix
, LDAP_SCOPE_SUBTREE
,
1185 filter
, attr_list
, 0, &result
);
1187 if (rc
!= LDAP_SUCCESS
) {
1188 DEBUG(3,("Failure looking up sids (%s)\n",
1189 ldap_err2string(rc
)));
1190 ret
= NT_STATUS_UNSUCCESSFUL
;
1194 count
= ldap_count_entries(ctx
->smbldap_state
->ldap_struct
, result
);
1197 DEBUG(10, ("NO SIDs found\n"));
1200 for (i
= 0; i
< count
; i
++) {
1201 char *sidstr
= NULL
;
1208 if (i
== 0) { /* first entry */
1209 entry
= ldap_first_entry(ctx
->smbldap_state
->ldap_struct
,
1211 } else { /* following ones */
1212 entry
= ldap_next_entry(ctx
->smbldap_state
->ldap_struct
,
1216 DEBUG(2, ("ERROR: Unable to fetch ldap entries "
1221 /* first check if the SID is present */
1222 sidstr
= smbldap_talloc_single_attribute(
1223 ctx
->smbldap_state
->ldap_struct
,
1224 entry
, LDAP_ATTRIBUTE_SID
, memctx
);
1225 if ( ! sidstr
) { /* no sid ??, skip entry */
1226 DEBUG(2, ("WARNING SID not found on entry\n"));
1230 if ( ! string_to_sid(&sid
, sidstr
)) {
1231 DEBUG(2, ("ERROR: Invalid SID on entry\n"));
1232 TALLOC_FREE(sidstr
);
1236 map
= find_map_by_sid(&ids
[bidx
], &sid
);
1238 DEBUG(2, ("WARNING: couldn't find entry sid (%s) "
1240 TALLOC_FREE(sidstr
);
1244 TALLOC_FREE(sidstr
);
1246 /* now try to see if it is a uid, if not try with a gid
1247 * (gid is more common, but in case both uidNumber and
1248 * gidNumber are returned the SID is mapped to the uid
1251 tmp
= smbldap_talloc_single_attribute(
1252 ctx
->smbldap_state
->ldap_struct
,
1253 entry
, uidNumber
, memctx
);
1256 tmp
= smbldap_talloc_single_attribute(
1257 ctx
->smbldap_state
->ldap_struct
,
1258 entry
, gidNumber
, memctx
);
1260 if ( ! tmp
) { /* no ids ?? */
1261 DEBUG(5, ("no uidNumber, "
1262 "nor gidNumber attributes found\n"));
1266 id
= strtoul(tmp
, NULL
, 10);
1268 (ctx
->filter_low_id
&& (id
< ctx
->filter_low_id
)) ||
1269 (ctx
->filter_high_id
&& (id
> ctx
->filter_high_id
))) {
1270 DEBUG(5, ("Requested id (%u) out of range (%u - %u). "
1272 ctx
->filter_low_id
, ctx
->filter_high_id
));
1279 map
->xid
.type
= type
;
1281 map
->status
= ID_MAPPED
;
1283 DEBUG(10, ("Mapped %s -> %lu (%d)\n", sid_string_dbg(map
->sid
),
1284 (unsigned long)map
->xid
.id
, map
->xid
.type
));
1287 /* free the ldap results */
1289 ldap_msgfree(result
);
1293 if (multi
&& ids
[idx
]) { /* still some values to map */
1299 /* mark all unknwon/expired ones as unmapped */
1300 for (i
= 0; ids
[i
]; i
++) {
1301 if (ids
[i
]->status
!= ID_MAPPED
)
1302 ids
[i
]->status
= ID_UNMAPPED
;
1306 talloc_free(memctx
);
1310 /**********************************
1312 **********************************/
1314 /* TODO: change this: This function cannot be called to modify a mapping,
1315 * only set a new one */
1317 static NTSTATUS
idmap_ldap_set_mapping(struct idmap_domain
*dom
,
1318 const struct id_map
*map
)
1322 struct idmap_ldap_context
*ctx
;
1323 LDAPMessage
*entry
= NULL
;
1324 LDAPMod
**mods
= NULL
;
1331 /* Only do query if we are online */
1332 if (idmap_is_offline()) {
1333 return NT_STATUS_FILE_IS_OFFLINE
;
1336 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ldap_context
);
1338 switch(map
->xid
.type
) {
1340 type
= get_attr_key2string(sidmap_attr_list
,
1341 LDAP_ATTR_UIDNUMBER
);
1345 type
= get_attr_key2string(sidmap_attr_list
,
1346 LDAP_ATTR_GIDNUMBER
);
1350 return NT_STATUS_INVALID_PARAMETER
;
1353 memctx
= talloc_new(ctx
);
1355 DEBUG(0, ("Out of memory!\n"));
1356 return NT_STATUS_NO_MEMORY
;
1359 id_str
= talloc_asprintf(memctx
, "%lu", (unsigned long)map
->xid
.id
);
1360 CHECK_ALLOC_DONE(id_str
);
1362 sid
= talloc_strdup(memctx
, sid_string_talloc(memctx
, map
->sid
));
1363 CHECK_ALLOC_DONE(sid
);
1365 dn
= talloc_asprintf(memctx
, "%s=%s,%s",
1366 get_attr_key2string(sidmap_attr_list
, LDAP_ATTR_SID
),
1369 CHECK_ALLOC_DONE(dn
);
1371 smbldap_set_mod(&mods
, LDAP_MOD_ADD
,
1372 "objectClass", LDAP_OBJ_IDMAP_ENTRY
);
1374 smbldap_make_mod(ctx
->smbldap_state
->ldap_struct
,
1375 entry
, &mods
, type
, id_str
);
1377 smbldap_make_mod(ctx
->smbldap_state
->ldap_struct
, entry
, &mods
,
1378 get_attr_key2string(sidmap_attr_list
, LDAP_ATTR_SID
),
1382 DEBUG(2, ("ERROR: No mods?\n"));
1383 ret
= NT_STATUS_UNSUCCESSFUL
;
1387 /* TODO: remove conflicting mappings! */
1389 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", LDAP_OBJ_SID_ENTRY
);
1391 DEBUG(10, ("Set DN %s (%s -> %s)\n", dn
, sid
, id_str
));
1393 rc
= smbldap_add(ctx
->smbldap_state
, dn
, mods
);
1394 ldap_mods_free(mods
, True
);
1396 if (rc
!= LDAP_SUCCESS
) {
1397 char *ld_error
= NULL
;
1398 ldap_get_option(ctx
->smbldap_state
->ldap_struct
,
1399 LDAP_OPT_ERROR_STRING
, &ld_error
);
1400 DEBUG(0,("ldap_set_mapping_internals: Failed to add %s to %lu "
1401 "mapping [%s]\n", sid
,
1402 (unsigned long)map
->xid
.id
, type
));
1403 DEBUG(0, ("ldap_set_mapping_internals: Error was: %s (%s)\n",
1404 ld_error
? ld_error
: "(NULL)", ldap_err2string (rc
)));
1406 ldap_memfree(ld_error
);
1408 ret
= NT_STATUS_UNSUCCESSFUL
;
1412 DEBUG(10,("ldap_set_mapping: Successfully created mapping from %s to "
1413 "%lu [%s]\n", sid
, (unsigned long)map
->xid
.id
, type
));
1418 talloc_free(memctx
);
1422 /**********************************
1423 Close the idmap ldap instance
1424 **********************************/
1426 static NTSTATUS
idmap_ldap_close(struct idmap_domain
*dom
)
1428 struct idmap_ldap_context
*ctx
;
1430 if (dom
->private_data
) {
1431 ctx
= talloc_get_type(dom
->private_data
,
1432 struct idmap_ldap_context
);
1435 dom
->private_data
= NULL
;
1438 return NT_STATUS_OK
;
1441 static struct idmap_methods idmap_ldap_methods
= {
1443 .init
= idmap_ldap_db_init
,
1444 .unixids_to_sids
= idmap_ldap_unixids_to_sids
,
1445 .sids_to_unixids
= idmap_ldap_sids_to_unixids
,
1446 .set_mapping
= idmap_ldap_set_mapping
,
1447 .close_fn
= idmap_ldap_close
1450 static struct idmap_alloc_methods idmap_ldap_alloc_methods
= {
1452 .init
= idmap_ldap_alloc_init
,
1453 .allocate_id
= idmap_ldap_allocate_id
,
1454 .get_id_hwm
= idmap_ldap_get_hwm
,
1455 .set_id_hwm
= idmap_ldap_set_hwm
,
1456 .close_fn
= idmap_ldap_alloc_close
,
1457 /* .dump_data = TODO */
1460 static NTSTATUS
idmap_alloc_ldap_init(void)
1462 return smb_register_idmap_alloc(SMB_IDMAP_INTERFACE_VERSION
, "ldap",
1463 &idmap_ldap_alloc_methods
);
1466 NTSTATUS
idmap_ldap_init(void);
1467 NTSTATUS
idmap_ldap_init(void)
1471 /* FIXME: bad hack to actually register also the alloc_ldap module
1472 * without changining configure.in */
1473 ret
= idmap_alloc_ldap_init();
1474 if (! NT_STATUS_IS_OK(ret
)) {
1477 return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION
, "ldap",
1478 &idmap_ldap_methods
);