WHATSNEW: Prepare release notes for Samba 3.6.19.
[Samba.git] / source3 / winbindd / idmap_ad.c
blob2b35a4f59ab0f671e83cd071640237d13da698b0
1 /*
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,2010
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/>.
28 #include "includes.h"
29 #include "winbindd.h"
30 #include "../libds/common/flags.h"
31 #include "ads.h"
32 #include "libads/ldap_schema.h"
33 #include "nss_info.h"
34 #include "secrets.h"
35 #include "idmap.h"
36 #include "../libcli/ldap/ldap_ndr.h"
37 #include "../libcli/security/security.h"
39 #undef DBGC_CLASS
40 #define DBGC_CLASS DBGC_IDMAP
42 #define WINBIND_CCACHE_NAME "MEMORY:winbind_ccache"
44 #define IDMAP_AD_MAX_IDS 30
45 #define CHECK_ALLOC_DONE(mem) do { \
46 if (!mem) { \
47 DEBUG(0, ("Out of memory!\n")); \
48 ret = NT_STATUS_NO_MEMORY; \
49 goto done; \
50 } \
51 } while (0)
53 struct idmap_ad_context {
54 ADS_STRUCT *ads;
55 struct posix_schema *ad_schema;
56 enum wb_posix_mapping ad_map_type; /* WB_POSIX_MAP_UNKNOWN */
59 NTSTATUS init_module(void);
61 /************************************************************************
62 ***********************************************************************/
64 static ADS_STATUS ad_idmap_cached_connection_internal(struct idmap_domain *dom)
66 ADS_STRUCT *ads;
67 ADS_STATUS status;
68 bool local = False;
69 fstring dc_name;
70 struct sockaddr_storage dc_ip;
71 struct idmap_ad_context *ctx;
72 char *ldap_server = NULL;
73 char *realm = NULL;
74 struct winbindd_domain *wb_dom;
76 DEBUG(10, ("ad_idmap_cached_connection: called for domain '%s'\n",
77 dom->name));
79 ctx = talloc_get_type(dom->private_data, struct idmap_ad_context);
81 if (ctx->ads != NULL) {
83 time_t expire;
84 time_t now = time(NULL);
86 ads = ctx->ads;
88 expire = MIN(ads->auth.tgt_expire, ads->auth.tgs_expire);
90 /* check for a valid structure */
91 DEBUG(7, ("Current tickets expire in %d seconds (at %d, time is now %d)\n",
92 (uint32)expire-(uint32)now, (uint32) expire, (uint32) now));
94 if ( ads->config.realm && (expire > time(NULL))) {
95 return ADS_SUCCESS;
96 } else {
97 /* we own this ADS_STRUCT so make sure it goes away */
98 DEBUG(7,("Deleting expired krb5 credential cache\n"));
99 ads->is_mine = True;
100 ads_destroy( &ads );
101 ads_kdestroy(WINBIND_CCACHE_NAME);
102 ctx->ads = NULL;
106 if (!local) {
107 /* we don't want this to affect the users ccache */
108 setenv("KRB5CCNAME", WINBIND_CCACHE_NAME, 1);
112 * At this point we only have the NetBIOS domain name.
113 * Check if we can get server nam and realm from SAF cache
114 * and the domain list.
116 ldap_server = saf_fetch(dom->name);
117 DEBUG(10, ("ldap_server from saf cache: '%s'\n", ldap_server?ldap_server:""));
119 wb_dom = find_domain_from_name_noinit(dom->name);
120 if (wb_dom == NULL) {
121 DEBUG(10, ("find_domain_from_name_noinit did not find domain '%s'\n",
122 dom->name));
123 realm = NULL;
124 } else {
125 DEBUG(10, ("find_domain_from_name_noinit found realm '%s' for "
126 " domain '%s'\n", wb_dom->alt_name, dom->name));
127 realm = wb_dom->alt_name;
130 if ( (ads = ads_init(realm, dom->name, ldap_server)) == NULL ) {
131 DEBUG(1,("ads_init failed\n"));
132 return ADS_ERROR_NT(NT_STATUS_NO_MEMORY);
135 /* the machine acct password might have change - fetch it every time */
136 SAFE_FREE(ads->auth.password);
137 ads->auth.password = secrets_fetch_machine_password(lp_workgroup(), NULL, NULL);
139 SAFE_FREE(ads->auth.realm);
140 ads->auth.realm = SMB_STRDUP(lp_realm());
142 /* setup server affinity */
144 get_dc_name(dom->name, realm, dc_name, &dc_ip );
146 status = ads_connect(ads);
147 if (!ADS_ERR_OK(status)) {
148 DEBUG(1, ("ad_idmap_cached_connection_internal: failed to "
149 "connect to AD\n"));
150 ads_destroy(&ads);
151 return status;
154 ads->is_mine = False;
156 ctx->ads = ads;
158 return ADS_SUCCESS;
161 /************************************************************************
162 ***********************************************************************/
164 static ADS_STATUS ad_idmap_cached_connection(struct idmap_domain *dom)
166 ADS_STATUS status;
167 struct idmap_ad_context * ctx;
169 status = ad_idmap_cached_connection_internal(dom);
170 if (!ADS_ERR_OK(status)) {
171 return status;
174 ctx = talloc_get_type(dom->private_data, struct idmap_ad_context);
176 /* if we have a valid ADS_STRUCT and the schema model is
177 defined, then we can return here. */
179 if ( ctx->ad_schema ) {
180 return ADS_SUCCESS;
183 /* Otherwise, set the schema model */
185 if ( (ctx->ad_map_type == WB_POSIX_MAP_SFU) ||
186 (ctx->ad_map_type == WB_POSIX_MAP_SFU20) ||
187 (ctx->ad_map_type == WB_POSIX_MAP_RFC2307) )
189 status = ads_check_posix_schema_mapping(
190 ctx, ctx->ads, ctx->ad_map_type, &ctx->ad_schema);
191 if ( !ADS_ERR_OK(status) ) {
192 DEBUG(2,("ad_idmap_cached_connection: Failed to obtain schema details!\n"));
196 return status;
199 static int idmap_ad_context_destructor(struct idmap_ad_context *ctx)
201 if (ctx->ads != NULL) {
202 /* we own this ADS_STRUCT so make sure it goes away */
203 ctx->ads->is_mine = True;
204 ads_destroy( &ctx->ads );
205 ctx->ads = NULL;
207 return 0;
210 /************************************************************************
211 ***********************************************************************/
213 static NTSTATUS idmap_ad_initialize(struct idmap_domain *dom)
215 struct idmap_ad_context *ctx;
216 char *config_option;
217 const char *schema_mode = NULL;
219 ctx = TALLOC_ZERO_P(dom, struct idmap_ad_context);
220 if (ctx == NULL) {
221 DEBUG(0, ("Out of memory!\n"));
222 return NT_STATUS_NO_MEMORY;
224 talloc_set_destructor(ctx, idmap_ad_context_destructor);
226 config_option = talloc_asprintf(ctx, "idmap config %s", dom->name);
227 if (config_option == NULL) {
228 DEBUG(0, ("Out of memory!\n"));
229 talloc_free(ctx);
230 return NT_STATUS_NO_MEMORY;
233 /* default map type */
234 ctx->ad_map_type = WB_POSIX_MAP_RFC2307;
236 /* schema mode */
237 schema_mode = lp_parm_const_string(-1, config_option, "schema_mode", NULL);
238 if ( schema_mode && schema_mode[0] ) {
239 if ( strequal(schema_mode, "sfu") )
240 ctx->ad_map_type = WB_POSIX_MAP_SFU;
241 else if ( strequal(schema_mode, "sfu20" ) )
242 ctx->ad_map_type = WB_POSIX_MAP_SFU20;
243 else if ( strequal(schema_mode, "rfc2307" ) )
244 ctx->ad_map_type = WB_POSIX_MAP_RFC2307;
245 else
246 DEBUG(0,("idmap_ad_initialize: Unknown schema_mode (%s)\n",
247 schema_mode));
250 dom->private_data = ctx;
252 talloc_free(config_option);
254 return NT_STATUS_OK;
257 /************************************************************************
258 Search up to IDMAP_AD_MAX_IDS entries in maps for a match.
259 ***********************************************************************/
261 static struct id_map *find_map_by_id(struct id_map **maps, enum id_type type, uint32_t id)
263 int i;
265 for (i = 0; maps[i] && i<IDMAP_AD_MAX_IDS; i++) {
266 if ((maps[i]->xid.type == type) && (maps[i]->xid.id == id)) {
267 return maps[i];
271 return NULL;
274 /************************************************************************
275 Search up to IDMAP_AD_MAX_IDS entries in maps for a match
276 ***********************************************************************/
278 static struct id_map *find_map_by_sid(struct id_map **maps, struct dom_sid *sid)
280 int i;
282 for (i = 0; maps[i] && i<IDMAP_AD_MAX_IDS; i++) {
283 if (dom_sid_equal(maps[i]->sid, sid)) {
284 return maps[i];
288 return NULL;
291 /************************************************************************
292 ***********************************************************************/
294 static NTSTATUS idmap_ad_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids)
296 NTSTATUS ret;
297 TALLOC_CTX *memctx;
298 struct idmap_ad_context *ctx;
299 ADS_STATUS rc;
300 const char *attrs[] = { "sAMAccountType",
301 "objectSid",
302 NULL, /* uidnumber */
303 NULL, /* gidnumber */
304 NULL };
305 LDAPMessage *res = NULL;
306 LDAPMessage *entry = NULL;
307 char *filter = NULL;
308 int idx = 0;
309 int bidx = 0;
310 int count;
311 int i;
312 char *u_filter = NULL;
313 char *g_filter = NULL;
315 /* initialize the status to avoid suprise */
316 for (i = 0; ids[i]; i++) {
317 ids[i]->status = ID_UNKNOWN;
320 /* Only do query if we are online */
321 if (idmap_is_offline()) {
322 return NT_STATUS_FILE_IS_OFFLINE;
325 ctx = talloc_get_type(dom->private_data, struct idmap_ad_context);
327 if ( (memctx = talloc_new(ctx)) == NULL ) {
328 DEBUG(0, ("Out of memory!\n"));
329 return NT_STATUS_NO_MEMORY;
332 rc = ad_idmap_cached_connection(dom);
333 if (!ADS_ERR_OK(rc)) {
334 DEBUG(1, ("ADS uninitialized: %s\n", ads_errstr(rc)));
335 ret = NT_STATUS_UNSUCCESSFUL;
336 /* ret = ads_ntstatus(rc); */
337 goto done;
340 attrs[2] = ctx->ad_schema->posix_uidnumber_attr;
341 attrs[3] = ctx->ad_schema->posix_gidnumber_attr;
343 again:
344 bidx = idx;
345 for (i = 0; (i < IDMAP_AD_MAX_IDS) && ids[idx]; i++, idx++) {
346 switch (ids[idx]->xid.type) {
347 case ID_TYPE_UID:
348 if ( ! u_filter) {
349 u_filter = talloc_asprintf(memctx, "(&(|"
350 "(sAMAccountType=%d)"
351 "(sAMAccountType=%d)"
352 "(sAMAccountType=%d))(|",
353 ATYPE_NORMAL_ACCOUNT,
354 ATYPE_WORKSTATION_TRUST,
355 ATYPE_INTERDOMAIN_TRUST);
357 u_filter = talloc_asprintf_append_buffer(u_filter, "(%s=%lu)",
358 ctx->ad_schema->posix_uidnumber_attr,
359 (unsigned long)ids[idx]->xid.id);
360 CHECK_ALLOC_DONE(u_filter);
361 break;
363 case ID_TYPE_GID:
364 if ( ! g_filter) {
365 g_filter = talloc_asprintf(memctx, "(&(|"
366 "(sAMAccountType=%d)"
367 "(sAMAccountType=%d))(|",
368 ATYPE_SECURITY_GLOBAL_GROUP,
369 ATYPE_SECURITY_LOCAL_GROUP);
371 g_filter = talloc_asprintf_append_buffer(g_filter, "(%s=%lu)",
372 ctx->ad_schema->posix_gidnumber_attr,
373 (unsigned long)ids[idx]->xid.id);
374 CHECK_ALLOC_DONE(g_filter);
375 break;
377 default:
378 DEBUG(3, ("Error: mapping requested but Unknown ID type\n"));
379 ids[idx]->status = ID_UNKNOWN;
380 continue;
383 filter = talloc_asprintf(memctx, "(|");
384 CHECK_ALLOC_DONE(filter);
385 if ( u_filter) {
386 filter = talloc_asprintf_append_buffer(filter, "%s))", u_filter);
387 CHECK_ALLOC_DONE(filter);
388 TALLOC_FREE(u_filter);
390 if ( g_filter) {
391 filter = talloc_asprintf_append_buffer(filter, "%s))", g_filter);
392 CHECK_ALLOC_DONE(filter);
393 TALLOC_FREE(g_filter);
395 filter = talloc_asprintf_append_buffer(filter, ")");
396 CHECK_ALLOC_DONE(filter);
398 rc = ads_search_retry(ctx->ads, &res, filter, attrs);
399 if (!ADS_ERR_OK(rc)) {
400 DEBUG(1, ("ERROR: ads search returned: %s\n", ads_errstr(rc)));
401 ret = NT_STATUS_UNSUCCESSFUL;
402 goto done;
405 if ( (count = ads_count_replies(ctx->ads, res)) == 0 ) {
406 DEBUG(10, ("No IDs found\n"));
409 entry = res;
410 for (i = 0; (i < count) && entry; i++) {
411 struct dom_sid sid;
412 enum id_type type;
413 struct id_map *map;
414 uint32_t id;
415 uint32_t atype;
417 if (i == 0) { /* first entry */
418 entry = ads_first_entry(ctx->ads, entry);
419 } else { /* following ones */
420 entry = ads_next_entry(ctx->ads, entry);
423 if ( !entry ) {
424 DEBUG(2, ("ERROR: Unable to fetch ldap entries from results\n"));
425 break;
428 /* first check if the SID is present */
429 if (!ads_pull_sid(ctx->ads, entry, "objectSid", &sid)) {
430 DEBUG(2, ("Could not retrieve SID from entry\n"));
431 continue;
434 /* get type */
435 if (!ads_pull_uint32(ctx->ads, entry, "sAMAccountType", &atype)) {
436 DEBUG(1, ("could not get SAM account type\n"));
437 continue;
440 switch (atype & 0xF0000000) {
441 case ATYPE_SECURITY_GLOBAL_GROUP:
442 case ATYPE_SECURITY_LOCAL_GROUP:
443 type = ID_TYPE_GID;
444 break;
445 case ATYPE_NORMAL_ACCOUNT:
446 case ATYPE_WORKSTATION_TRUST:
447 case ATYPE_INTERDOMAIN_TRUST:
448 type = ID_TYPE_UID;
449 break;
450 default:
451 DEBUG(1, ("unrecognized SAM account type %08x\n", atype));
452 continue;
455 if (!ads_pull_uint32(ctx->ads, entry, (type==ID_TYPE_UID) ?
456 ctx->ad_schema->posix_uidnumber_attr :
457 ctx->ad_schema->posix_gidnumber_attr,
458 &id))
460 DEBUG(1, ("Could not get SID for unix ID %u\n", (unsigned) id));
461 continue;
464 if (!idmap_unix_id_is_in_range(id, dom)) {
465 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
466 id, dom->low_id, dom->high_id));
467 continue;
470 map = find_map_by_id(&ids[bidx], type, id);
471 if (!map) {
472 DEBUG(2, ("WARNING: couldn't match result with requested ID\n"));
473 continue;
476 sid_copy(map->sid, &sid);
478 /* mapped */
479 map->status = ID_MAPPED;
481 DEBUG(10, ("Mapped %s -> %lu (%d)\n", sid_string_dbg(map->sid),
482 (unsigned long)map->xid.id,
483 map->xid.type));
486 if (res) {
487 ads_msgfree(ctx->ads, res);
490 if (ids[idx]) { /* still some values to map */
491 goto again;
494 ret = NT_STATUS_OK;
496 /* mark all unknown/expired ones as unmapped */
497 for (i = 0; ids[i]; i++) {
498 if (ids[i]->status != ID_MAPPED)
499 ids[i]->status = ID_UNMAPPED;
502 done:
503 talloc_free(memctx);
504 return ret;
507 /************************************************************************
508 ***********************************************************************/
510 static NTSTATUS idmap_ad_sids_to_unixids(struct idmap_domain *dom, struct id_map **ids)
512 NTSTATUS ret;
513 TALLOC_CTX *memctx;
514 struct idmap_ad_context *ctx;
515 ADS_STATUS rc;
516 const char *attrs[] = { "sAMAccountType",
517 "objectSid",
518 NULL, /* attr_uidnumber */
519 NULL, /* attr_gidnumber */
520 NULL };
521 LDAPMessage *res = NULL;
522 LDAPMessage *entry = NULL;
523 char *filter = NULL;
524 int idx = 0;
525 int bidx = 0;
526 int count;
527 int i;
528 char *sidstr;
530 /* initialize the status to avoid suprise */
531 for (i = 0; ids[i]; i++) {
532 ids[i]->status = ID_UNKNOWN;
535 /* Only do query if we are online */
536 if (idmap_is_offline()) {
537 return NT_STATUS_FILE_IS_OFFLINE;
540 ctx = talloc_get_type(dom->private_data, struct idmap_ad_context);
542 if ( (memctx = talloc_new(ctx)) == NULL ) {
543 DEBUG(0, ("Out of memory!\n"));
544 return NT_STATUS_NO_MEMORY;
547 rc = ad_idmap_cached_connection(dom);
548 if (!ADS_ERR_OK(rc)) {
549 DEBUG(1, ("ADS uninitialized: %s\n", ads_errstr(rc)));
550 ret = NT_STATUS_UNSUCCESSFUL;
551 /* ret = ads_ntstatus(rc); */
552 goto done;
555 if (ctx->ad_schema == NULL) {
556 DEBUG(0, ("haven't got ctx->ad_schema ! \n"));
557 ret = NT_STATUS_UNSUCCESSFUL;
558 goto done;
561 attrs[2] = ctx->ad_schema->posix_uidnumber_attr;
562 attrs[3] = ctx->ad_schema->posix_gidnumber_attr;
564 again:
565 filter = talloc_asprintf(memctx, "(&(|"
566 "(sAMAccountType=%d)(sAMAccountType=%d)(sAMAccountType=%d)" /* user account types */
567 "(sAMAccountType=%d)(sAMAccountType=%d)" /* group account types */
568 ")(|",
569 ATYPE_NORMAL_ACCOUNT, ATYPE_WORKSTATION_TRUST, ATYPE_INTERDOMAIN_TRUST,
570 ATYPE_SECURITY_GLOBAL_GROUP, ATYPE_SECURITY_LOCAL_GROUP);
572 CHECK_ALLOC_DONE(filter);
574 bidx = idx;
575 for (i = 0; (i < IDMAP_AD_MAX_IDS) && ids[idx]; i++, idx++) {
577 ids[idx]->status = ID_UNKNOWN;
579 sidstr = ldap_encode_ndr_dom_sid(talloc_tos(), ids[idx]->sid);
580 filter = talloc_asprintf_append_buffer(filter, "(objectSid=%s)", sidstr);
582 TALLOC_FREE(sidstr);
583 CHECK_ALLOC_DONE(filter);
585 filter = talloc_asprintf_append_buffer(filter, "))");
586 CHECK_ALLOC_DONE(filter);
587 DEBUG(10, ("Filter: [%s]\n", filter));
589 rc = ads_search_retry(ctx->ads, &res, filter, attrs);
590 if (!ADS_ERR_OK(rc)) {
591 DEBUG(1, ("ERROR: ads search returned: %s\n", ads_errstr(rc)));
592 ret = NT_STATUS_UNSUCCESSFUL;
593 goto done;
596 if ( (count = ads_count_replies(ctx->ads, res)) == 0 ) {
597 DEBUG(10, ("No IDs found\n"));
600 entry = res;
601 for (i = 0; (i < count) && entry; i++) {
602 struct dom_sid sid;
603 enum id_type type;
604 struct id_map *map;
605 uint32_t id;
606 uint32_t atype;
608 if (i == 0) { /* first entry */
609 entry = ads_first_entry(ctx->ads, entry);
610 } else { /* following ones */
611 entry = ads_next_entry(ctx->ads, entry);
614 if ( !entry ) {
615 DEBUG(2, ("ERROR: Unable to fetch ldap entries from results\n"));
616 break;
619 /* first check if the SID is present */
620 if (!ads_pull_sid(ctx->ads, entry, "objectSid", &sid)) {
621 DEBUG(2, ("Could not retrieve SID from entry\n"));
622 continue;
625 map = find_map_by_sid(&ids[bidx], &sid);
626 if (!map) {
627 DEBUG(2, ("WARNING: couldn't match result with requested SID\n"));
628 continue;
631 /* get type */
632 if (!ads_pull_uint32(ctx->ads, entry, "sAMAccountType", &atype)) {
633 DEBUG(1, ("could not get SAM account type\n"));
634 continue;
637 switch (atype & 0xF0000000) {
638 case ATYPE_SECURITY_GLOBAL_GROUP:
639 case ATYPE_SECURITY_LOCAL_GROUP:
640 type = ID_TYPE_GID;
641 break;
642 case ATYPE_NORMAL_ACCOUNT:
643 case ATYPE_WORKSTATION_TRUST:
644 case ATYPE_INTERDOMAIN_TRUST:
645 type = ID_TYPE_UID;
646 break;
647 default:
648 DEBUG(1, ("unrecognized SAM account type %08x\n", atype));
649 continue;
652 if (!ads_pull_uint32(ctx->ads, entry, (type==ID_TYPE_UID) ?
653 ctx->ad_schema->posix_uidnumber_attr :
654 ctx->ad_schema->posix_gidnumber_attr,
655 &id))
657 DEBUG(1, ("Could not get unix ID for SID %s\n",
658 sid_string_dbg(map->sid)));
659 continue;
661 if (!idmap_unix_id_is_in_range(id, dom)) {
662 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
663 id, dom->low_id, dom->high_id));
664 continue;
667 /* mapped */
668 map->xid.type = type;
669 map->xid.id = id;
670 map->status = ID_MAPPED;
672 DEBUG(10, ("Mapped %s -> %lu (%d)\n", sid_string_dbg(map->sid),
673 (unsigned long)map->xid.id,
674 map->xid.type));
677 if (res) {
678 ads_msgfree(ctx->ads, res);
681 if (ids[idx]) { /* still some values to map */
682 goto again;
685 ret = NT_STATUS_OK;
687 /* mark all unknown/expired ones as unmapped */
688 for (i = 0; ids[i]; i++) {
689 if (ids[i]->status != ID_MAPPED)
690 ids[i]->status = ID_UNMAPPED;
693 done:
694 talloc_free(memctx);
695 return ret;
699 * nss_info_{sfu,sfu20,rfc2307}
702 /************************************************************************
703 Initialize the {sfu,sfu20,rfc2307} state
704 ***********************************************************************/
706 static const char *wb_posix_map_unknown_string = "WB_POSIX_MAP_UNKNOWN";
707 static const char *wb_posix_map_template_string = "WB_POSIX_MAP_TEMPLATE";
708 static const char *wb_posix_map_sfu_string = "WB_POSIX_MAP_SFU";
709 static const char *wb_posix_map_sfu20_string = "WB_POSIX_MAP_SFU20";
710 static const char *wb_posix_map_rfc2307_string = "WB_POSIX_MAP_RFC2307";
711 static const char *wb_posix_map_unixinfo_string = "WB_POSIX_MAP_UNIXINFO";
713 static const char *ad_map_type_string(enum wb_posix_mapping map_type)
715 switch (map_type) {
716 case WB_POSIX_MAP_TEMPLATE:
717 return wb_posix_map_template_string;
718 case WB_POSIX_MAP_SFU:
719 return wb_posix_map_sfu_string;
720 case WB_POSIX_MAP_SFU20:
721 return wb_posix_map_sfu20_string;
722 case WB_POSIX_MAP_RFC2307:
723 return wb_posix_map_rfc2307_string;
724 case WB_POSIX_MAP_UNIXINFO:
725 return wb_posix_map_unixinfo_string;
726 default:
727 return wb_posix_map_unknown_string;
731 static NTSTATUS nss_ad_generic_init(struct nss_domain_entry *e,
732 enum wb_posix_mapping new_ad_map_type)
734 struct idmap_domain *dom;
735 struct idmap_ad_context *ctx;
737 if (e->state != NULL) {
738 dom = talloc_get_type(e->state, struct idmap_domain);
739 } else {
740 dom = TALLOC_ZERO_P(e, struct idmap_domain);
741 if (dom == NULL) {
742 DEBUG(0, ("Out of memory!\n"));
743 return NT_STATUS_NO_MEMORY;
745 e->state = dom;
748 if (e->domain != NULL) {
749 dom->name = talloc_strdup(dom, e->domain);
750 if (dom->name == NULL) {
751 DEBUG(0, ("Out of memory!\n"));
752 return NT_STATUS_NO_MEMORY;
756 if (dom->private_data != NULL) {
757 ctx = talloc_get_type(dom->private_data,
758 struct idmap_ad_context);
759 } else {
760 ctx = TALLOC_ZERO_P(dom, struct idmap_ad_context);
761 if (ctx == NULL) {
762 DEBUG(0, ("Out of memory!\n"));
763 return NT_STATUS_NO_MEMORY;
765 ctx->ad_map_type = WB_POSIX_MAP_RFC2307;
766 dom->private_data = ctx;
769 if ((ctx->ad_map_type != WB_POSIX_MAP_UNKNOWN) &&
770 (ctx->ad_map_type != new_ad_map_type))
772 DEBUG(2, ("nss_ad_generic_init: "
773 "Warning: overriding previously set posix map type "
774 "%s for domain %s with map type %s.\n",
775 ad_map_type_string(ctx->ad_map_type),
776 dom->name,
777 ad_map_type_string(new_ad_map_type)));
780 ctx->ad_map_type = new_ad_map_type;
782 return NT_STATUS_OK;
785 static NTSTATUS nss_sfu_init( struct nss_domain_entry *e )
787 return nss_ad_generic_init(e, WB_POSIX_MAP_SFU);
790 static NTSTATUS nss_sfu20_init( struct nss_domain_entry *e )
792 return nss_ad_generic_init(e, WB_POSIX_MAP_SFU20);
795 static NTSTATUS nss_rfc2307_init( struct nss_domain_entry *e )
797 return nss_ad_generic_init(e, WB_POSIX_MAP_RFC2307);
801 /************************************************************************
802 ***********************************************************************/
804 static NTSTATUS nss_ad_get_info( struct nss_domain_entry *e,
805 const struct dom_sid *sid,
806 TALLOC_CTX *mem_ctx,
807 const char **homedir,
808 const char **shell,
809 const char **gecos,
810 uint32 *gid )
812 const char *attrs[] = {NULL, /* attr_homedir */
813 NULL, /* attr_shell */
814 NULL, /* attr_gecos */
815 NULL, /* attr_gidnumber */
816 NULL };
817 char *filter = NULL;
818 LDAPMessage *msg_internal = NULL;
819 ADS_STATUS ads_status = ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL);
820 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
821 char *sidstr = NULL;
822 struct idmap_domain *dom;
823 struct idmap_ad_context *ctx;
825 DEBUG(10, ("nss_ad_get_info called for sid [%s] in domain '%s'\n",
826 sid_string_dbg(sid), e->domain?e->domain:"NULL"));
828 /* Only do query if we are online */
829 if (idmap_is_offline()) {
830 return NT_STATUS_FILE_IS_OFFLINE;
833 dom = talloc_get_type(e->state, struct idmap_domain);
834 ctx = talloc_get_type(dom->private_data, struct idmap_ad_context);
836 ads_status = ad_idmap_cached_connection(dom);
837 if (!ADS_ERR_OK(ads_status)) {
838 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
841 if (!ctx->ad_schema) {
842 DEBUG(10, ("nss_ad_get_info: no ad_schema configured!\n"));
843 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
846 if (!sid || !homedir || !shell || !gecos) {
847 return NT_STATUS_INVALID_PARAMETER;
850 /* Have to do our own query */
852 DEBUG(10, ("nss_ad_get_info: no ads connection given, doing our "
853 "own query\n"));
855 attrs[0] = ctx->ad_schema->posix_homedir_attr;
856 attrs[1] = ctx->ad_schema->posix_shell_attr;
857 attrs[2] = ctx->ad_schema->posix_gecos_attr;
858 attrs[3] = ctx->ad_schema->posix_gidnumber_attr;
860 sidstr = ldap_encode_ndr_dom_sid(mem_ctx, sid);
861 filter = talloc_asprintf(mem_ctx, "(objectSid=%s)", sidstr);
862 TALLOC_FREE(sidstr);
864 if (!filter) {
865 nt_status = NT_STATUS_NO_MEMORY;
866 goto done;
869 ads_status = ads_search_retry(ctx->ads, &msg_internal, filter, attrs);
870 if (!ADS_ERR_OK(ads_status)) {
871 nt_status = ads_ntstatus(ads_status);
872 goto done;
875 *homedir = ads_pull_string(ctx->ads, mem_ctx, msg_internal, ctx->ad_schema->posix_homedir_attr);
876 *shell = ads_pull_string(ctx->ads, mem_ctx, msg_internal, ctx->ad_schema->posix_shell_attr);
877 *gecos = ads_pull_string(ctx->ads, mem_ctx, msg_internal, ctx->ad_schema->posix_gecos_attr);
879 if (gid) {
880 if (!ads_pull_uint32(ctx->ads, msg_internal, ctx->ad_schema->posix_gidnumber_attr, gid))
881 *gid = (uint32)-1;
884 nt_status = NT_STATUS_OK;
886 done:
887 if (msg_internal) {
888 ads_msgfree(ctx->ads, msg_internal);
891 return nt_status;
894 /**********************************************************************
895 *********************************************************************/
897 static NTSTATUS nss_ad_map_to_alias(TALLOC_CTX *mem_ctx,
898 struct nss_domain_entry *e,
899 const char *name,
900 char **alias)
902 const char *attrs[] = {NULL, /* attr_uid */
903 NULL };
904 char *filter = NULL;
905 LDAPMessage *msg = NULL;
906 ADS_STATUS ads_status = ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL);
907 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
908 struct idmap_domain *dom;
909 struct idmap_ad_context *ctx = NULL;
911 /* Check incoming parameters */
913 if ( !e || !e->domain || !name || !*alias) {
914 nt_status = NT_STATUS_INVALID_PARAMETER;
915 goto done;
918 /* Only do query if we are online */
920 if (idmap_is_offline()) {
921 nt_status = NT_STATUS_FILE_IS_OFFLINE;
922 goto done;
925 dom = talloc_get_type(e->state, struct idmap_domain);
926 ctx = talloc_get_type(dom->private_data, struct idmap_ad_context);
928 ads_status = ad_idmap_cached_connection(dom);
929 if (!ADS_ERR_OK(ads_status)) {
930 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
933 if (!ctx->ad_schema) {
934 nt_status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
935 goto done;
938 attrs[0] = ctx->ad_schema->posix_uid_attr;
940 filter = talloc_asprintf(mem_ctx,
941 "(sAMAccountName=%s)",
942 name);
943 if (!filter) {
944 nt_status = NT_STATUS_NO_MEMORY;
945 goto done;
948 ads_status = ads_search_retry(ctx->ads, &msg, filter, attrs);
949 if (!ADS_ERR_OK(ads_status)) {
950 nt_status = ads_ntstatus(ads_status);
951 goto done;
954 *alias = ads_pull_string(ctx->ads, mem_ctx, msg, ctx->ad_schema->posix_uid_attr);
956 if (!*alias) {
957 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
960 nt_status = NT_STATUS_OK;
962 done:
963 if (filter) {
964 talloc_destroy(filter);
966 if (msg) {
967 ads_msgfree(ctx->ads, msg);
970 return nt_status;
973 /**********************************************************************
974 *********************************************************************/
976 static NTSTATUS nss_ad_map_from_alias( TALLOC_CTX *mem_ctx,
977 struct nss_domain_entry *e,
978 const char *alias,
979 char **name )
981 const char *attrs[] = {"sAMAccountName",
982 NULL };
983 char *filter = NULL;
984 LDAPMessage *msg = NULL;
985 ADS_STATUS ads_status = ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL);
986 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
987 char *username;
988 struct idmap_domain *dom;
989 struct idmap_ad_context *ctx = NULL;
991 /* Check incoming parameters */
993 if ( !alias || !name) {
994 nt_status = NT_STATUS_INVALID_PARAMETER;
995 goto done;
998 /* Only do query if we are online */
1000 if (idmap_is_offline()) {
1001 nt_status = NT_STATUS_FILE_IS_OFFLINE;
1002 goto done;
1005 dom = talloc_get_type(e->state, struct idmap_domain);
1006 ctx = talloc_get_type(dom->private_data, struct idmap_ad_context);
1008 ads_status = ad_idmap_cached_connection(dom);
1009 if (!ADS_ERR_OK(ads_status)) {
1010 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1013 if (!ctx->ad_schema) {
1014 nt_status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
1015 goto done;
1018 filter = talloc_asprintf(mem_ctx,
1019 "(%s=%s)",
1020 ctx->ad_schema->posix_uid_attr,
1021 alias);
1022 if (!filter) {
1023 nt_status = NT_STATUS_NO_MEMORY;
1024 goto done;
1027 ads_status = ads_search_retry(ctx->ads, &msg, filter, attrs);
1028 if (!ADS_ERR_OK(ads_status)) {
1029 nt_status = ads_ntstatus(ads_status);
1030 goto done;
1033 username = ads_pull_string(ctx->ads, mem_ctx, msg,
1034 "sAMAccountName");
1035 if (!username) {
1036 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1039 *name = talloc_asprintf(mem_ctx, "%s\\%s",
1040 lp_workgroup(),
1041 username);
1042 if (!*name) {
1043 nt_status = NT_STATUS_NO_MEMORY;
1044 goto done;
1047 nt_status = NT_STATUS_OK;
1049 done:
1050 if (filter) {
1051 talloc_destroy(filter);
1053 if (msg) {
1054 ads_msgfree(ctx->ads, msg);
1057 return nt_status;
1060 /************************************************************************
1061 Function dispatch tables for the idmap and nss plugins
1062 ***********************************************************************/
1064 static struct idmap_methods ad_methods = {
1065 .init = idmap_ad_initialize,
1066 .unixids_to_sids = idmap_ad_unixids_to_sids,
1067 .sids_to_unixids = idmap_ad_sids_to_unixids,
1070 /* The SFU and RFC2307 NSS plugins share everything but the init
1071 function which sets the intended schema model to use */
1073 static struct nss_info_methods nss_rfc2307_methods = {
1074 .init = nss_rfc2307_init,
1075 .get_nss_info = nss_ad_get_info,
1076 .map_to_alias = nss_ad_map_to_alias,
1077 .map_from_alias = nss_ad_map_from_alias,
1080 static struct nss_info_methods nss_sfu_methods = {
1081 .init = nss_sfu_init,
1082 .get_nss_info = nss_ad_get_info,
1083 .map_to_alias = nss_ad_map_to_alias,
1084 .map_from_alias = nss_ad_map_from_alias,
1087 static struct nss_info_methods nss_sfu20_methods = {
1088 .init = nss_sfu20_init,
1089 .get_nss_info = nss_ad_get_info,
1090 .map_to_alias = nss_ad_map_to_alias,
1091 .map_from_alias = nss_ad_map_from_alias,
1096 /************************************************************************
1097 Initialize the plugins
1098 ***********************************************************************/
1100 NTSTATUS idmap_ad_init(void)
1102 static NTSTATUS status_idmap_ad = NT_STATUS_UNSUCCESSFUL;
1103 static NTSTATUS status_nss_rfc2307 = NT_STATUS_UNSUCCESSFUL;
1104 static NTSTATUS status_nss_sfu = NT_STATUS_UNSUCCESSFUL;
1105 static NTSTATUS status_nss_sfu20 = NT_STATUS_UNSUCCESSFUL;
1107 /* Always register the AD method first in order to get the
1108 idmap_domain interface called */
1110 if ( !NT_STATUS_IS_OK(status_idmap_ad) ) {
1111 status_idmap_ad = smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION,
1112 "ad", &ad_methods);
1113 if ( !NT_STATUS_IS_OK(status_idmap_ad) )
1114 return status_idmap_ad;
1117 if ( !NT_STATUS_IS_OK( status_nss_rfc2307 ) ) {
1118 status_nss_rfc2307 = smb_register_idmap_nss(SMB_NSS_INFO_INTERFACE_VERSION,
1119 "rfc2307", &nss_rfc2307_methods );
1120 if ( !NT_STATUS_IS_OK(status_nss_rfc2307) )
1121 return status_nss_rfc2307;
1124 if ( !NT_STATUS_IS_OK( status_nss_sfu ) ) {
1125 status_nss_sfu = smb_register_idmap_nss(SMB_NSS_INFO_INTERFACE_VERSION,
1126 "sfu", &nss_sfu_methods );
1127 if ( !NT_STATUS_IS_OK(status_nss_sfu) )
1128 return status_nss_sfu;
1131 if ( !NT_STATUS_IS_OK( status_nss_sfu20 ) ) {
1132 status_nss_sfu20 = smb_register_idmap_nss(SMB_NSS_INFO_INTERFACE_VERSION,
1133 "sfu20", &nss_sfu20_methods );
1134 if ( !NT_STATUS_IS_OK(status_nss_sfu20) )
1135 return status_nss_sfu20;
1138 return NT_STATUS_OK;