Fix for bug 5571
[Samba.git] / source / winbindd / winbindd_util.c
blob132c96f1eefb6d7013dcc5e0fadbcd49273130ef
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind daemon for ntdom nss module
6 Copyright (C) Tim Potter 2000-2001
7 Copyright (C) 2001 by Martin Pool <mbp@samba.org>
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "winbindd.h"
26 #undef DBGC_CLASS
27 #define DBGC_CLASS DBGC_WINBIND
29 extern struct winbindd_methods cache_methods;
30 extern struct winbindd_methods builtin_passdb_methods;
31 extern struct winbindd_methods sam_passdb_methods;
34 /**
35 * @file winbindd_util.c
37 * Winbind daemon for NT domain authentication nss module.
38 **/
41 /* The list of trusted domains. Note that the list can be deleted and
42 recreated using the init_domain_list() function so pointers to
43 individual winbindd_domain structures cannot be made. Keep a copy of
44 the domain name instead. */
46 static struct winbindd_domain *_domain_list = NULL;
48 /**
49 When was the last scan of trusted domains done?
51 0 == not ever
54 static time_t last_trustdom_scan;
56 struct winbindd_domain *domain_list(void)
58 /* Initialise list */
60 if ((!_domain_list) && (!init_domain_list())) {
61 smb_panic("Init_domain_list failed");
64 return _domain_list;
67 /* Free all entries in the trusted domain list */
69 void free_domain_list(void)
71 struct winbindd_domain *domain = _domain_list;
73 while(domain) {
74 struct winbindd_domain *next = domain->next;
76 DLIST_REMOVE(_domain_list, domain);
77 SAFE_FREE(domain);
78 domain = next;
82 static bool is_internal_domain(const DOM_SID *sid)
84 if (sid == NULL)
85 return False;
87 if ( IS_DC )
88 return sid_check_is_builtin(sid);
90 return (sid_check_is_domain(sid) || sid_check_is_builtin(sid));
93 static bool is_in_internal_domain(const DOM_SID *sid)
95 if (sid == NULL)
96 return False;
98 if ( IS_DC )
99 return sid_check_is_in_builtin(sid);
101 return (sid_check_is_in_our_domain(sid) || sid_check_is_in_builtin(sid));
105 /* Add a trusted domain to our list of domains */
106 static struct winbindd_domain *add_trusted_domain(const char *domain_name, const char *alt_name,
107 struct winbindd_methods *methods,
108 const DOM_SID *sid)
110 struct winbindd_domain *domain;
111 const char *alternative_name = NULL;
112 char *idmap_config_option;
113 const char *param;
115 /* ignore alt_name if we are not in an AD domain */
117 if ( (lp_security() == SEC_ADS) && alt_name && *alt_name) {
118 alternative_name = alt_name;
121 /* We can't call domain_list() as this function is called from
122 init_domain_list() and we'll get stuck in a loop. */
123 for (domain = _domain_list; domain; domain = domain->next) {
124 if (strequal(domain_name, domain->name) ||
125 strequal(domain_name, domain->alt_name))
127 break;
130 if (alternative_name && *alternative_name)
132 if (strequal(alternative_name, domain->name) ||
133 strequal(alternative_name, domain->alt_name))
135 break;
139 if (sid)
141 if (is_null_sid(sid)) {
142 continue;
145 if (sid_equal(sid, &domain->sid)) {
146 break;
151 /* See if we found a match. Check if we need to update the
152 SID. */
154 if ( domain && sid) {
155 if ( sid_equal( &domain->sid, &global_sid_NULL ) )
156 sid_copy( &domain->sid, sid );
158 return domain;
161 /* Create new domain entry */
163 if ((domain = SMB_MALLOC_P(struct winbindd_domain)) == NULL)
164 return NULL;
166 /* Fill in fields */
168 ZERO_STRUCTP(domain);
170 fstrcpy(domain->name, domain_name);
171 if (alternative_name) {
172 fstrcpy(domain->alt_name, alternative_name);
175 domain->methods = methods;
176 domain->backend = NULL;
177 domain->internal = is_internal_domain(sid);
178 domain->sequence_number = DOM_SEQUENCE_NONE;
179 domain->last_seq_check = 0;
180 domain->initialized = False;
181 domain->online = is_internal_domain(sid);
182 domain->check_online_timeout = 0;
183 domain->dc_probe_pid = (pid_t)-1;
184 if (sid) {
185 sid_copy(&domain->sid, sid);
188 /* Link to domain list */
189 DLIST_ADD_END(_domain_list, domain, struct winbindd_domain *);
191 wcache_tdc_add_domain( domain );
193 idmap_config_option = talloc_asprintf(talloc_tos(), "idmap config %s",
194 domain->name);
195 if (idmap_config_option == NULL) {
196 DEBUG(0, ("talloc failed, not looking for idmap config\n"));
197 goto done;
200 param = lp_parm_const_string(-1, idmap_config_option, "range", NULL);
202 DEBUG(10, ("%s : range = %s\n", idmap_config_option,
203 param ? param : "not defined"));
205 if (param != NULL) {
206 unsigned low_id, high_id;
207 if (sscanf(param, "%u - %u", &low_id, &high_id) != 2) {
208 DEBUG(1, ("invalid range syntax in %s: %s\n",
209 idmap_config_option, param));
210 goto done;
212 if (low_id > high_id) {
213 DEBUG(1, ("invalid range in %s: %s\n",
214 idmap_config_option, param));
215 goto done;
217 domain->have_idmap_config = true;
218 domain->id_range_low = low_id;
219 domain->id_range_high = high_id;
222 done:
224 DEBUG(2,("Added domain %s %s %s\n",
225 domain->name, domain->alt_name,
226 &domain->sid?sid_string_dbg(&domain->sid):""));
228 return domain;
231 /********************************************************************
232 rescan our domains looking for new trusted domains
233 ********************************************************************/
235 struct trustdom_state {
236 TALLOC_CTX *mem_ctx;
237 bool primary;
238 bool forest_root;
239 struct winbindd_response *response;
242 static void trustdom_recv(void *private_data, bool success);
243 static void rescan_forest_root_trusts( void );
244 static void rescan_forest_trusts( void );
246 static void add_trusted_domains( struct winbindd_domain *domain )
248 TALLOC_CTX *mem_ctx;
249 struct winbindd_request *request;
250 struct winbindd_response *response;
251 uint32 fr_flags = (NETR_TRUST_FLAG_TREEROOT|NETR_TRUST_FLAG_IN_FOREST);
253 struct trustdom_state *state;
255 mem_ctx = talloc_init("add_trusted_domains");
256 if (mem_ctx == NULL) {
257 DEBUG(0, ("talloc_init failed\n"));
258 return;
261 request = TALLOC_ZERO_P(mem_ctx, struct winbindd_request);
262 response = TALLOC_P(mem_ctx, struct winbindd_response);
263 state = TALLOC_P(mem_ctx, struct trustdom_state);
265 if ((request == NULL) || (response == NULL) || (state == NULL)) {
266 DEBUG(0, ("talloc failed\n"));
267 talloc_destroy(mem_ctx);
268 return;
271 state->mem_ctx = mem_ctx;
272 state->response = response;
274 /* Flags used to know how to continue the forest trust search */
276 state->primary = domain->primary;
277 state->forest_root = ((domain->domain_flags & fr_flags) == fr_flags );
279 request->length = sizeof(*request);
280 request->cmd = WINBINDD_LIST_TRUSTDOM;
282 async_domain_request(mem_ctx, domain, request, response,
283 trustdom_recv, state);
286 static void trustdom_recv(void *private_data, bool success)
288 struct trustdom_state *state =
289 talloc_get_type_abort(private_data, struct trustdom_state);
290 struct winbindd_response *response = state->response;
291 char *p;
293 if ((!success) || (response->result != WINBINDD_OK)) {
294 DEBUG(1, ("Could not receive trustdoms\n"));
295 talloc_destroy(state->mem_ctx);
296 return;
299 p = (char *)response->extra_data.data;
301 while ((p != NULL) && (*p != '\0')) {
302 char *q, *sidstr, *alt_name;
303 DOM_SID sid;
304 struct winbindd_domain *domain;
305 char *alternate_name = NULL;
307 alt_name = strchr(p, '\\');
308 if (alt_name == NULL) {
309 DEBUG(0, ("Got invalid trustdom response\n"));
310 break;
313 *alt_name = '\0';
314 alt_name += 1;
316 sidstr = strchr(alt_name, '\\');
317 if (sidstr == NULL) {
318 DEBUG(0, ("Got invalid trustdom response\n"));
319 break;
322 *sidstr = '\0';
323 sidstr += 1;
325 q = strchr(sidstr, '\n');
326 if (q != NULL)
327 *q = '\0';
329 if (!string_to_sid(&sid, sidstr)) {
330 /* Allow NULL sid for sibling domains */
331 if ( strcmp(sidstr,"S-0-0") == 0) {
332 sid_copy( &sid, &global_sid_NULL);
333 } else {
334 DEBUG(0, ("Got invalid trustdom response\n"));
335 break;
339 /* use the real alt_name if we have one, else pass in NULL */
341 if ( !strequal( alt_name, "(null)" ) )
342 alternate_name = alt_name;
344 /* If we have an existing domain structure, calling
345 add_trusted_domain() will update the SID if
346 necessary. This is important because we need the
347 SID for sibling domains */
349 if ( find_domain_from_name_noinit(p) != NULL ) {
350 domain = add_trusted_domain(p, alternate_name,
351 &cache_methods,
352 &sid);
353 } else {
354 domain = add_trusted_domain(p, alternate_name,
355 &cache_methods,
356 &sid);
357 if (domain) {
358 setup_domain_child(domain,
359 &domain->child);
362 p=q;
363 if (p != NULL)
364 p += 1;
367 SAFE_FREE(response->extra_data.data);
370 Cases to consider when scanning trusts:
371 (a) we are calling from a child domain (primary && !forest_root)
372 (b) we are calling from the root of the forest (primary && forest_root)
373 (c) we are calling from a trusted forest domain (!primary
374 && !forest_root)
377 if ( state->primary ) {
378 /* If this is our primary domain and we are not in the
379 forest root, we have to scan the root trusts first */
381 if ( !state->forest_root )
382 rescan_forest_root_trusts();
383 else
384 rescan_forest_trusts();
386 } else if ( state->forest_root ) {
387 /* Once we have done root forest trust search, we can
388 go on to search the trusted forests */
390 rescan_forest_trusts();
393 talloc_destroy(state->mem_ctx);
395 return;
398 /********************************************************************
399 Scan the trusts of our forest root
400 ********************************************************************/
402 static void rescan_forest_root_trusts( void )
404 struct winbindd_tdc_domain *dom_list = NULL;
405 size_t num_trusts = 0;
406 int i;
408 /* The only transitive trusts supported by Windows 2003 AD are
409 (a) Parent-Child, (b) Tree-Root, and (c) Forest. The
410 first two are handled in forest and listed by
411 DsEnumerateDomainTrusts(). Forest trusts are not so we
412 have to do that ourselves. */
414 if ( !wcache_tdc_fetch_list( &dom_list, &num_trusts ) )
415 return;
417 for ( i=0; i<num_trusts; i++ ) {
418 struct winbindd_domain *d = NULL;
420 /* Find the forest root. Don't necessarily trust
421 the domain_list() as our primary domain may not
422 have been initialized. */
424 if ( !(dom_list[i].trust_flags & NETR_TRUST_FLAG_TREEROOT) ) {
425 continue;
428 /* Here's the forest root */
430 d = find_domain_from_name_noinit( dom_list[i].domain_name );
432 if ( !d ) {
433 d = add_trusted_domain( dom_list[i].domain_name,
434 dom_list[i].dns_name,
435 &cache_methods,
436 &dom_list[i].sid );
439 DEBUG(10,("rescan_forest_root_trusts: Following trust path "
440 "for domain tree root %s (%s)\n",
441 d->name, d->alt_name ));
443 d->domain_flags = dom_list[i].trust_flags;
444 d->domain_type = dom_list[i].trust_type;
445 d->domain_trust_attribs = dom_list[i].trust_attribs;
447 add_trusted_domains( d );
449 break;
452 TALLOC_FREE( dom_list );
454 return;
457 /********************************************************************
458 scan the transitive forest trusts (not our own)
459 ********************************************************************/
462 static void rescan_forest_trusts( void )
464 struct winbindd_domain *d = NULL;
465 struct winbindd_tdc_domain *dom_list = NULL;
466 size_t num_trusts = 0;
467 int i;
469 /* The only transitive trusts supported by Windows 2003 AD are
470 (a) Parent-Child, (b) Tree-Root, and (c) Forest. The
471 first two are handled in forest and listed by
472 DsEnumerateDomainTrusts(). Forest trusts are not so we
473 have to do that ourselves. */
475 if ( !wcache_tdc_fetch_list( &dom_list, &num_trusts ) )
476 return;
478 for ( i=0; i<num_trusts; i++ ) {
479 uint32 flags = dom_list[i].trust_flags;
480 uint32 type = dom_list[i].trust_type;
481 uint32 attribs = dom_list[i].trust_attribs;
483 d = find_domain_from_name_noinit( dom_list[i].domain_name );
485 /* ignore our primary and internal domains */
487 if ( d && (d->internal || d->primary ) )
488 continue;
490 if ( (flags & NETR_TRUST_FLAG_INBOUND) &&
491 (type == NETR_TRUST_TYPE_UPLEVEL) &&
492 (attribs == NETR_TRUST_ATTRIBUTE_FOREST_TRANSITIVE) )
494 /* add the trusted domain if we don't know
495 about it */
497 if ( !d ) {
498 d = add_trusted_domain( dom_list[i].domain_name,
499 dom_list[i].dns_name,
500 &cache_methods,
501 &dom_list[i].sid );
504 DEBUG(10,("Following trust path for domain %s (%s)\n",
505 d->name, d->alt_name ));
506 add_trusted_domains( d );
510 TALLOC_FREE( dom_list );
512 return;
515 /*********************************************************************
516 The process of updating the trusted domain list is a three step
517 async process:
518 (a) ask our domain
519 (b) ask the root domain in our forest
520 (c) ask the a DC in any Win2003 trusted forests
521 *********************************************************************/
523 void rescan_trusted_domains( void )
525 time_t now = time(NULL);
527 /* see if the time has come... */
529 if ((now >= last_trustdom_scan) &&
530 ((now-last_trustdom_scan) < WINBINDD_RESCAN_FREQ) )
531 return;
533 /* I use to clear the cache here and start over but that
534 caused problems in child processes that needed the
535 trust dom list early on. Removing it means we
536 could have some trusted domains listed that have been
537 removed from our primary domain's DC until a full
538 restart. This should be ok since I think this is what
539 Windows does as well. */
541 /* this will only add new domains we didn't already know about
542 in the domain_list()*/
544 add_trusted_domains( find_our_domain() );
546 last_trustdom_scan = now;
548 return;
551 struct init_child_state {
552 TALLOC_CTX *mem_ctx;
553 struct winbindd_domain *domain;
554 struct winbindd_request *request;
555 struct winbindd_response *response;
556 void (*continuation)(void *private_data, bool success);
557 void *private_data;
560 static void init_child_recv(void *private_data, bool success);
561 static void init_child_getdc_recv(void *private_data, bool success);
563 enum winbindd_result init_child_connection(struct winbindd_domain *domain,
564 void (*continuation)(void *private_data,
565 bool success),
566 void *private_data)
568 TALLOC_CTX *mem_ctx;
569 struct winbindd_request *request;
570 struct winbindd_response *response;
571 struct init_child_state *state;
572 struct winbindd_domain *request_domain;
574 mem_ctx = talloc_init("init_child_connection");
575 if (mem_ctx == NULL) {
576 DEBUG(0, ("talloc_init failed\n"));
577 return WINBINDD_ERROR;
580 request = TALLOC_ZERO_P(mem_ctx, struct winbindd_request);
581 response = TALLOC_P(mem_ctx, struct winbindd_response);
582 state = TALLOC_P(mem_ctx, struct init_child_state);
584 if ((request == NULL) || (response == NULL) || (state == NULL)) {
585 DEBUG(0, ("talloc failed\n"));
586 TALLOC_FREE(mem_ctx);
587 continuation(private_data, False);
588 return WINBINDD_ERROR;
591 request->length = sizeof(*request);
593 state->mem_ctx = mem_ctx;
594 state->domain = domain;
595 state->request = request;
596 state->response = response;
597 state->continuation = continuation;
598 state->private_data = private_data;
600 if (IS_DC || domain->primary || domain->internal ) {
601 /* The primary domain has to find the DC name itself */
602 request->cmd = WINBINDD_INIT_CONNECTION;
603 fstrcpy(request->domain_name, domain->name);
604 request->data.init_conn.is_primary = domain->primary ? true : false;
605 fstrcpy(request->data.init_conn.dcname, "");
606 async_request(mem_ctx, &domain->child, request, response,
607 init_child_recv, state);
608 return WINBINDD_PENDING;
611 /* This is *not* the primary domain, let's ask our DC about a DC
612 * name */
614 request->cmd = WINBINDD_GETDCNAME;
615 fstrcpy(request->domain_name, domain->name);
617 request_domain = find_our_domain();
618 async_domain_request(mem_ctx, request_domain, request, response,
619 init_child_getdc_recv, state);
620 return WINBINDD_PENDING;
623 static void init_child_getdc_recv(void *private_data, bool success)
625 struct init_child_state *state =
626 talloc_get_type_abort(private_data, struct init_child_state);
627 const char *dcname = "";
629 DEBUG(10, ("Received getdcname response\n"));
631 if (success && (state->response->result == WINBINDD_OK)) {
632 dcname = state->response->data.dc_name;
635 state->request->cmd = WINBINDD_INIT_CONNECTION;
636 fstrcpy(state->request->domain_name, state->domain->name);
637 state->request->data.init_conn.is_primary = False;
638 fstrcpy(state->request->data.init_conn.dcname, dcname);
640 async_request(state->mem_ctx, &state->domain->child,
641 state->request, state->response,
642 init_child_recv, state);
645 static void init_child_recv(void *private_data, bool success)
647 struct init_child_state *state =
648 talloc_get_type_abort(private_data, struct init_child_state);
650 DEBUG(5, ("Received child initialization response for domain %s\n",
651 state->domain->name));
653 if ((!success) || (state->response->result != WINBINDD_OK)) {
654 DEBUG(3, ("Could not init child\n"));
655 state->continuation(state->private_data, False);
656 talloc_destroy(state->mem_ctx);
657 return;
660 fstrcpy(state->domain->name,
661 state->response->data.domain_info.name);
662 fstrcpy(state->domain->alt_name,
663 state->response->data.domain_info.alt_name);
664 string_to_sid(&state->domain->sid,
665 state->response->data.domain_info.sid);
666 state->domain->native_mode =
667 state->response->data.domain_info.native_mode;
668 state->domain->active_directory =
669 state->response->data.domain_info.active_directory;
671 init_dc_connection(state->domain);
673 if (state->continuation != NULL)
674 state->continuation(state->private_data, True);
675 talloc_destroy(state->mem_ctx);
678 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
679 struct winbindd_cli_state *state)
681 /* Ensure null termination */
682 state->request.domain_name
683 [sizeof(state->request.domain_name)-1]='\0';
684 state->request.data.init_conn.dcname
685 [sizeof(state->request.data.init_conn.dcname)-1]='\0';
687 if (strlen(state->request.data.init_conn.dcname) > 0) {
688 fstrcpy(domain->dcname, state->request.data.init_conn.dcname);
691 init_dc_connection(domain);
693 if (!domain->initialized) {
694 /* If we return error here we can't do any cached authentication,
695 but we may be in disconnected mode and can't initialize correctly.
696 Do what the previous code did and just return without initialization,
697 once we go online we'll re-initialize.
699 DEBUG(5, ("winbindd_dual_init_connection: %s returning without initialization "
700 "online = %d\n", domain->name, (int)domain->online ));
703 fstrcpy(state->response.data.domain_info.name, domain->name);
704 fstrcpy(state->response.data.domain_info.alt_name, domain->alt_name);
705 sid_to_fstring(state->response.data.domain_info.sid, &domain->sid);
707 state->response.data.domain_info.native_mode
708 = domain->native_mode;
709 state->response.data.domain_info.active_directory
710 = domain->active_directory;
711 state->response.data.domain_info.primary
712 = domain->primary;
714 return WINBINDD_OK;
717 /* Look up global info for the winbind daemon */
718 bool init_domain_list(void)
720 struct winbindd_domain *domain;
721 int role = lp_server_role();
723 /* Free existing list */
724 free_domain_list();
726 /* BUILTIN domain */
728 domain = add_trusted_domain("BUILTIN", NULL, &builtin_passdb_methods,
729 &global_sid_Builtin);
730 if (domain) {
731 setup_domain_child(domain,
732 &domain->child);
735 /* Local SAM */
737 domain = add_trusted_domain(get_global_sam_name(), NULL,
738 &sam_passdb_methods, get_global_sam_sid());
739 if (domain) {
740 if ( role != ROLE_DOMAIN_MEMBER ) {
741 domain->primary = True;
743 setup_domain_child(domain,
744 &domain->child);
747 /* Add ourselves as the first entry. */
749 if ( role == ROLE_DOMAIN_MEMBER ) {
750 DOM_SID our_sid;
752 if (!secrets_fetch_domain_sid(lp_workgroup(), &our_sid)) {
753 DEBUG(0, ("Could not fetch our SID - did we join?\n"));
754 return False;
757 domain = add_trusted_domain( lp_workgroup(), lp_realm(),
758 &cache_methods, &our_sid);
759 if (domain) {
760 domain->primary = True;
761 setup_domain_child(domain,
762 &domain->child);
764 /* Even in the parent winbindd we'll need to
765 talk to the DC, so try and see if we can
766 contact it. Theoretically this isn't neccessary
767 as the init_dc_connection() in init_child_recv()
768 will do this, but we can start detecting the DC
769 early here. */
770 set_domain_online_request(domain);
774 return True;
777 void check_domain_trusted( const char *name, const DOM_SID *user_sid )
779 struct winbindd_domain *domain;
780 DOM_SID dom_sid;
781 uint32 rid;
783 domain = find_domain_from_name_noinit( name );
784 if ( domain )
785 return;
787 sid_copy( &dom_sid, user_sid );
788 if ( !sid_split_rid( &dom_sid, &rid ) )
789 return;
791 /* add the newly discovered trusted domain */
793 domain = add_trusted_domain( name, NULL, &cache_methods,
794 &dom_sid);
796 if ( !domain )
797 return;
799 /* assume this is a trust from a one-way transitive
800 forest trust */
802 domain->active_directory = True;
803 domain->domain_flags = NETR_TRUST_FLAG_OUTBOUND;
804 domain->domain_type = NETR_TRUST_TYPE_UPLEVEL;
805 domain->internal = False;
806 domain->online = True;
808 setup_domain_child(domain,
809 &domain->child);
811 wcache_tdc_add_domain( domain );
813 return;
816 /**
817 * Given a domain name, return the struct winbindd domain info for it
819 * @note Do *not* pass lp_workgroup() to this function. domain_list
820 * may modify it's value, and free that pointer. Instead, our local
821 * domain may be found by calling find_our_domain().
822 * directly.
825 * @return The domain structure for the named domain, if it is working.
828 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name)
830 struct winbindd_domain *domain;
832 /* Search through list */
834 for (domain = domain_list(); domain != NULL; domain = domain->next) {
835 if (strequal(domain_name, domain->name) ||
836 (domain->alt_name[0] &&
837 strequal(domain_name, domain->alt_name))) {
838 return domain;
842 /* Not found */
844 return NULL;
847 struct winbindd_domain *find_domain_from_name(const char *domain_name)
849 struct winbindd_domain *domain;
851 domain = find_domain_from_name_noinit(domain_name);
853 if (domain == NULL)
854 return NULL;
856 if (!domain->initialized)
857 init_dc_connection(domain);
859 return domain;
862 /* Given a domain sid, return the struct winbindd domain info for it */
864 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid)
866 struct winbindd_domain *domain;
868 /* Search through list */
870 for (domain = domain_list(); domain != NULL; domain = domain->next) {
871 if (sid_compare_domain(sid, &domain->sid) == 0)
872 return domain;
875 /* Not found */
877 return NULL;
880 /* Given a domain sid, return the struct winbindd domain info for it */
882 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid)
884 struct winbindd_domain *domain;
886 domain = find_domain_from_sid_noinit(sid);
888 if (domain == NULL)
889 return NULL;
891 if (!domain->initialized)
892 init_dc_connection(domain);
894 return domain;
897 struct winbindd_domain *find_our_domain(void)
899 struct winbindd_domain *domain;
901 /* Search through list */
903 for (domain = domain_list(); domain != NULL; domain = domain->next) {
904 if (domain->primary)
905 return domain;
908 smb_panic("Could not find our domain");
909 return NULL;
912 struct winbindd_domain *find_root_domain(void)
914 struct winbindd_domain *ours = find_our_domain();
916 if ( !ours )
917 return NULL;
919 if ( strlen(ours->forest_name) == 0 )
920 return NULL;
922 return find_domain_from_name( ours->forest_name );
925 struct winbindd_domain *find_builtin_domain(void)
927 DOM_SID sid;
928 struct winbindd_domain *domain;
930 string_to_sid(&sid, "S-1-5-32");
931 domain = find_domain_from_sid(&sid);
933 if (domain == NULL) {
934 smb_panic("Could not find BUILTIN domain");
937 return domain;
940 /* Find the appropriate domain to lookup a name or SID */
942 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid)
944 /* SIDs in the S-1-22-{1,2} domain should be handled by our passdb */
946 if ( sid_check_is_in_unix_groups(sid) ||
947 sid_check_is_unix_groups(sid) ||
948 sid_check_is_in_unix_users(sid) ||
949 sid_check_is_unix_users(sid) )
951 return find_domain_from_sid(get_global_sam_sid());
954 /* A DC can't ask the local smbd for remote SIDs, here winbindd is the
955 * one to contact the external DC's. On member servers the internal
956 * domains are different: These are part of the local SAM. */
958 DEBUG(10, ("find_lookup_domain_from_sid(%s)\n", sid_string_dbg(sid)));
960 if (IS_DC || is_internal_domain(sid) || is_in_internal_domain(sid)) {
961 DEBUG(10, ("calling find_domain_from_sid\n"));
962 return find_domain_from_sid(sid);
965 /* On a member server a query for SID or name can always go to our
966 * primary DC. */
968 DEBUG(10, ("calling find_our_domain\n"));
969 return find_our_domain();
972 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name)
974 if ( strequal(domain_name, unix_users_domain_name() ) ||
975 strequal(domain_name, unix_groups_domain_name() ) )
977 return find_domain_from_name_noinit( get_global_sam_name() );
980 if (IS_DC || strequal(domain_name, "BUILTIN") ||
981 strequal(domain_name, get_global_sam_name()))
982 return find_domain_from_name_noinit(domain_name);
984 /* The "Unix User" and "Unix Group" domain our handled by passdb */
986 return find_our_domain();
989 /* Lookup a sid in a domain from a name */
991 bool winbindd_lookup_sid_by_name(TALLOC_CTX *mem_ctx,
992 enum winbindd_cmd orig_cmd,
993 struct winbindd_domain *domain,
994 const char *domain_name,
995 const char *name, DOM_SID *sid,
996 enum lsa_SidType *type)
998 NTSTATUS result;
1000 /* Lookup name */
1001 result = domain->methods->name_to_sid(domain, mem_ctx, orig_cmd,
1002 domain_name, name, sid, type);
1004 /* Return sid and type if lookup successful */
1005 if (!NT_STATUS_IS_OK(result)) {
1006 *type = SID_NAME_UNKNOWN;
1009 return NT_STATUS_IS_OK(result);
1013 * @brief Lookup a name in a domain from a sid.
1015 * @param sid Security ID you want to look up.
1016 * @param name On success, set to the name corresponding to @p sid.
1017 * @param dom_name On success, set to the 'domain name' corresponding to @p sid.
1018 * @param type On success, contains the type of name: alias, group or
1019 * user.
1020 * @retval True if the name exists, in which case @p name and @p type
1021 * are set, otherwise False.
1023 bool winbindd_lookup_name_by_sid(TALLOC_CTX *mem_ctx,
1024 struct winbindd_domain *domain,
1025 DOM_SID *sid,
1026 char **dom_name,
1027 char **name,
1028 enum lsa_SidType *type)
1030 NTSTATUS result;
1032 *dom_name = NULL;
1033 *name = NULL;
1035 /* Lookup name */
1037 result = domain->methods->sid_to_name(domain, mem_ctx, sid, dom_name, name, type);
1039 /* Return name and type if successful */
1041 if (NT_STATUS_IS_OK(result)) {
1042 return True;
1045 *type = SID_NAME_UNKNOWN;
1047 return False;
1050 /* Free state information held for {set,get,end}{pw,gr}ent() functions */
1052 void free_getent_state(struct getent_state *state)
1054 struct getent_state *temp;
1056 /* Iterate over state list */
1058 temp = state;
1060 while(temp != NULL) {
1061 struct getent_state *next;
1063 /* Free sam entries then list entry */
1065 SAFE_FREE(state->sam_entries);
1066 DLIST_REMOVE(state, state);
1067 next = temp->next;
1069 SAFE_FREE(temp);
1070 temp = next;
1074 /* Is this a domain which we may assume no DOMAIN\ prefix? */
1076 static bool assume_domain(const char *domain)
1078 /* never assume the domain on a standalone server */
1080 if ( lp_server_role() == ROLE_STANDALONE )
1081 return False;
1083 /* domain member servers may possibly assume for the domain name */
1085 if ( lp_server_role() == ROLE_DOMAIN_MEMBER ) {
1086 if ( !strequal(lp_workgroup(), domain) )
1087 return False;
1089 if ( lp_winbind_use_default_domain() || lp_winbind_trusted_domains_only() )
1090 return True;
1093 /* only left with a domain controller */
1095 if ( strequal(get_global_sam_name(), domain) ) {
1096 return True;
1099 return False;
1102 /* Parse a string of the form DOMAIN\user into a domain and a user */
1104 bool parse_domain_user(const char *domuser, fstring domain, fstring user)
1106 char *p = strchr(domuser,*lp_winbind_separator());
1108 if ( !p ) {
1109 fstrcpy(user, domuser);
1111 if ( assume_domain(lp_workgroup())) {
1112 fstrcpy(domain, lp_workgroup());
1113 } else if ((p = strchr(domuser, '@')) != NULL) {
1114 fstrcpy(domain, "");
1115 } else {
1116 return False;
1118 } else {
1119 fstrcpy(user, p+1);
1120 fstrcpy(domain, domuser);
1121 domain[PTR_DIFF(p, domuser)] = 0;
1124 strupper_m(domain);
1126 return True;
1129 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
1130 char **domain, char **user)
1132 fstring fstr_domain, fstr_user;
1133 if (!parse_domain_user(domuser, fstr_domain, fstr_user)) {
1134 return False;
1136 *domain = talloc_strdup(mem_ctx, fstr_domain);
1137 *user = talloc_strdup(mem_ctx, fstr_user);
1138 return ((*domain != NULL) && (*user != NULL));
1141 /* add a domain user name to a buffer */
1142 void parse_add_domuser(void *buf, char *domuser, int *len)
1144 fstring domain;
1145 char *p, *user;
1147 user = domuser;
1148 p = strchr(domuser, *lp_winbind_separator());
1150 if (p) {
1152 fstrcpy(domain, domuser);
1153 domain[PTR_DIFF(p, domuser)] = 0;
1154 p++;
1156 if (assume_domain(domain)) {
1158 user = p;
1159 *len -= (PTR_DIFF(p, domuser));
1163 safe_strcpy(buf, user, *len);
1166 /* Ensure an incoming username from NSS is fully qualified. Replace the
1167 incoming fstring with DOMAIN <separator> user. Returns the same
1168 values as parse_domain_user() but also replaces the incoming username.
1169 Used to ensure all names are fully qualified within winbindd.
1170 Used by the NSS protocols of auth, chauthtok, logoff and ccache_ntlm_auth.
1171 The protocol definitions of auth_crap, chng_pswd_auth_crap
1172 really should be changed to use this instead of doing things
1173 by hand. JRA. */
1175 bool canonicalize_username(fstring username_inout, fstring domain, fstring user)
1177 if (!parse_domain_user(username_inout, domain, user)) {
1178 return False;
1180 slprintf(username_inout, sizeof(fstring) - 1, "%s%c%s",
1181 domain, *lp_winbind_separator(),
1182 user);
1183 return True;
1187 Fill DOMAIN\\USERNAME entry accounting 'winbind use default domain' and
1188 'winbind separator' options.
1189 This means:
1190 - omit DOMAIN when 'winbind use default domain = true' and DOMAIN is
1191 lp_workgroup()
1193 If we are a PDC or BDC, and this is for our domain, do likewise.
1195 Also, if omit DOMAIN if 'winbind trusted domains only = true', as the
1196 username is then unqualified in unix
1198 We always canonicalize as UPPERCASE DOMAIN, lowercase username.
1200 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume)
1202 fstring tmp_user;
1204 fstrcpy(tmp_user, user);
1205 strlower_m(tmp_user);
1207 if (can_assume && assume_domain(domain)) {
1208 strlcpy(name, tmp_user, sizeof(fstring));
1209 } else {
1210 slprintf(name, sizeof(fstring) - 1, "%s%c%s",
1211 domain, *lp_winbind_separator(),
1212 tmp_user);
1217 * Winbindd socket accessor functions
1220 const char *get_winbind_pipe_dir(void)
1222 return lp_parm_const_string(-1, "winbindd", "socket dir", WINBINDD_SOCKET_DIR);
1225 char *get_winbind_priv_pipe_dir(void)
1227 return lock_path(WINBINDD_PRIV_SOCKET_SUBDIR);
1230 /* Open the winbindd socket */
1232 static int _winbindd_socket = -1;
1233 static int _winbindd_priv_socket = -1;
1235 int open_winbindd_socket(void)
1237 if (_winbindd_socket == -1) {
1238 _winbindd_socket = create_pipe_sock(
1239 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME, 0755);
1240 DEBUG(10, ("open_winbindd_socket: opened socket fd %d\n",
1241 _winbindd_socket));
1244 return _winbindd_socket;
1247 int open_winbindd_priv_socket(void)
1249 if (_winbindd_priv_socket == -1) {
1250 _winbindd_priv_socket = create_pipe_sock(
1251 get_winbind_priv_pipe_dir(), WINBINDD_SOCKET_NAME, 0750);
1252 DEBUG(10, ("open_winbindd_priv_socket: opened socket fd %d\n",
1253 _winbindd_priv_socket));
1256 return _winbindd_priv_socket;
1259 /* Close the winbindd socket */
1261 void close_winbindd_socket(void)
1263 if (_winbindd_socket != -1) {
1264 DEBUG(10, ("close_winbindd_socket: closing socket fd %d\n",
1265 _winbindd_socket));
1266 close(_winbindd_socket);
1267 _winbindd_socket = -1;
1269 if (_winbindd_priv_socket != -1) {
1270 DEBUG(10, ("close_winbindd_socket: closing socket fd %d\n",
1271 _winbindd_priv_socket));
1272 close(_winbindd_priv_socket);
1273 _winbindd_priv_socket = -1;
1278 * Client list accessor functions
1281 static struct winbindd_cli_state *_client_list;
1282 static int _num_clients;
1284 /* Return list of all connected clients */
1286 struct winbindd_cli_state *winbindd_client_list(void)
1288 return _client_list;
1291 /* Add a connection to the list */
1293 void winbindd_add_client(struct winbindd_cli_state *cli)
1295 DLIST_ADD(_client_list, cli);
1296 _num_clients++;
1299 /* Remove a client from the list */
1301 void winbindd_remove_client(struct winbindd_cli_state *cli)
1303 DLIST_REMOVE(_client_list, cli);
1304 _num_clients--;
1307 /* Close all open clients */
1309 void winbindd_kill_all_clients(void)
1311 struct winbindd_cli_state *cl = winbindd_client_list();
1313 DEBUG(10, ("winbindd_kill_all_clients: going postal\n"));
1315 while (cl) {
1316 struct winbindd_cli_state *next;
1318 next = cl->next;
1319 winbindd_remove_client(cl);
1320 cl = next;
1324 /* Return number of open clients */
1326 int winbindd_num_clients(void)
1328 return _num_clients;
1331 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
1332 TALLOC_CTX *mem_ctx,
1333 const DOM_SID *user_sid,
1334 uint32 *p_num_groups, DOM_SID **user_sids)
1336 struct netr_SamInfo3 *info3 = NULL;
1337 NTSTATUS status = NT_STATUS_NO_MEMORY;
1338 size_t num_groups = 0;
1340 DEBUG(3,(": lookup_usergroups_cached\n"));
1342 *user_sids = NULL;
1343 *p_num_groups = 0;
1345 info3 = netsamlogon_cache_get(mem_ctx, user_sid);
1347 if (info3 == NULL) {
1348 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1351 if (info3->base.groups.count == 0) {
1352 TALLOC_FREE(info3);
1353 return NT_STATUS_UNSUCCESSFUL;
1356 /* Skip Domain local groups outside our domain.
1357 We'll get these from the getsidaliases() RPC call. */
1358 status = sid_array_from_info3(mem_ctx, info3,
1359 user_sids,
1360 &num_groups,
1361 false, true);
1363 if (!NT_STATUS_IS_OK(status)) {
1364 TALLOC_FREE(info3);
1365 return status;
1368 TALLOC_FREE(info3);
1369 *p_num_groups = num_groups;
1370 status = (user_sids != NULL) ? NT_STATUS_OK : NT_STATUS_NO_MEMORY;
1372 DEBUG(3,(": lookup_usergroups_cached succeeded\n"));
1374 return status;
1377 /*********************************************************************
1378 We use this to remove spaces from user and group names
1379 ********************************************************************/
1381 void ws_name_replace( char *name, char replace )
1383 char replace_char[2] = { 0x0, 0x0 };
1385 if ( !lp_winbind_normalize_names() || (replace == '\0') )
1386 return;
1388 replace_char[0] = replace;
1389 all_string_sub( name, " ", replace_char, 0 );
1391 return;
1394 /*********************************************************************
1395 We use this to do the inverse of ws_name_replace()
1396 ********************************************************************/
1398 void ws_name_return( char *name, char replace )
1400 char replace_char[2] = { 0x0, 0x0 };
1402 if ( !lp_winbind_normalize_names() || (replace == '\0') )
1403 return;
1405 replace_char[0] = replace;
1406 all_string_sub( name, replace_char, " ", 0 );
1408 return;
1411 /*********************************************************************
1412 ********************************************************************/
1414 bool winbindd_can_contact_domain(struct winbindd_domain *domain)
1416 struct winbindd_tdc_domain *tdc = NULL;
1417 TALLOC_CTX *frame = talloc_stackframe();
1418 bool ret = false;
1420 /* We can contact the domain if it is our primary domain */
1422 if (domain->primary) {
1423 return true;
1426 /* Trust the TDC cache and not the winbindd_domain flags */
1428 if ((tdc = wcache_tdc_fetch_domain(frame, domain->name)) == NULL) {
1429 DEBUG(10,("winbindd_can_contact_domain: %s not found in cache\n",
1430 domain->name));
1431 return false;
1434 /* Can always contact a domain that is in out forest */
1436 if (tdc->trust_flags & NETR_TRUST_FLAG_IN_FOREST) {
1437 ret = true;
1438 goto done;
1442 * On a _member_ server, we cannot contact the domain if it
1443 * is running AD and we have no inbound trust.
1446 if (!IS_DC &&
1447 domain->active_directory &&
1448 ((tdc->trust_flags & NETR_TRUST_FLAG_INBOUND) != NETR_TRUST_FLAG_INBOUND))
1450 DEBUG(10, ("winbindd_can_contact_domain: %s is an AD domain "
1451 "and we have no inbound trust.\n", domain->name));
1452 goto done;
1455 /* Assume everything else is ok (probably not true but what
1456 can you do?) */
1458 ret = true;
1460 done:
1461 talloc_destroy(frame);
1463 return ret;
1466 /*********************************************************************
1467 ********************************************************************/
1469 bool winbindd_internal_child(struct winbindd_child *child)
1471 if ((child == idmap_child()) || (child == locator_child())) {
1472 return True;
1475 return False;
1478 #ifdef HAVE_KRB5_LOCATE_PLUGIN_H
1480 /*********************************************************************
1481 ********************************************************************/
1483 static void winbindd_set_locator_kdc_env(const struct winbindd_domain *domain)
1485 char *var = NULL;
1486 char addr[INET6_ADDRSTRLEN];
1487 const char *kdc = NULL;
1488 int lvl = 11;
1490 if (!domain || !domain->alt_name || !*domain->alt_name) {
1491 return;
1494 if (domain->initialized && !domain->active_directory) {
1495 DEBUG(lvl,("winbindd_set_locator_kdc_env: %s not AD\n",
1496 domain->alt_name));
1497 return;
1500 print_sockaddr(addr, sizeof(addr), &domain->dcaddr);
1501 kdc = addr;
1502 if (!*kdc) {
1503 DEBUG(lvl,("winbindd_set_locator_kdc_env: %s no DC IP\n",
1504 domain->alt_name));
1505 kdc = domain->dcname;
1508 if (!kdc || !*kdc) {
1509 DEBUG(lvl,("winbindd_set_locator_kdc_env: %s no DC at all\n",
1510 domain->alt_name));
1511 return;
1514 if (asprintf_strupper_m(&var, "%s_%s", WINBINDD_LOCATOR_KDC_ADDRESS,
1515 domain->alt_name) == -1) {
1516 return;
1519 DEBUG(lvl,("winbindd_set_locator_kdc_env: setting var: %s to: %s\n",
1520 var, kdc));
1522 setenv(var, kdc, 1);
1523 free(var);
1526 /*********************************************************************
1527 ********************************************************************/
1529 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain)
1531 struct winbindd_domain *our_dom = find_our_domain();
1533 winbindd_set_locator_kdc_env(domain);
1535 if (domain != our_dom) {
1536 winbindd_set_locator_kdc_env(our_dom);
1540 /*********************************************************************
1541 ********************************************************************/
1543 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain)
1545 char *var = NULL;
1547 if (!domain || !domain->alt_name || !*domain->alt_name) {
1548 return;
1551 if (asprintf_strupper_m(&var, "%s_%s", WINBINDD_LOCATOR_KDC_ADDRESS,
1552 domain->alt_name) == -1) {
1553 return;
1556 unsetenv(var);
1557 free(var);
1559 #else
1561 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain)
1563 return;
1566 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain)
1568 return;
1571 #endif /* HAVE_KRB5_LOCATE_PLUGIN_H */
1573 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result)
1575 resp->data.auth.nt_status = NT_STATUS_V(result);
1576 fstrcpy(resp->data.auth.nt_status_string, nt_errstr(result));
1578 /* we might have given a more useful error above */
1579 if (*resp->data.auth.error_string == '\0')
1580 fstrcpy(resp->data.auth.error_string,
1581 get_friendly_nt_error_msg(result));
1582 resp->data.auth.pam_error = nt_status_to_pam(result);