2 * idmap_ad: map between Active Directory and RFC 2307 or "Services for Unix" (SFU) Accounts
4 * Unix SMB/CIFS implementation.
6 * Winbind ADS backend functions
8 * Copyright (C) Andrew Tridgell 2001
9 * Copyright (C) Andrew Bartlett <abartlet@samba.org> 2003
10 * Copyright (C) Gerald (Jerry) Carter 2004-2007
11 * Copyright (C) Luke Howard 2001-2004
12 * Copyright (C) Michael Adam 2008
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 3 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, see <http://www.gnu.org/licenses/>.
32 #define DBGC_CLASS DBGC_IDMAP
34 #define WINBIND_CCACHE_NAME "MEMORY:winbind_ccache"
36 #define IDMAP_AD_MAX_IDS 30
37 #define CHECK_ALLOC_DONE(mem) do { \
39 DEBUG(0, ("Out of memory!\n")); \
40 ret = NT_STATUS_NO_MEMORY; \
45 struct idmap_ad_context
{
46 uint32_t filter_low_id
;
47 uint32_t filter_high_id
;
49 struct posix_schema
*ad_schema
;
50 enum wb_posix_mapping ad_map_type
; /* WB_POSIX_MAP_UNKNOWN */
53 NTSTATUS
init_module(void);
55 /************************************************************************
56 ***********************************************************************/
58 static ADS_STATUS
ad_idmap_cached_connection_internal(struct idmap_domain
*dom
)
64 struct sockaddr_storage dc_ip
;
65 struct idmap_ad_context
*ctx
;
66 char *ldap_server
= NULL
;
68 struct winbindd_domain
*wb_dom
;
70 DEBUG(10, ("ad_idmap_cached_connection: called for domain '%s'\n",
73 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ad_context
);
75 if (ctx
->ads
!= NULL
) {
78 time_t now
= time(NULL
);
82 expire
= MIN(ads
->auth
.tgt_expire
, ads
->auth
.tgs_expire
);
84 /* check for a valid structure */
85 DEBUG(7, ("Current tickets expire in %d seconds (at %d, time is now %d)\n",
86 (uint32
)expire
-(uint32
)now
, (uint32
) expire
, (uint32
) now
));
88 if ( ads
->config
.realm
&& (expire
> time(NULL
))) {
91 /* we own this ADS_STRUCT so make sure it goes away */
92 DEBUG(7,("Deleting expired krb5 credential cache\n"));
95 ads_kdestroy(WINBIND_CCACHE_NAME
);
97 TALLOC_FREE( ctx
->ad_schema
);
102 /* we don't want this to affect the users ccache */
103 setenv("KRB5CCNAME", WINBIND_CCACHE_NAME
, 1);
107 * At this point we only have the NetBIOS domain name.
108 * Check if we can get server nam and realm from SAF cache
109 * and the domain list.
111 ldap_server
= saf_fetch(dom
->name
);
112 DEBUG(10, ("ldap_server from saf cache: '%s'\n", ldap_server
?ldap_server
:""));
114 wb_dom
= find_domain_from_name_noinit(dom
->name
);
115 if (wb_dom
== NULL
) {
116 DEBUG(10, ("find_domain_from_name_noinit did not find domain '%s'\n",
120 DEBUG(10, ("find_domain_from_name_noinit found realm '%s' for "
121 " domain '%s'\n", wb_dom
->alt_name
, dom
->name
));
122 realm
= wb_dom
->alt_name
;
125 if ( (ads
= ads_init(realm
, dom
->name
, ldap_server
)) == NULL
) {
126 DEBUG(1,("ads_init failed\n"));
127 return ADS_ERROR_NT(NT_STATUS_NO_MEMORY
);
130 /* the machine acct password might have change - fetch it every time */
131 SAFE_FREE(ads
->auth
.password
);
132 ads
->auth
.password
= secrets_fetch_machine_password(lp_workgroup(), NULL
, NULL
);
134 SAFE_FREE(ads
->auth
.realm
);
135 ads
->auth
.realm
= SMB_STRDUP(lp_realm());
137 /* setup server affinity */
139 get_dc_name(dom
->name
, realm
, dc_name
, &dc_ip
);
141 status
= ads_connect(ads
);
142 if (!ADS_ERR_OK(status
)) {
143 DEBUG(1, ("ad_idmap_init: failed to connect to AD\n"));
148 ads
->is_mine
= False
;
155 /************************************************************************
156 ***********************************************************************/
158 static ADS_STATUS
ad_idmap_cached_connection(struct idmap_domain
*dom
)
161 struct idmap_ad_context
* ctx
;
163 status
= ad_idmap_cached_connection_internal(dom
);
164 if (!ADS_ERR_OK(status
)) {
168 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ad_context
);
170 /* if we have a valid ADS_STRUCT and the schema model is
171 defined, then we can return here. */
173 if ( ctx
->ad_schema
) {
177 /* Otherwise, set the schema model */
179 if ( (ctx
->ad_map_type
== WB_POSIX_MAP_SFU
) ||
180 (ctx
->ad_map_type
== WB_POSIX_MAP_SFU20
) ||
181 (ctx
->ad_map_type
== WB_POSIX_MAP_RFC2307
) )
183 status
= ads_check_posix_schema_mapping(NULL
, ctx
->ads
, ctx
->ad_map_type
, &ctx
->ad_schema
);
184 if ( !ADS_ERR_OK(status
) ) {
185 DEBUG(2,("ad_idmap_cached_connection: Failed to obtain schema details!\n"));
192 /************************************************************************
193 ***********************************************************************/
195 static NTSTATUS
idmap_ad_initialize(struct idmap_domain
*dom
,
198 struct idmap_ad_context
*ctx
;
200 const char *range
= NULL
;
201 const char *schema_mode
= NULL
;
203 if ( (ctx
= TALLOC_ZERO_P(dom
, struct idmap_ad_context
)) == NULL
) {
204 DEBUG(0, ("Out of memory!\n"));
205 return NT_STATUS_NO_MEMORY
;
208 if ( (config_option
= talloc_asprintf(ctx
, "idmap config %s", dom
->name
)) == NULL
) {
209 DEBUG(0, ("Out of memory!\n"));
211 return NT_STATUS_NO_MEMORY
;
215 range
= lp_parm_const_string(-1, config_option
, "range", NULL
);
216 if (range
&& range
[0]) {
217 if ((sscanf(range
, "%u - %u", &ctx
->filter_low_id
, &ctx
->filter_high_id
) != 2) ||
218 (ctx
->filter_low_id
> ctx
->filter_high_id
)) {
219 DEBUG(1, ("ERROR: invalid filter range [%s]", range
));
220 ctx
->filter_low_id
= 0;
221 ctx
->filter_high_id
= 0;
225 /* default map type */
226 ctx
->ad_map_type
= WB_POSIX_MAP_RFC2307
;
229 schema_mode
= lp_parm_const_string(-1, config_option
, "schema_mode", NULL
);
230 if ( schema_mode
&& schema_mode
[0] ) {
231 if ( strequal(schema_mode
, "sfu") )
232 ctx
->ad_map_type
= WB_POSIX_MAP_SFU
;
233 else if ( strequal(schema_mode
, "sfu20" ) )
234 ctx
->ad_map_type
= WB_POSIX_MAP_SFU20
;
235 else if ( strequal(schema_mode
, "rfc2307" ) )
236 ctx
->ad_map_type
= WB_POSIX_MAP_RFC2307
;
238 DEBUG(0,("idmap_ad_initialize: Unknown schema_mode (%s)\n",
242 dom
->private_data
= ctx
;
244 talloc_free(config_option
);
249 /************************************************************************
250 Search up to IDMAP_AD_MAX_IDS entries in maps for a match.
251 ***********************************************************************/
253 static struct id_map
*find_map_by_id(struct id_map
**maps
, enum id_type type
, uint32_t id
)
257 for (i
= 0; maps
[i
] && i
<IDMAP_AD_MAX_IDS
; i
++) {
258 if ((maps
[i
]->xid
.type
== type
) && (maps
[i
]->xid
.id
== id
)) {
266 /************************************************************************
267 Search up to IDMAP_AD_MAX_IDS entries in maps for a match
268 ***********************************************************************/
270 static struct id_map
*find_map_by_sid(struct id_map
**maps
, DOM_SID
*sid
)
274 for (i
= 0; maps
[i
] && i
<IDMAP_AD_MAX_IDS
; i
++) {
275 if (sid_equal(maps
[i
]->sid
, sid
)) {
283 /************************************************************************
284 ***********************************************************************/
286 static NTSTATUS
idmap_ad_unixids_to_sids(struct idmap_domain
*dom
, struct id_map
**ids
)
290 struct idmap_ad_context
*ctx
;
292 const char *attrs
[] = { "sAMAccountType",
294 NULL
, /* uidnumber */
295 NULL
, /* gidnumber */
297 LDAPMessage
*res
= NULL
;
298 LDAPMessage
*entry
= NULL
;
304 char *u_filter
= NULL
;
305 char *g_filter
= NULL
;
307 /* initialize the status to avoid suprise */
308 for (i
= 0; ids
[i
]; i
++) {
309 ids
[i
]->status
= ID_UNKNOWN
;
312 /* Only do query if we are online */
313 if (idmap_is_offline()) {
314 return NT_STATUS_FILE_IS_OFFLINE
;
317 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ad_context
);
319 if ( (memctx
= talloc_new(ctx
)) == NULL
) {
320 DEBUG(0, ("Out of memory!\n"));
321 return NT_STATUS_NO_MEMORY
;
324 rc
= ad_idmap_cached_connection(dom
);
325 if (!ADS_ERR_OK(rc
)) {
326 DEBUG(1, ("ADS uninitialized: %s\n", ads_errstr(rc
)));
327 ret
= NT_STATUS_UNSUCCESSFUL
;
328 /* ret = ads_ntstatus(rc); */
332 attrs
[2] = ctx
->ad_schema
->posix_uidnumber_attr
;
333 attrs
[3] = ctx
->ad_schema
->posix_gidnumber_attr
;
337 for (i
= 0; (i
< IDMAP_AD_MAX_IDS
) && ids
[idx
]; i
++, idx
++) {
338 switch (ids
[idx
]->xid
.type
) {
341 u_filter
= talloc_asprintf(memctx
, "(&(|"
342 "(sAMAccountType=%d)"
343 "(sAMAccountType=%d)"
344 "(sAMAccountType=%d))(|",
345 ATYPE_NORMAL_ACCOUNT
,
346 ATYPE_WORKSTATION_TRUST
,
347 ATYPE_INTERDOMAIN_TRUST
);
349 u_filter
= talloc_asprintf_append_buffer(u_filter
, "(%s=%lu)",
350 ctx
->ad_schema
->posix_uidnumber_attr
,
351 (unsigned long)ids
[idx
]->xid
.id
);
352 CHECK_ALLOC_DONE(u_filter
);
357 g_filter
= talloc_asprintf(memctx
, "(&(|"
358 "(sAMAccountType=%d)"
359 "(sAMAccountType=%d))(|",
360 ATYPE_SECURITY_GLOBAL_GROUP
,
361 ATYPE_SECURITY_LOCAL_GROUP
);
363 g_filter
= talloc_asprintf_append_buffer(g_filter
, "(%s=%lu)",
364 ctx
->ad_schema
->posix_gidnumber_attr
,
365 (unsigned long)ids
[idx
]->xid
.id
);
366 CHECK_ALLOC_DONE(g_filter
);
370 DEBUG(3, ("Error: mapping requested but Unknown ID type\n"));
371 ids
[idx
]->status
= ID_UNKNOWN
;
375 filter
= talloc_asprintf(memctx
, "(|");
376 CHECK_ALLOC_DONE(filter
);
378 filter
= talloc_asprintf_append_buffer(filter
, "%s))", u_filter
);
379 CHECK_ALLOC_DONE(filter
);
380 TALLOC_FREE(u_filter
);
383 filter
= talloc_asprintf_append_buffer(filter
, "%s))", g_filter
);
384 CHECK_ALLOC_DONE(filter
);
385 TALLOC_FREE(g_filter
);
387 filter
= talloc_asprintf_append_buffer(filter
, ")");
388 CHECK_ALLOC_DONE(filter
);
390 rc
= ads_search_retry(ctx
->ads
, &res
, filter
, attrs
);
391 if (!ADS_ERR_OK(rc
)) {
392 DEBUG(1, ("ERROR: ads search returned: %s\n", ads_errstr(rc
)));
393 ret
= NT_STATUS_UNSUCCESSFUL
;
397 if ( (count
= ads_count_replies(ctx
->ads
, res
)) == 0 ) {
398 DEBUG(10, ("No IDs found\n"));
402 for (i
= 0; (i
< count
) && entry
; i
++) {
409 if (i
== 0) { /* first entry */
410 entry
= ads_first_entry(ctx
->ads
, entry
);
411 } else { /* following ones */
412 entry
= ads_next_entry(ctx
->ads
, entry
);
416 DEBUG(2, ("ERROR: Unable to fetch ldap entries from results\n"));
420 /* first check if the SID is present */
421 if (!ads_pull_sid(ctx
->ads
, entry
, "objectSid", &sid
)) {
422 DEBUG(2, ("Could not retrieve SID from entry\n"));
427 if (!ads_pull_uint32(ctx
->ads
, entry
, "sAMAccountType", &atype
)) {
428 DEBUG(1, ("could not get SAM account type\n"));
432 switch (atype
& 0xF0000000) {
433 case ATYPE_SECURITY_GLOBAL_GROUP
:
434 case ATYPE_SECURITY_LOCAL_GROUP
:
437 case ATYPE_NORMAL_ACCOUNT
:
438 case ATYPE_WORKSTATION_TRUST
:
439 case ATYPE_INTERDOMAIN_TRUST
:
443 DEBUG(1, ("unrecognized SAM account type %08x\n", atype
));
447 if (!ads_pull_uint32(ctx
->ads
, entry
, (type
==ID_TYPE_UID
) ?
448 ctx
->ad_schema
->posix_uidnumber_attr
:
449 ctx
->ad_schema
->posix_gidnumber_attr
,
452 DEBUG(1, ("Could not get unix ID\n"));
457 (ctx
->filter_low_id
&& (id
< ctx
->filter_low_id
)) ||
458 (ctx
->filter_high_id
&& (id
> ctx
->filter_high_id
))) {
459 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
460 id
, ctx
->filter_low_id
, ctx
->filter_high_id
));
464 map
= find_map_by_id(&ids
[bidx
], type
, id
);
466 DEBUG(2, ("WARNING: couldn't match result with requested ID\n"));
470 sid_copy(map
->sid
, &sid
);
473 map
->status
= ID_MAPPED
;
475 DEBUG(10, ("Mapped %s -> %lu (%d)\n", sid_string_dbg(map
->sid
),
476 (unsigned long)map
->xid
.id
,
481 ads_msgfree(ctx
->ads
, res
);
484 if (ids
[idx
]) { /* still some values to map */
490 /* mark all unknown/expired ones as unmapped */
491 for (i
= 0; ids
[i
]; i
++) {
492 if (ids
[i
]->status
!= ID_MAPPED
)
493 ids
[i
]->status
= ID_UNMAPPED
;
501 /************************************************************************
502 ***********************************************************************/
504 static NTSTATUS
idmap_ad_sids_to_unixids(struct idmap_domain
*dom
, struct id_map
**ids
)
508 struct idmap_ad_context
*ctx
;
510 const char *attrs
[] = { "sAMAccountType",
512 NULL
, /* attr_uidnumber */
513 NULL
, /* attr_gidnumber */
515 LDAPMessage
*res
= NULL
;
516 LDAPMessage
*entry
= NULL
;
524 /* initialize the status to avoid suprise */
525 for (i
= 0; ids
[i
]; i
++) {
526 ids
[i
]->status
= ID_UNKNOWN
;
529 /* Only do query if we are online */
530 if (idmap_is_offline()) {
531 return NT_STATUS_FILE_IS_OFFLINE
;
534 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ad_context
);
536 if ( (memctx
= talloc_new(ctx
)) == NULL
) {
537 DEBUG(0, ("Out of memory!\n"));
538 return NT_STATUS_NO_MEMORY
;
541 rc
= ad_idmap_cached_connection(dom
);
542 if (!ADS_ERR_OK(rc
)) {
543 DEBUG(1, ("ADS uninitialized: %s\n", ads_errstr(rc
)));
544 ret
= NT_STATUS_UNSUCCESSFUL
;
545 /* ret = ads_ntstatus(rc); */
549 if (ctx
->ad_schema
== NULL
) {
550 DEBUG(0, ("haven't got ctx->ad_schema ! \n"));
551 ret
= NT_STATUS_UNSUCCESSFUL
;
555 attrs
[2] = ctx
->ad_schema
->posix_uidnumber_attr
;
556 attrs
[3] = ctx
->ad_schema
->posix_gidnumber_attr
;
559 filter
= talloc_asprintf(memctx
, "(&(|"
560 "(sAMAccountType=%d)(sAMAccountType=%d)(sAMAccountType=%d)" /* user account types */
561 "(sAMAccountType=%d)(sAMAccountType=%d)" /* group account types */
563 ATYPE_NORMAL_ACCOUNT
, ATYPE_WORKSTATION_TRUST
, ATYPE_INTERDOMAIN_TRUST
,
564 ATYPE_SECURITY_GLOBAL_GROUP
, ATYPE_SECURITY_LOCAL_GROUP
);
566 CHECK_ALLOC_DONE(filter
);
569 for (i
= 0; (i
< IDMAP_AD_MAX_IDS
) && ids
[idx
]; i
++, idx
++) {
571 ids
[idx
]->status
= ID_UNKNOWN
;
573 sidstr
= sid_binstring(talloc_tos(), ids
[idx
]->sid
);
574 filter
= talloc_asprintf_append_buffer(filter
, "(objectSid=%s)", sidstr
);
577 CHECK_ALLOC_DONE(filter
);
579 filter
= talloc_asprintf_append_buffer(filter
, "))");
580 CHECK_ALLOC_DONE(filter
);
581 DEBUG(10, ("Filter: [%s]\n", filter
));
583 rc
= ads_search_retry(ctx
->ads
, &res
, filter
, attrs
);
584 if (!ADS_ERR_OK(rc
)) {
585 DEBUG(1, ("ERROR: ads search returned: %s\n", ads_errstr(rc
)));
586 ret
= NT_STATUS_UNSUCCESSFUL
;
590 if ( (count
= ads_count_replies(ctx
->ads
, res
)) == 0 ) {
591 DEBUG(10, ("No IDs found\n"));
595 for (i
= 0; (i
< count
) && entry
; i
++) {
602 if (i
== 0) { /* first entry */
603 entry
= ads_first_entry(ctx
->ads
, entry
);
604 } else { /* following ones */
605 entry
= ads_next_entry(ctx
->ads
, entry
);
609 DEBUG(2, ("ERROR: Unable to fetch ldap entries from results\n"));
613 /* first check if the SID is present */
614 if (!ads_pull_sid(ctx
->ads
, entry
, "objectSid", &sid
)) {
615 DEBUG(2, ("Could not retrieve SID from entry\n"));
619 map
= find_map_by_sid(&ids
[bidx
], &sid
);
621 DEBUG(2, ("WARNING: couldn't match result with requested SID\n"));
626 if (!ads_pull_uint32(ctx
->ads
, entry
, "sAMAccountType", &atype
)) {
627 DEBUG(1, ("could not get SAM account type\n"));
631 switch (atype
& 0xF0000000) {
632 case ATYPE_SECURITY_GLOBAL_GROUP
:
633 case ATYPE_SECURITY_LOCAL_GROUP
:
636 case ATYPE_NORMAL_ACCOUNT
:
637 case ATYPE_WORKSTATION_TRUST
:
638 case ATYPE_INTERDOMAIN_TRUST
:
642 DEBUG(1, ("unrecognized SAM account type %08x\n", atype
));
646 if (!ads_pull_uint32(ctx
->ads
, entry
, (type
==ID_TYPE_UID
) ?
647 ctx
->ad_schema
->posix_uidnumber_attr
:
648 ctx
->ad_schema
->posix_gidnumber_attr
,
651 DEBUG(1, ("Could not get unix ID\n"));
655 (ctx
->filter_low_id
&& (id
< ctx
->filter_low_id
)) ||
656 (ctx
->filter_high_id
&& (id
> ctx
->filter_high_id
))) {
657 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
658 id
, ctx
->filter_low_id
, ctx
->filter_high_id
));
663 map
->xid
.type
= type
;
665 map
->status
= ID_MAPPED
;
667 DEBUG(10, ("Mapped %s -> %lu (%d)\n", sid_string_dbg(map
->sid
),
668 (unsigned long)map
->xid
.id
,
673 ads_msgfree(ctx
->ads
, res
);
676 if (ids
[idx
]) { /* still some values to map */
682 /* mark all unknwoni/expired ones as unmapped */
683 for (i
= 0; ids
[i
]; i
++) {
684 if (ids
[i
]->status
!= ID_MAPPED
)
685 ids
[i
]->status
= ID_UNMAPPED
;
693 /************************************************************************
694 ***********************************************************************/
696 static NTSTATUS
idmap_ad_close(struct idmap_domain
*dom
)
698 struct idmap_ad_context
* ctx
;
700 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ad_context
);
702 if (ctx
->ads
!= NULL
) {
703 /* we own this ADS_STRUCT so make sure it goes away */
704 ctx
->ads
->is_mine
= True
;
705 ads_destroy( &ctx
->ads
);
709 TALLOC_FREE( ctx
->ad_schema
);
715 * nss_info_{sfu,sfu20,rfc2307}
718 /************************************************************************
719 Initialize the {sfu,sfu20,rfc2307} state
720 ***********************************************************************/
722 static const char *wb_posix_map_unknown_string
= "WB_POSIX_MAP_UNKNOWN";
723 static const char *wb_posix_map_template_string
= "WB_POSIX_MAP_TEMPLATE";
724 static const char *wb_posix_map_sfu_string
= "WB_POSIX_MAP_SFU";
725 static const char *wb_posix_map_sfu20_string
= "WB_POSIX_MAP_SFU20";
726 static const char *wb_posix_map_rfc2307_string
= "WB_POSIX_MAP_RFC2307";
727 static const char *wb_posix_map_unixinfo_string
= "WB_POSIX_MAP_UNIXINFO";
729 static const char *ad_map_type_string(enum wb_posix_mapping map_type
)
732 case WB_POSIX_MAP_TEMPLATE
:
733 return wb_posix_map_template_string
;
734 case WB_POSIX_MAP_SFU
:
735 return wb_posix_map_sfu_string
;
736 case WB_POSIX_MAP_SFU20
:
737 return wb_posix_map_sfu20_string
;
738 case WB_POSIX_MAP_RFC2307
:
739 return wb_posix_map_rfc2307_string
;
740 case WB_POSIX_MAP_UNIXINFO
:
741 return wb_posix_map_unixinfo_string
;
743 return wb_posix_map_unknown_string
;
747 static NTSTATUS
nss_ad_generic_init(struct nss_domain_entry
*e
,
748 enum wb_posix_mapping new_ad_map_type
)
750 struct idmap_domain
*dom
;
751 struct idmap_ad_context
*ctx
;
753 if (e
->state
!= NULL
) {
754 dom
= talloc_get_type(e
->state
, struct idmap_domain
);
756 dom
= TALLOC_ZERO_P(e
, struct idmap_domain
);
758 DEBUG(0, ("Out of memory!\n"));
759 return NT_STATUS_NO_MEMORY
;
764 if (e
->domain
!= NULL
) {
765 dom
->name
= talloc_strdup(dom
, e
->domain
);
766 if (dom
->name
== NULL
) {
767 DEBUG(0, ("Out of memory!\n"));
768 return NT_STATUS_NO_MEMORY
;
772 if (dom
->private_data
!= NULL
) {
773 ctx
= talloc_get_type(dom
->private_data
,
774 struct idmap_ad_context
);
776 ctx
= TALLOC_ZERO_P(dom
, struct idmap_ad_context
);
778 DEBUG(0, ("Out of memory!\n"));
779 return NT_STATUS_NO_MEMORY
;
781 ctx
->ad_map_type
= WB_POSIX_MAP_RFC2307
;
782 dom
->private_data
= ctx
;
785 if ((ctx
->ad_map_type
!= WB_POSIX_MAP_UNKNOWN
) &&
786 (ctx
->ad_map_type
!= new_ad_map_type
))
788 DEBUG(2, ("nss_ad_generic_init: "
789 "Warning: overriding previously set posix map type "
790 "%s for domain %s with map type %s.\n",
791 ad_map_type_string(ctx
->ad_map_type
),
793 ad_map_type_string(new_ad_map_type
)));
796 ctx
->ad_map_type
= new_ad_map_type
;
801 static NTSTATUS
nss_sfu_init( struct nss_domain_entry
*e
)
803 return nss_ad_generic_init(e
, WB_POSIX_MAP_SFU
);
806 static NTSTATUS
nss_sfu20_init( struct nss_domain_entry
*e
)
808 return nss_ad_generic_init(e
, WB_POSIX_MAP_SFU20
);
811 static NTSTATUS
nss_rfc2307_init( struct nss_domain_entry
*e
)
813 return nss_ad_generic_init(e
, WB_POSIX_MAP_RFC2307
);
817 /************************************************************************
818 ***********************************************************************/
820 static NTSTATUS
nss_ad_get_info( struct nss_domain_entry
*e
,
825 const char **homedir
,
830 const char *attrs
[] = {NULL
, /* attr_homedir */
831 NULL
, /* attr_shell */
832 NULL
, /* attr_gecos */
833 NULL
, /* attr_gidnumber */
836 LDAPMessage
*msg_internal
= NULL
;
837 ADS_STATUS ads_status
= ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
838 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
840 struct idmap_domain
*dom
;
841 struct idmap_ad_context
*ctx
;
843 DEBUG(10, ("nss_ad_get_info called for sid [%s] in domain '%s'\n",
844 sid_string_dbg(sid
), e
->domain
?e
->domain
:"NULL"));
846 /* Only do query if we are online */
847 if (idmap_is_offline()) {
848 return NT_STATUS_FILE_IS_OFFLINE
;
851 dom
= talloc_get_type(e
->state
, struct idmap_domain
);
852 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ad_context
);
854 ads_status
= ad_idmap_cached_connection(dom
);
855 if (!ADS_ERR_OK(ads_status
)) {
856 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
859 if (!ctx
->ad_schema
) {
860 DEBUG(10, ("nss_ad_get_info: no ad_schema configured!\n"));
861 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
864 if (!sid
|| !homedir
|| !shell
|| !gecos
) {
865 return NT_STATUS_INVALID_PARAMETER
;
868 /* See if we can use the ADS connection struct swe were given */
871 DEBUG(10, ("nss_ad_get_info: using given ads connection and "
872 "LDAP message (%p)\n", msg
));
874 *homedir
= ads_pull_string( ads
, mem_ctx
, msg
, ctx
->ad_schema
->posix_homedir_attr
);
875 *shell
= ads_pull_string( ads
, mem_ctx
, msg
, ctx
->ad_schema
->posix_shell_attr
);
876 *gecos
= ads_pull_string( ads
, mem_ctx
, msg
, ctx
->ad_schema
->posix_gecos_attr
);
879 if ( !ads_pull_uint32(ads
, msg
, ctx
->ad_schema
->posix_gidnumber_attr
, gid
) )
883 nt_status
= NT_STATUS_OK
;
887 /* Have to do our own query */
889 DEBUG(10, ("nss_ad_get_info: no ads connection given, doing our "
892 attrs
[0] = ctx
->ad_schema
->posix_homedir_attr
;
893 attrs
[1] = ctx
->ad_schema
->posix_shell_attr
;
894 attrs
[2] = ctx
->ad_schema
->posix_gecos_attr
;
895 attrs
[3] = ctx
->ad_schema
->posix_gidnumber_attr
;
897 sidstr
= sid_binstring(mem_ctx
, sid
);
898 filter
= talloc_asprintf(mem_ctx
, "(objectSid=%s)", sidstr
);
902 nt_status
= NT_STATUS_NO_MEMORY
;
906 ads_status
= ads_search_retry(ctx
->ads
, &msg_internal
, filter
, attrs
);
907 if (!ADS_ERR_OK(ads_status
)) {
908 nt_status
= ads_ntstatus(ads_status
);
912 *homedir
= ads_pull_string(ctx
->ads
, mem_ctx
, msg_internal
, ctx
->ad_schema
->posix_homedir_attr
);
913 *shell
= ads_pull_string(ctx
->ads
, mem_ctx
, msg_internal
, ctx
->ad_schema
->posix_shell_attr
);
914 *gecos
= ads_pull_string(ctx
->ads
, mem_ctx
, msg_internal
, ctx
->ad_schema
->posix_gecos_attr
);
917 if (!ads_pull_uint32(ctx
->ads
, msg_internal
, ctx
->ad_schema
->posix_gidnumber_attr
, gid
))
921 nt_status
= NT_STATUS_OK
;
925 ads_msgfree(ctx
->ads
, msg_internal
);
931 /**********************************************************************
932 *********************************************************************/
934 static NTSTATUS
nss_ad_map_to_alias(TALLOC_CTX
*mem_ctx
,
935 struct nss_domain_entry
*e
,
939 const char *attrs
[] = {NULL
, /* attr_uid */
942 LDAPMessage
*msg
= NULL
;
943 ADS_STATUS ads_status
= ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
944 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
945 struct idmap_domain
*dom
;
946 struct idmap_ad_context
*ctx
= NULL
;
948 /* Check incoming parameters */
950 if ( !e
|| !e
->domain
|| !name
|| !*alias
) {
951 nt_status
= NT_STATUS_INVALID_PARAMETER
;
955 /* Only do query if we are online */
957 if (idmap_is_offline()) {
958 nt_status
= NT_STATUS_FILE_IS_OFFLINE
;
962 dom
= talloc_get_type(e
->state
, struct idmap_domain
);
963 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ad_context
);
965 ads_status
= ad_idmap_cached_connection(dom
);
966 if (!ADS_ERR_OK(ads_status
)) {
967 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
970 if (!ctx
->ad_schema
) {
971 nt_status
= NT_STATUS_OBJECT_PATH_NOT_FOUND
;
975 attrs
[0] = ctx
->ad_schema
->posix_uid_attr
;
977 filter
= talloc_asprintf(mem_ctx
,
978 "(sAMAccountName=%s)",
981 nt_status
= NT_STATUS_NO_MEMORY
;
985 ads_status
= ads_search_retry(ctx
->ads
, &msg
, filter
, attrs
);
986 if (!ADS_ERR_OK(ads_status
)) {
987 nt_status
= ads_ntstatus(ads_status
);
991 *alias
= ads_pull_string(ctx
->ads
, mem_ctx
, msg
, ctx
->ad_schema
->posix_uid_attr
);
994 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
997 nt_status
= NT_STATUS_OK
;
1001 talloc_destroy(filter
);
1004 ads_msgfree(ctx
->ads
, msg
);
1010 /**********************************************************************
1011 *********************************************************************/
1013 static NTSTATUS
nss_ad_map_from_alias( TALLOC_CTX
*mem_ctx
,
1014 struct nss_domain_entry
*e
,
1018 const char *attrs
[] = {"sAMAccountName",
1020 char *filter
= NULL
;
1021 LDAPMessage
*msg
= NULL
;
1022 ADS_STATUS ads_status
= ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
1023 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1025 struct idmap_domain
*dom
;
1026 struct idmap_ad_context
*ctx
= NULL
;
1028 /* Check incoming parameters */
1030 if ( !alias
|| !name
) {
1031 nt_status
= NT_STATUS_INVALID_PARAMETER
;
1035 /* Only do query if we are online */
1037 if (idmap_is_offline()) {
1038 nt_status
= NT_STATUS_FILE_IS_OFFLINE
;
1042 dom
= talloc_get_type(e
->state
, struct idmap_domain
);
1043 ctx
= talloc_get_type(dom
->private_data
, struct idmap_ad_context
);
1045 ads_status
= ad_idmap_cached_connection(dom
);
1046 if (!ADS_ERR_OK(ads_status
)) {
1047 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
1050 if (!ctx
->ad_schema
) {
1051 nt_status
= NT_STATUS_OBJECT_PATH_NOT_FOUND
;
1055 filter
= talloc_asprintf(mem_ctx
,
1057 ctx
->ad_schema
->posix_uid_attr
,
1060 nt_status
= NT_STATUS_NO_MEMORY
;
1064 ads_status
= ads_search_retry(ctx
->ads
, &msg
, filter
, attrs
);
1065 if (!ADS_ERR_OK(ads_status
)) {
1066 nt_status
= ads_ntstatus(ads_status
);
1070 username
= ads_pull_string(ctx
->ads
, mem_ctx
, msg
,
1073 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
1076 *name
= talloc_asprintf(mem_ctx
, "%s\\%s",
1080 nt_status
= NT_STATUS_NO_MEMORY
;
1084 nt_status
= NT_STATUS_OK
;
1088 talloc_destroy(filter
);
1091 ads_msgfree(ctx
->ads
, msg
);
1098 /************************************************************************
1099 ***********************************************************************/
1101 static NTSTATUS
nss_ad_close( void )
1103 /* nothing to do. All memory is free()'d by the idmap close_fn() */
1105 return NT_STATUS_OK
;
1108 /************************************************************************
1109 Function dispatch tables for the idmap and nss plugins
1110 ***********************************************************************/
1112 static struct idmap_methods ad_methods
= {
1113 .init
= idmap_ad_initialize
,
1114 .unixids_to_sids
= idmap_ad_unixids_to_sids
,
1115 .sids_to_unixids
= idmap_ad_sids_to_unixids
,
1116 .close_fn
= idmap_ad_close
1119 /* The SFU and RFC2307 NSS plugins share everything but the init
1120 function which sets the intended schema model to use */
1122 static struct nss_info_methods nss_rfc2307_methods
= {
1123 .init
= nss_rfc2307_init
,
1124 .get_nss_info
= nss_ad_get_info
,
1125 .map_to_alias
= nss_ad_map_to_alias
,
1126 .map_from_alias
= nss_ad_map_from_alias
,
1127 .close_fn
= nss_ad_close
1130 static struct nss_info_methods nss_sfu_methods
= {
1131 .init
= nss_sfu_init
,
1132 .get_nss_info
= nss_ad_get_info
,
1133 .map_to_alias
= nss_ad_map_to_alias
,
1134 .map_from_alias
= nss_ad_map_from_alias
,
1135 .close_fn
= nss_ad_close
1138 static struct nss_info_methods nss_sfu20_methods
= {
1139 .init
= nss_sfu20_init
,
1140 .get_nss_info
= nss_ad_get_info
,
1141 .map_to_alias
= nss_ad_map_to_alias
,
1142 .map_from_alias
= nss_ad_map_from_alias
,
1143 .close_fn
= nss_ad_close
1148 /************************************************************************
1149 Initialize the plugins
1150 ***********************************************************************/
1152 NTSTATUS
idmap_ad_init(void)
1154 static NTSTATUS status_idmap_ad
= NT_STATUS_UNSUCCESSFUL
;
1155 static NTSTATUS status_nss_rfc2307
= NT_STATUS_UNSUCCESSFUL
;
1156 static NTSTATUS status_nss_sfu
= NT_STATUS_UNSUCCESSFUL
;
1157 static NTSTATUS status_nss_sfu20
= NT_STATUS_UNSUCCESSFUL
;
1159 /* Always register the AD method first in order to get the
1160 idmap_domain interface called */
1162 if ( !NT_STATUS_IS_OK(status_idmap_ad
) ) {
1163 status_idmap_ad
= smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION
,
1165 if ( !NT_STATUS_IS_OK(status_idmap_ad
) )
1166 return status_idmap_ad
;
1169 if ( !NT_STATUS_IS_OK( status_nss_rfc2307
) ) {
1170 status_nss_rfc2307
= smb_register_idmap_nss(SMB_NSS_INFO_INTERFACE_VERSION
,
1171 "rfc2307", &nss_rfc2307_methods
);
1172 if ( !NT_STATUS_IS_OK(status_nss_rfc2307
) )
1173 return status_nss_rfc2307
;
1176 if ( !NT_STATUS_IS_OK( status_nss_sfu
) ) {
1177 status_nss_sfu
= smb_register_idmap_nss(SMB_NSS_INFO_INTERFACE_VERSION
,
1178 "sfu", &nss_sfu_methods
);
1179 if ( !NT_STATUS_IS_OK(status_nss_sfu
) )
1180 return status_nss_sfu
;
1183 if ( !NT_STATUS_IS_OK( status_nss_sfu20
) ) {
1184 status_nss_sfu20
= smb_register_idmap_nss(SMB_NSS_INFO_INTERFACE_VERSION
,
1185 "sfu20", &nss_sfu20_methods
);
1186 if ( !NT_STATUS_IS_OK(status_nss_sfu20
) )
1187 return status_nss_sfu20
;
1190 return NT_STATUS_OK
;