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
;
256 /* Only do init if we are online */
257 if (idmap_is_offline()) {
258 return NT_STATUS_FILE_IS_OFFLINE
;
261 idmap_alloc_ldap
= TALLOC_ZERO_P(NULL
, struct idmap_ldap_alloc_context
);
262 CHECK_ALLOC_DONE( idmap_alloc_ldap
);
266 idmap_alloc_ldap
->low_uid
= 0;
267 idmap_alloc_ldap
->high_uid
= 0;
268 idmap_alloc_ldap
->low_gid
= 0;
269 idmap_alloc_ldap
->high_gid
= 0;
271 range
= lp_parm_const_string(-1, "idmap alloc config", "range", NULL
);
272 if (range
&& range
[0]) {
273 unsigned low_id
, high_id
;
275 if (sscanf(range
, "%u - %u", &low_id
, &high_id
) == 2) {
276 if (low_id
< high_id
) {
277 idmap_alloc_ldap
->low_gid
= low_id
;
278 idmap_alloc_ldap
->low_uid
= low_id
;
279 idmap_alloc_ldap
->high_gid
= high_id
;
280 idmap_alloc_ldap
->high_uid
= high_id
;
282 DEBUG(1, ("ERROR: invalid idmap alloc range "
286 DEBUG(1, ("ERROR: invalid syntax for idmap alloc "
287 "config:range [%s]", range
));
291 if (lp_idmap_uid(&low_uid
, &high_uid
)) {
292 idmap_alloc_ldap
->low_uid
= low_uid
;
293 idmap_alloc_ldap
->high_uid
= high_uid
;
296 if (lp_idmap_gid(&low_gid
, &high_gid
)) {
297 idmap_alloc_ldap
->low_gid
= low_gid
;
298 idmap_alloc_ldap
->high_gid
= high_gid
;
301 if (idmap_alloc_ldap
->high_uid
<= idmap_alloc_ldap
->low_uid
) {
302 DEBUG(1, ("idmap uid range missing or invalid\n"));
303 DEBUGADD(1, ("idmap will be unable to map foreign SIDs\n"));
304 ret
= NT_STATUS_UNSUCCESSFUL
;
308 if (idmap_alloc_ldap
->high_gid
<= idmap_alloc_ldap
->low_gid
) {
309 DEBUG(1, ("idmap gid range missing or invalid\n"));
310 DEBUGADD(1, ("idmap will be unable to map foreign SIDs\n"));
311 ret
= NT_STATUS_UNSUCCESSFUL
;
315 if (params
&& *params
) {
316 /* assume location is the only parameter */
317 idmap_alloc_ldap
->url
= talloc_strdup(idmap_alloc_ldap
, params
);
319 tmp
= lp_parm_const_string(-1, "idmap alloc config",
323 DEBUG(1, ("ERROR: missing idmap ldap url\n"));
324 ret
= NT_STATUS_UNSUCCESSFUL
;
328 idmap_alloc_ldap
->url
= talloc_strdup(idmap_alloc_ldap
, tmp
);
330 CHECK_ALLOC_DONE( idmap_alloc_ldap
->url
);
332 tmp
= lp_parm_const_string(-1, "idmap alloc config",
333 "ldap_base_dn", NULL
);
334 if ( ! tmp
|| ! *tmp
) {
335 tmp
= lp_ldap_idmap_suffix();
337 DEBUG(1, ("ERROR: missing idmap ldap suffix\n"));
338 ret
= NT_STATUS_UNSUCCESSFUL
;
343 idmap_alloc_ldap
->suffix
= talloc_strdup(idmap_alloc_ldap
, tmp
);
344 CHECK_ALLOC_DONE( idmap_alloc_ldap
->suffix
);
346 ret
= smbldap_init(idmap_alloc_ldap
, winbind_event_context(),
347 idmap_alloc_ldap
->url
,
348 &idmap_alloc_ldap
->smbldap_state
);
349 if (!NT_STATUS_IS_OK(ret
)) {
350 DEBUG(1, ("ERROR: smbldap_init (%s) failed!\n",
351 idmap_alloc_ldap
->url
));
355 ret
= get_credentials( idmap_alloc_ldap
,
356 idmap_alloc_ldap
->smbldap_state
,
357 "idmap alloc config", NULL
,
358 &idmap_alloc_ldap
->user_dn
);
359 if ( !NT_STATUS_IS_OK(ret
) ) {
360 DEBUG(1,("idmap_ldap_alloc_init: Failed to get connection "
361 "credentials (%s)\n", nt_errstr(ret
)));
365 /* see if the idmap suffix and sub entries exists */
367 ret
= verify_idpool();
370 if ( !NT_STATUS_IS_OK( ret
) )
371 TALLOC_FREE( idmap_alloc_ldap
);
376 /********************************
377 Allocate a new uid or gid
378 ********************************/
380 static NTSTATUS
idmap_ldap_allocate_id(struct unixid
*xid
)
383 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
384 int rc
= LDAP_SERVER_DOWN
;
386 LDAPMessage
*result
= NULL
;
387 LDAPMessage
*entry
= NULL
;
388 LDAPMod
**mods
= NULL
;
392 const char *dn
= NULL
;
393 const char **attr_list
;
396 /* Only do query if we are online */
397 if (idmap_is_offline()) {
398 return NT_STATUS_FILE_IS_OFFLINE
;
401 if ( ! idmap_alloc_ldap
) {
402 return NT_STATUS_UNSUCCESSFUL
;
405 ctx
= talloc_new(idmap_alloc_ldap
);
407 DEBUG(0, ("Out of memory!\n"));
408 return NT_STATUS_NO_MEMORY
;
415 type
= get_attr_key2string(idpool_attr_list
,
416 LDAP_ATTR_UIDNUMBER
);
420 type
= get_attr_key2string(idpool_attr_list
,
421 LDAP_ATTR_GIDNUMBER
);
425 DEBUG(2, ("Invalid ID type (0x%x)\n", xid
->type
));
426 return NT_STATUS_INVALID_PARAMETER
;
429 filter
= talloc_asprintf(ctx
, "(objectClass=%s)", LDAP_OBJ_IDPOOL
);
430 CHECK_ALLOC_DONE(filter
);
432 attr_list
= get_attr_list(ctx
, idpool_attr_list
);
433 CHECK_ALLOC_DONE(attr_list
);
435 DEBUG(10, ("Search of the id pool (filter: %s)\n", filter
));
437 rc
= smbldap_search(idmap_alloc_ldap
->smbldap_state
,
438 idmap_alloc_ldap
->suffix
,
439 LDAP_SCOPE_SUBTREE
, filter
,
440 attr_list
, 0, &result
);
442 if (rc
!= LDAP_SUCCESS
) {
443 DEBUG(0,("%s object not found\n", LDAP_OBJ_IDPOOL
));
447 talloc_autofree_ldapmsg(ctx
, result
);
449 count
= ldap_count_entries(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
452 DEBUG(0,("Single %s object not found\n", LDAP_OBJ_IDPOOL
));
456 entry
= ldap_first_entry(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
459 dn
= smbldap_talloc_dn(ctx
,
460 idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
466 if ( ! (id_str
= smbldap_talloc_single_attribute(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
467 entry
, type
, ctx
))) {
468 DEBUG(0,("%s attribute not found\n", type
));
472 DEBUG(0,("Out of memory\n"));
473 ret
= NT_STATUS_NO_MEMORY
;
477 xid
->id
= strtoul(id_str
, NULL
, 10);
479 /* make sure we still have room to grow */
483 if (xid
->id
> idmap_alloc_ldap
->high_uid
) {
484 DEBUG(0,("Cannot allocate uid above %lu!\n",
485 (unsigned long)idmap_alloc_ldap
->high_uid
));
491 if (xid
->id
> idmap_alloc_ldap
->high_gid
) {
492 DEBUG(0,("Cannot allocate gid above %lu!\n",
493 (unsigned long)idmap_alloc_ldap
->high_uid
));
503 new_id_str
= talloc_asprintf(ctx
, "%lu", (unsigned long)xid
->id
+ 1);
505 DEBUG(0,("Out of memory\n"));
506 ret
= NT_STATUS_NO_MEMORY
;
510 smbldap_set_mod(&mods
, LDAP_MOD_DELETE
, type
, id_str
);
511 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, type
, new_id_str
);
514 DEBUG(0,("smbldap_set_mod() failed.\n"));
518 DEBUG(10, ("Try to atomically increment the id (%s -> %s)\n",
519 id_str
, new_id_str
));
521 rc
= smbldap_modify(idmap_alloc_ldap
->smbldap_state
, dn
, mods
);
523 ldap_mods_free(mods
, True
);
525 if (rc
!= LDAP_SUCCESS
) {
526 DEBUG(1,("Failed to allocate new %s. "
527 "smbldap_modify() failed.\n", type
));
538 /**********************************
539 Get current highest id.
540 **********************************/
542 static NTSTATUS
idmap_ldap_get_hwm(struct unixid
*xid
)
545 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
546 int rc
= LDAP_SERVER_DOWN
;
548 LDAPMessage
*result
= NULL
;
549 LDAPMessage
*entry
= NULL
;
552 const char **attr_list
;
555 /* Only do query if we are online */
556 if (idmap_is_offline()) {
557 return NT_STATUS_FILE_IS_OFFLINE
;
560 if ( ! idmap_alloc_ldap
) {
561 return NT_STATUS_UNSUCCESSFUL
;
564 memctx
= talloc_new(idmap_alloc_ldap
);
566 DEBUG(0, ("Out of memory!\n"));
567 return NT_STATUS_NO_MEMORY
;
574 type
= get_attr_key2string(idpool_attr_list
,
575 LDAP_ATTR_UIDNUMBER
);
579 type
= get_attr_key2string(idpool_attr_list
,
580 LDAP_ATTR_GIDNUMBER
);
584 DEBUG(2, ("Invalid ID type (0x%x)\n", xid
->type
));
585 return NT_STATUS_INVALID_PARAMETER
;
588 filter
= talloc_asprintf(memctx
, "(objectClass=%s)", LDAP_OBJ_IDPOOL
);
589 CHECK_ALLOC_DONE(filter
);
591 attr_list
= get_attr_list(memctx
, idpool_attr_list
);
592 CHECK_ALLOC_DONE(attr_list
);
594 rc
= smbldap_search(idmap_alloc_ldap
->smbldap_state
,
595 idmap_alloc_ldap
->suffix
,
596 LDAP_SCOPE_SUBTREE
, filter
,
597 attr_list
, 0, &result
);
599 if (rc
!= LDAP_SUCCESS
) {
600 DEBUG(0,("%s object not found\n", LDAP_OBJ_IDPOOL
));
604 talloc_autofree_ldapmsg(memctx
, result
);
606 count
= ldap_count_entries(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
609 DEBUG(0,("Single %s object not found\n", LDAP_OBJ_IDPOOL
));
613 entry
= ldap_first_entry(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
616 id_str
= smbldap_talloc_single_attribute(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
617 entry
, type
, memctx
);
619 DEBUG(0,("%s attribute not found\n", type
));
623 DEBUG(0,("Out of memory\n"));
624 ret
= NT_STATUS_NO_MEMORY
;
628 xid
->id
= strtoul(id_str
, NULL
, 10);
635 /**********************************
637 **********************************/
639 static NTSTATUS
idmap_ldap_set_hwm(struct unixid
*xid
)
642 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
643 int rc
= LDAP_SERVER_DOWN
;
645 LDAPMessage
*result
= NULL
;
646 LDAPMessage
*entry
= NULL
;
647 LDAPMod
**mods
= NULL
;
650 const char *dn
= NULL
;
651 const char **attr_list
;
654 /* Only do query if we are online */
655 if (idmap_is_offline()) {
656 return NT_STATUS_FILE_IS_OFFLINE
;
659 if ( ! idmap_alloc_ldap
) {
660 return NT_STATUS_UNSUCCESSFUL
;
663 ctx
= talloc_new(idmap_alloc_ldap
);
665 DEBUG(0, ("Out of memory!\n"));
666 return NT_STATUS_NO_MEMORY
;
673 type
= get_attr_key2string(idpool_attr_list
,
674 LDAP_ATTR_UIDNUMBER
);
678 type
= get_attr_key2string(idpool_attr_list
,
679 LDAP_ATTR_GIDNUMBER
);
683 DEBUG(2, ("Invalid ID type (0x%x)\n", xid
->type
));
684 return NT_STATUS_INVALID_PARAMETER
;
687 filter
= talloc_asprintf(ctx
, "(objectClass=%s)", LDAP_OBJ_IDPOOL
);
688 CHECK_ALLOC_DONE(filter
);
690 attr_list
= get_attr_list(ctx
, idpool_attr_list
);
691 CHECK_ALLOC_DONE(attr_list
);
693 rc
= smbldap_search(idmap_alloc_ldap
->smbldap_state
,
694 idmap_alloc_ldap
->suffix
,
695 LDAP_SCOPE_SUBTREE
, filter
,
696 attr_list
, 0, &result
);
698 if (rc
!= LDAP_SUCCESS
) {
699 DEBUG(0,("%s object not found\n", LDAP_OBJ_IDPOOL
));
703 talloc_autofree_ldapmsg(ctx
, result
);
705 count
= ldap_count_entries(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
708 DEBUG(0,("Single %s object not found\n", LDAP_OBJ_IDPOOL
));
712 entry
= ldap_first_entry(idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
715 dn
= smbldap_talloc_dn(ctx
,
716 idmap_alloc_ldap
->smbldap_state
->ldap_struct
,
722 new_id_str
= talloc_asprintf(ctx
, "%lu", (unsigned long)xid
->id
);
724 DEBUG(0,("Out of memory\n"));
725 ret
= NT_STATUS_NO_MEMORY
;
729 smbldap_set_mod(&mods
, LDAP_MOD_REPLACE
, type
, new_id_str
);
732 DEBUG(0,("smbldap_set_mod() failed.\n"));
736 rc
= smbldap_modify(idmap_alloc_ldap
->smbldap_state
, dn
, mods
);
738 ldap_mods_free(mods
, True
);
740 if (rc
!= LDAP_SUCCESS
) {
741 DEBUG(1,("Failed to allocate new %s. "
742 "smbldap_modify() failed.\n", type
));
753 /**********************************
754 Close idmap ldap alloc
755 **********************************/
757 static NTSTATUS
idmap_ldap_alloc_close(void)
759 if (idmap_alloc_ldap
) {
760 smbldap_free_struct(&idmap_alloc_ldap
->smbldap_state
);
761 DEBUG(5,("The connection to the LDAP server was closed\n"));
762 /* maybe free the results here --metze */
763 TALLOC_FREE(idmap_alloc_ldap
);
769 /**********************************************************************
770 IDMAP MAPPING LDAP BACKEND
771 **********************************************************************/
773 static int idmap_ldap_close_destructor(struct idmap_ldap_context
*ctx
)
775 smbldap_free_struct(&ctx
->smbldap_state
);
776 DEBUG(5,("The connection to the LDAP server was closed\n"));
777 /* maybe free the results here --metze */
782 /********************************
783 Initialise idmap database.
784 ********************************/
786 static NTSTATUS
idmap_ldap_db_init(struct idmap_domain
*dom
,
790 struct idmap_ldap_context
*ctx
= NULL
;
791 char *config_option
= NULL
;
792 const char *range
= NULL
;
793 const char *tmp
= NULL
;
795 /* Only do init if we are online */
796 if (idmap_is_offline()) {
797 return NT_STATUS_FILE_IS_OFFLINE
;
800 ctx
= TALLOC_ZERO_P(dom
, struct idmap_ldap_context
);
802 DEBUG(0, ("Out of memory!\n"));
803 return NT_STATUS_NO_MEMORY
;
806 config_option
= talloc_asprintf(ctx
, "idmap config %s", dom
->name
);
807 if ( ! config_option
) {
808 DEBUG(0, ("Out of memory!\n"));
809 ret
= NT_STATUS_NO_MEMORY
;
814 range
= lp_parm_const_string(-1, config_option
, "range", NULL
);
815 if (range
&& range
[0]) {
816 if ((sscanf(range
, "%u - %u", &ctx
->filter_low_id
,
817 &ctx
->filter_high_id
) != 2) ||
818 (ctx
->filter_low_id
> ctx
->filter_high_id
)) {
819 DEBUG(1, ("ERROR: invalid filter range [%s]", range
));
820 ctx
->filter_low_id
= 0;
821 ctx
->filter_high_id
= 0;
825 if (params
!= NULL
) {
826 /* assume location is the only parameter */
827 ctx
->url
= talloc_strdup(ctx
, params
);
829 tmp
= lp_parm_const_string(-1, config_option
, "ldap_url", NULL
);
832 DEBUG(1, ("ERROR: missing idmap ldap url\n"));
833 ret
= NT_STATUS_UNSUCCESSFUL
;
837 ctx
->url
= talloc_strdup(ctx
, tmp
);
839 CHECK_ALLOC_DONE(ctx
->url
);
841 tmp
= lp_parm_const_string(-1, config_option
, "ldap_base_dn", NULL
);
842 if ( ! tmp
|| ! *tmp
) {
843 tmp
= lp_ldap_idmap_suffix();
845 DEBUG(1, ("ERROR: missing idmap ldap suffix\n"));
846 ret
= NT_STATUS_UNSUCCESSFUL
;
851 ctx
->suffix
= talloc_strdup(ctx
, tmp
);
852 CHECK_ALLOC_DONE(ctx
->suffix
);
854 ret
= smbldap_init(ctx
, winbind_event_context(), ctx
->url
,
855 &ctx
->smbldap_state
);
856 if (!NT_STATUS_IS_OK(ret
)) {
857 DEBUG(1, ("ERROR: smbldap_init (%s) failed!\n", ctx
->url
));
861 ret
= get_credentials( ctx
, ctx
->smbldap_state
, config_option
,
862 dom
, &ctx
->user_dn
);
863 if ( !NT_STATUS_IS_OK(ret
) ) {
864 DEBUG(1,("idmap_ldap_db_init: Failed to get connection "
865 "credentials (%s)\n", nt_errstr(ret
)));
869 /* set the destructor on the context, so that resource are properly
870 freed if the contexts is released */
872 talloc_set_destructor(ctx
, idmap_ldap_close_destructor
);
874 dom
->private_data
= ctx
;
876 talloc_free(config_option
);
885 /* max number of ids requested per batch query */
886 #define IDMAP_LDAP_MAX_IDS 30
888 /**********************************
889 lookup a set of unix ids.
890 **********************************/
892 /* this function searches up to IDMAP_LDAP_MAX_IDS entries
893 * in maps for a match */
894 static struct id_map
*find_map_by_id(struct id_map
**maps
,
900 for (i
= 0; i
< IDMAP_LDAP_MAX_IDS
; i
++) {
901 if (maps
[i
] == NULL
) { /* end of the run */
904 if ((maps
[i
]->xid
.type
== type
) && (maps
[i
]->xid
.id
== id
)) {
912 static NTSTATUS
idmap_ldap_unixids_to_sids(struct idmap_domain
*dom
,
917 struct idmap_ldap_context
*ctx
;
918 LDAPMessage
*result
= NULL
;
919 const char *uidNumber
;
920 const char *gidNumber
;
921 const char **attr_list
;
930 /* Only do query if we are online */
931 if (idmap_is_offline()) {
932 return NT_STATUS_FILE_IS_OFFLINE
;
935 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ldap_context
);
937 memctx
= talloc_new(ctx
);
939 DEBUG(0, ("Out of memory!\n"));
940 return NT_STATUS_NO_MEMORY
;
943 uidNumber
= get_attr_key2string(idpool_attr_list
, LDAP_ATTR_UIDNUMBER
);
944 gidNumber
= get_attr_key2string(idpool_attr_list
, LDAP_ATTR_GIDNUMBER
);
946 attr_list
= get_attr_list(memctx
, sidmap_attr_list
);
949 /* if we are requested just one mapping use the simple filter */
951 filter
= talloc_asprintf(memctx
, "(&(objectClass=%s)(%s=%lu))",
952 LDAP_OBJ_IDMAP_ENTRY
,
953 (ids
[0]->xid
.type
==ID_TYPE_UID
)?uidNumber
:gidNumber
,
954 (unsigned long)ids
[0]->xid
.id
);
955 CHECK_ALLOC_DONE(filter
);
956 DEBUG(10, ("Filter: [%s]\n", filter
));
958 /* multiple mappings */
966 filter
= talloc_asprintf(memctx
,
967 "(&(objectClass=%s)(|",
968 LDAP_OBJ_IDMAP_ENTRY
);
969 CHECK_ALLOC_DONE(filter
);
972 for (i
= 0; (i
< IDMAP_LDAP_MAX_IDS
) && ids
[idx
]; i
++, idx
++) {
973 filter
= talloc_asprintf_append_buffer(filter
, "(%s=%lu)",
974 (ids
[idx
]->xid
.type
==ID_TYPE_UID
)?uidNumber
:gidNumber
,
975 (unsigned long)ids
[idx
]->xid
.id
);
976 CHECK_ALLOC_DONE(filter
);
978 filter
= talloc_asprintf_append_buffer(filter
, "))");
979 CHECK_ALLOC_DONE(filter
);
980 DEBUG(10, ("Filter: [%s]\n", filter
));
986 rc
= smbldap_search(ctx
->smbldap_state
, ctx
->suffix
, LDAP_SCOPE_SUBTREE
,
987 filter
, attr_list
, 0, &result
);
989 if (rc
!= LDAP_SUCCESS
) {
990 DEBUG(3,("Failure looking up ids (%s)\n", ldap_err2string(rc
)));
991 ret
= NT_STATUS_UNSUCCESSFUL
;
995 count
= ldap_count_entries(ctx
->smbldap_state
->ldap_struct
, result
);
998 DEBUG(10, ("NO SIDs found\n"));
1001 for (i
= 0; i
< count
; i
++) {
1002 LDAPMessage
*entry
= NULL
;
1003 char *sidstr
= NULL
;
1009 if (i
== 0) { /* first entry */
1010 entry
= ldap_first_entry(ctx
->smbldap_state
->ldap_struct
,
1012 } else { /* following ones */
1013 entry
= ldap_next_entry(ctx
->smbldap_state
->ldap_struct
,
1017 DEBUG(2, ("ERROR: Unable to fetch ldap entries "
1022 /* first check if the SID is present */
1023 sidstr
= smbldap_talloc_single_attribute(
1024 ctx
->smbldap_state
->ldap_struct
,
1025 entry
, LDAP_ATTRIBUTE_SID
, memctx
);
1026 if ( ! sidstr
) { /* no sid, skip entry */
1027 DEBUG(2, ("WARNING SID not found on entry\n"));
1031 /* now try to see if it is a uid, if not try with a gid
1032 * (gid is more common, but in case both uidNumber and
1033 * gidNumber are returned the SID is mapped to the uid
1036 tmp
= smbldap_talloc_single_attribute(
1037 ctx
->smbldap_state
->ldap_struct
,
1038 entry
, uidNumber
, memctx
);
1041 tmp
= smbldap_talloc_single_attribute(
1042 ctx
->smbldap_state
->ldap_struct
,
1043 entry
, gidNumber
, memctx
);
1045 if ( ! tmp
) { /* wow very strange entry, how did it match ? */
1046 DEBUG(5, ("Unprobable match on (%s), no uidNumber, "
1047 "nor gidNumber returned\n", sidstr
));
1048 TALLOC_FREE(sidstr
);
1052 id
= strtoul(tmp
, NULL
, 10);
1054 (ctx
->filter_low_id
&& (id
< ctx
->filter_low_id
)) ||
1055 (ctx
->filter_high_id
&& (id
> ctx
->filter_high_id
))) {
1056 DEBUG(5, ("Requested id (%u) out of range (%u - %u). "
1058 ctx
->filter_low_id
, ctx
->filter_high_id
));
1059 TALLOC_FREE(sidstr
);
1065 map
= find_map_by_id(&ids
[bidx
], type
, id
);
1067 DEBUG(2, ("WARNING: couldn't match sid (%s) "
1068 "with requested ids\n", sidstr
));
1069 TALLOC_FREE(sidstr
);
1073 if ( ! string_to_sid(map
->sid
, sidstr
)) {
1074 DEBUG(2, ("ERROR: Invalid SID on entry\n"));
1075 TALLOC_FREE(sidstr
);
1078 TALLOC_FREE(sidstr
);
1081 map
->status
= ID_MAPPED
;
1083 DEBUG(10, ("Mapped %s -> %lu (%d)\n", sid_string_dbg(map
->sid
),
1084 (unsigned long)map
->xid
.id
, map
->xid
.type
));
1087 /* free the ldap results */
1089 ldap_msgfree(result
);
1093 if (multi
&& ids
[idx
]) { /* still some values to map */
1099 /* mark all unknwon/expired ones as unmapped */
1100 for (i
= 0; ids
[i
]; i
++) {
1101 if (ids
[i
]->status
!= ID_MAPPED
)
1102 ids
[i
]->status
= ID_UNMAPPED
;
1106 talloc_free(memctx
);
1110 /**********************************
1111 lookup a set of sids.
1112 **********************************/
1114 /* this function searches up to IDMAP_LDAP_MAX_IDS entries
1115 * in maps for a match */
1116 static struct id_map
*find_map_by_sid(struct id_map
**maps
, DOM_SID
*sid
)
1120 for (i
= 0; i
< IDMAP_LDAP_MAX_IDS
; i
++) {
1121 if (maps
[i
] == NULL
) { /* end of the run */
1124 if (sid_equal(maps
[i
]->sid
, sid
)) {
1132 static NTSTATUS
idmap_ldap_sids_to_unixids(struct idmap_domain
*dom
,
1133 struct id_map
**ids
)
1135 LDAPMessage
*entry
= NULL
;
1138 struct idmap_ldap_context
*ctx
;
1139 LDAPMessage
*result
= NULL
;
1140 const char *uidNumber
;
1141 const char *gidNumber
;
1142 const char **attr_list
;
1143 char *filter
= NULL
;
1151 /* Only do query if we are online */
1152 if (idmap_is_offline()) {
1153 return NT_STATUS_FILE_IS_OFFLINE
;
1156 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ldap_context
);
1158 memctx
= talloc_new(ctx
);
1160 DEBUG(0, ("Out of memory!\n"));
1161 return NT_STATUS_NO_MEMORY
;
1164 uidNumber
= get_attr_key2string(idpool_attr_list
, LDAP_ATTR_UIDNUMBER
);
1165 gidNumber
= get_attr_key2string(idpool_attr_list
, LDAP_ATTR_GIDNUMBER
);
1167 attr_list
= get_attr_list(memctx
, sidmap_attr_list
);
1170 /* if we are requested just one mapping use the simple filter */
1172 filter
= talloc_asprintf(memctx
, "(&(objectClass=%s)(%s=%s))",
1173 LDAP_OBJ_IDMAP_ENTRY
,
1175 sid_string_talloc(memctx
, ids
[0]->sid
));
1176 CHECK_ALLOC_DONE(filter
);
1177 DEBUG(10, ("Filter: [%s]\n", filter
));
1179 /* multiple mappings */
1186 TALLOC_FREE(filter
);
1187 filter
= talloc_asprintf(memctx
,
1188 "(&(objectClass=%s)(|",
1189 LDAP_OBJ_IDMAP_ENTRY
);
1190 CHECK_ALLOC_DONE(filter
);
1193 for (i
= 0; (i
< IDMAP_LDAP_MAX_IDS
) && ids
[idx
]; i
++, idx
++) {
1194 filter
= talloc_asprintf_append_buffer(filter
, "(%s=%s)",
1196 sid_string_talloc(memctx
,
1198 CHECK_ALLOC_DONE(filter
);
1200 filter
= talloc_asprintf_append_buffer(filter
, "))");
1201 CHECK_ALLOC_DONE(filter
);
1202 DEBUG(10, ("Filter: [%s]", filter
));
1208 rc
= smbldap_search(ctx
->smbldap_state
, ctx
->suffix
, LDAP_SCOPE_SUBTREE
,
1209 filter
, attr_list
, 0, &result
);
1211 if (rc
!= LDAP_SUCCESS
) {
1212 DEBUG(3,("Failure looking up sids (%s)\n",
1213 ldap_err2string(rc
)));
1214 ret
= NT_STATUS_UNSUCCESSFUL
;
1218 count
= ldap_count_entries(ctx
->smbldap_state
->ldap_struct
, result
);
1221 DEBUG(10, ("NO SIDs found\n"));
1224 for (i
= 0; i
< count
; i
++) {
1225 char *sidstr
= NULL
;
1232 if (i
== 0) { /* first entry */
1233 entry
= ldap_first_entry(ctx
->smbldap_state
->ldap_struct
,
1235 } else { /* following ones */
1236 entry
= ldap_next_entry(ctx
->smbldap_state
->ldap_struct
,
1240 DEBUG(2, ("ERROR: Unable to fetch ldap entries "
1245 /* first check if the SID is present */
1246 sidstr
= smbldap_talloc_single_attribute(
1247 ctx
->smbldap_state
->ldap_struct
,
1248 entry
, LDAP_ATTRIBUTE_SID
, memctx
);
1249 if ( ! sidstr
) { /* no sid ??, skip entry */
1250 DEBUG(2, ("WARNING SID not found on entry\n"));
1254 if ( ! string_to_sid(&sid
, sidstr
)) {
1255 DEBUG(2, ("ERROR: Invalid SID on entry\n"));
1256 TALLOC_FREE(sidstr
);
1260 map
= find_map_by_sid(&ids
[bidx
], &sid
);
1262 DEBUG(2, ("WARNING: couldn't find entry sid (%s) "
1264 TALLOC_FREE(sidstr
);
1268 TALLOC_FREE(sidstr
);
1270 /* now try to see if it is a uid, if not try with a gid
1271 * (gid is more common, but in case both uidNumber and
1272 * gidNumber are returned the SID is mapped to the uid
1275 tmp
= smbldap_talloc_single_attribute(
1276 ctx
->smbldap_state
->ldap_struct
,
1277 entry
, uidNumber
, memctx
);
1280 tmp
= smbldap_talloc_single_attribute(
1281 ctx
->smbldap_state
->ldap_struct
,
1282 entry
, gidNumber
, memctx
);
1284 if ( ! tmp
) { /* no ids ?? */
1285 DEBUG(5, ("no uidNumber, "
1286 "nor gidNumber attributes found\n"));
1290 id
= strtoul(tmp
, NULL
, 10);
1292 (ctx
->filter_low_id
&& (id
< ctx
->filter_low_id
)) ||
1293 (ctx
->filter_high_id
&& (id
> ctx
->filter_high_id
))) {
1294 DEBUG(5, ("Requested id (%u) out of range (%u - %u). "
1296 ctx
->filter_low_id
, ctx
->filter_high_id
));
1303 map
->xid
.type
= type
;
1305 map
->status
= ID_MAPPED
;
1307 DEBUG(10, ("Mapped %s -> %lu (%d)\n", sid_string_dbg(map
->sid
),
1308 (unsigned long)map
->xid
.id
, map
->xid
.type
));
1311 /* free the ldap results */
1313 ldap_msgfree(result
);
1317 if (multi
&& ids
[idx
]) { /* still some values to map */
1323 /* mark all unknwon/expired ones as unmapped */
1324 for (i
= 0; ids
[i
]; i
++) {
1325 if (ids
[i
]->status
!= ID_MAPPED
)
1326 ids
[i
]->status
= ID_UNMAPPED
;
1330 talloc_free(memctx
);
1334 /**********************************
1336 **********************************/
1338 /* TODO: change this: This function cannot be called to modify a mapping,
1339 * only set a new one */
1341 static NTSTATUS
idmap_ldap_set_mapping(struct idmap_domain
*dom
,
1342 const struct id_map
*map
)
1346 struct idmap_ldap_context
*ctx
;
1347 LDAPMessage
*entry
= NULL
;
1348 LDAPMod
**mods
= NULL
;
1355 /* Only do query if we are online */
1356 if (idmap_is_offline()) {
1357 return NT_STATUS_FILE_IS_OFFLINE
;
1360 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ldap_context
);
1362 switch(map
->xid
.type
) {
1364 type
= get_attr_key2string(sidmap_attr_list
,
1365 LDAP_ATTR_UIDNUMBER
);
1369 type
= get_attr_key2string(sidmap_attr_list
,
1370 LDAP_ATTR_GIDNUMBER
);
1374 return NT_STATUS_INVALID_PARAMETER
;
1377 memctx
= talloc_new(ctx
);
1379 DEBUG(0, ("Out of memory!\n"));
1380 return NT_STATUS_NO_MEMORY
;
1383 id_str
= talloc_asprintf(memctx
, "%lu", (unsigned long)map
->xid
.id
);
1384 CHECK_ALLOC_DONE(id_str
);
1386 sid
= talloc_strdup(memctx
, sid_string_talloc(memctx
, map
->sid
));
1387 CHECK_ALLOC_DONE(sid
);
1389 dn
= talloc_asprintf(memctx
, "%s=%s,%s",
1390 get_attr_key2string(sidmap_attr_list
, LDAP_ATTR_SID
),
1393 CHECK_ALLOC_DONE(dn
);
1395 smbldap_set_mod(&mods
, LDAP_MOD_ADD
,
1396 "objectClass", LDAP_OBJ_IDMAP_ENTRY
);
1398 smbldap_make_mod(ctx
->smbldap_state
->ldap_struct
,
1399 entry
, &mods
, type
, id_str
);
1401 smbldap_make_mod(ctx
->smbldap_state
->ldap_struct
, entry
, &mods
,
1402 get_attr_key2string(sidmap_attr_list
, LDAP_ATTR_SID
),
1406 DEBUG(2, ("ERROR: No mods?\n"));
1407 ret
= NT_STATUS_UNSUCCESSFUL
;
1411 /* TODO: remove conflicting mappings! */
1413 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", LDAP_OBJ_SID_ENTRY
);
1415 DEBUG(10, ("Set DN %s (%s -> %s)\n", dn
, sid
, id_str
));
1417 rc
= smbldap_add(ctx
->smbldap_state
, dn
, mods
);
1418 ldap_mods_free(mods
, True
);
1420 if (rc
!= LDAP_SUCCESS
) {
1421 char *ld_error
= NULL
;
1422 ldap_get_option(ctx
->smbldap_state
->ldap_struct
,
1423 LDAP_OPT_ERROR_STRING
, &ld_error
);
1424 DEBUG(0,("ldap_set_mapping_internals: Failed to add %s to %lu "
1425 "mapping [%s]\n", sid
,
1426 (unsigned long)map
->xid
.id
, type
));
1427 DEBUG(0, ("ldap_set_mapping_internals: Error was: %s (%s)\n",
1428 ld_error
? ld_error
: "(NULL)", ldap_err2string (rc
)));
1430 ldap_memfree(ld_error
);
1432 ret
= NT_STATUS_UNSUCCESSFUL
;
1436 DEBUG(10,("ldap_set_mapping: Successfully created mapping from %s to "
1437 "%lu [%s]\n", sid
, (unsigned long)map
->xid
.id
, type
));
1442 talloc_free(memctx
);
1446 /**********************************
1447 Close the idmap ldap instance
1448 **********************************/
1450 static NTSTATUS
idmap_ldap_close(struct idmap_domain
*dom
)
1452 struct idmap_ldap_context
*ctx
;
1454 if (dom
->private_data
) {
1455 ctx
= talloc_get_type(dom
->private_data
,
1456 struct idmap_ldap_context
);
1459 dom
->private_data
= NULL
;
1462 return NT_STATUS_OK
;
1465 static struct idmap_methods idmap_ldap_methods
= {
1467 .init
= idmap_ldap_db_init
,
1468 .unixids_to_sids
= idmap_ldap_unixids_to_sids
,
1469 .sids_to_unixids
= idmap_ldap_sids_to_unixids
,
1470 .set_mapping
= idmap_ldap_set_mapping
,
1471 .close_fn
= idmap_ldap_close
1474 static struct idmap_alloc_methods idmap_ldap_alloc_methods
= {
1476 .init
= idmap_ldap_alloc_init
,
1477 .allocate_id
= idmap_ldap_allocate_id
,
1478 .get_id_hwm
= idmap_ldap_get_hwm
,
1479 .set_id_hwm
= idmap_ldap_set_hwm
,
1480 .close_fn
= idmap_ldap_alloc_close
,
1481 /* .dump_data = TODO */
1484 NTSTATUS
idmap_alloc_ldap_init(void)
1486 return smb_register_idmap_alloc(SMB_IDMAP_INTERFACE_VERSION
, "ldap",
1487 &idmap_ldap_alloc_methods
);
1490 NTSTATUS
idmap_ldap_init(void)
1494 /* FIXME: bad hack to actually register also the alloc_ldap module
1495 * without changining configure.in */
1496 ret
= idmap_alloc_ldap_init();
1497 if (! NT_STATUS_IS_OK(ret
)) {
1500 return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION
, "ldap",
1501 &idmap_ldap_methods
);