Revert "Fix a memleak caused by a crappy get_sorted_dc_list() API"
[Samba.git] / source / winbindd / winbindd_cm.c
blob17bc66ec5d4c86fc71f23fc688c499dbb3ff571e
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind daemon connection manager
6 Copyright (C) Tim Potter 2001
7 Copyright (C) Andrew Bartlett 2002
8 Copyright (C) Gerald (Jerry) Carter 2003-2005.
9 Copyright (C) Volker Lendecke 2004-2005
10 Copyright (C) Jeremy Allison 2006
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
27 We need to manage connections to domain controllers without having to
28 mess up the main winbindd code with other issues. The aim of the
29 connection manager is to:
31 - make connections to domain controllers and cache them
32 - re-establish connections when networks or servers go down
33 - centralise the policy on connection timeouts, domain controller
34 selection etc
35 - manage re-entrancy for when winbindd becomes able to handle
36 multiple outstanding rpc requests
38 Why not have connection management as part of the rpc layer like tng?
39 Good question. This code may morph into libsmb/rpc_cache.c or something
40 like that but at the moment it's simply staying as part of winbind. I
41 think the TNG architecture of forcing every user of the rpc layer to use
42 the connection caching system is a bad idea. It should be an optional
43 method of using the routines.
45 The TNG design is quite good but I disagree with some aspects of the
46 implementation. -tpot
51 TODO:
53 - I'm pretty annoyed by all the make_nmb_name() stuff. It should be
54 moved down into another function.
56 - Take care when destroying cli_structs as they can be shared between
57 various sam handles.
61 #include "includes.h"
62 #include "winbindd.h"
64 #undef DBGC_CLASS
65 #define DBGC_CLASS DBGC_WINBIND
67 struct dc_name_ip {
68 fstring name;
69 struct sockaddr_storage ss;
72 extern struct winbindd_methods reconnect_methods;
73 extern bool override_logfile;
75 static NTSTATUS init_dc_connection_network(struct winbindd_domain *domain);
76 static void set_dc_type_and_flags( struct winbindd_domain *domain );
77 static bool get_dcs(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
78 struct dc_name_ip **dcs, int *num_dcs);
80 /****************************************************************
81 Child failed to find DC's. Reschedule check.
82 ****************************************************************/
84 static void msg_failed_to_go_online(struct messaging_context *msg,
85 void *private_data,
86 uint32_t msg_type,
87 struct server_id server_id,
88 DATA_BLOB *data)
90 struct winbindd_domain *domain;
91 const char *domainname = (const char *)data->data;
93 if (data->data == NULL || data->length == 0) {
94 return;
97 DEBUG(5,("msg_fail_to_go_online: received for domain %s.\n", domainname));
99 for (domain = domain_list(); domain; domain = domain->next) {
100 if (domain->internal) {
101 continue;
104 if (strequal(domain->name, domainname)) {
105 if (domain->online) {
106 /* We're already online, ignore. */
107 DEBUG(5,("msg_fail_to_go_online: domain %s "
108 "already online.\n", domainname));
109 continue;
112 /* Reschedule the online check. */
113 set_domain_offline(domain);
114 break;
119 /****************************************************************
120 Actually cause a reconnect from a message.
121 ****************************************************************/
123 static void msg_try_to_go_online(struct messaging_context *msg,
124 void *private_data,
125 uint32_t msg_type,
126 struct server_id server_id,
127 DATA_BLOB *data)
129 struct winbindd_domain *domain;
130 const char *domainname = (const char *)data->data;
132 if (data->data == NULL || data->length == 0) {
133 return;
136 DEBUG(5,("msg_try_to_go_online: received for domain %s.\n", domainname));
138 for (domain = domain_list(); domain; domain = domain->next) {
139 if (domain->internal) {
140 continue;
143 if (strequal(domain->name, domainname)) {
145 if (domain->online) {
146 /* We're already online, ignore. */
147 DEBUG(5,("msg_try_to_go_online: domain %s "
148 "already online.\n", domainname));
149 continue;
152 /* This call takes care of setting the online
153 flag to true if we connected, or re-adding
154 the offline handler if false. Bypasses online
155 check so always does network calls. */
157 init_dc_connection_network(domain);
158 break;
163 /****************************************************************
164 Fork a child to try and contact a DC. Do this as contacting a
165 DC requires blocking lookups and we don't want to block our
166 parent.
167 ****************************************************************/
169 static bool fork_child_dc_connect(struct winbindd_domain *domain)
171 struct dc_name_ip *dcs = NULL;
172 int num_dcs = 0;
173 TALLOC_CTX *mem_ctx = NULL;
174 pid_t child_pid;
175 pid_t parent_pid = sys_getpid();
177 /* Stop zombies */
178 CatchChild();
180 child_pid = sys_fork();
182 if (child_pid == -1) {
183 DEBUG(0, ("fork_child_dc_connect: Could not fork: %s\n", strerror(errno)));
184 return False;
187 if (child_pid != 0) {
188 /* Parent */
189 messaging_register(winbind_messaging_context(), NULL,
190 MSG_WINBIND_TRY_TO_GO_ONLINE,
191 msg_try_to_go_online);
192 messaging_register(winbind_messaging_context(), NULL,
193 MSG_WINBIND_FAILED_TO_GO_ONLINE,
194 msg_failed_to_go_online);
195 return True;
198 /* Child. */
200 /* Leave messages blocked - we will never process one. */
202 if (!reinit_after_fork(winbind_messaging_context(), true)) {
203 DEBUG(0,("reinit_after_fork() failed\n"));
204 _exit(0);
207 close_conns_after_fork();
209 if (!override_logfile) {
210 char *logfile;
211 if (asprintf(&logfile, "%s/log.winbindd-dc-connect", get_dyn_LOGFILEBASE()) > 0) {
212 lp_set_logfile(logfile);
213 SAFE_FREE(logfile);
214 reopen_logs();
218 mem_ctx = talloc_init("fork_child_dc_connect");
219 if (!mem_ctx) {
220 DEBUG(0,("talloc_init failed.\n"));
221 _exit(0);
224 if ((!get_dcs(mem_ctx, domain, &dcs, &num_dcs)) || (num_dcs == 0)) {
225 /* Still offline ? Can't find DC's. */
226 messaging_send_buf(winbind_messaging_context(),
227 pid_to_procid(parent_pid),
228 MSG_WINBIND_FAILED_TO_GO_ONLINE,
229 (uint8 *)domain->name,
230 strlen(domain->name)+1);
231 _exit(0);
234 /* We got a DC. Send a message to our parent to get it to
235 try and do the same. */
237 messaging_send_buf(winbind_messaging_context(),
238 pid_to_procid(parent_pid),
239 MSG_WINBIND_TRY_TO_GO_ONLINE,
240 (uint8 *)domain->name,
241 strlen(domain->name)+1);
242 _exit(0);
245 /****************************************************************
246 Handler triggered if we're offline to try and detect a DC.
247 ****************************************************************/
249 static void check_domain_online_handler(struct event_context *ctx,
250 struct timed_event *te,
251 const struct timeval *now,
252 void *private_data)
254 struct winbindd_domain *domain =
255 (struct winbindd_domain *)private_data;
257 DEBUG(10,("check_domain_online_handler: called for domain "
258 "%s (online = %s)\n", domain->name,
259 domain->online ? "True" : "False" ));
261 TALLOC_FREE(domain->check_online_event);
263 /* Are we still in "startup" mode ? */
265 if (domain->startup && (now->tv_sec > domain->startup_time + 30)) {
266 /* No longer in "startup" mode. */
267 DEBUG(10,("check_domain_online_handler: domain %s no longer in 'startup' mode.\n",
268 domain->name ));
269 domain->startup = False;
272 /* We've been told to stay offline, so stay
273 that way. */
275 if (get_global_winbindd_state_offline()) {
276 DEBUG(10,("check_domain_online_handler: domain %s remaining globally offline\n",
277 domain->name ));
278 return;
281 /* Fork a child to test if it can contact a DC.
282 If it can then send ourselves a message to
283 cause a reconnect. */
285 fork_child_dc_connect(domain);
288 /****************************************************************
289 If we're still offline setup the timeout check.
290 ****************************************************************/
292 static void calc_new_online_timeout_check(struct winbindd_domain *domain)
294 int wbc = lp_winbind_cache_time();
296 if (domain->startup) {
297 domain->check_online_timeout = 10;
298 } else if (domain->check_online_timeout < wbc) {
299 domain->check_online_timeout = wbc;
303 /****************************************************************
304 Set domain offline and also add handler to put us back online
305 if we detect a DC.
306 ****************************************************************/
308 void set_domain_offline(struct winbindd_domain *domain)
310 DEBUG(10,("set_domain_offline: called for domain %s\n",
311 domain->name ));
313 TALLOC_FREE(domain->check_online_event);
315 if (domain->internal) {
316 DEBUG(3,("set_domain_offline: domain %s is internal - logic error.\n",
317 domain->name ));
318 return;
321 domain->online = False;
323 /* Offline domains are always initialized. They're
324 re-initialized when they go back online. */
326 domain->initialized = True;
328 /* We only add the timeout handler that checks and
329 allows us to go back online when we've not
330 been told to remain offline. */
332 if (get_global_winbindd_state_offline()) {
333 DEBUG(10,("set_domain_offline: domain %s remaining globally offline\n",
334 domain->name ));
335 return;
338 /* If we're in statup mode, check again in 10 seconds, not in
339 lp_winbind_cache_time() seconds (which is 5 mins by default). */
341 calc_new_online_timeout_check(domain);
343 domain->check_online_event = event_add_timed(winbind_event_context(),
344 NULL,
345 timeval_current_ofs(domain->check_online_timeout,0),
346 "check_domain_online_handler",
347 check_domain_online_handler,
348 domain);
350 /* The above *has* to succeed for winbindd to work. */
351 if (!domain->check_online_event) {
352 smb_panic("set_domain_offline: failed to add online handler");
355 DEBUG(10,("set_domain_offline: added event handler for domain %s\n",
356 domain->name ));
358 /* Send an offline message to the idmap child when our
359 primary domain goes offline */
361 if ( domain->primary ) {
362 struct winbindd_child *idmap = idmap_child();
364 if ( idmap->pid != 0 ) {
365 messaging_send_buf(winbind_messaging_context(),
366 pid_to_procid(idmap->pid),
367 MSG_WINBIND_OFFLINE,
368 (uint8 *)domain->name,
369 strlen(domain->name)+1);
373 return;
376 /****************************************************************
377 Set domain online - if allowed.
378 ****************************************************************/
380 static void set_domain_online(struct winbindd_domain *domain)
382 struct timeval now;
384 DEBUG(10,("set_domain_online: called for domain %s\n",
385 domain->name ));
387 if (domain->internal) {
388 DEBUG(3,("set_domain_online: domain %s is internal - logic error.\n",
389 domain->name ));
390 return;
393 if (get_global_winbindd_state_offline()) {
394 DEBUG(10,("set_domain_online: domain %s remaining globally offline\n",
395 domain->name ));
396 return;
399 winbindd_set_locator_kdc_envs(domain);
401 /* If we are waiting to get a krb5 ticket, trigger immediately. */
402 GetTimeOfDay(&now);
403 set_event_dispatch_time(winbind_event_context(),
404 "krb5_ticket_gain_handler", now);
406 /* Ok, we're out of any startup mode now... */
407 domain->startup = False;
409 if (domain->online == False) {
410 /* We were offline - now we're online. We default to
411 using the MS-RPC backend if we started offline,
412 and if we're going online for the first time we
413 should really re-initialize the backends and the
414 checks to see if we're talking to an AD or NT domain.
417 domain->initialized = False;
419 /* 'reconnect_methods' is the MS-RPC backend. */
420 if (domain->backend == &reconnect_methods) {
421 domain->backend = NULL;
425 /* Ensure we have no online timeout checks. */
426 domain->check_online_timeout = 0;
427 TALLOC_FREE(domain->check_online_event);
429 /* Ensure we ignore any pending child messages. */
430 messaging_deregister(winbind_messaging_context(),
431 MSG_WINBIND_TRY_TO_GO_ONLINE, NULL);
432 messaging_deregister(winbind_messaging_context(),
433 MSG_WINBIND_FAILED_TO_GO_ONLINE, NULL);
435 domain->online = True;
437 /* Send an online message to the idmap child when our
438 primary domain comes online */
440 if ( domain->primary ) {
441 struct winbindd_child *idmap = idmap_child();
443 if ( idmap->pid != 0 ) {
444 messaging_send_buf(winbind_messaging_context(),
445 pid_to_procid(idmap->pid),
446 MSG_WINBIND_ONLINE,
447 (uint8 *)domain->name,
448 strlen(domain->name)+1);
452 return;
455 /****************************************************************
456 Requested to set a domain online.
457 ****************************************************************/
459 void set_domain_online_request(struct winbindd_domain *domain)
461 struct timeval tev;
463 DEBUG(10,("set_domain_online_request: called for domain %s\n",
464 domain->name ));
466 if (get_global_winbindd_state_offline()) {
467 DEBUG(10,("set_domain_online_request: domain %s remaining globally offline\n",
468 domain->name ));
469 return;
472 /* We've been told it's safe to go online and
473 try and connect to a DC. But I don't believe it
474 because network manager seems to lie.
475 Wait at least 5 seconds. Heuristics suck... */
477 if (!domain->check_online_event) {
478 /* If we've come from being globally offline we
479 don't have a check online event handler set.
480 We need to add one now we're trying to go
481 back online. */
483 DEBUG(10,("set_domain_online_request: domain %s was globally offline.\n",
484 domain->name ));
486 domain->check_online_event = event_add_timed(winbind_event_context(),
487 NULL,
488 timeval_current_ofs(5, 0),
489 "check_domain_online_handler",
490 check_domain_online_handler,
491 domain);
493 /* The above *has* to succeed for winbindd to work. */
494 if (!domain->check_online_event) {
495 smb_panic("set_domain_online_request: failed to add online handler");
499 GetTimeOfDay(&tev);
501 /* Go into "startup" mode again. */
502 domain->startup_time = tev.tv_sec;
503 domain->startup = True;
505 tev.tv_sec += 5;
507 set_event_dispatch_time(winbind_event_context(), "check_domain_online_handler", tev);
510 /****************************************************************
511 Add -ve connection cache entries for domain and realm.
512 ****************************************************************/
514 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
515 const char *server,
516 NTSTATUS result)
518 add_failed_connection_entry(domain->name, server, result);
519 /* If this was the saf name for the last thing we talked to,
520 remove it. */
521 saf_delete(domain->name);
522 if (*domain->alt_name) {
523 add_failed_connection_entry(domain->alt_name, server, result);
524 saf_delete(domain->alt_name);
526 winbindd_unset_locator_kdc_env(domain);
529 /* Choose between anonymous or authenticated connections. We need to use
530 an authenticated connection if DCs have the RestrictAnonymous registry
531 entry set > 0, or the "Additional restrictions for anonymous
532 connections" set in the win2k Local Security Policy.
534 Caller to free() result in domain, username, password
537 static void cm_get_ipc_userpass(char **username, char **domain, char **password)
539 *username = (char *)secrets_fetch(SECRETS_AUTH_USER, NULL);
540 *domain = (char *)secrets_fetch(SECRETS_AUTH_DOMAIN, NULL);
541 *password = (char *)secrets_fetch(SECRETS_AUTH_PASSWORD, NULL);
543 if (*username && **username) {
545 if (!*domain || !**domain)
546 *domain = smb_xstrdup(lp_workgroup());
548 if (!*password || !**password)
549 *password = smb_xstrdup("");
551 DEBUG(3, ("cm_get_ipc_userpass: Retrieved auth-user from secrets.tdb [%s\\%s]\n",
552 *domain, *username));
554 } else {
555 DEBUG(3, ("cm_get_ipc_userpass: No auth-user defined\n"));
556 *username = smb_xstrdup("");
557 *domain = smb_xstrdup("");
558 *password = smb_xstrdup("");
562 static bool get_dc_name_via_netlogon(struct winbindd_domain *domain,
563 fstring dcname,
564 struct sockaddr_storage *dc_ss)
566 struct winbindd_domain *our_domain = NULL;
567 struct rpc_pipe_client *netlogon_pipe = NULL;
568 NTSTATUS result;
569 WERROR werr;
570 TALLOC_CTX *mem_ctx;
571 unsigned int orig_timeout;
572 const char *tmp = NULL;
573 const char *p;
575 /* Hmmmm. We can only open one connection to the NETLOGON pipe at the
576 * moment.... */
578 if (IS_DC) {
579 return False;
582 if (domain->primary) {
583 return False;
586 our_domain = find_our_domain();
588 if ((mem_ctx = talloc_init("get_dc_name_via_netlogon")) == NULL) {
589 return False;
592 result = cm_connect_netlogon(our_domain, &netlogon_pipe);
593 if (!NT_STATUS_IS_OK(result)) {
594 talloc_destroy(mem_ctx);
595 return False;
598 /* This call can take a long time - allow the server to time out.
599 35 seconds should do it. */
601 orig_timeout = cli_set_timeout(netlogon_pipe->cli, 35000);
603 if (our_domain->active_directory) {
604 struct netr_DsRGetDCNameInfo *domain_info = NULL;
606 result = rpccli_netr_DsRGetDCName(netlogon_pipe,
607 mem_ctx,
608 our_domain->dcname,
609 domain->name,
610 NULL,
611 NULL,
612 DS_RETURN_DNS_NAME,
613 &domain_info,
614 &werr);
615 if (W_ERROR_IS_OK(werr)) {
616 tmp = talloc_strdup(
617 mem_ctx, domain_info->dc_unc);
618 if (tmp == NULL) {
619 DEBUG(0, ("talloc_strdup failed\n"));
620 talloc_destroy(mem_ctx);
621 return false;
623 if (strlen(domain->alt_name) == 0) {
624 fstrcpy(domain->alt_name,
625 domain_info->domain_name);
627 if (strlen(domain->forest_name) == 0) {
628 fstrcpy(domain->forest_name,
629 domain_info->forest_name);
632 } else {
633 result = rpccli_netr_GetAnyDCName(netlogon_pipe, mem_ctx,
634 our_domain->dcname,
635 domain->name,
636 &tmp,
637 &werr);
640 /* And restore our original timeout. */
641 cli_set_timeout(netlogon_pipe->cli, orig_timeout);
643 if (!NT_STATUS_IS_OK(result)) {
644 DEBUG(10,("rpccli_netr_GetAnyDCName failed: %s\n",
645 nt_errstr(result)));
646 talloc_destroy(mem_ctx);
647 return false;
650 if (!W_ERROR_IS_OK(werr)) {
651 DEBUG(10,("rpccli_netr_GetAnyDCName failed: %s\n",
652 dos_errstr(werr)));
653 talloc_destroy(mem_ctx);
654 return false;
657 /* rpccli_netr_GetAnyDCName gives us a name with \\ */
658 p = strip_hostname(tmp);
660 fstrcpy(dcname, p);
662 talloc_destroy(mem_ctx);
664 DEBUG(10,("rpccli_netr_GetAnyDCName returned %s\n", dcname));
666 if (!resolve_name(dcname, dc_ss, 0x20)) {
667 return False;
670 return True;
674 * Helper function to assemble trust password and account name
676 static NTSTATUS get_trust_creds(const struct winbindd_domain *domain,
677 char **machine_password,
678 char **machine_account,
679 char **machine_krb5_principal)
681 const char *account_name;
682 const char *name = NULL;
684 /* If we are a DC and this is not our own domain */
686 if (IS_DC) {
687 name = domain->name;
688 } else {
689 struct winbindd_domain *our_domain = find_our_domain();
691 if (!our_domain)
692 return NT_STATUS_INVALID_SERVER_STATE;
694 name = our_domain->name;
697 if (!get_trust_pw_clear(name, machine_password,
698 &account_name, NULL))
700 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
703 if ((machine_account != NULL) &&
704 (asprintf(machine_account, "%s$", account_name) == -1))
706 return NT_STATUS_NO_MEMORY;
709 /* For now assume our machine account only exists in our domain */
711 if (machine_krb5_principal != NULL)
713 if (asprintf(machine_krb5_principal, "%s$@%s",
714 account_name, lp_realm()) == -1)
716 return NT_STATUS_NO_MEMORY;
719 strupper_m(*machine_krb5_principal);
722 return NT_STATUS_OK;
725 /************************************************************************
726 Given a fd with a just-connected TCP connection to a DC, open a connection
727 to the pipe.
728 ************************************************************************/
730 static NTSTATUS cm_prepare_connection(const struct winbindd_domain *domain,
731 const int sockfd,
732 const char *controller,
733 struct cli_state **cli,
734 bool *retry)
736 char *machine_password = NULL;
737 char *machine_krb5_principal = NULL;
738 char *machine_account = NULL;
739 char *ipc_username = NULL;
740 char *ipc_domain = NULL;
741 char *ipc_password = NULL;
743 struct named_mutex *mutex;
745 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
747 struct sockaddr peeraddr;
748 socklen_t peeraddr_len;
750 struct sockaddr_in *peeraddr_in = (struct sockaddr_in *)&peeraddr;
752 DEBUG(10,("cm_prepare_connection: connecting to DC %s for domain %s\n",
753 controller, domain->name ));
755 *retry = True;
757 mutex = grab_named_mutex(talloc_tos(), controller,
758 WINBIND_SERVER_MUTEX_WAIT_TIME);
759 if (mutex == NULL) {
760 DEBUG(0,("cm_prepare_connection: mutex grab failed for %s\n",
761 controller));
762 result = NT_STATUS_POSSIBLE_DEADLOCK;
763 goto done;
766 if ((*cli = cli_initialise()) == NULL) {
767 DEBUG(1, ("Could not cli_initialize\n"));
768 result = NT_STATUS_NO_MEMORY;
769 goto done;
772 (*cli)->timeout = 10000; /* 10 seconds */
773 (*cli)->fd = sockfd;
774 fstrcpy((*cli)->desthost, controller);
775 (*cli)->use_kerberos = True;
777 peeraddr_len = sizeof(peeraddr);
779 if ((getpeername((*cli)->fd, &peeraddr, &peeraddr_len) != 0) ||
780 (peeraddr_len != sizeof(struct sockaddr_in)) ||
781 (peeraddr_in->sin_family != PF_INET))
783 DEBUG(0,("cm_prepare_connection: %s\n", strerror(errno)));
784 result = NT_STATUS_UNSUCCESSFUL;
785 goto done;
788 if (ntohs(peeraddr_in->sin_port) == 139) {
789 struct nmb_name calling;
790 struct nmb_name called;
792 make_nmb_name(&calling, global_myname(), 0x0);
793 make_nmb_name(&called, "*SMBSERVER", 0x20);
795 if (!cli_session_request(*cli, &calling, &called)) {
796 DEBUG(8, ("cli_session_request failed for %s\n",
797 controller));
798 result = NT_STATUS_UNSUCCESSFUL;
799 goto done;
803 cli_setup_signing_state(*cli, Undefined);
805 if (!cli_negprot(*cli)) {
806 DEBUG(1, ("cli_negprot failed\n"));
807 result = NT_STATUS_UNSUCCESSFUL;
808 goto done;
811 if (!is_trusted_domain_situation(domain->name) &&
812 (*cli)->protocol >= PROTOCOL_NT1 &&
813 (*cli)->capabilities & CAP_EXTENDED_SECURITY)
815 ADS_STATUS ads_status;
817 result = get_trust_creds(domain, &machine_password,
818 &machine_account,
819 &machine_krb5_principal);
820 if (!NT_STATUS_IS_OK(result)) {
821 goto anon_fallback;
824 if (lp_security() == SEC_ADS) {
826 /* Try a krb5 session */
828 (*cli)->use_kerberos = True;
829 DEBUG(5, ("connecting to %s from %s with kerberos principal "
830 "[%s] and realm [%s]\n", controller, global_myname(),
831 machine_krb5_principal, domain->alt_name));
833 winbindd_set_locator_kdc_envs(domain);
835 ads_status = cli_session_setup_spnego(*cli,
836 machine_krb5_principal,
837 machine_password,
838 lp_workgroup(),
839 domain->name);
841 if (!ADS_ERR_OK(ads_status)) {
842 DEBUG(4,("failed kerberos session setup with %s\n",
843 ads_errstr(ads_status)));
846 result = ads_ntstatus(ads_status);
847 if (NT_STATUS_IS_OK(result)) {
848 /* Ensure creds are stored for NTLMSSP authenticated pipe access. */
849 cli_init_creds(*cli, machine_account, domain->name, machine_password);
850 goto session_setup_done;
854 /* Fall back to non-kerberos session setup using NTLMSSP SPNEGO with the machine account. */
855 (*cli)->use_kerberos = False;
857 DEBUG(5, ("connecting to %s from %s with username "
858 "[%s]\\[%s]\n", controller, global_myname(),
859 lp_workgroup(), machine_account));
861 ads_status = cli_session_setup_spnego(*cli,
862 machine_account,
863 machine_password,
864 lp_workgroup(),
865 NULL);
866 if (!ADS_ERR_OK(ads_status)) {
867 DEBUG(4, ("authenticated session setup failed with %s\n",
868 ads_errstr(ads_status)));
871 result = ads_ntstatus(ads_status);
872 if (NT_STATUS_IS_OK(result)) {
873 /* Ensure creds are stored for NTLMSSP authenticated pipe access. */
874 cli_init_creds(*cli, machine_account, domain->name, machine_password);
875 goto session_setup_done;
879 /* Fall back to non-kerberos session setup with auth_user */
881 (*cli)->use_kerberos = False;
883 cm_get_ipc_userpass(&ipc_username, &ipc_domain, &ipc_password);
885 if ((((*cli)->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) != 0) &&
886 (strlen(ipc_username) > 0)) {
888 /* Only try authenticated if we have a username */
890 DEBUG(5, ("connecting to %s from %s with username "
891 "[%s]\\[%s]\n", controller, global_myname(),
892 ipc_domain, ipc_username));
894 if (NT_STATUS_IS_OK(cli_session_setup(
895 *cli, ipc_username,
896 ipc_password, strlen(ipc_password)+1,
897 ipc_password, strlen(ipc_password)+1,
898 ipc_domain))) {
899 /* Successful logon with given username. */
900 cli_init_creds(*cli, ipc_username, ipc_domain, ipc_password);
901 goto session_setup_done;
902 } else {
903 DEBUG(4, ("authenticated session setup with user %s\\%s failed.\n",
904 ipc_domain, ipc_username ));
908 anon_fallback:
910 /* Fall back to anonymous connection, this might fail later */
912 if (NT_STATUS_IS_OK(cli_session_setup(*cli, "", NULL, 0,
913 NULL, 0, ""))) {
914 DEBUG(5, ("Connected anonymously\n"));
915 cli_init_creds(*cli, "", "", "");
916 goto session_setup_done;
919 result = cli_nt_error(*cli);
921 if (NT_STATUS_IS_OK(result))
922 result = NT_STATUS_UNSUCCESSFUL;
924 /* We can't session setup */
926 goto done;
928 session_setup_done:
930 /* cache the server name for later connections */
932 saf_store( domain->name, (*cli)->desthost );
933 if (domain->alt_name && (*cli)->use_kerberos) {
934 saf_store( domain->alt_name, (*cli)->desthost );
937 winbindd_set_locator_kdc_envs(domain);
939 if (!cli_send_tconX(*cli, "IPC$", "IPC", "", 0)) {
941 result = cli_nt_error(*cli);
943 DEBUG(1,("failed tcon_X with %s\n", nt_errstr(result)));
945 if (NT_STATUS_IS_OK(result))
946 result = NT_STATUS_UNSUCCESSFUL;
948 goto done;
951 TALLOC_FREE(mutex);
952 *retry = False;
954 /* set the domain if empty; needed for schannel connections */
955 if ( !*(*cli)->domain ) {
956 fstrcpy( (*cli)->domain, domain->name );
959 result = NT_STATUS_OK;
961 done:
962 TALLOC_FREE(mutex);
963 SAFE_FREE(machine_account);
964 SAFE_FREE(machine_password);
965 SAFE_FREE(machine_krb5_principal);
966 SAFE_FREE(ipc_username);
967 SAFE_FREE(ipc_domain);
968 SAFE_FREE(ipc_password);
970 if (!NT_STATUS_IS_OK(result)) {
971 winbind_add_failed_connection_entry(domain, controller, result);
972 if ((*cli) != NULL) {
973 cli_shutdown(*cli);
974 *cli = NULL;
978 return result;
981 static bool add_one_dc_unique(TALLOC_CTX *mem_ctx, const char *domain_name,
982 const char *dcname, struct sockaddr_storage *pss,
983 struct dc_name_ip **dcs, int *num)
985 if (!NT_STATUS_IS_OK(check_negative_conn_cache(domain_name, dcname))) {
986 DEBUG(10, ("DC %s was in the negative conn cache\n", dcname));
987 return False;
990 *dcs = TALLOC_REALLOC_ARRAY(mem_ctx, *dcs, struct dc_name_ip, (*num)+1);
992 if (*dcs == NULL)
993 return False;
995 fstrcpy((*dcs)[*num].name, dcname);
996 (*dcs)[*num].ss = *pss;
997 *num += 1;
998 return True;
1001 static bool add_sockaddr_to_array(TALLOC_CTX *mem_ctx,
1002 struct sockaddr_storage *pss, uint16 port,
1003 struct sockaddr_storage **addrs, int *num)
1005 *addrs = TALLOC_REALLOC_ARRAY(mem_ctx, *addrs, struct sockaddr_storage, (*num)+1);
1007 if (*addrs == NULL) {
1008 *num = 0;
1009 return False;
1012 (*addrs)[*num] = *pss;
1013 set_sockaddr_port(&(*addrs)[*num], port);
1015 *num += 1;
1016 return True;
1019 /*******************************************************************
1020 convert an ip to a name
1021 *******************************************************************/
1023 static bool dcip_to_name(TALLOC_CTX *mem_ctx,
1024 const struct winbindd_domain *domain,
1025 struct sockaddr_storage *pss,
1026 fstring name )
1028 struct ip_service ip_list;
1029 uint32_t nt_version = NETLOGON_VERSION_1;
1031 ip_list.ss = *pss;
1032 ip_list.port = 0;
1034 #ifdef WITH_ADS
1035 /* For active directory servers, try to get the ldap server name.
1036 None of these failures should be considered critical for now */
1038 if (lp_security() == SEC_ADS) {
1039 ADS_STRUCT *ads;
1040 char addr[INET6_ADDRSTRLEN];
1042 print_sockaddr(addr, sizeof(addr), pss);
1044 ads = ads_init(domain->alt_name, domain->name, NULL);
1045 ads->auth.flags |= ADS_AUTH_NO_BIND;
1047 if (ads_try_connect(ads, addr)) {
1048 /* We got a cldap packet. */
1049 fstrcpy(name, ads->config.ldap_server_name);
1050 namecache_store(name, 0x20, 1, &ip_list);
1052 DEBUG(10,("dcip_to_name: flags = 0x%x\n", (unsigned int)ads->config.flags));
1054 if (domain->primary && (ads->config.flags & NBT_SERVER_KDC)) {
1055 if (ads_closest_dc(ads)) {
1056 char *sitename = sitename_fetch(ads->config.realm);
1058 /* We're going to use this KDC for this realm/domain.
1059 If we are using sites, then force the krb5 libs
1060 to use this KDC. */
1062 create_local_private_krb5_conf_for_domain(domain->alt_name,
1063 domain->name,
1064 sitename,
1065 pss);
1067 SAFE_FREE(sitename);
1068 } else {
1069 /* use an off site KDC */
1070 create_local_private_krb5_conf_for_domain(domain->alt_name,
1071 domain->name,
1072 NULL,
1073 pss);
1075 winbindd_set_locator_kdc_envs(domain);
1077 /* Ensure we contact this DC also. */
1078 saf_store( domain->name, name);
1079 saf_store( domain->alt_name, name);
1082 ads_destroy( &ads );
1083 return True;
1086 ads_destroy( &ads );
1088 #endif
1090 /* try GETDC requests next */
1092 if (send_getdc_request(mem_ctx, winbind_messaging_context(),
1093 pss, domain->name, &domain->sid,
1094 nt_version)) {
1095 const char *dc_name = NULL;
1096 int i;
1097 smb_msleep(100);
1098 for (i=0; i<5; i++) {
1099 if (receive_getdc_response(mem_ctx, pss, domain->name,
1100 &nt_version,
1101 &dc_name, NULL)) {
1102 fstrcpy(name, dc_name);
1103 namecache_store(name, 0x20, 1, &ip_list);
1104 return True;
1106 smb_msleep(500);
1110 /* try node status request */
1112 if ( name_status_find(domain->name, 0x1c, 0x20, pss, name) ) {
1113 namecache_store(name, 0x20, 1, &ip_list);
1114 return True;
1116 return False;
1119 /*******************************************************************
1120 Retreive a list of IP address for domain controllers. Fill in
1121 the dcs[] with results.
1122 *******************************************************************/
1124 static bool get_dcs(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
1125 struct dc_name_ip **dcs, int *num_dcs)
1127 fstring dcname;
1128 struct sockaddr_storage ss;
1129 struct ip_service *ip_list = NULL;
1130 int iplist_size = 0;
1131 int i;
1132 bool is_our_domain;
1133 enum security_types sec = (enum security_types)lp_security();
1135 is_our_domain = strequal(domain->name, lp_workgroup());
1137 if ( !is_our_domain
1138 && get_dc_name_via_netlogon(domain, dcname, &ss)
1139 && add_one_dc_unique(mem_ctx, domain->name, dcname, &ss, dcs, num_dcs) )
1141 char addr[INET6_ADDRSTRLEN];
1142 print_sockaddr(addr, sizeof(addr), &ss);
1143 DEBUG(10, ("Retrieved DC %s at %s via netlogon\n",
1144 dcname, addr));
1145 return True;
1148 if (sec == SEC_ADS) {
1149 char *sitename = NULL;
1151 /* We need to make sure we know the local site before
1152 doing any DNS queries, as this will restrict the
1153 get_sorted_dc_list() call below to only fetching
1154 DNS records for the correct site. */
1156 /* Find any DC to get the site record.
1157 We deliberately don't care about the
1158 return here. */
1160 get_dc_name(domain->name, domain->alt_name, dcname, &ss);
1162 sitename = sitename_fetch(domain->alt_name);
1163 if (sitename) {
1165 /* Do the site-specific AD dns lookup first. */
1166 get_sorted_dc_list(domain->alt_name, sitename, &ip_list, &iplist_size, True);
1168 for ( i=0; i<iplist_size; i++ ) {
1169 char addr[INET6_ADDRSTRLEN];
1170 print_sockaddr(addr, sizeof(addr),
1171 &ip_list[i].ss);
1172 add_one_dc_unique(mem_ctx,
1173 domain->name,
1174 addr,
1175 &ip_list[i].ss,
1176 dcs,
1177 num_dcs);
1180 SAFE_FREE(ip_list);
1181 SAFE_FREE(sitename);
1182 iplist_size = 0;
1185 /* Now we add DCs from the main AD dns lookup. */
1186 get_sorted_dc_list(domain->alt_name, NULL, &ip_list, &iplist_size, True);
1188 for ( i=0; i<iplist_size; i++ ) {
1189 char addr[INET6_ADDRSTRLEN];
1190 print_sockaddr(addr, sizeof(addr),
1191 &ip_list[i].ss);
1192 add_one_dc_unique(mem_ctx,
1193 domain->name,
1194 addr,
1195 &ip_list[i].ss,
1196 dcs,
1197 num_dcs);
1201 /* try standard netbios queries if no ADS */
1203 if (iplist_size==0) {
1204 get_sorted_dc_list(domain->name, NULL, &ip_list, &iplist_size, False);
1207 /* FIXME!! this is where we should re-insert the GETDC requests --jerry */
1209 /* now add to the dc array. We'll wait until the last minute
1210 to look up the name of the DC. But we fill in the char* for
1211 the ip now in to make the failed connection cache work */
1213 for ( i=0; i<iplist_size; i++ ) {
1214 char addr[INET6_ADDRSTRLEN];
1215 print_sockaddr(addr, sizeof(addr),
1216 &ip_list[i].ss);
1217 add_one_dc_unique(mem_ctx, domain->name, addr,
1218 &ip_list[i].ss, dcs, num_dcs);
1221 SAFE_FREE( ip_list );
1223 return True;
1226 static bool find_new_dc(TALLOC_CTX *mem_ctx,
1227 struct winbindd_domain *domain,
1228 fstring dcname, struct sockaddr_storage *pss, int *fd)
1230 struct dc_name_ip *dcs = NULL;
1231 int num_dcs = 0;
1233 const char **dcnames = NULL;
1234 int num_dcnames = 0;
1236 struct sockaddr_storage *addrs = NULL;
1237 int num_addrs = 0;
1239 int i, fd_index;
1241 *fd = -1;
1243 again:
1244 if (!get_dcs(mem_ctx, domain, &dcs, &num_dcs) || (num_dcs == 0))
1245 return False;
1247 for (i=0; i<num_dcs; i++) {
1249 if (!add_string_to_array(mem_ctx, dcs[i].name,
1250 &dcnames, &num_dcnames)) {
1251 return False;
1253 if (!add_sockaddr_to_array(mem_ctx, &dcs[i].ss, 445,
1254 &addrs, &num_addrs)) {
1255 return False;
1258 if (!add_string_to_array(mem_ctx, dcs[i].name,
1259 &dcnames, &num_dcnames)) {
1260 return False;
1262 if (!add_sockaddr_to_array(mem_ctx, &dcs[i].ss, 139,
1263 &addrs, &num_addrs)) {
1264 return False;
1268 if ((num_dcnames == 0) || (num_dcnames != num_addrs))
1269 return False;
1271 if ((addrs == NULL) || (dcnames == NULL))
1272 return False;
1274 /* 5 second timeout. */
1275 if (!open_any_socket_out(addrs, num_addrs, 5000, &fd_index, fd) ) {
1276 for (i=0; i<num_dcs; i++) {
1277 char ab[INET6_ADDRSTRLEN];
1278 print_sockaddr(ab, sizeof(ab), &dcs[i].ss);
1279 DEBUG(10, ("find_new_dc: open_any_socket_out failed for "
1280 "domain %s address %s. Error was %s\n",
1281 domain->name, ab, strerror(errno) ));
1282 winbind_add_failed_connection_entry(domain,
1283 dcs[i].name, NT_STATUS_UNSUCCESSFUL);
1285 return False;
1288 *pss = addrs[fd_index];
1290 if (*dcnames[fd_index] != '\0' && !is_ipaddress(dcnames[fd_index])) {
1291 /* Ok, we've got a name for the DC */
1292 fstrcpy(dcname, dcnames[fd_index]);
1293 return True;
1296 /* Try to figure out the name */
1297 if (dcip_to_name(mem_ctx, domain, pss, dcname)) {
1298 return True;
1301 /* We can not continue without the DC's name */
1302 winbind_add_failed_connection_entry(domain, dcs[fd_index].name,
1303 NT_STATUS_UNSUCCESSFUL);
1305 /* Throw away all arrays as we're doing this again. */
1306 TALLOC_FREE(dcs);
1307 num_dcs = 0;
1309 TALLOC_FREE(dcnames);
1310 num_dcnames = 0;
1312 TALLOC_FREE(addrs);
1313 num_addrs = 0;
1315 *fd = -1;
1317 goto again;
1320 static NTSTATUS cm_open_connection(struct winbindd_domain *domain,
1321 struct winbindd_cm_conn *new_conn)
1323 TALLOC_CTX *mem_ctx;
1324 NTSTATUS result;
1325 char *saf_servername = saf_fetch( domain->name );
1326 int retries;
1328 if ((mem_ctx = talloc_init("cm_open_connection")) == NULL) {
1329 SAFE_FREE(saf_servername);
1330 set_domain_offline(domain);
1331 return NT_STATUS_NO_MEMORY;
1334 /* we have to check the server affinity cache here since
1335 later we selecte a DC based on response time and not preference */
1337 /* Check the negative connection cache
1338 before talking to it. It going down may have
1339 triggered the reconnection. */
1341 if ( saf_servername && NT_STATUS_IS_OK(check_negative_conn_cache( domain->name, saf_servername))) {
1343 DEBUG(10,("cm_open_connection: saf_servername is '%s' for domain %s\n",
1344 saf_servername, domain->name ));
1346 /* convert an ip address to a name */
1347 if (is_ipaddress( saf_servername ) ) {
1348 fstring saf_name;
1349 struct sockaddr_storage ss;
1351 if (!interpret_string_addr(&ss, saf_servername,
1352 AI_NUMERICHOST)) {
1353 return NT_STATUS_UNSUCCESSFUL;
1355 if (dcip_to_name(mem_ctx, domain, &ss, saf_name )) {
1356 fstrcpy( domain->dcname, saf_name );
1357 } else {
1358 winbind_add_failed_connection_entry(
1359 domain, saf_servername,
1360 NT_STATUS_UNSUCCESSFUL);
1362 } else {
1363 fstrcpy( domain->dcname, saf_servername );
1366 SAFE_FREE( saf_servername );
1369 for (retries = 0; retries < 3; retries++) {
1370 int fd = -1;
1371 bool retry = False;
1373 result = NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND;
1375 DEBUG(10,("cm_open_connection: dcname is '%s' for domain %s\n",
1376 domain->dcname, domain->name ));
1378 if (*domain->dcname
1379 && NT_STATUS_IS_OK(check_negative_conn_cache( domain->name, domain->dcname))
1380 && (resolve_name(domain->dcname, &domain->dcaddr, 0x20)))
1382 struct sockaddr_storage *addrs = NULL;
1383 int num_addrs = 0;
1384 int dummy = 0;
1386 if (!add_sockaddr_to_array(mem_ctx, &domain->dcaddr, 445, &addrs, &num_addrs)) {
1387 set_domain_offline(domain);
1388 talloc_destroy(mem_ctx);
1389 return NT_STATUS_NO_MEMORY;
1391 if (!add_sockaddr_to_array(mem_ctx, &domain->dcaddr, 139, &addrs, &num_addrs)) {
1392 set_domain_offline(domain);
1393 talloc_destroy(mem_ctx);
1394 return NT_STATUS_NO_MEMORY;
1397 /* 5 second timeout. */
1398 if (!open_any_socket_out(addrs, num_addrs, 5000, &dummy, &fd)) {
1399 fd = -1;
1403 if ((fd == -1)
1404 && !find_new_dc(mem_ctx, domain, domain->dcname, &domain->dcaddr, &fd))
1406 /* This is the one place where we will
1407 set the global winbindd offline state
1408 to true, if a "WINBINDD_OFFLINE" entry
1409 is found in the winbindd cache. */
1410 set_global_winbindd_state_offline();
1411 break;
1414 new_conn->cli = NULL;
1416 result = cm_prepare_connection(domain, fd, domain->dcname,
1417 &new_conn->cli, &retry);
1419 if (!retry)
1420 break;
1423 if (NT_STATUS_IS_OK(result)) {
1425 winbindd_set_locator_kdc_envs(domain);
1427 if (domain->online == False) {
1428 /* We're changing state from offline to online. */
1429 set_global_winbindd_state_online();
1431 set_domain_online(domain);
1432 } else {
1433 /* Ensure we setup the retry handler. */
1434 set_domain_offline(domain);
1437 talloc_destroy(mem_ctx);
1438 return result;
1441 /* Close down all open pipes on a connection. */
1443 void invalidate_cm_connection(struct winbindd_cm_conn *conn)
1445 /* We're closing down a possibly dead
1446 connection. Don't have impossibly long (10s) timeouts. */
1448 if (conn->cli) {
1449 cli_set_timeout(conn->cli, 1000); /* 1 second. */
1452 if (conn->samr_pipe != NULL) {
1453 if (!cli_rpc_pipe_close(conn->samr_pipe)) {
1454 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1455 if (conn->cli) {
1456 cli_set_timeout(conn->cli, 500);
1459 conn->samr_pipe = NULL;
1462 if (conn->lsa_pipe != NULL) {
1463 if (!cli_rpc_pipe_close(conn->lsa_pipe)) {
1464 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1465 if (conn->cli) {
1466 cli_set_timeout(conn->cli, 500);
1469 conn->lsa_pipe = NULL;
1472 if (conn->netlogon_pipe != NULL) {
1473 if (!cli_rpc_pipe_close(conn->netlogon_pipe)) {
1474 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1475 if (conn->cli) {
1476 cli_set_timeout(conn->cli, 500);
1479 conn->netlogon_pipe = NULL;
1482 if (conn->cli) {
1483 cli_shutdown(conn->cli);
1486 conn->cli = NULL;
1489 void close_conns_after_fork(void)
1491 struct winbindd_domain *domain;
1493 for (domain = domain_list(); domain; domain = domain->next) {
1494 if (domain->conn.cli == NULL)
1495 continue;
1497 if (domain->conn.cli->fd == -1)
1498 continue;
1500 close(domain->conn.cli->fd);
1501 domain->conn.cli->fd = -1;
1505 static bool connection_ok(struct winbindd_domain *domain)
1507 if (domain->conn.cli == NULL) {
1508 DEBUG(8, ("connection_ok: Connection to %s for domain %s has NULL "
1509 "cli!\n", domain->dcname, domain->name));
1510 return False;
1513 if (!domain->conn.cli->initialised) {
1514 DEBUG(3, ("connection_ok: Connection to %s for domain %s was never "
1515 "initialised!\n", domain->dcname, domain->name));
1516 return False;
1519 if (domain->conn.cli->fd == -1) {
1520 DEBUG(3, ("connection_ok: Connection to %s for domain %s has died or was "
1521 "never started (fd == -1)\n",
1522 domain->dcname, domain->name));
1523 return False;
1526 if (domain->online == False) {
1527 DEBUG(3, ("connection_ok: Domain %s is offline\n", domain->name));
1528 return False;
1531 return True;
1534 /* Initialize a new connection up to the RPC BIND.
1535 Bypass online status check so always does network calls. */
1537 static NTSTATUS init_dc_connection_network(struct winbindd_domain *domain)
1539 NTSTATUS result;
1541 /* Internal connections never use the network. */
1542 if (domain->internal) {
1543 domain->initialized = True;
1544 return NT_STATUS_OK;
1547 if (connection_ok(domain)) {
1548 if (!domain->initialized) {
1549 set_dc_type_and_flags(domain);
1551 return NT_STATUS_OK;
1554 invalidate_cm_connection(&domain->conn);
1556 result = cm_open_connection(domain, &domain->conn);
1558 if (NT_STATUS_IS_OK(result) && !domain->initialized) {
1559 set_dc_type_and_flags(domain);
1562 return result;
1565 NTSTATUS init_dc_connection(struct winbindd_domain *domain)
1567 if (domain->initialized && !domain->online) {
1568 /* We check for online status elsewhere. */
1569 return NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND;
1572 return init_dc_connection_network(domain);
1575 /******************************************************************************
1576 Set the trust flags (direction and forest location) for a domain
1577 ******************************************************************************/
1579 static bool set_dc_type_and_flags_trustinfo( struct winbindd_domain *domain )
1581 struct winbindd_domain *our_domain;
1582 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1583 struct netr_DomainTrustList trusts;
1584 int i;
1585 uint32 flags = (NETR_TRUST_FLAG_IN_FOREST |
1586 NETR_TRUST_FLAG_OUTBOUND |
1587 NETR_TRUST_FLAG_INBOUND);
1588 struct rpc_pipe_client *cli;
1589 TALLOC_CTX *mem_ctx = NULL;
1591 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s\n", domain->name ));
1593 /* Our primary domain doesn't need to worry about trust flags.
1594 Force it to go through the network setup */
1595 if ( domain->primary ) {
1596 return False;
1599 our_domain = find_our_domain();
1601 if ( !connection_ok(our_domain) ) {
1602 DEBUG(3,("set_dc_type_and_flags_trustinfo: No connection to our domain!\n"));
1603 return False;
1606 /* This won't work unless our domain is AD */
1608 if ( !our_domain->active_directory ) {
1609 return False;
1612 /* Use DsEnumerateDomainTrusts to get us the trust direction
1613 and type */
1615 result = cm_connect_netlogon(our_domain, &cli);
1617 if (!NT_STATUS_IS_OK(result)) {
1618 DEBUG(5, ("set_dc_type_and_flags_trustinfo: Could not open "
1619 "a connection to %s for PIPE_NETLOGON (%s)\n",
1620 domain->name, nt_errstr(result)));
1621 return False;
1624 if ( (mem_ctx = talloc_init("set_dc_type_and_flags_trustinfo")) == NULL ) {
1625 DEBUG(0,("set_dc_type_and_flags_trustinfo: talloc_init() failed!\n"));
1626 return False;
1629 result = rpccli_netr_DsrEnumerateDomainTrusts(cli, mem_ctx,
1630 cli->cli->desthost,
1631 flags,
1632 &trusts,
1633 NULL);
1634 if (!NT_STATUS_IS_OK(result)) {
1635 DEBUG(0,("set_dc_type_and_flags_trustinfo: "
1636 "failed to query trusted domain list: %s\n",
1637 nt_errstr(result)));
1638 talloc_destroy(mem_ctx);
1639 return false;
1642 /* Now find the domain name and get the flags */
1644 for ( i=0; i<trusts.count; i++ ) {
1645 if ( strequal( domain->name, trusts.array[i].netbios_name) ) {
1646 domain->domain_flags = trusts.array[i].trust_flags;
1647 domain->domain_type = trusts.array[i].trust_type;
1648 domain->domain_trust_attribs = trusts.array[i].trust_attributes;
1650 if ( domain->domain_type == NETR_TRUST_TYPE_UPLEVEL )
1651 domain->active_directory = True;
1653 /* This flag is only set if the domain is *our*
1654 primary domain and the primary domain is in
1655 native mode */
1657 domain->native_mode = (domain->domain_flags & NETR_TRUST_FLAG_NATIVE);
1659 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s is %sin "
1660 "native mode.\n", domain->name,
1661 domain->native_mode ? "" : "NOT "));
1663 DEBUG(5,("set_dc_type_and_flags_trustinfo: domain %s is %s"
1664 "running active directory.\n", domain->name,
1665 domain->active_directory ? "" : "NOT "));
1668 domain->initialized = True;
1670 if ( !winbindd_can_contact_domain( domain) )
1671 domain->internal = True;
1673 break;
1677 talloc_destroy( mem_ctx );
1679 return domain->initialized;
1682 /******************************************************************************
1683 We can 'sense' certain things about the DC by it's replies to certain
1684 questions.
1686 This tells us if this particular remote server is Active Directory, and if it
1687 is native mode.
1688 ******************************************************************************/
1690 static void set_dc_type_and_flags_connect( struct winbindd_domain *domain )
1692 NTSTATUS result;
1693 WERROR werr;
1694 TALLOC_CTX *mem_ctx = NULL;
1695 struct rpc_pipe_client *cli;
1696 POLICY_HND pol;
1697 union dssetup_DsRoleInfo info;
1698 union lsa_PolicyInformation *lsa_info = NULL;
1700 if (!connection_ok(domain)) {
1701 return;
1704 mem_ctx = talloc_init("set_dc_type_and_flags on domain %s\n",
1705 domain->name);
1706 if (!mem_ctx) {
1707 DEBUG(1, ("set_dc_type_and_flags_connect: talloc_init() failed\n"));
1708 return;
1711 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s\n", domain->name ));
1713 cli = cli_rpc_pipe_open_noauth(domain->conn.cli, PI_DSSETUP,
1714 &result);
1716 if (cli == NULL) {
1717 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
1718 "PI_DSSETUP on domain %s: (%s)\n",
1719 domain->name, nt_errstr(result)));
1721 /* if this is just a non-AD domain we need to continue
1722 * identifying so that we can in the end return with
1723 * domain->initialized = True - gd */
1725 goto no_dssetup;
1728 result = rpccli_dssetup_DsRoleGetPrimaryDomainInformation(cli, mem_ctx,
1729 DS_ROLE_BASIC_INFORMATION,
1730 &info,
1731 &werr);
1732 cli_rpc_pipe_close(cli);
1734 if (!NT_STATUS_IS_OK(result)) {
1735 DEBUG(5, ("set_dc_type_and_flags_connect: rpccli_ds_getprimarydominfo "
1736 "on domain %s failed: (%s)\n",
1737 domain->name, nt_errstr(result)));
1739 /* older samba3 DCs will return DCERPC_FAULT_OP_RNG_ERROR for
1740 * every opcode on the DSSETUP pipe, continue with
1741 * no_dssetup mode here as well to get domain->initialized
1742 * set - gd */
1744 if (NT_STATUS_V(result) == DCERPC_FAULT_OP_RNG_ERROR) {
1745 goto no_dssetup;
1748 TALLOC_FREE(mem_ctx);
1749 return;
1752 if ((info.basic.flags & DS_ROLE_PRIMARY_DS_RUNNING) &&
1753 !(info.basic.flags & DS_ROLE_PRIMARY_DS_MIXED_MODE)) {
1754 domain->native_mode = True;
1755 } else {
1756 domain->native_mode = False;
1759 no_dssetup:
1760 cli = cli_rpc_pipe_open_noauth(domain->conn.cli, PI_LSARPC, &result);
1762 if (cli == NULL) {
1763 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
1764 "PI_LSARPC on domain %s: (%s)\n",
1765 domain->name, nt_errstr(result)));
1766 cli_rpc_pipe_close(cli);
1767 TALLOC_FREE(mem_ctx);
1768 return;
1771 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
1772 SEC_RIGHTS_MAXIMUM_ALLOWED, &pol);
1774 if (NT_STATUS_IS_OK(result)) {
1775 /* This particular query is exactly what Win2k clients use
1776 to determine that the DC is active directory */
1777 result = rpccli_lsa_QueryInfoPolicy2(cli, mem_ctx,
1778 &pol,
1779 LSA_POLICY_INFO_DNS,
1780 &lsa_info);
1783 if (NT_STATUS_IS_OK(result)) {
1784 domain->active_directory = True;
1786 if (lsa_info->dns.name.string) {
1787 fstrcpy(domain->name, lsa_info->dns.name.string);
1790 if (lsa_info->dns.dns_domain.string) {
1791 fstrcpy(domain->alt_name,
1792 lsa_info->dns.dns_domain.string);
1795 /* See if we can set some domain trust flags about
1796 ourself */
1798 if (lsa_info->dns.dns_forest.string) {
1799 fstrcpy(domain->forest_name,
1800 lsa_info->dns.dns_forest.string);
1802 if (strequal(domain->forest_name, domain->alt_name)) {
1803 domain->domain_flags |= NETR_TRUST_FLAG_TREEROOT;
1807 if (lsa_info->dns.sid) {
1808 sid_copy(&domain->sid, lsa_info->dns.sid);
1810 } else {
1811 domain->active_directory = False;
1813 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
1814 SEC_RIGHTS_MAXIMUM_ALLOWED,
1815 &pol);
1817 if (!NT_STATUS_IS_OK(result)) {
1818 goto done;
1821 result = rpccli_lsa_QueryInfoPolicy(cli, mem_ctx,
1822 &pol,
1823 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
1824 &lsa_info);
1826 if (NT_STATUS_IS_OK(result)) {
1828 if (lsa_info->account_domain.name.string) {
1829 fstrcpy(domain->name,
1830 lsa_info->account_domain.name.string);
1833 if (lsa_info->account_domain.sid) {
1834 sid_copy(&domain->sid, lsa_info->account_domain.sid);
1838 done:
1840 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s is %sin native mode.\n",
1841 domain->name, domain->native_mode ? "" : "NOT "));
1843 DEBUG(5,("set_dc_type_and_flags_connect: domain %s is %srunning active directory.\n",
1844 domain->name, domain->active_directory ? "" : "NOT "));
1846 cli_rpc_pipe_close(cli);
1848 TALLOC_FREE(mem_ctx);
1850 domain->initialized = True;
1853 /**********************************************************************
1854 Set the domain_flags (trust attributes, domain operating modes, etc...
1855 ***********************************************************************/
1857 static void set_dc_type_and_flags( struct winbindd_domain *domain )
1859 /* we always have to contact our primary domain */
1861 if ( domain->primary ) {
1862 DEBUG(10,("set_dc_type_and_flags: setting up flags for "
1863 "primary domain\n"));
1864 set_dc_type_and_flags_connect( domain );
1865 return;
1868 /* Use our DC to get the information if possible */
1870 if ( !set_dc_type_and_flags_trustinfo( domain ) ) {
1871 /* Otherwise, fallback to contacting the
1872 domain directly */
1873 set_dc_type_and_flags_connect( domain );
1876 return;
1881 /**********************************************************************
1882 ***********************************************************************/
1884 static bool cm_get_schannel_dcinfo(struct winbindd_domain *domain,
1885 struct dcinfo **ppdc)
1887 NTSTATUS result;
1888 struct rpc_pipe_client *netlogon_pipe;
1890 if (lp_client_schannel() == False) {
1891 return False;
1894 result = cm_connect_netlogon(domain, &netlogon_pipe);
1895 if (!NT_STATUS_IS_OK(result)) {
1896 return False;
1899 /* Return a pointer to the struct dcinfo from the
1900 netlogon pipe. */
1902 *ppdc = domain->conn.netlogon_pipe->dc;
1903 return True;
1906 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
1907 struct rpc_pipe_client **cli, POLICY_HND *sam_handle)
1909 struct winbindd_cm_conn *conn;
1910 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1911 fstring conn_pwd;
1912 struct dcinfo *p_dcinfo;
1913 char *machine_password = NULL;
1914 char *machine_account = NULL;
1915 char *domain_name = NULL;
1917 result = init_dc_connection(domain);
1918 if (!NT_STATUS_IS_OK(result)) {
1919 return result;
1922 conn = &domain->conn;
1924 if (conn->samr_pipe != NULL) {
1925 goto done;
1929 * No SAMR pipe yet. Attempt to get an NTLMSSP SPNEGO authenticated
1930 * sign and sealed pipe using the machine account password by
1931 * preference. If we can't - try schannel, if that fails, try
1932 * anonymous.
1935 pwd_get_cleartext(&conn->cli->pwd, conn_pwd);
1936 if ((conn->cli->user_name[0] == '\0') ||
1937 (conn->cli->domain[0] == '\0') ||
1938 (conn_pwd[0] == '\0'))
1940 result = get_trust_creds(domain, &machine_password,
1941 &machine_account, NULL);
1942 if (!NT_STATUS_IS_OK(result)) {
1943 DEBUG(10, ("cm_connect_sam: No no user available for "
1944 "domain %s, trying schannel\n", conn->cli->domain));
1945 goto schannel;
1947 domain_name = domain->name;
1948 } else {
1949 machine_password = SMB_STRDUP(conn_pwd);
1950 machine_account = SMB_STRDUP(conn->cli->user_name);
1951 domain_name = conn->cli->domain;
1954 if (!machine_password || !machine_account) {
1955 result = NT_STATUS_NO_MEMORY;
1956 goto done;
1959 /* We have an authenticated connection. Use a NTLMSSP SPNEGO
1960 authenticated SAMR pipe with sign & seal. */
1961 conn->samr_pipe =
1962 cli_rpc_pipe_open_spnego_ntlmssp(conn->cli, PI_SAMR,
1963 PIPE_AUTH_LEVEL_PRIVACY,
1964 domain_name,
1965 machine_account,
1966 machine_password, &result);
1968 if (conn->samr_pipe == NULL) {
1969 DEBUG(10,("cm_connect_sam: failed to connect to SAMR "
1970 "pipe for domain %s using NTLMSSP "
1971 "authenticated pipe: user %s\\%s. Error was "
1972 "%s\n", domain->name, domain_name,
1973 machine_account, nt_errstr(result)));
1974 goto schannel;
1977 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for "
1978 "domain %s using NTLMSSP authenticated "
1979 "pipe: user %s\\%s\n", domain->name,
1980 domain_name, machine_account));
1982 result = rpccli_samr_Connect2(conn->samr_pipe, mem_ctx,
1983 conn->samr_pipe->cli->desthost,
1984 SEC_RIGHTS_MAXIMUM_ALLOWED,
1985 &conn->sam_connect_handle);
1986 if (NT_STATUS_IS_OK(result)) {
1987 goto open_domain;
1989 DEBUG(10,("cm_connect_sam: ntlmssp-sealed rpccli_samr_Connect2 "
1990 "failed for domain %s, error was %s. Trying schannel\n",
1991 domain->name, nt_errstr(result) ));
1992 cli_rpc_pipe_close(conn->samr_pipe);
1994 schannel:
1996 /* Fall back to schannel if it's a W2K pre-SP1 box. */
1998 if (!cm_get_schannel_dcinfo(domain, &p_dcinfo)) {
1999 /* If this call fails - conn->cli can now be NULL ! */
2000 DEBUG(10, ("cm_connect_sam: Could not get schannel auth info "
2001 "for domain %s, trying anon\n", domain->name));
2002 goto anonymous;
2004 conn->samr_pipe = cli_rpc_pipe_open_schannel_with_key
2005 (conn->cli, PI_SAMR, PIPE_AUTH_LEVEL_PRIVACY,
2006 domain->name, p_dcinfo, &result);
2008 if (conn->samr_pipe == NULL) {
2009 DEBUG(10,("cm_connect_sam: failed to connect to SAMR pipe for "
2010 "domain %s using schannel. Error was %s\n",
2011 domain->name, nt_errstr(result) ));
2012 goto anonymous;
2014 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for domain %s using "
2015 "schannel.\n", domain->name ));
2017 result = rpccli_samr_Connect2(conn->samr_pipe, mem_ctx,
2018 conn->samr_pipe->cli->desthost,
2019 SEC_RIGHTS_MAXIMUM_ALLOWED,
2020 &conn->sam_connect_handle);
2021 if (NT_STATUS_IS_OK(result)) {
2022 goto open_domain;
2024 DEBUG(10,("cm_connect_sam: schannel-sealed rpccli_samr_Connect2 failed "
2025 "for domain %s, error was %s. Trying anonymous\n",
2026 domain->name, nt_errstr(result) ));
2027 cli_rpc_pipe_close(conn->samr_pipe);
2029 anonymous:
2031 /* Finally fall back to anonymous. */
2032 conn->samr_pipe = cli_rpc_pipe_open_noauth(conn->cli, PI_SAMR,
2033 &result);
2035 if (conn->samr_pipe == NULL) {
2036 result = NT_STATUS_PIPE_NOT_AVAILABLE;
2037 goto done;
2040 result = rpccli_samr_Connect2(conn->samr_pipe, mem_ctx,
2041 conn->samr_pipe->cli->desthost,
2042 SEC_RIGHTS_MAXIMUM_ALLOWED,
2043 &conn->sam_connect_handle);
2044 if (!NT_STATUS_IS_OK(result)) {
2045 DEBUG(10,("cm_connect_sam: rpccli_samr_Connect2 failed "
2046 "for domain %s Error was %s\n",
2047 domain->name, nt_errstr(result) ));
2048 goto done;
2051 open_domain:
2052 result = rpccli_samr_OpenDomain(conn->samr_pipe,
2053 mem_ctx,
2054 &conn->sam_connect_handle,
2055 SEC_RIGHTS_MAXIMUM_ALLOWED,
2056 &domain->sid,
2057 &conn->sam_domain_handle);
2059 done:
2061 if (!NT_STATUS_IS_OK(result)) {
2062 invalidate_cm_connection(conn);
2063 return result;
2066 *cli = conn->samr_pipe;
2067 *sam_handle = conn->sam_domain_handle;
2068 SAFE_FREE(machine_password);
2069 SAFE_FREE(machine_account);
2070 return result;
2073 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
2074 struct rpc_pipe_client **cli, POLICY_HND *lsa_policy)
2076 struct winbindd_cm_conn *conn;
2077 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2078 fstring conn_pwd;
2079 struct dcinfo *p_dcinfo;
2081 result = init_dc_connection(domain);
2082 if (!NT_STATUS_IS_OK(result))
2083 return result;
2085 conn = &domain->conn;
2087 if (conn->lsa_pipe != NULL) {
2088 goto done;
2091 pwd_get_cleartext(&conn->cli->pwd, conn_pwd);
2092 if ((conn->cli->user_name[0] == '\0') ||
2093 (conn->cli->domain[0] == '\0') ||
2094 (conn_pwd[0] == '\0')) {
2095 DEBUG(10, ("cm_connect_lsa: No no user available for "
2096 "domain %s, trying schannel\n", conn->cli->domain));
2097 goto schannel;
2100 /* We have an authenticated connection. Use a NTLMSSP SPNEGO
2101 * authenticated LSA pipe with sign & seal. */
2102 conn->lsa_pipe = cli_rpc_pipe_open_spnego_ntlmssp
2103 (conn->cli, PI_LSARPC, PIPE_AUTH_LEVEL_PRIVACY,
2104 conn->cli->domain, conn->cli->user_name, conn_pwd, &result);
2106 if (conn->lsa_pipe == NULL) {
2107 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
2108 "domain %s using NTLMSSP authenticated pipe: user "
2109 "%s\\%s. Error was %s. Trying schannel.\n",
2110 domain->name, conn->cli->domain,
2111 conn->cli->user_name, nt_errstr(result)));
2112 goto schannel;
2115 DEBUG(10,("cm_connect_lsa: connected to LSA pipe for domain %s using "
2116 "NTLMSSP authenticated pipe: user %s\\%s\n",
2117 domain->name, conn->cli->domain, conn->cli->user_name ));
2119 result = rpccli_lsa_open_policy(conn->lsa_pipe, mem_ctx, True,
2120 SEC_RIGHTS_MAXIMUM_ALLOWED,
2121 &conn->lsa_policy);
2122 if (NT_STATUS_IS_OK(result)) {
2123 goto done;
2126 DEBUG(10,("cm_connect_lsa: rpccli_lsa_open_policy failed, trying "
2127 "schannel\n"));
2129 cli_rpc_pipe_close(conn->lsa_pipe);
2131 schannel:
2133 /* Fall back to schannel if it's a W2K pre-SP1 box. */
2135 if (!cm_get_schannel_dcinfo(domain, &p_dcinfo)) {
2136 /* If this call fails - conn->cli can now be NULL ! */
2137 DEBUG(10, ("cm_connect_lsa: Could not get schannel auth info "
2138 "for domain %s, trying anon\n", domain->name));
2139 goto anonymous;
2141 conn->lsa_pipe = cli_rpc_pipe_open_schannel_with_key
2142 (conn->cli, PI_LSARPC, PIPE_AUTH_LEVEL_PRIVACY,
2143 domain->name, p_dcinfo, &result);
2145 if (conn->lsa_pipe == NULL) {
2146 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
2147 "domain %s using schannel. Error was %s\n",
2148 domain->name, nt_errstr(result) ));
2149 goto anonymous;
2151 DEBUG(10,("cm_connect_lsa: connected to LSA pipe for domain %s using "
2152 "schannel.\n", domain->name ));
2154 result = rpccli_lsa_open_policy(conn->lsa_pipe, mem_ctx, True,
2155 SEC_RIGHTS_MAXIMUM_ALLOWED,
2156 &conn->lsa_policy);
2157 if (NT_STATUS_IS_OK(result)) {
2158 goto done;
2161 DEBUG(10,("cm_connect_lsa: rpccli_lsa_open_policy failed, trying "
2162 "anonymous\n"));
2164 cli_rpc_pipe_close(conn->lsa_pipe);
2166 anonymous:
2168 conn->lsa_pipe = cli_rpc_pipe_open_noauth(conn->cli, PI_LSARPC,
2169 &result);
2170 if (conn->lsa_pipe == NULL) {
2171 result = NT_STATUS_PIPE_NOT_AVAILABLE;
2172 goto done;
2175 result = rpccli_lsa_open_policy(conn->lsa_pipe, mem_ctx, True,
2176 SEC_RIGHTS_MAXIMUM_ALLOWED,
2177 &conn->lsa_policy);
2178 done:
2179 if (!NT_STATUS_IS_OK(result)) {
2180 invalidate_cm_connection(conn);
2181 return result;
2184 *cli = conn->lsa_pipe;
2185 *lsa_policy = conn->lsa_policy;
2186 return result;
2189 /****************************************************************************
2190 Open the netlogon pipe to this DC. Use schannel if specified in client conf.
2191 session key stored in conn->netlogon_pipe->dc->sess_key.
2192 ****************************************************************************/
2194 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
2195 struct rpc_pipe_client **cli)
2197 struct winbindd_cm_conn *conn;
2198 NTSTATUS result;
2200 uint32_t neg_flags = NETLOGON_NEG_AUTH2_ADS_FLAGS;
2201 uint8 mach_pwd[16];
2202 uint32 sec_chan_type;
2203 const char *account_name;
2204 struct rpc_pipe_client *netlogon_pipe = NULL;
2206 *cli = NULL;
2208 result = init_dc_connection(domain);
2209 if (!NT_STATUS_IS_OK(result)) {
2210 return result;
2213 conn = &domain->conn;
2215 if (conn->netlogon_pipe != NULL) {
2216 *cli = conn->netlogon_pipe;
2217 return NT_STATUS_OK;
2220 netlogon_pipe = cli_rpc_pipe_open_noauth(conn->cli, PI_NETLOGON,
2221 &result);
2222 if (netlogon_pipe == NULL) {
2223 return result;
2226 if ((!IS_DC) && (!domain->primary)) {
2227 /* Clear the schannel request bit and drop down */
2228 neg_flags &= ~NETLOGON_NEG_SCHANNEL;
2229 goto no_schannel;
2232 if (lp_client_schannel() != False) {
2233 neg_flags |= NETLOGON_NEG_SCHANNEL;
2236 if (!get_trust_pw_hash(domain->name, mach_pwd, &account_name,
2237 &sec_chan_type))
2239 cli_rpc_pipe_close(netlogon_pipe);
2240 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
2243 result = rpccli_netlogon_setup_creds(
2244 netlogon_pipe,
2245 domain->dcname, /* server name. */
2246 domain->name, /* domain name */
2247 global_myname(), /* client name */
2248 account_name, /* machine account */
2249 mach_pwd, /* machine password */
2250 sec_chan_type, /* from get_trust_pw */
2251 &neg_flags);
2253 if (!NT_STATUS_IS_OK(result)) {
2254 cli_rpc_pipe_close(netlogon_pipe);
2255 return result;
2258 if ((lp_client_schannel() == True) &&
2259 ((neg_flags & NETLOGON_NEG_SCHANNEL) == 0)) {
2260 DEBUG(3, ("Server did not offer schannel\n"));
2261 cli_rpc_pipe_close(netlogon_pipe);
2262 return NT_STATUS_ACCESS_DENIED;
2265 no_schannel:
2266 if ((lp_client_schannel() == False) ||
2267 ((neg_flags & NETLOGON_NEG_SCHANNEL) == 0)) {
2269 * NetSamLogonEx only works for schannel
2271 domain->can_do_samlogon_ex = False;
2273 /* We're done - just keep the existing connection to NETLOGON
2274 * open */
2275 conn->netlogon_pipe = netlogon_pipe;
2276 *cli = conn->netlogon_pipe;
2277 return NT_STATUS_OK;
2280 /* Using the credentials from the first pipe, open a signed and sealed
2281 second netlogon pipe. The session key is stored in the schannel
2282 part of the new pipe auth struct.
2285 conn->netlogon_pipe =
2286 cli_rpc_pipe_open_schannel_with_key(conn->cli,
2287 PI_NETLOGON,
2288 PIPE_AUTH_LEVEL_PRIVACY,
2289 domain->name,
2290 netlogon_pipe->dc,
2291 &result);
2293 /* We can now close the initial netlogon pipe. */
2294 cli_rpc_pipe_close(netlogon_pipe);
2296 if (conn->netlogon_pipe == NULL) {
2297 DEBUG(3, ("Could not open schannel'ed NETLOGON pipe. Error "
2298 "was %s\n", nt_errstr(result)));
2300 /* make sure we return something besides OK */
2301 return !NT_STATUS_IS_OK(result) ? result : NT_STATUS_PIPE_NOT_AVAILABLE;
2305 * Try NetSamLogonEx for AD domains
2307 domain->can_do_samlogon_ex = domain->active_directory;
2309 *cli = conn->netlogon_pipe;
2310 return NT_STATUS_OK;