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/>.
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
;
35 * @file winbindd_util.c
37 * Winbind daemon for NT domain authentication nss module.
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
;
49 When was the last scan of trusted domains done?
54 static time_t last_trustdom_scan
;
56 struct winbindd_domain
*domain_list(void)
60 if ((!_domain_list
) && (!init_domain_list())) {
61 smb_panic("Init_domain_list failed");
67 /* Free all entries in the trusted domain list */
69 void free_domain_list(void)
71 struct winbindd_domain
*domain
= _domain_list
;
74 struct winbindd_domain
*next
= domain
->next
;
76 DLIST_REMOVE(_domain_list
, domain
);
82 static bool is_internal_domain(const DOM_SID
*sid
)
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
)
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
,
110 struct winbindd_domain
*domain
;
111 const char *alternative_name
= NULL
;
112 char *idmap_config_option
;
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
))
130 if (alternative_name
&& *alternative_name
)
132 if (strequal(alternative_name
, domain
->name
) ||
133 strequal(alternative_name
, domain
->alt_name
))
141 if (is_null_sid(sid
)) {
145 if (sid_equal(sid
, &domain
->sid
)) {
151 /* See if we found a match. Check if we need to update the
154 if ( domain
&& sid
) {
155 if ( sid_equal( &domain
->sid
, &global_sid_NULL
) )
156 sid_copy( &domain
->sid
, sid
);
161 /* Create new domain entry */
163 if ((domain
= SMB_MALLOC_P(struct winbindd_domain
)) == NULL
)
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;
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",
195 if (idmap_config_option
== NULL
) {
196 DEBUG(0, ("talloc failed, not looking for idmap config\n"));
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"));
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
));
212 if (low_id
> high_id
) {
213 DEBUG(1, ("invalid range in %s: %s\n",
214 idmap_config_option
, param
));
217 domain
->have_idmap_config
= true;
218 domain
->id_range_low
= low_id
;
219 domain
->id_range_high
= high_id
;
224 DEBUG(2,("Added domain %s %s %s\n",
225 domain
->name
, domain
->alt_name
,
226 &domain
->sid
?sid_string_dbg(&domain
->sid
):""));
231 /********************************************************************
232 rescan our domains looking for new trusted domains
233 ********************************************************************/
235 struct trustdom_state
{
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
)
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"));
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
);
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
;
293 if ((!success
) || (response
->result
!= WINBINDD_OK
)) {
294 DEBUG(1, ("Could not receive trustdoms\n"));
295 talloc_destroy(state
->mem_ctx
);
299 p
= (char *)response
->extra_data
.data
;
301 while ((p
!= NULL
) && (*p
!= '\0')) {
302 char *q
, *sidstr
, *alt_name
;
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"));
316 sidstr
= strchr(alt_name
, '\\');
317 if (sidstr
== NULL
) {
318 DEBUG(0, ("Got invalid trustdom response\n"));
325 q
= strchr(sidstr
, '\n');
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
);
334 DEBUG(0, ("Got invalid trustdom response\n"));
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
,
354 domain
= add_trusted_domain(p
, alternate_name
,
358 setup_domain_child(domain
,
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
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();
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
);
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;
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
) )
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
) ) {
428 /* Here's the forest root */
430 d
= find_domain_from_name_noinit( dom_list
[i
].domain_name
);
433 d
= add_trusted_domain( dom_list
[i
].domain_name
,
434 dom_list
[i
].dns_name
,
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
);
452 TALLOC_FREE( dom_list
);
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;
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
) )
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
) )
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
498 d
= add_trusted_domain( dom_list
[i
].domain_name
,
499 dom_list
[i
].dns_name
,
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
);
515 /*********************************************************************
516 The process of updating the trusted domain list is a three step
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
) )
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
;
551 struct init_child_state
{
553 struct winbindd_domain
*domain
;
554 struct winbindd_request
*request
;
555 struct winbindd_response
*response
;
556 void (*continuation
)(void *private_data
, bool success
);
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
,
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
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
);
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
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 */
728 domain
= add_trusted_domain("BUILTIN", NULL
, &builtin_passdb_methods
,
729 &global_sid_Builtin
);
731 setup_domain_child(domain
,
737 domain
= add_trusted_domain(get_global_sam_name(), NULL
,
738 &sam_passdb_methods
, get_global_sam_sid());
740 if ( role
!= ROLE_DOMAIN_MEMBER
) {
741 domain
->primary
= True
;
743 setup_domain_child(domain
,
747 /* Add ourselves as the first entry. */
749 if ( role
== ROLE_DOMAIN_MEMBER
) {
752 if (!secrets_fetch_domain_sid(lp_workgroup(), &our_sid
)) {
753 DEBUG(0, ("Could not fetch our SID - did we join?\n"));
757 domain
= add_trusted_domain( lp_workgroup(), lp_realm(),
758 &cache_methods
, &our_sid
);
760 domain
->primary
= True
;
761 setup_domain_child(domain
,
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
770 set_domain_online_request(domain
);
777 void check_domain_trusted( const char *name
, const DOM_SID
*user_sid
)
779 struct winbindd_domain
*domain
;
783 domain
= find_domain_from_name_noinit( name
);
787 sid_copy( &dom_sid
, user_sid
);
788 if ( !sid_split_rid( &dom_sid
, &rid
) )
791 /* add the newly discovered trusted domain */
793 domain
= add_trusted_domain( name
, NULL
, &cache_methods
,
799 /* assume this is a trust from a one-way transitive
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
,
811 wcache_tdc_add_domain( domain
);
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().
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
))) {
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
);
856 if (!domain
->initialized
)
857 init_dc_connection(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)
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
);
891 if (!domain
->initialized
)
892 init_dc_connection(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
) {
908 smb_panic("Could not find our domain");
912 struct winbindd_domain
*find_root_domain(void)
914 struct winbindd_domain
*ours
= find_our_domain();
919 if ( strlen(ours
->forest_name
) == 0 )
922 return find_domain_from_name( ours
->forest_name
);
925 struct winbindd_domain
*find_builtin_domain(void)
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");
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
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
)
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
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
,
1028 enum lsa_SidType
*type
)
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
)) {
1045 *type
= SID_NAME_UNKNOWN
;
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 */
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
);
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
)
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
) )
1089 if ( lp_winbind_use_default_domain() || lp_winbind_trusted_domains_only() )
1093 /* only left with a domain controller */
1095 if ( strequal(get_global_sam_name(), domain
) ) {
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());
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
, "");
1120 fstrcpy(domain
, domuser
);
1121 domain
[PTR_DIFF(p
, domuser
)] = 0;
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
)) {
1136 *domain
= talloc_strdup(mem_ctx
, fstr_domain
);
1137 *user
= talloc_strdup(mem_ctx
, fstr_user
);
1138 return ((*domain
!= NULL
) && (*user
!= NULL
));
1141 /* Ensure an incoming username from NSS is fully qualified. Replace the
1142 incoming fstring with DOMAIN <separator> user. Returns the same
1143 values as parse_domain_user() but also replaces the incoming username.
1144 Used to ensure all names are fully qualified within winbindd.
1145 Used by the NSS protocols of auth, chauthtok, logoff and ccache_ntlm_auth.
1146 The protocol definitions of auth_crap, chng_pswd_auth_crap
1147 really should be changed to use this instead of doing things
1150 bool canonicalize_username(fstring username_inout
, fstring domain
, fstring user
)
1152 if (!parse_domain_user(username_inout
, domain
, user
)) {
1155 slprintf(username_inout
, sizeof(fstring
) - 1, "%s%c%s",
1156 domain
, *lp_winbind_separator(),
1162 Fill DOMAIN\\USERNAME entry accounting 'winbind use default domain' and
1163 'winbind separator' options.
1165 - omit DOMAIN when 'winbind use default domain = true' and DOMAIN is
1168 If we are a PDC or BDC, and this is for our domain, do likewise.
1170 Also, if omit DOMAIN if 'winbind trusted domains only = true', as the
1171 username is then unqualified in unix
1173 We always canonicalize as UPPERCASE DOMAIN, lowercase username.
1175 void fill_domain_username(fstring name
, const char *domain
, const char *user
, bool can_assume
)
1179 fstrcpy(tmp_user
, user
);
1180 strlower_m(tmp_user
);
1182 if (can_assume
&& assume_domain(domain
)) {
1183 strlcpy(name
, tmp_user
, sizeof(fstring
));
1185 slprintf(name
, sizeof(fstring
) - 1, "%s%c%s",
1186 domain
, *lp_winbind_separator(),
1192 * Winbindd socket accessor functions
1195 const char *get_winbind_pipe_dir(void)
1197 return lp_parm_const_string(-1, "winbindd", "socket dir", WINBINDD_SOCKET_DIR
);
1200 char *get_winbind_priv_pipe_dir(void)
1202 return lock_path(WINBINDD_PRIV_SOCKET_SUBDIR
);
1205 /* Open the winbindd socket */
1207 static int _winbindd_socket
= -1;
1208 static int _winbindd_priv_socket
= -1;
1210 int open_winbindd_socket(void)
1212 if (_winbindd_socket
== -1) {
1213 _winbindd_socket
= create_pipe_sock(
1214 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME
, 0755);
1215 DEBUG(10, ("open_winbindd_socket: opened socket fd %d\n",
1219 return _winbindd_socket
;
1222 int open_winbindd_priv_socket(void)
1224 if (_winbindd_priv_socket
== -1) {
1225 _winbindd_priv_socket
= create_pipe_sock(
1226 get_winbind_priv_pipe_dir(), WINBINDD_SOCKET_NAME
, 0750);
1227 DEBUG(10, ("open_winbindd_priv_socket: opened socket fd %d\n",
1228 _winbindd_priv_socket
));
1231 return _winbindd_priv_socket
;
1234 /* Close the winbindd socket */
1236 void close_winbindd_socket(void)
1238 if (_winbindd_socket
!= -1) {
1239 DEBUG(10, ("close_winbindd_socket: closing socket fd %d\n",
1241 close(_winbindd_socket
);
1242 _winbindd_socket
= -1;
1244 if (_winbindd_priv_socket
!= -1) {
1245 DEBUG(10, ("close_winbindd_socket: closing socket fd %d\n",
1246 _winbindd_priv_socket
));
1247 close(_winbindd_priv_socket
);
1248 _winbindd_priv_socket
= -1;
1253 * Client list accessor functions
1256 static struct winbindd_cli_state
*_client_list
;
1257 static int _num_clients
;
1259 /* Return list of all connected clients */
1261 struct winbindd_cli_state
*winbindd_client_list(void)
1263 return _client_list
;
1266 /* Add a connection to the list */
1268 void winbindd_add_client(struct winbindd_cli_state
*cli
)
1270 DLIST_ADD(_client_list
, cli
);
1274 /* Remove a client from the list */
1276 void winbindd_remove_client(struct winbindd_cli_state
*cli
)
1278 DLIST_REMOVE(_client_list
, cli
);
1282 /* Close all open clients */
1284 void winbindd_kill_all_clients(void)
1286 struct winbindd_cli_state
*cl
= winbindd_client_list();
1288 DEBUG(10, ("winbindd_kill_all_clients: going postal\n"));
1291 struct winbindd_cli_state
*next
;
1294 winbindd_remove_client(cl
);
1299 /* Return number of open clients */
1301 int winbindd_num_clients(void)
1303 return _num_clients
;
1306 NTSTATUS
lookup_usergroups_cached(struct winbindd_domain
*domain
,
1307 TALLOC_CTX
*mem_ctx
,
1308 const DOM_SID
*user_sid
,
1309 uint32
*p_num_groups
, DOM_SID
**user_sids
)
1311 struct netr_SamInfo3
*info3
= NULL
;
1312 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
1313 size_t num_groups
= 0;
1315 DEBUG(3,(": lookup_usergroups_cached\n"));
1320 info3
= netsamlogon_cache_get(mem_ctx
, user_sid
);
1322 if (info3
== NULL
) {
1323 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
1326 if (info3
->base
.groups
.count
== 0) {
1328 return NT_STATUS_UNSUCCESSFUL
;
1331 /* Skip Domain local groups outside our domain.
1332 We'll get these from the getsidaliases() RPC call. */
1333 status
= sid_array_from_info3(mem_ctx
, info3
,
1338 if (!NT_STATUS_IS_OK(status
)) {
1344 *p_num_groups
= num_groups
;
1345 status
= (user_sids
!= NULL
) ? NT_STATUS_OK
: NT_STATUS_NO_MEMORY
;
1347 DEBUG(3,(": lookup_usergroups_cached succeeded\n"));
1352 /*********************************************************************
1353 We use this to remove spaces from user and group names
1354 ********************************************************************/
1356 void ws_name_replace( char *name
, char replace
)
1358 char replace_char
[2] = { 0x0, 0x0 };
1360 if ( !lp_winbind_normalize_names() || (replace
== '\0') )
1363 replace_char
[0] = replace
;
1364 all_string_sub( name
, " ", replace_char
, 0 );
1369 /*********************************************************************
1370 We use this to do the inverse of ws_name_replace()
1371 ********************************************************************/
1373 void ws_name_return( char *name
, char replace
)
1375 char replace_char
[2] = { 0x0, 0x0 };
1377 if ( !lp_winbind_normalize_names() || (replace
== '\0') )
1380 replace_char
[0] = replace
;
1381 all_string_sub( name
, replace_char
, " ", 0 );
1386 /*********************************************************************
1387 ********************************************************************/
1389 bool winbindd_can_contact_domain(struct winbindd_domain
*domain
)
1391 struct winbindd_tdc_domain
*tdc
= NULL
;
1392 TALLOC_CTX
*frame
= talloc_stackframe();
1395 /* We can contact the domain if it is our primary domain */
1397 if (domain
->primary
) {
1401 /* Trust the TDC cache and not the winbindd_domain flags */
1403 if ((tdc
= wcache_tdc_fetch_domain(frame
, domain
->name
)) == NULL
) {
1404 DEBUG(10,("winbindd_can_contact_domain: %s not found in cache\n",
1409 /* Can always contact a domain that is in out forest */
1411 if (tdc
->trust_flags
& NETR_TRUST_FLAG_IN_FOREST
) {
1417 * On a _member_ server, we cannot contact the domain if it
1418 * is running AD and we have no inbound trust.
1422 domain
->active_directory
&&
1423 ((tdc
->trust_flags
& NETR_TRUST_FLAG_INBOUND
) != NETR_TRUST_FLAG_INBOUND
))
1425 DEBUG(10, ("winbindd_can_contact_domain: %s is an AD domain "
1426 "and we have no inbound trust.\n", domain
->name
));
1430 /* Assume everything else is ok (probably not true but what
1436 talloc_destroy(frame
);
1441 /*********************************************************************
1442 ********************************************************************/
1444 bool winbindd_internal_child(struct winbindd_child
*child
)
1446 if ((child
== idmap_child()) || (child
== locator_child())) {
1453 #ifdef HAVE_KRB5_LOCATE_PLUGIN_H
1455 /*********************************************************************
1456 ********************************************************************/
1458 static void winbindd_set_locator_kdc_env(const struct winbindd_domain
*domain
)
1461 char addr
[INET6_ADDRSTRLEN
];
1462 const char *kdc
= NULL
;
1465 if (!domain
|| !domain
->alt_name
|| !*domain
->alt_name
) {
1469 if (domain
->initialized
&& !domain
->active_directory
) {
1470 DEBUG(lvl
,("winbindd_set_locator_kdc_env: %s not AD\n",
1475 print_sockaddr(addr
, sizeof(addr
), &domain
->dcaddr
);
1478 DEBUG(lvl
,("winbindd_set_locator_kdc_env: %s no DC IP\n",
1480 kdc
= domain
->dcname
;
1483 if (!kdc
|| !*kdc
) {
1484 DEBUG(lvl
,("winbindd_set_locator_kdc_env: %s no DC at all\n",
1489 if (asprintf_strupper_m(&var
, "%s_%s", WINBINDD_LOCATOR_KDC_ADDRESS
,
1490 domain
->alt_name
) == -1) {
1494 DEBUG(lvl
,("winbindd_set_locator_kdc_env: setting var: %s to: %s\n",
1497 setenv(var
, kdc
, 1);
1501 /*********************************************************************
1502 ********************************************************************/
1504 void winbindd_set_locator_kdc_envs(const struct winbindd_domain
*domain
)
1506 struct winbindd_domain
*our_dom
= find_our_domain();
1508 winbindd_set_locator_kdc_env(domain
);
1510 if (domain
!= our_dom
) {
1511 winbindd_set_locator_kdc_env(our_dom
);
1515 /*********************************************************************
1516 ********************************************************************/
1518 void winbindd_unset_locator_kdc_env(const struct winbindd_domain
*domain
)
1522 if (!domain
|| !domain
->alt_name
|| !*domain
->alt_name
) {
1526 if (asprintf_strupper_m(&var
, "%s_%s", WINBINDD_LOCATOR_KDC_ADDRESS
,
1527 domain
->alt_name
) == -1) {
1536 void winbindd_set_locator_kdc_envs(const struct winbindd_domain
*domain
)
1541 void winbindd_unset_locator_kdc_env(const struct winbindd_domain
*domain
)
1546 #endif /* HAVE_KRB5_LOCATE_PLUGIN_H */
1548 void set_auth_errors(struct winbindd_response
*resp
, NTSTATUS result
)
1550 resp
->data
.auth
.nt_status
= NT_STATUS_V(result
);
1551 fstrcpy(resp
->data
.auth
.nt_status_string
, nt_errstr(result
));
1553 /* we might have given a more useful error above */
1554 if (*resp
->data
.auth
.error_string
== '\0')
1555 fstrcpy(resp
->data
.auth
.error_string
,
1556 get_friendly_nt_error_msg(result
));
1557 resp
->data
.auth
.pam_error
= nt_status_to_pam(result
);