s3-winbind: Fix Bug #7568: Make sure cm_connect_lsa_tcp does not reset the secure...
[Samba.git] / source3 / winbindd / winbindd_cm.c
blobf8e49cc049bee8a62dbb377af675a6576c506781
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"
63 #include "../libcli/auth/libcli_auth.h"
64 #include "../librpc/gen_ndr/cli_netlogon.h"
65 #include "../librpc/gen_ndr/cli_samr.h"
66 #include "../librpc/gen_ndr/cli_lsa.h"
67 #include "../librpc/gen_ndr/cli_dssetup.h"
69 #undef DBGC_CLASS
70 #define DBGC_CLASS DBGC_WINBIND
72 struct dc_name_ip {
73 fstring name;
74 struct sockaddr_storage ss;
77 extern struct winbindd_methods reconnect_methods;
78 extern bool override_logfile;
80 static NTSTATUS init_dc_connection_network(struct winbindd_domain *domain);
81 static void set_dc_type_and_flags( struct winbindd_domain *domain );
82 static bool get_dcs(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
83 struct dc_name_ip **dcs, int *num_dcs);
85 /****************************************************************
86 Child failed to find DC's. Reschedule check.
87 ****************************************************************/
89 static void msg_failed_to_go_online(struct messaging_context *msg,
90 void *private_data,
91 uint32_t msg_type,
92 struct server_id server_id,
93 DATA_BLOB *data)
95 struct winbindd_domain *domain;
96 const char *domainname = (const char *)data->data;
98 if (data->data == NULL || data->length == 0) {
99 return;
102 DEBUG(5,("msg_fail_to_go_online: received for domain %s.\n", domainname));
104 for (domain = domain_list(); domain; domain = domain->next) {
105 if (domain->internal) {
106 continue;
109 if (strequal(domain->name, domainname)) {
110 if (domain->online) {
111 /* We're already online, ignore. */
112 DEBUG(5,("msg_fail_to_go_online: domain %s "
113 "already online.\n", domainname));
114 continue;
117 /* Reschedule the online check. */
118 set_domain_offline(domain);
119 break;
124 /****************************************************************
125 Actually cause a reconnect from a message.
126 ****************************************************************/
128 static void msg_try_to_go_online(struct messaging_context *msg,
129 void *private_data,
130 uint32_t msg_type,
131 struct server_id server_id,
132 DATA_BLOB *data)
134 struct winbindd_domain *domain;
135 const char *domainname = (const char *)data->data;
137 if (data->data == NULL || data->length == 0) {
138 return;
141 DEBUG(5,("msg_try_to_go_online: received for domain %s.\n", domainname));
143 for (domain = domain_list(); domain; domain = domain->next) {
144 if (domain->internal) {
145 continue;
148 if (strequal(domain->name, domainname)) {
150 if (domain->online) {
151 /* We're already online, ignore. */
152 DEBUG(5,("msg_try_to_go_online: domain %s "
153 "already online.\n", domainname));
154 continue;
157 /* This call takes care of setting the online
158 flag to true if we connected, or re-adding
159 the offline handler if false. Bypasses online
160 check so always does network calls. */
162 init_dc_connection_network(domain);
163 break;
168 /****************************************************************
169 Fork a child to try and contact a DC. Do this as contacting a
170 DC requires blocking lookups and we don't want to block our
171 parent.
172 ****************************************************************/
174 static bool fork_child_dc_connect(struct winbindd_domain *domain)
176 struct dc_name_ip *dcs = NULL;
177 int num_dcs = 0;
178 TALLOC_CTX *mem_ctx = NULL;
179 pid_t parent_pid = sys_getpid();
180 char *lfile = NULL;
182 if (domain->dc_probe_pid != (pid_t)-1) {
184 * We might already have a DC probe
185 * child working, check.
187 if (process_exists_by_pid(domain->dc_probe_pid)) {
188 DEBUG(10,("fork_child_dc_connect: pid %u already "
189 "checking for DC's.\n",
190 (unsigned int)domain->dc_probe_pid));
191 return true;
193 domain->dc_probe_pid = (pid_t)-1;
196 domain->dc_probe_pid = sys_fork();
198 if (domain->dc_probe_pid == (pid_t)-1) {
199 DEBUG(0, ("fork_child_dc_connect: Could not fork: %s\n", strerror(errno)));
200 return False;
203 if (domain->dc_probe_pid != (pid_t)0) {
204 /* Parent */
205 messaging_register(winbind_messaging_context(), NULL,
206 MSG_WINBIND_TRY_TO_GO_ONLINE,
207 msg_try_to_go_online);
208 messaging_register(winbind_messaging_context(), NULL,
209 MSG_WINBIND_FAILED_TO_GO_ONLINE,
210 msg_failed_to_go_online);
211 return True;
214 /* Child. */
216 /* Leave messages blocked - we will never process one. */
218 if (!override_logfile) {
219 if (asprintf(&lfile, "%s/log.winbindd-dc-connect", get_dyn_LOGFILEBASE()) == -1) {
220 DEBUG(0, ("fork_child_dc_connect: out of memory.\n"));
221 _exit(1);
225 if (!winbindd_reinit_after_fork(lfile)) {
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(1);
233 SAFE_FREE(lfile);
235 mem_ctx = talloc_init("fork_child_dc_connect");
236 if (!mem_ctx) {
237 DEBUG(0,("talloc_init failed.\n"));
238 messaging_send_buf(winbind_messaging_context(),
239 pid_to_procid(parent_pid),
240 MSG_WINBIND_FAILED_TO_GO_ONLINE,
241 (uint8 *)domain->name,
242 strlen(domain->name)+1);
243 _exit(1);
246 if ((!get_dcs(mem_ctx, domain, &dcs, &num_dcs)) || (num_dcs == 0)) {
247 /* Still offline ? Can't find DC's. */
248 messaging_send_buf(winbind_messaging_context(),
249 pid_to_procid(parent_pid),
250 MSG_WINBIND_FAILED_TO_GO_ONLINE,
251 (uint8 *)domain->name,
252 strlen(domain->name)+1);
253 _exit(0);
256 /* We got a DC. Send a message to our parent to get it to
257 try and do the same. */
259 messaging_send_buf(winbind_messaging_context(),
260 pid_to_procid(parent_pid),
261 MSG_WINBIND_TRY_TO_GO_ONLINE,
262 (uint8 *)domain->name,
263 strlen(domain->name)+1);
264 _exit(0);
267 /****************************************************************
268 Handler triggered if we're offline to try and detect a DC.
269 ****************************************************************/
271 static void check_domain_online_handler(struct event_context *ctx,
272 struct timed_event *te,
273 struct timeval now,
274 void *private_data)
276 struct winbindd_domain *domain =
277 (struct winbindd_domain *)private_data;
279 DEBUG(10,("check_domain_online_handler: called for domain "
280 "%s (online = %s)\n", domain->name,
281 domain->online ? "True" : "False" ));
283 TALLOC_FREE(domain->check_online_event);
285 /* Are we still in "startup" mode ? */
287 if (domain->startup && (now.tv_sec > domain->startup_time + 30)) {
288 /* No longer in "startup" mode. */
289 DEBUG(10,("check_domain_online_handler: domain %s no longer in 'startup' mode.\n",
290 domain->name ));
291 domain->startup = False;
294 /* We've been told to stay offline, so stay
295 that way. */
297 if (get_global_winbindd_state_offline()) {
298 DEBUG(10,("check_domain_online_handler: domain %s remaining globally offline\n",
299 domain->name ));
300 return;
303 /* Fork a child to test if it can contact a DC.
304 If it can then send ourselves a message to
305 cause a reconnect. */
307 fork_child_dc_connect(domain);
310 /****************************************************************
311 If we're still offline setup the timeout check.
312 ****************************************************************/
314 static void calc_new_online_timeout_check(struct winbindd_domain *domain)
316 int wbr = lp_winbind_reconnect_delay();
318 if (domain->startup) {
319 domain->check_online_timeout = 10;
320 } else if (domain->check_online_timeout < wbr) {
321 domain->check_online_timeout = wbr;
325 /****************************************************************
326 Set domain offline and also add handler to put us back online
327 if we detect a DC.
328 ****************************************************************/
330 void set_domain_offline(struct winbindd_domain *domain)
332 DEBUG(10,("set_domain_offline: called for domain %s\n",
333 domain->name ));
335 TALLOC_FREE(domain->check_online_event);
337 if (domain->internal) {
338 DEBUG(3,("set_domain_offline: domain %s is internal - logic error.\n",
339 domain->name ));
340 return;
343 domain->online = False;
345 /* Offline domains are always initialized. They're
346 re-initialized when they go back online. */
348 domain->initialized = True;
350 /* We only add the timeout handler that checks and
351 allows us to go back online when we've not
352 been told to remain offline. */
354 if (get_global_winbindd_state_offline()) {
355 DEBUG(10,("set_domain_offline: domain %s remaining globally offline\n",
356 domain->name ));
357 return;
360 /* If we're in startup mode, check again in 10 seconds, not in
361 lp_winbind_reconnect_delay() seconds (which is 30 seconds by default). */
363 calc_new_online_timeout_check(domain);
365 domain->check_online_event = event_add_timed(winbind_event_context(),
366 NULL,
367 timeval_current_ofs(domain->check_online_timeout,0),
368 check_domain_online_handler,
369 domain);
371 /* The above *has* to succeed for winbindd to work. */
372 if (!domain->check_online_event) {
373 smb_panic("set_domain_offline: failed to add online handler");
376 DEBUG(10,("set_domain_offline: added event handler for domain %s\n",
377 domain->name ));
379 /* Send an offline message to the idmap child when our
380 primary domain goes offline */
382 if ( domain->primary ) {
383 struct winbindd_child *idmap = idmap_child();
385 if ( idmap->pid != 0 ) {
386 messaging_send_buf(winbind_messaging_context(),
387 pid_to_procid(idmap->pid),
388 MSG_WINBIND_OFFLINE,
389 (uint8 *)domain->name,
390 strlen(domain->name)+1);
394 return;
397 /****************************************************************
398 Set domain online - if allowed.
399 ****************************************************************/
401 static void set_domain_online(struct winbindd_domain *domain)
403 DEBUG(10,("set_domain_online: called for domain %s\n",
404 domain->name ));
406 if (domain->internal) {
407 DEBUG(3,("set_domain_online: domain %s is internal - logic error.\n",
408 domain->name ));
409 return;
412 if (get_global_winbindd_state_offline()) {
413 DEBUG(10,("set_domain_online: domain %s remaining globally offline\n",
414 domain->name ));
415 return;
418 winbindd_set_locator_kdc_envs(domain);
420 /* If we are waiting to get a krb5 ticket, trigger immediately. */
421 ccache_regain_all_now();
423 /* Ok, we're out of any startup mode now... */
424 domain->startup = False;
426 if (domain->online == False) {
427 /* We were offline - now we're online. We default to
428 using the MS-RPC backend if we started offline,
429 and if we're going online for the first time we
430 should really re-initialize the backends and the
431 checks to see if we're talking to an AD or NT domain.
434 domain->initialized = False;
436 /* 'reconnect_methods' is the MS-RPC backend. */
437 if (domain->backend == &reconnect_methods) {
438 domain->backend = NULL;
442 /* Ensure we have no online timeout checks. */
443 domain->check_online_timeout = 0;
444 TALLOC_FREE(domain->check_online_event);
446 /* Ensure we ignore any pending child messages. */
447 messaging_deregister(winbind_messaging_context(),
448 MSG_WINBIND_TRY_TO_GO_ONLINE, NULL);
449 messaging_deregister(winbind_messaging_context(),
450 MSG_WINBIND_FAILED_TO_GO_ONLINE, NULL);
452 domain->online = True;
454 /* Send an online message to the idmap child when our
455 primary domain comes online */
457 if ( domain->primary ) {
458 struct winbindd_child *idmap = idmap_child();
460 if ( idmap->pid != 0 ) {
461 messaging_send_buf(winbind_messaging_context(),
462 pid_to_procid(idmap->pid),
463 MSG_WINBIND_ONLINE,
464 (uint8 *)domain->name,
465 strlen(domain->name)+1);
469 return;
472 /****************************************************************
473 Requested to set a domain online.
474 ****************************************************************/
476 void set_domain_online_request(struct winbindd_domain *domain)
478 struct timeval tev;
480 DEBUG(10,("set_domain_online_request: called for domain %s\n",
481 domain->name ));
483 if (get_global_winbindd_state_offline()) {
484 DEBUG(10,("set_domain_online_request: domain %s remaining globally offline\n",
485 domain->name ));
486 return;
489 if (domain->internal) {
490 DEBUG(10, ("set_domain_online_request: Internal domains are "
491 "always online\n"));
492 return;
495 /* We've been told it's safe to go online and
496 try and connect to a DC. But I don't believe it
497 because network manager seems to lie.
498 Wait at least 5 seconds. Heuristics suck... */
501 GetTimeOfDay(&tev);
503 /* Go into "startup" mode again. */
504 domain->startup_time = tev.tv_sec;
505 domain->startup = True;
507 tev.tv_sec += 5;
509 if (!domain->check_online_event) {
510 /* If we've come from being globally offline we
511 don't have a check online event handler set.
512 We need to add one now we're trying to go
513 back online. */
515 DEBUG(10,("set_domain_online_request: domain %s was globally offline.\n",
516 domain->name ));
519 TALLOC_FREE(domain->check_online_event);
521 domain->check_online_event = event_add_timed(winbind_event_context(),
522 NULL,
523 tev,
524 check_domain_online_handler,
525 domain);
527 /* The above *has* to succeed for winbindd to work. */
528 if (!domain->check_online_event) {
529 smb_panic("set_domain_online_request: failed to add online handler");
533 /****************************************************************
534 Add -ve connection cache entries for domain and realm.
535 ****************************************************************/
537 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
538 const char *server,
539 NTSTATUS result)
541 add_failed_connection_entry(domain->name, server, result);
542 /* If this was the saf name for the last thing we talked to,
543 remove it. */
544 saf_delete(domain->name);
545 if (*domain->alt_name) {
546 add_failed_connection_entry(domain->alt_name, server, result);
547 saf_delete(domain->alt_name);
549 winbindd_unset_locator_kdc_env(domain);
552 /* Choose between anonymous or authenticated connections. We need to use
553 an authenticated connection if DCs have the RestrictAnonymous registry
554 entry set > 0, or the "Additional restrictions for anonymous
555 connections" set in the win2k Local Security Policy.
557 Caller to free() result in domain, username, password
560 static void cm_get_ipc_userpass(char **username, char **domain, char **password)
562 *username = (char *)secrets_fetch(SECRETS_AUTH_USER, NULL);
563 *domain = (char *)secrets_fetch(SECRETS_AUTH_DOMAIN, NULL);
564 *password = (char *)secrets_fetch(SECRETS_AUTH_PASSWORD, NULL);
566 if (*username && **username) {
568 if (!*domain || !**domain)
569 *domain = smb_xstrdup(lp_workgroup());
571 if (!*password || !**password)
572 *password = smb_xstrdup("");
574 DEBUG(3, ("cm_get_ipc_userpass: Retrieved auth-user from secrets.tdb [%s\\%s]\n",
575 *domain, *username));
577 } else {
578 DEBUG(3, ("cm_get_ipc_userpass: No auth-user defined\n"));
579 *username = smb_xstrdup("");
580 *domain = smb_xstrdup("");
581 *password = smb_xstrdup("");
585 static bool get_dc_name_via_netlogon(struct winbindd_domain *domain,
586 fstring dcname,
587 struct sockaddr_storage *dc_ss)
589 struct winbindd_domain *our_domain = NULL;
590 struct rpc_pipe_client *netlogon_pipe = NULL;
591 NTSTATUS result;
592 WERROR werr;
593 TALLOC_CTX *mem_ctx;
594 unsigned int orig_timeout;
595 const char *tmp = NULL;
596 const char *p;
598 /* Hmmmm. We can only open one connection to the NETLOGON pipe at the
599 * moment.... */
601 if (IS_DC) {
602 return False;
605 if (domain->primary) {
606 return False;
609 our_domain = find_our_domain();
611 if ((mem_ctx = talloc_init("get_dc_name_via_netlogon")) == NULL) {
612 return False;
615 result = cm_connect_netlogon(our_domain, &netlogon_pipe);
616 if (!NT_STATUS_IS_OK(result)) {
617 talloc_destroy(mem_ctx);
618 return False;
621 /* This call can take a long time - allow the server to time out.
622 35 seconds should do it. */
624 orig_timeout = rpccli_set_timeout(netlogon_pipe, 35000);
626 if (our_domain->active_directory) {
627 struct netr_DsRGetDCNameInfo *domain_info = NULL;
629 result = rpccli_netr_DsRGetDCName(netlogon_pipe,
630 mem_ctx,
631 our_domain->dcname,
632 domain->name,
633 NULL,
634 NULL,
635 DS_RETURN_DNS_NAME,
636 &domain_info,
637 &werr);
638 if (NT_STATUS_IS_OK(result) && W_ERROR_IS_OK(werr)) {
639 tmp = talloc_strdup(
640 mem_ctx, domain_info->dc_unc);
641 if (tmp == NULL) {
642 DEBUG(0, ("talloc_strdup failed\n"));
643 talloc_destroy(mem_ctx);
644 return false;
646 if (strlen(domain->alt_name) == 0) {
647 fstrcpy(domain->alt_name,
648 domain_info->domain_name);
650 if (strlen(domain->forest_name) == 0) {
651 fstrcpy(domain->forest_name,
652 domain_info->forest_name);
655 } else {
656 result = rpccli_netr_GetAnyDCName(netlogon_pipe, mem_ctx,
657 our_domain->dcname,
658 domain->name,
659 &tmp,
660 &werr);
663 /* And restore our original timeout. */
664 rpccli_set_timeout(netlogon_pipe, orig_timeout);
666 if (!NT_STATUS_IS_OK(result)) {
667 DEBUG(10,("rpccli_netr_GetAnyDCName failed: %s\n",
668 nt_errstr(result)));
669 talloc_destroy(mem_ctx);
670 return false;
673 if (!W_ERROR_IS_OK(werr)) {
674 DEBUG(10,("rpccli_netr_GetAnyDCName failed: %s\n",
675 win_errstr(werr)));
676 talloc_destroy(mem_ctx);
677 return false;
680 /* rpccli_netr_GetAnyDCName gives us a name with \\ */
681 p = strip_hostname(tmp);
683 fstrcpy(dcname, p);
685 talloc_destroy(mem_ctx);
687 DEBUG(10,("rpccli_netr_GetAnyDCName returned %s\n", dcname));
689 if (!resolve_name(dcname, dc_ss, 0x20, true)) {
690 return False;
693 return True;
697 * Helper function to assemble trust password and account name
699 static NTSTATUS get_trust_creds(const struct winbindd_domain *domain,
700 char **machine_password,
701 char **machine_account,
702 char **machine_krb5_principal)
704 const char *account_name;
705 const char *name = NULL;
707 /* If we are a DC and this is not our own domain */
709 if (IS_DC) {
710 name = domain->name;
711 } else {
712 struct winbindd_domain *our_domain = find_our_domain();
714 if (!our_domain)
715 return NT_STATUS_INVALID_SERVER_STATE;
717 name = our_domain->name;
720 if (!get_trust_pw_clear(name, machine_password,
721 &account_name, NULL))
723 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
726 if ((machine_account != NULL) &&
727 (asprintf(machine_account, "%s$", account_name) == -1))
729 return NT_STATUS_NO_MEMORY;
732 /* For now assume our machine account only exists in our domain */
734 if (machine_krb5_principal != NULL)
736 struct winbindd_domain *our_domain = find_our_domain();
738 if (!our_domain) {
739 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
742 if (asprintf(machine_krb5_principal, "%s$@%s",
743 account_name, our_domain->alt_name) == -1)
745 return NT_STATUS_NO_MEMORY;
748 strupper_m(*machine_krb5_principal);
751 return NT_STATUS_OK;
754 /************************************************************************
755 Given a fd with a just-connected TCP connection to a DC, open a connection
756 to the pipe.
757 ************************************************************************/
759 static NTSTATUS cm_prepare_connection(const struct winbindd_domain *domain,
760 const int sockfd,
761 const char *controller,
762 struct cli_state **cli,
763 bool *retry)
765 char *machine_password = NULL;
766 char *machine_krb5_principal = NULL;
767 char *machine_account = NULL;
768 char *ipc_username = NULL;
769 char *ipc_domain = NULL;
770 char *ipc_password = NULL;
772 struct named_mutex *mutex;
774 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
776 struct sockaddr peeraddr;
777 socklen_t peeraddr_len;
779 struct sockaddr_in *peeraddr_in =
780 (struct sockaddr_in *)(void *)&peeraddr;
782 DEBUG(10,("cm_prepare_connection: connecting to DC %s for domain %s\n",
783 controller, domain->name ));
785 *retry = True;
787 mutex = grab_named_mutex(talloc_tos(), controller,
788 WINBIND_SERVER_MUTEX_WAIT_TIME);
789 if (mutex == NULL) {
790 DEBUG(0,("cm_prepare_connection: mutex grab failed for %s\n",
791 controller));
792 result = NT_STATUS_POSSIBLE_DEADLOCK;
793 goto done;
796 if ((*cli = cli_initialise()) == NULL) {
797 DEBUG(1, ("Could not cli_initialize\n"));
798 result = NT_STATUS_NO_MEMORY;
799 goto done;
802 (*cli)->timeout = 10000; /* 10 seconds */
803 (*cli)->fd = sockfd;
804 fstrcpy((*cli)->desthost, controller);
805 (*cli)->use_kerberos = True;
807 peeraddr_len = sizeof(peeraddr);
809 if ((getpeername((*cli)->fd, &peeraddr, &peeraddr_len) != 0)) {
810 DEBUG(0,("cm_prepare_connection: getpeername failed with: %s\n",
811 strerror(errno)));
812 result = NT_STATUS_UNSUCCESSFUL;
813 goto done;
816 if ((peeraddr_len != sizeof(struct sockaddr_in))
817 #ifdef HAVE_IPV6
818 && (peeraddr_len != sizeof(struct sockaddr_in6))
819 #endif
821 DEBUG(0,("cm_prepare_connection: got unexpected peeraddr len %d\n",
822 peeraddr_len));
823 result = NT_STATUS_UNSUCCESSFUL;
824 goto done;
827 if ((peeraddr_in->sin_family != PF_INET)
828 #ifdef HAVE_IPV6
829 && (peeraddr_in->sin_family != PF_INET6)
830 #endif
832 DEBUG(0,("cm_prepare_connection: got unexpected family %d\n",
833 peeraddr_in->sin_family));
834 result = NT_STATUS_UNSUCCESSFUL;
835 goto done;
838 if (ntohs(peeraddr_in->sin_port) == 139) {
839 struct nmb_name calling;
840 struct nmb_name called;
842 make_nmb_name(&calling, global_myname(), 0x0);
843 make_nmb_name(&called, "*SMBSERVER", 0x20);
845 if (!cli_session_request(*cli, &calling, &called)) {
846 DEBUG(8, ("cli_session_request failed for %s\n",
847 controller));
848 result = NT_STATUS_UNSUCCESSFUL;
849 goto done;
853 result = cli_negprot(*cli);
855 if (!NT_STATUS_IS_OK(result)) {
856 DEBUG(1, ("cli_negprot failed: %s\n", nt_errstr(result)));
857 goto done;
860 if (!is_dc_trusted_domain_situation(domain->name) &&
861 (*cli)->protocol >= PROTOCOL_NT1 &&
862 (*cli)->capabilities & CAP_EXTENDED_SECURITY)
864 ADS_STATUS ads_status;
866 result = get_trust_creds(domain, &machine_password,
867 &machine_account,
868 &machine_krb5_principal);
869 if (!NT_STATUS_IS_OK(result)) {
870 goto anon_fallback;
873 if (lp_security() == SEC_ADS) {
875 /* Try a krb5 session */
877 (*cli)->use_kerberos = True;
878 DEBUG(5, ("connecting to %s from %s with kerberos principal "
879 "[%s] and realm [%s]\n", controller, global_myname(),
880 machine_krb5_principal, domain->alt_name));
882 winbindd_set_locator_kdc_envs(domain);
884 ads_status = cli_session_setup_spnego(*cli,
885 machine_krb5_principal,
886 machine_password,
887 lp_workgroup(),
888 domain->alt_name);
890 if (!ADS_ERR_OK(ads_status)) {
891 DEBUG(4,("failed kerberos session setup with %s\n",
892 ads_errstr(ads_status)));
895 result = ads_ntstatus(ads_status);
896 if (NT_STATUS_IS_OK(result)) {
897 /* Ensure creds are stored for NTLMSSP authenticated pipe access. */
898 result = cli_init_creds(*cli, machine_account, lp_workgroup(), machine_password);
899 if (!NT_STATUS_IS_OK(result)) {
900 goto done;
902 goto session_setup_done;
906 /* Fall back to non-kerberos session setup using NTLMSSP SPNEGO with the machine account. */
907 (*cli)->use_kerberos = False;
909 DEBUG(5, ("connecting to %s from %s with username "
910 "[%s]\\[%s]\n", controller, global_myname(),
911 lp_workgroup(), machine_account));
913 ads_status = cli_session_setup_spnego(*cli,
914 machine_account,
915 machine_password,
916 lp_workgroup(),
917 NULL);
918 if (!ADS_ERR_OK(ads_status)) {
919 DEBUG(4, ("authenticated session setup failed with %s\n",
920 ads_errstr(ads_status)));
923 result = ads_ntstatus(ads_status);
924 if (NT_STATUS_IS_OK(result)) {
925 /* Ensure creds are stored for NTLMSSP authenticated pipe access. */
926 result = cli_init_creds(*cli, machine_account, lp_workgroup(), machine_password);
927 if (!NT_STATUS_IS_OK(result)) {
928 goto done;
930 goto session_setup_done;
934 /* Fall back to non-kerberos session setup with auth_user */
936 (*cli)->use_kerberos = False;
938 cm_get_ipc_userpass(&ipc_username, &ipc_domain, &ipc_password);
940 if ((((*cli)->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) != 0) &&
941 (strlen(ipc_username) > 0)) {
943 /* Only try authenticated if we have a username */
945 DEBUG(5, ("connecting to %s from %s with username "
946 "[%s]\\[%s]\n", controller, global_myname(),
947 ipc_domain, ipc_username));
949 if (NT_STATUS_IS_OK(cli_session_setup(
950 *cli, ipc_username,
951 ipc_password, strlen(ipc_password)+1,
952 ipc_password, strlen(ipc_password)+1,
953 ipc_domain))) {
954 /* Successful logon with given username. */
955 result = cli_init_creds(*cli, ipc_username, ipc_domain, ipc_password);
956 if (!NT_STATUS_IS_OK(result)) {
957 goto done;
959 goto session_setup_done;
960 } else {
961 DEBUG(4, ("authenticated session setup with user %s\\%s failed.\n",
962 ipc_domain, ipc_username ));
966 anon_fallback:
968 /* Fall back to anonymous connection, this might fail later */
969 DEBUG(10,("cm_prepare_connection: falling back to anonymous "
970 "connection for DC %s\n",
971 controller ));
973 if (NT_STATUS_IS_OK(cli_session_setup(*cli, "", NULL, 0,
974 NULL, 0, ""))) {
975 DEBUG(5, ("Connected anonymously\n"));
976 result = cli_init_creds(*cli, "", "", "");
977 if (!NT_STATUS_IS_OK(result)) {
978 goto done;
980 goto session_setup_done;
983 result = cli_nt_error(*cli);
985 if (NT_STATUS_IS_OK(result))
986 result = NT_STATUS_UNSUCCESSFUL;
988 /* We can't session setup */
990 goto done;
992 session_setup_done:
994 /* cache the server name for later connections */
996 saf_store( domain->name, (*cli)->desthost );
997 if (domain->alt_name && (*cli)->use_kerberos) {
998 saf_store( domain->alt_name, (*cli)->desthost );
1001 winbindd_set_locator_kdc_envs(domain);
1003 result = cli_tcon_andx(*cli, "IPC$", "IPC", "", 0);
1005 if (!NT_STATUS_IS_OK(result)) {
1006 DEBUG(1,("failed tcon_X with %s\n", nt_errstr(result)));
1007 goto done;
1010 TALLOC_FREE(mutex);
1011 *retry = False;
1013 /* set the domain if empty; needed for schannel connections */
1014 if ( !(*cli)->domain[0] ) {
1015 result = cli_set_domain((*cli), domain->name);
1016 if (!NT_STATUS_IS_OK(result)) {
1017 return result;
1021 result = NT_STATUS_OK;
1023 done:
1024 TALLOC_FREE(mutex);
1025 SAFE_FREE(machine_account);
1026 SAFE_FREE(machine_password);
1027 SAFE_FREE(machine_krb5_principal);
1028 SAFE_FREE(ipc_username);
1029 SAFE_FREE(ipc_domain);
1030 SAFE_FREE(ipc_password);
1032 if (!NT_STATUS_IS_OK(result)) {
1033 winbind_add_failed_connection_entry(domain, controller, result);
1034 if ((*cli) != NULL) {
1035 cli_shutdown(*cli);
1036 *cli = NULL;
1040 return result;
1043 /*******************************************************************
1044 Add a dcname and sockaddr_storage pair to the end of a dc_name_ip
1045 array.
1047 Keeps the list unique by not adding duplicate entries.
1049 @param[in] mem_ctx talloc memory context to allocate from
1050 @param[in] domain_name domain of the DC
1051 @param[in] dcname name of the DC to add to the list
1052 @param[in] pss Internet address and port pair to add to the list
1053 @param[in,out] dcs array of dc_name_ip structures to add to
1054 @param[in,out] num_dcs number of dcs returned in the dcs array
1055 @return true if the list was added to, false otherwise
1056 *******************************************************************/
1058 static bool add_one_dc_unique(TALLOC_CTX *mem_ctx, const char *domain_name,
1059 const char *dcname, struct sockaddr_storage *pss,
1060 struct dc_name_ip **dcs, int *num)
1062 int i = 0;
1064 if (!NT_STATUS_IS_OK(check_negative_conn_cache(domain_name, dcname))) {
1065 DEBUG(10, ("DC %s was in the negative conn cache\n", dcname));
1066 return False;
1069 /* Make sure there's no duplicates in the list */
1070 for (i=0; i<*num; i++)
1071 if (sockaddr_equal(
1072 (struct sockaddr *)(void *)&(*dcs)[i].ss,
1073 (struct sockaddr *)(void *)pss))
1074 return False;
1076 *dcs = TALLOC_REALLOC_ARRAY(mem_ctx, *dcs, struct dc_name_ip, (*num)+1);
1078 if (*dcs == NULL)
1079 return False;
1081 fstrcpy((*dcs)[*num].name, dcname);
1082 (*dcs)[*num].ss = *pss;
1083 *num += 1;
1084 return True;
1087 static bool add_sockaddr_to_array(TALLOC_CTX *mem_ctx,
1088 struct sockaddr_storage *pss, uint16 port,
1089 struct sockaddr_storage **addrs, int *num)
1091 *addrs = TALLOC_REALLOC_ARRAY(mem_ctx, *addrs, struct sockaddr_storage, (*num)+1);
1093 if (*addrs == NULL) {
1094 *num = 0;
1095 return False;
1098 (*addrs)[*num] = *pss;
1099 set_sockaddr_port((struct sockaddr *)&(*addrs)[*num], port);
1101 *num += 1;
1102 return True;
1105 /*******************************************************************
1106 convert an ip to a name
1107 *******************************************************************/
1109 static bool dcip_to_name(TALLOC_CTX *mem_ctx,
1110 const struct winbindd_domain *domain,
1111 struct sockaddr_storage *pss,
1112 fstring name )
1114 struct ip_service ip_list;
1115 uint32_t nt_version = NETLOGON_NT_VERSION_1;
1117 ip_list.ss = *pss;
1118 ip_list.port = 0;
1120 #ifdef WITH_ADS
1121 /* For active directory servers, try to get the ldap server name.
1122 None of these failures should be considered critical for now */
1124 if (lp_security() == SEC_ADS) {
1125 ADS_STRUCT *ads;
1126 ADS_STATUS ads_status;
1127 char addr[INET6_ADDRSTRLEN];
1129 print_sockaddr(addr, sizeof(addr), pss);
1131 ads = ads_init(domain->alt_name, domain->name, addr);
1132 ads->auth.flags |= ADS_AUTH_NO_BIND;
1134 ads_status = ads_connect(ads);
1135 if (ADS_ERR_OK(ads_status)) {
1136 /* We got a cldap packet. */
1137 fstrcpy(name, ads->config.ldap_server_name);
1138 namecache_store(name, 0x20, 1, &ip_list);
1140 DEBUG(10,("dcip_to_name: flags = 0x%x\n", (unsigned int)ads->config.flags));
1142 if (domain->primary && (ads->config.flags & NBT_SERVER_KDC)) {
1143 if (ads_closest_dc(ads)) {
1144 char *sitename = sitename_fetch(ads->config.realm);
1146 /* We're going to use this KDC for this realm/domain.
1147 If we are using sites, then force the krb5 libs
1148 to use this KDC. */
1150 create_local_private_krb5_conf_for_domain(domain->alt_name,
1151 domain->name,
1152 sitename,
1153 pss,
1154 name);
1156 SAFE_FREE(sitename);
1157 } else {
1158 /* use an off site KDC */
1159 create_local_private_krb5_conf_for_domain(domain->alt_name,
1160 domain->name,
1161 NULL,
1162 pss,
1163 name);
1165 winbindd_set_locator_kdc_envs(domain);
1167 /* Ensure we contact this DC also. */
1168 saf_store( domain->name, name);
1169 saf_store( domain->alt_name, name);
1172 ads_destroy( &ads );
1173 return True;
1176 ads_destroy( &ads );
1178 #endif
1180 /* try GETDC requests next */
1182 if (send_getdc_request(mem_ctx, winbind_messaging_context(),
1183 pss, domain->name, &domain->sid,
1184 nt_version)) {
1185 const char *dc_name = NULL;
1186 int i;
1187 smb_msleep(100);
1188 for (i=0; i<5; i++) {
1189 if (receive_getdc_response(mem_ctx, pss, domain->name,
1190 &nt_version,
1191 &dc_name, NULL)) {
1192 fstrcpy(name, dc_name);
1193 namecache_store(name, 0x20, 1, &ip_list);
1194 return True;
1196 smb_msleep(500);
1200 /* try node status request */
1202 if ( name_status_find(domain->name, 0x1c, 0x20, pss, name) ) {
1203 namecache_store(name, 0x20, 1, &ip_list);
1204 return True;
1206 return False;
1209 /*******************************************************************
1210 Retrieve a list of IP addresses for domain controllers.
1212 The array is sorted in the preferred connection order.
1214 @param[in] mem_ctx talloc memory context to allocate from
1215 @param[in] domain domain to retrieve DCs for
1216 @param[out] dcs array of dcs that will be returned
1217 @param[out] num_dcs number of dcs returned in the dcs array
1218 @return always true
1219 *******************************************************************/
1221 static bool get_dcs(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
1222 struct dc_name_ip **dcs, int *num_dcs)
1224 fstring dcname;
1225 struct sockaddr_storage ss;
1226 struct ip_service *ip_list = NULL;
1227 int iplist_size = 0;
1228 int i;
1229 bool is_our_domain;
1230 enum security_types sec = (enum security_types)lp_security();
1232 is_our_domain = strequal(domain->name, lp_workgroup());
1234 /* If not our domain, get the preferred DC, by asking our primary DC */
1235 if ( !is_our_domain
1236 && get_dc_name_via_netlogon(domain, dcname, &ss)
1237 && add_one_dc_unique(mem_ctx, domain->name, dcname, &ss, dcs,
1238 num_dcs) )
1240 char addr[INET6_ADDRSTRLEN];
1241 print_sockaddr(addr, sizeof(addr), &ss);
1242 DEBUG(10, ("Retrieved DC %s at %s via netlogon\n",
1243 dcname, addr));
1244 return True;
1247 if (sec == SEC_ADS) {
1248 char *sitename = NULL;
1250 /* We need to make sure we know the local site before
1251 doing any DNS queries, as this will restrict the
1252 get_sorted_dc_list() call below to only fetching
1253 DNS records for the correct site. */
1255 /* Find any DC to get the site record.
1256 We deliberately don't care about the
1257 return here. */
1259 get_dc_name(domain->name, domain->alt_name, dcname, &ss);
1261 sitename = sitename_fetch(domain->alt_name);
1262 if (sitename) {
1264 /* Do the site-specific AD dns lookup first. */
1265 get_sorted_dc_list(domain->alt_name, sitename, &ip_list,
1266 &iplist_size, True);
1268 /* Add ips to the DC array. We don't look up the name
1269 of the DC in this function, but we fill in the char*
1270 of the ip now to make the failed connection cache
1271 work */
1272 for ( i=0; i<iplist_size; i++ ) {
1273 char addr[INET6_ADDRSTRLEN];
1274 print_sockaddr(addr, sizeof(addr),
1275 &ip_list[i].ss);
1276 add_one_dc_unique(mem_ctx,
1277 domain->name,
1278 addr,
1279 &ip_list[i].ss,
1280 dcs,
1281 num_dcs);
1284 SAFE_FREE(ip_list);
1285 SAFE_FREE(sitename);
1286 iplist_size = 0;
1289 /* Now we add DCs from the main AD DNS lookup. */
1290 get_sorted_dc_list(domain->alt_name, NULL, &ip_list,
1291 &iplist_size, True);
1293 for ( i=0; i<iplist_size; i++ ) {
1294 char addr[INET6_ADDRSTRLEN];
1295 print_sockaddr(addr, sizeof(addr),
1296 &ip_list[i].ss);
1297 add_one_dc_unique(mem_ctx,
1298 domain->name,
1299 addr,
1300 &ip_list[i].ss,
1301 dcs,
1302 num_dcs);
1305 SAFE_FREE(ip_list);
1306 iplist_size = 0;
1309 /* Try standard netbios queries if no ADS */
1310 if (*num_dcs == 0) {
1311 get_sorted_dc_list(domain->name, NULL, &ip_list, &iplist_size,
1312 False);
1314 for ( i=0; i<iplist_size; i++ ) {
1315 char addr[INET6_ADDRSTRLEN];
1316 print_sockaddr(addr, sizeof(addr),
1317 &ip_list[i].ss);
1318 add_one_dc_unique(mem_ctx,
1319 domain->name,
1320 addr,
1321 &ip_list[i].ss,
1322 dcs,
1323 num_dcs);
1326 SAFE_FREE(ip_list);
1327 iplist_size = 0;
1330 return True;
1333 /*******************************************************************
1334 Find and make a connection to a DC in the given domain.
1336 @param[in] mem_ctx talloc memory context to allocate from
1337 @param[in] domain domain to find a dc in
1338 @param[out] dcname NetBIOS or FQDN of DC that's connected to
1339 @param[out] pss DC Internet address and port
1340 @param[out] fd fd of the open socket connected to the newly found dc
1341 @return true when a DC connection is made, false otherwise
1342 *******************************************************************/
1344 static bool find_new_dc(TALLOC_CTX *mem_ctx,
1345 struct winbindd_domain *domain,
1346 fstring dcname, struct sockaddr_storage *pss, int *fd)
1348 struct dc_name_ip *dcs = NULL;
1349 int num_dcs = 0;
1351 const char **dcnames = NULL;
1352 int num_dcnames = 0;
1354 struct sockaddr_storage *addrs = NULL;
1355 int num_addrs = 0;
1357 int i, fd_index;
1359 *fd = -1;
1361 again:
1362 if (!get_dcs(mem_ctx, domain, &dcs, &num_dcs) || (num_dcs == 0))
1363 return False;
1365 for (i=0; i<num_dcs; i++) {
1367 if (!add_string_to_array(mem_ctx, dcs[i].name,
1368 &dcnames, &num_dcnames)) {
1369 return False;
1371 if (!add_sockaddr_to_array(mem_ctx, &dcs[i].ss, 445,
1372 &addrs, &num_addrs)) {
1373 return False;
1376 if (!add_string_to_array(mem_ctx, dcs[i].name,
1377 &dcnames, &num_dcnames)) {
1378 return False;
1380 if (!add_sockaddr_to_array(mem_ctx, &dcs[i].ss, 139,
1381 &addrs, &num_addrs)) {
1382 return False;
1386 if ((num_dcnames == 0) || (num_dcnames != num_addrs))
1387 return False;
1389 if ((addrs == NULL) || (dcnames == NULL))
1390 return False;
1392 /* 5 second timeout. */
1393 if (!open_any_socket_out(addrs, num_addrs, 5000, &fd_index, fd) ) {
1394 for (i=0; i<num_dcs; i++) {
1395 char ab[INET6_ADDRSTRLEN];
1396 print_sockaddr(ab, sizeof(ab), &dcs[i].ss);
1397 DEBUG(10, ("find_new_dc: open_any_socket_out failed for "
1398 "domain %s address %s. Error was %s\n",
1399 domain->name, ab, strerror(errno) ));
1400 winbind_add_failed_connection_entry(domain,
1401 dcs[i].name, NT_STATUS_UNSUCCESSFUL);
1403 return False;
1406 *pss = addrs[fd_index];
1408 if (*dcnames[fd_index] != '\0' && !is_ipaddress(dcnames[fd_index])) {
1409 /* Ok, we've got a name for the DC */
1410 fstrcpy(dcname, dcnames[fd_index]);
1411 return True;
1414 /* Try to figure out the name */
1415 if (dcip_to_name(mem_ctx, domain, pss, dcname)) {
1416 return True;
1419 /* We can not continue without the DC's name */
1420 winbind_add_failed_connection_entry(domain, dcs[fd_index].name,
1421 NT_STATUS_UNSUCCESSFUL);
1423 /* Throw away all arrays as we're doing this again. */
1424 TALLOC_FREE(dcs);
1425 num_dcs = 0;
1427 TALLOC_FREE(dcnames);
1428 num_dcnames = 0;
1430 TALLOC_FREE(addrs);
1431 num_addrs = 0;
1433 close(*fd);
1434 *fd = -1;
1436 goto again;
1439 static NTSTATUS cm_open_connection(struct winbindd_domain *domain,
1440 struct winbindd_cm_conn *new_conn)
1442 TALLOC_CTX *mem_ctx;
1443 NTSTATUS result;
1444 char *saf_servername = saf_fetch( domain->name );
1445 int retries;
1447 if ((mem_ctx = talloc_init("cm_open_connection")) == NULL) {
1448 SAFE_FREE(saf_servername);
1449 set_domain_offline(domain);
1450 return NT_STATUS_NO_MEMORY;
1453 /* we have to check the server affinity cache here since
1454 later we selecte a DC based on response time and not preference */
1456 /* Check the negative connection cache
1457 before talking to it. It going down may have
1458 triggered the reconnection. */
1460 if ( saf_servername && NT_STATUS_IS_OK(check_negative_conn_cache( domain->name, saf_servername))) {
1462 DEBUG(10,("cm_open_connection: saf_servername is '%s' for domain %s\n",
1463 saf_servername, domain->name ));
1465 /* convert an ip address to a name */
1466 if (is_ipaddress( saf_servername ) ) {
1467 fstring saf_name;
1468 struct sockaddr_storage ss;
1470 if (!interpret_string_addr(&ss, saf_servername,
1471 AI_NUMERICHOST)) {
1472 return NT_STATUS_UNSUCCESSFUL;
1474 if (dcip_to_name(mem_ctx, domain, &ss, saf_name )) {
1475 fstrcpy( domain->dcname, saf_name );
1476 } else {
1477 winbind_add_failed_connection_entry(
1478 domain, saf_servername,
1479 NT_STATUS_UNSUCCESSFUL);
1481 } else {
1482 fstrcpy( domain->dcname, saf_servername );
1485 SAFE_FREE( saf_servername );
1488 for (retries = 0; retries < 3; retries++) {
1489 int fd = -1;
1490 bool retry = False;
1492 result = NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND;
1494 DEBUG(10,("cm_open_connection: dcname is '%s' for domain %s\n",
1495 domain->dcname, domain->name ));
1497 if (*domain->dcname
1498 && NT_STATUS_IS_OK(check_negative_conn_cache( domain->name, domain->dcname))
1499 && (resolve_name(domain->dcname, &domain->dcaddr, 0x20, true)))
1501 struct sockaddr_storage *addrs = NULL;
1502 int num_addrs = 0;
1503 int dummy = 0;
1505 if (!add_sockaddr_to_array(mem_ctx, &domain->dcaddr, 445, &addrs, &num_addrs)) {
1506 set_domain_offline(domain);
1507 talloc_destroy(mem_ctx);
1508 return NT_STATUS_NO_MEMORY;
1510 if (!add_sockaddr_to_array(mem_ctx, &domain->dcaddr, 139, &addrs, &num_addrs)) {
1511 set_domain_offline(domain);
1512 talloc_destroy(mem_ctx);
1513 return NT_STATUS_NO_MEMORY;
1516 /* 5 second timeout. */
1517 if (!open_any_socket_out(addrs, num_addrs, 5000, &dummy, &fd)) {
1518 fd = -1;
1522 if ((fd == -1)
1523 && !find_new_dc(mem_ctx, domain, domain->dcname, &domain->dcaddr, &fd))
1525 /* This is the one place where we will
1526 set the global winbindd offline state
1527 to true, if a "WINBINDD_OFFLINE" entry
1528 is found in the winbindd cache. */
1529 set_global_winbindd_state_offline();
1530 break;
1533 new_conn->cli = NULL;
1535 result = cm_prepare_connection(domain, fd, domain->dcname,
1536 &new_conn->cli, &retry);
1538 if (!retry)
1539 break;
1542 if (NT_STATUS_IS_OK(result)) {
1544 winbindd_set_locator_kdc_envs(domain);
1546 if (domain->online == False) {
1547 /* We're changing state from offline to online. */
1548 set_global_winbindd_state_online();
1550 set_domain_online(domain);
1551 } else {
1552 /* Ensure we setup the retry handler. */
1553 set_domain_offline(domain);
1556 talloc_destroy(mem_ctx);
1557 return result;
1560 /* Close down all open pipes on a connection. */
1562 void invalidate_cm_connection(struct winbindd_cm_conn *conn)
1564 /* We're closing down a possibly dead
1565 connection. Don't have impossibly long (10s) timeouts. */
1567 if (conn->cli) {
1568 cli_set_timeout(conn->cli, 1000); /* 1 second. */
1571 if (conn->samr_pipe != NULL) {
1572 TALLOC_FREE(conn->samr_pipe);
1573 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1574 if (conn->cli) {
1575 cli_set_timeout(conn->cli, 500);
1579 if (conn->lsa_pipe != NULL) {
1580 TALLOC_FREE(conn->lsa_pipe);
1581 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1582 if (conn->cli) {
1583 cli_set_timeout(conn->cli, 500);
1587 if (conn->lsa_pipe_tcp != NULL) {
1588 TALLOC_FREE(conn->lsa_pipe_tcp);
1589 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1590 if (conn->cli) {
1591 cli_set_timeout(conn->cli, 500);
1595 if (conn->netlogon_pipe != NULL) {
1596 TALLOC_FREE(conn->netlogon_pipe);
1597 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1598 if (conn->cli) {
1599 cli_set_timeout(conn->cli, 500);
1603 if (conn->cli) {
1604 cli_shutdown(conn->cli);
1607 conn->cli = NULL;
1610 void close_conns_after_fork(void)
1612 struct winbindd_domain *domain;
1614 for (domain = domain_list(); domain; domain = domain->next) {
1615 if (domain->conn.cli == NULL)
1616 continue;
1618 if (domain->conn.cli->fd == -1)
1619 continue;
1621 close(domain->conn.cli->fd);
1622 domain->conn.cli->fd = -1;
1626 static bool connection_ok(struct winbindd_domain *domain)
1628 bool ok;
1630 ok = cli_state_is_connected(domain->conn.cli);
1631 if (!ok) {
1632 DEBUG(3, ("connection_ok: Connection to %s for domain %s is not connected\n",
1633 domain->dcname, domain->name));
1634 return False;
1637 if (domain->online == False) {
1638 DEBUG(3, ("connection_ok: Domain %s is offline\n", domain->name));
1639 return False;
1642 return True;
1645 /* Initialize a new connection up to the RPC BIND.
1646 Bypass online status check so always does network calls. */
1648 static NTSTATUS init_dc_connection_network(struct winbindd_domain *domain)
1650 NTSTATUS result;
1652 /* Internal connections never use the network. */
1653 if (domain->internal) {
1654 domain->initialized = True;
1655 return NT_STATUS_OK;
1658 if (!winbindd_can_contact_domain(domain)) {
1659 invalidate_cm_connection(&domain->conn);
1660 domain->initialized = True;
1661 return NT_STATUS_OK;
1664 if (connection_ok(domain)) {
1665 if (!domain->initialized) {
1666 set_dc_type_and_flags(domain);
1668 return NT_STATUS_OK;
1671 invalidate_cm_connection(&domain->conn);
1673 result = cm_open_connection(domain, &domain->conn);
1675 if (NT_STATUS_IS_OK(result) && !domain->initialized) {
1676 set_dc_type_and_flags(domain);
1679 return result;
1682 NTSTATUS init_dc_connection(struct winbindd_domain *domain)
1684 if (domain->initialized && !domain->online) {
1685 /* We check for online status elsewhere. */
1686 return NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND;
1689 return init_dc_connection_network(domain);
1692 static NTSTATUS init_dc_connection_rpc(struct winbindd_domain *domain)
1694 NTSTATUS status;
1696 status = init_dc_connection(domain);
1697 if (!NT_STATUS_IS_OK(status)) {
1698 return status;
1701 if (!domain->internal && domain->conn.cli == NULL) {
1702 /* happens for trusted domains without inbound trust */
1703 return NT_STATUS_TRUSTED_DOMAIN_FAILURE;
1706 return NT_STATUS_OK;
1709 /******************************************************************************
1710 Set the trust flags (direction and forest location) for a domain
1711 ******************************************************************************/
1713 static bool set_dc_type_and_flags_trustinfo( struct winbindd_domain *domain )
1715 struct winbindd_domain *our_domain;
1716 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1717 struct netr_DomainTrustList trusts;
1718 int i;
1719 uint32 flags = (NETR_TRUST_FLAG_IN_FOREST |
1720 NETR_TRUST_FLAG_OUTBOUND |
1721 NETR_TRUST_FLAG_INBOUND);
1722 struct rpc_pipe_client *cli;
1723 TALLOC_CTX *mem_ctx = NULL;
1725 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s\n", domain->name ));
1727 /* Our primary domain doesn't need to worry about trust flags.
1728 Force it to go through the network setup */
1729 if ( domain->primary ) {
1730 return False;
1733 our_domain = find_our_domain();
1735 if ( !connection_ok(our_domain) ) {
1736 DEBUG(3,("set_dc_type_and_flags_trustinfo: No connection to our domain!\n"));
1737 return False;
1740 /* This won't work unless our domain is AD */
1742 if ( !our_domain->active_directory ) {
1743 return False;
1746 /* Use DsEnumerateDomainTrusts to get us the trust direction
1747 and type */
1749 result = cm_connect_netlogon(our_domain, &cli);
1751 if (!NT_STATUS_IS_OK(result)) {
1752 DEBUG(5, ("set_dc_type_and_flags_trustinfo: Could not open "
1753 "a connection to %s for PIPE_NETLOGON (%s)\n",
1754 domain->name, nt_errstr(result)));
1755 return False;
1758 if ( (mem_ctx = talloc_init("set_dc_type_and_flags_trustinfo")) == NULL ) {
1759 DEBUG(0,("set_dc_type_and_flags_trustinfo: talloc_init() failed!\n"));
1760 return False;
1763 result = rpccli_netr_DsrEnumerateDomainTrusts(cli, mem_ctx,
1764 cli->desthost,
1765 flags,
1766 &trusts,
1767 NULL);
1768 if (!NT_STATUS_IS_OK(result)) {
1769 DEBUG(0,("set_dc_type_and_flags_trustinfo: "
1770 "failed to query trusted domain list: %s\n",
1771 nt_errstr(result)));
1772 talloc_destroy(mem_ctx);
1773 return false;
1776 /* Now find the domain name and get the flags */
1778 for ( i=0; i<trusts.count; i++ ) {
1779 if ( strequal( domain->name, trusts.array[i].netbios_name) ) {
1780 domain->domain_flags = trusts.array[i].trust_flags;
1781 domain->domain_type = trusts.array[i].trust_type;
1782 domain->domain_trust_attribs = trusts.array[i].trust_attributes;
1784 if ( domain->domain_type == NETR_TRUST_TYPE_UPLEVEL )
1785 domain->active_directory = True;
1787 /* This flag is only set if the domain is *our*
1788 primary domain and the primary domain is in
1789 native mode */
1791 domain->native_mode = (domain->domain_flags & NETR_TRUST_FLAG_NATIVE);
1793 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s is %sin "
1794 "native mode.\n", domain->name,
1795 domain->native_mode ? "" : "NOT "));
1797 DEBUG(5,("set_dc_type_and_flags_trustinfo: domain %s is %s"
1798 "running active directory.\n", domain->name,
1799 domain->active_directory ? "" : "NOT "));
1802 domain->initialized = True;
1804 break;
1808 talloc_destroy( mem_ctx );
1810 return domain->initialized;
1813 /******************************************************************************
1814 We can 'sense' certain things about the DC by it's replies to certain
1815 questions.
1817 This tells us if this particular remote server is Active Directory, and if it
1818 is native mode.
1819 ******************************************************************************/
1821 static void set_dc_type_and_flags_connect( struct winbindd_domain *domain )
1823 NTSTATUS result;
1824 WERROR werr;
1825 TALLOC_CTX *mem_ctx = NULL;
1826 struct rpc_pipe_client *cli = NULL;
1827 struct policy_handle pol;
1828 union dssetup_DsRoleInfo info;
1829 union lsa_PolicyInformation *lsa_info = NULL;
1831 if (!connection_ok(domain)) {
1832 return;
1835 mem_ctx = talloc_init("set_dc_type_and_flags on domain %s\n",
1836 domain->name);
1837 if (!mem_ctx) {
1838 DEBUG(1, ("set_dc_type_and_flags_connect: talloc_init() failed\n"));
1839 return;
1842 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s\n", domain->name ));
1844 result = cli_rpc_pipe_open_noauth(domain->conn.cli,
1845 &ndr_table_dssetup.syntax_id,
1846 &cli);
1848 if (!NT_STATUS_IS_OK(result)) {
1849 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
1850 "PI_DSSETUP on domain %s: (%s)\n",
1851 domain->name, nt_errstr(result)));
1853 /* if this is just a non-AD domain we need to continue
1854 * identifying so that we can in the end return with
1855 * domain->initialized = True - gd */
1857 goto no_dssetup;
1860 result = rpccli_dssetup_DsRoleGetPrimaryDomainInformation(cli, mem_ctx,
1861 DS_ROLE_BASIC_INFORMATION,
1862 &info,
1863 &werr);
1864 TALLOC_FREE(cli);
1866 if (!NT_STATUS_IS_OK(result)) {
1867 DEBUG(5, ("set_dc_type_and_flags_connect: rpccli_ds_getprimarydominfo "
1868 "on domain %s failed: (%s)\n",
1869 domain->name, nt_errstr(result)));
1871 /* older samba3 DCs will return DCERPC_FAULT_OP_RNG_ERROR for
1872 * every opcode on the DSSETUP pipe, continue with
1873 * no_dssetup mode here as well to get domain->initialized
1874 * set - gd */
1876 if (NT_STATUS_V(result) == DCERPC_FAULT_OP_RNG_ERROR) {
1877 goto no_dssetup;
1880 TALLOC_FREE(mem_ctx);
1881 return;
1884 if ((info.basic.flags & DS_ROLE_PRIMARY_DS_RUNNING) &&
1885 !(info.basic.flags & DS_ROLE_PRIMARY_DS_MIXED_MODE)) {
1886 domain->native_mode = True;
1887 } else {
1888 domain->native_mode = False;
1891 no_dssetup:
1892 result = cli_rpc_pipe_open_noauth(domain->conn.cli,
1893 &ndr_table_lsarpc.syntax_id, &cli);
1895 if (!NT_STATUS_IS_OK(result)) {
1896 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
1897 "PI_LSARPC on domain %s: (%s)\n",
1898 domain->name, nt_errstr(result)));
1899 TALLOC_FREE(cli);
1900 TALLOC_FREE(mem_ctx);
1901 return;
1904 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
1905 SEC_FLAG_MAXIMUM_ALLOWED, &pol);
1907 if (NT_STATUS_IS_OK(result)) {
1908 /* This particular query is exactly what Win2k clients use
1909 to determine that the DC is active directory */
1910 result = rpccli_lsa_QueryInfoPolicy2(cli, mem_ctx,
1911 &pol,
1912 LSA_POLICY_INFO_DNS,
1913 &lsa_info);
1916 if (NT_STATUS_IS_OK(result)) {
1917 domain->active_directory = True;
1919 if (lsa_info->dns.name.string) {
1920 fstrcpy(domain->name, lsa_info->dns.name.string);
1923 if (lsa_info->dns.dns_domain.string) {
1924 fstrcpy(domain->alt_name,
1925 lsa_info->dns.dns_domain.string);
1928 /* See if we can set some domain trust flags about
1929 ourself */
1931 if (lsa_info->dns.dns_forest.string) {
1932 fstrcpy(domain->forest_name,
1933 lsa_info->dns.dns_forest.string);
1935 if (strequal(domain->forest_name, domain->alt_name)) {
1936 domain->domain_flags |= NETR_TRUST_FLAG_TREEROOT;
1940 if (lsa_info->dns.sid) {
1941 sid_copy(&domain->sid, lsa_info->dns.sid);
1943 } else {
1944 domain->active_directory = False;
1946 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
1947 SEC_FLAG_MAXIMUM_ALLOWED,
1948 &pol);
1950 if (!NT_STATUS_IS_OK(result)) {
1951 goto done;
1954 result = rpccli_lsa_QueryInfoPolicy(cli, mem_ctx,
1955 &pol,
1956 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
1957 &lsa_info);
1959 if (NT_STATUS_IS_OK(result)) {
1961 if (lsa_info->account_domain.name.string) {
1962 fstrcpy(domain->name,
1963 lsa_info->account_domain.name.string);
1966 if (lsa_info->account_domain.sid) {
1967 sid_copy(&domain->sid, lsa_info->account_domain.sid);
1971 done:
1973 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s is %sin native mode.\n",
1974 domain->name, domain->native_mode ? "" : "NOT "));
1976 DEBUG(5,("set_dc_type_and_flags_connect: domain %s is %srunning active directory.\n",
1977 domain->name, domain->active_directory ? "" : "NOT "));
1979 domain->can_do_ncacn_ip_tcp = domain->active_directory;
1981 TALLOC_FREE(cli);
1983 TALLOC_FREE(mem_ctx);
1985 domain->initialized = True;
1988 /**********************************************************************
1989 Set the domain_flags (trust attributes, domain operating modes, etc...
1990 ***********************************************************************/
1992 static void set_dc_type_and_flags( struct winbindd_domain *domain )
1994 /* we always have to contact our primary domain */
1996 if ( domain->primary ) {
1997 DEBUG(10,("set_dc_type_and_flags: setting up flags for "
1998 "primary domain\n"));
1999 set_dc_type_and_flags_connect( domain );
2000 return;
2003 /* Use our DC to get the information if possible */
2005 if ( !set_dc_type_and_flags_trustinfo( domain ) ) {
2006 /* Otherwise, fallback to contacting the
2007 domain directly */
2008 set_dc_type_and_flags_connect( domain );
2011 return;
2016 /**********************************************************************
2017 ***********************************************************************/
2019 static bool cm_get_schannel_creds(struct winbindd_domain *domain,
2020 struct netlogon_creds_CredentialState **ppdc)
2022 NTSTATUS result;
2023 struct rpc_pipe_client *netlogon_pipe;
2025 if (lp_client_schannel() == False) {
2026 return False;
2029 result = cm_connect_netlogon(domain, &netlogon_pipe);
2030 if (!NT_STATUS_IS_OK(result)) {
2031 return False;
2034 /* Return a pointer to the struct netlogon_creds_CredentialState from the
2035 netlogon pipe. */
2037 if (!domain->conn.netlogon_pipe->dc) {
2038 return false;
2041 *ppdc = domain->conn.netlogon_pipe->dc;
2042 return True;
2045 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
2046 struct rpc_pipe_client **cli, struct policy_handle *sam_handle)
2048 struct winbindd_cm_conn *conn;
2049 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2050 struct netlogon_creds_CredentialState *p_creds;
2051 char *machine_password = NULL;
2052 char *machine_account = NULL;
2053 char *domain_name = NULL;
2055 result = init_dc_connection_rpc(domain);
2056 if (!NT_STATUS_IS_OK(result)) {
2057 return result;
2060 conn = &domain->conn;
2062 if (rpccli_is_connected(conn->samr_pipe)) {
2063 goto done;
2066 TALLOC_FREE(conn->samr_pipe);
2069 * No SAMR pipe yet. Attempt to get an NTLMSSP SPNEGO authenticated
2070 * sign and sealed pipe using the machine account password by
2071 * preference. If we can't - try schannel, if that fails, try
2072 * anonymous.
2075 if ((conn->cli->user_name[0] == '\0') ||
2076 (conn->cli->domain[0] == '\0') ||
2077 (conn->cli->password == NULL || conn->cli->password[0] == '\0'))
2079 result = get_trust_creds(domain, &machine_password,
2080 &machine_account, NULL);
2081 if (!NT_STATUS_IS_OK(result)) {
2082 DEBUG(10, ("cm_connect_sam: No no user available for "
2083 "domain %s, trying schannel\n", conn->cli->domain));
2084 goto schannel;
2086 domain_name = domain->name;
2087 } else {
2088 machine_password = SMB_STRDUP(conn->cli->password);
2089 machine_account = SMB_STRDUP(conn->cli->user_name);
2090 domain_name = conn->cli->domain;
2093 if (!machine_password || !machine_account) {
2094 result = NT_STATUS_NO_MEMORY;
2095 goto done;
2098 /* We have an authenticated connection. Use a NTLMSSP SPNEGO
2099 authenticated SAMR pipe with sign & seal. */
2100 result = cli_rpc_pipe_open_spnego_ntlmssp(conn->cli,
2101 &ndr_table_samr.syntax_id,
2102 NCACN_NP,
2103 DCERPC_AUTH_LEVEL_PRIVACY,
2104 domain_name,
2105 machine_account,
2106 machine_password,
2107 &conn->samr_pipe);
2109 if (!NT_STATUS_IS_OK(result)) {
2110 DEBUG(10,("cm_connect_sam: failed to connect to SAMR "
2111 "pipe for domain %s using NTLMSSP "
2112 "authenticated pipe: user %s\\%s. Error was "
2113 "%s\n", domain->name, domain_name,
2114 machine_account, nt_errstr(result)));
2115 goto schannel;
2118 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for "
2119 "domain %s using NTLMSSP authenticated "
2120 "pipe: user %s\\%s\n", domain->name,
2121 domain_name, machine_account));
2123 result = rpccli_samr_Connect2(conn->samr_pipe, mem_ctx,
2124 conn->samr_pipe->desthost,
2125 SEC_FLAG_MAXIMUM_ALLOWED,
2126 &conn->sam_connect_handle);
2127 if (NT_STATUS_IS_OK(result)) {
2128 goto open_domain;
2130 DEBUG(10,("cm_connect_sam: ntlmssp-sealed rpccli_samr_Connect2 "
2131 "failed for domain %s, error was %s. Trying schannel\n",
2132 domain->name, nt_errstr(result) ));
2133 TALLOC_FREE(conn->samr_pipe);
2135 schannel:
2137 /* Fall back to schannel if it's a W2K pre-SP1 box. */
2139 if (!cm_get_schannel_creds(domain, &p_creds)) {
2140 /* If this call fails - conn->cli can now be NULL ! */
2141 DEBUG(10, ("cm_connect_sam: Could not get schannel auth info "
2142 "for domain %s, trying anon\n", domain->name));
2143 goto anonymous;
2145 result = cli_rpc_pipe_open_schannel_with_key
2146 (conn->cli, &ndr_table_samr.syntax_id, NCACN_NP,
2147 DCERPC_AUTH_LEVEL_PRIVACY,
2148 domain->name, &p_creds, &conn->samr_pipe);
2150 if (!NT_STATUS_IS_OK(result)) {
2151 DEBUG(10,("cm_connect_sam: failed to connect to SAMR pipe for "
2152 "domain %s using schannel. Error was %s\n",
2153 domain->name, nt_errstr(result) ));
2154 goto anonymous;
2156 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for domain %s using "
2157 "schannel.\n", domain->name ));
2159 result = rpccli_samr_Connect2(conn->samr_pipe, mem_ctx,
2160 conn->samr_pipe->desthost,
2161 SEC_FLAG_MAXIMUM_ALLOWED,
2162 &conn->sam_connect_handle);
2163 if (NT_STATUS_IS_OK(result)) {
2164 goto open_domain;
2166 DEBUG(10,("cm_connect_sam: schannel-sealed rpccli_samr_Connect2 failed "
2167 "for domain %s, error was %s. Trying anonymous\n",
2168 domain->name, nt_errstr(result) ));
2169 TALLOC_FREE(conn->samr_pipe);
2171 anonymous:
2173 /* Finally fall back to anonymous. */
2174 result = cli_rpc_pipe_open_noauth(conn->cli, &ndr_table_samr.syntax_id,
2175 &conn->samr_pipe);
2177 if (!NT_STATUS_IS_OK(result)) {
2178 goto done;
2181 result = rpccli_samr_Connect2(conn->samr_pipe, mem_ctx,
2182 conn->samr_pipe->desthost,
2183 SEC_FLAG_MAXIMUM_ALLOWED,
2184 &conn->sam_connect_handle);
2185 if (!NT_STATUS_IS_OK(result)) {
2186 DEBUG(10,("cm_connect_sam: rpccli_samr_Connect2 failed "
2187 "for domain %s Error was %s\n",
2188 domain->name, nt_errstr(result) ));
2189 goto done;
2192 open_domain:
2193 result = rpccli_samr_OpenDomain(conn->samr_pipe,
2194 mem_ctx,
2195 &conn->sam_connect_handle,
2196 SEC_FLAG_MAXIMUM_ALLOWED,
2197 &domain->sid,
2198 &conn->sam_domain_handle);
2200 done:
2202 if (NT_STATUS_EQUAL(result, NT_STATUS_ACCESS_DENIED)) {
2204 * if we got access denied, we might just have no access rights
2205 * to talk to the remote samr server server (e.g. when we are a
2206 * PDC and we are connecting a w2k8 pdc via an interdomain
2207 * trust). In that case do not invalidate the whole connection
2208 * stack
2210 TALLOC_FREE(conn->samr_pipe);
2211 ZERO_STRUCT(conn->sam_domain_handle);
2212 return result;
2213 } else if (!NT_STATUS_IS_OK(result)) {
2214 invalidate_cm_connection(conn);
2215 return result;
2218 *cli = conn->samr_pipe;
2219 *sam_handle = conn->sam_domain_handle;
2220 SAFE_FREE(machine_password);
2221 SAFE_FREE(machine_account);
2222 return result;
2225 /**********************************************************************
2226 open an schanneld ncacn_ip_tcp connection to LSA
2227 ***********************************************************************/
2229 NTSTATUS cm_connect_lsa_tcp(struct winbindd_domain *domain,
2230 TALLOC_CTX *mem_ctx,
2231 struct rpc_pipe_client **cli)
2233 struct winbindd_cm_conn *conn;
2234 struct netlogon_creds_CredentialState *creds;
2235 NTSTATUS status;
2237 DEBUG(10,("cm_connect_lsa_tcp\n"));
2239 status = init_dc_connection_rpc(domain);
2240 if (!NT_STATUS_IS_OK(status)) {
2241 return status;
2244 conn = &domain->conn;
2246 if (conn->lsa_pipe_tcp &&
2247 conn->lsa_pipe_tcp->transport->transport == NCACN_IP_TCP &&
2248 conn->lsa_pipe_tcp->auth->auth_level == DCERPC_AUTH_LEVEL_PRIVACY &&
2249 rpccli_is_connected(conn->lsa_pipe_tcp)) {
2250 goto done;
2253 TALLOC_FREE(conn->lsa_pipe_tcp);
2255 if (!cm_get_schannel_creds(domain, &creds)) {
2256 goto done;
2259 status = cli_rpc_pipe_open_schannel_with_key(conn->cli,
2260 &ndr_table_lsarpc.syntax_id,
2261 NCACN_IP_TCP,
2262 DCERPC_AUTH_LEVEL_PRIVACY,
2263 domain->name,
2264 &creds,
2265 &conn->lsa_pipe_tcp);
2266 if (!NT_STATUS_IS_OK(status)) {
2267 DEBUG(10,("cli_rpc_pipe_open_schannel_with_key failed: %s\n",
2268 nt_errstr(status)));
2269 goto done;
2272 done:
2273 if (!NT_STATUS_IS_OK(status)) {
2274 TALLOC_FREE(conn->lsa_pipe_tcp);
2275 return status;
2278 *cli = conn->lsa_pipe_tcp;
2280 return status;
2283 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
2284 struct rpc_pipe_client **cli, struct policy_handle *lsa_policy)
2286 struct winbindd_cm_conn *conn;
2287 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2288 struct netlogon_creds_CredentialState *p_creds;
2290 result = init_dc_connection_rpc(domain);
2291 if (!NT_STATUS_IS_OK(result))
2292 return result;
2294 conn = &domain->conn;
2296 if (rpccli_is_connected(conn->lsa_pipe)) {
2297 goto done;
2300 TALLOC_FREE(conn->lsa_pipe);
2302 if ((conn->cli->user_name[0] == '\0') ||
2303 (conn->cli->domain[0] == '\0') ||
2304 (conn->cli->password == NULL || conn->cli->password[0] == '\0')) {
2305 DEBUG(10, ("cm_connect_lsa: No no user available for "
2306 "domain %s, trying schannel\n", conn->cli->domain));
2307 goto schannel;
2310 /* We have an authenticated connection. Use a NTLMSSP SPNEGO
2311 * authenticated LSA pipe with sign & seal. */
2312 result = cli_rpc_pipe_open_spnego_ntlmssp
2313 (conn->cli, &ndr_table_lsarpc.syntax_id, NCACN_NP,
2314 DCERPC_AUTH_LEVEL_PRIVACY,
2315 conn->cli->domain, conn->cli->user_name, conn->cli->password,
2316 &conn->lsa_pipe);
2318 if (!NT_STATUS_IS_OK(result)) {
2319 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
2320 "domain %s using NTLMSSP authenticated pipe: user "
2321 "%s\\%s. Error was %s. Trying schannel.\n",
2322 domain->name, conn->cli->domain,
2323 conn->cli->user_name, nt_errstr(result)));
2324 goto schannel;
2327 DEBUG(10,("cm_connect_lsa: connected to LSA pipe for domain %s using "
2328 "NTLMSSP authenticated pipe: user %s\\%s\n",
2329 domain->name, conn->cli->domain, conn->cli->user_name ));
2331 result = rpccli_lsa_open_policy(conn->lsa_pipe, mem_ctx, True,
2332 SEC_FLAG_MAXIMUM_ALLOWED,
2333 &conn->lsa_policy);
2334 if (NT_STATUS_IS_OK(result)) {
2335 goto done;
2338 DEBUG(10,("cm_connect_lsa: rpccli_lsa_open_policy failed, trying "
2339 "schannel\n"));
2341 TALLOC_FREE(conn->lsa_pipe);
2343 schannel:
2345 /* Fall back to schannel if it's a W2K pre-SP1 box. */
2347 if (!cm_get_schannel_creds(domain, &p_creds)) {
2348 /* If this call fails - conn->cli can now be NULL ! */
2349 DEBUG(10, ("cm_connect_lsa: Could not get schannel auth info "
2350 "for domain %s, trying anon\n", domain->name));
2351 goto anonymous;
2353 result = cli_rpc_pipe_open_schannel_with_key
2354 (conn->cli, &ndr_table_lsarpc.syntax_id, NCACN_NP,
2355 DCERPC_AUTH_LEVEL_PRIVACY,
2356 domain->name, &p_creds, &conn->lsa_pipe);
2358 if (!NT_STATUS_IS_OK(result)) {
2359 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
2360 "domain %s using schannel. Error was %s\n",
2361 domain->name, nt_errstr(result) ));
2362 goto anonymous;
2364 DEBUG(10,("cm_connect_lsa: connected to LSA pipe for domain %s using "
2365 "schannel.\n", domain->name ));
2367 result = rpccli_lsa_open_policy(conn->lsa_pipe, mem_ctx, True,
2368 SEC_FLAG_MAXIMUM_ALLOWED,
2369 &conn->lsa_policy);
2370 if (NT_STATUS_IS_OK(result)) {
2371 goto done;
2374 DEBUG(10,("cm_connect_lsa: rpccli_lsa_open_policy failed, trying "
2375 "anonymous\n"));
2377 TALLOC_FREE(conn->lsa_pipe);
2379 anonymous:
2381 result = cli_rpc_pipe_open_noauth(conn->cli,
2382 &ndr_table_lsarpc.syntax_id,
2383 &conn->lsa_pipe);
2384 if (!NT_STATUS_IS_OK(result)) {
2385 result = NT_STATUS_PIPE_NOT_AVAILABLE;
2386 goto done;
2389 result = rpccli_lsa_open_policy(conn->lsa_pipe, mem_ctx, True,
2390 SEC_FLAG_MAXIMUM_ALLOWED,
2391 &conn->lsa_policy);
2392 done:
2393 if (!NT_STATUS_IS_OK(result)) {
2394 invalidate_cm_connection(conn);
2395 return result;
2398 *cli = conn->lsa_pipe;
2399 *lsa_policy = conn->lsa_policy;
2400 return result;
2403 /****************************************************************************
2404 Open the netlogon pipe to this DC. Use schannel if specified in client conf.
2405 session key stored in conn->netlogon_pipe->dc->sess_key.
2406 ****************************************************************************/
2408 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
2409 struct rpc_pipe_client **cli)
2411 struct winbindd_cm_conn *conn;
2412 NTSTATUS result;
2414 uint32_t neg_flags = NETLOGON_NEG_AUTH2_ADS_FLAGS;
2415 uint8 mach_pwd[16];
2416 enum netr_SchannelType sec_chan_type;
2417 const char *account_name;
2418 struct rpc_pipe_client *netlogon_pipe = NULL;
2420 *cli = NULL;
2422 result = init_dc_connection_rpc(domain);
2423 if (!NT_STATUS_IS_OK(result)) {
2424 return result;
2427 conn = &domain->conn;
2429 if (rpccli_is_connected(conn->netlogon_pipe)) {
2430 *cli = conn->netlogon_pipe;
2431 return NT_STATUS_OK;
2434 TALLOC_FREE(conn->netlogon_pipe);
2436 result = cli_rpc_pipe_open_noauth(conn->cli,
2437 &ndr_table_netlogon.syntax_id,
2438 &netlogon_pipe);
2439 if (!NT_STATUS_IS_OK(result)) {
2440 return result;
2443 if ((!IS_DC) && (!domain->primary)) {
2444 /* Clear the schannel request bit and drop down */
2445 neg_flags &= ~NETLOGON_NEG_SCHANNEL;
2446 goto no_schannel;
2449 if (lp_client_schannel() != False) {
2450 neg_flags |= NETLOGON_NEG_SCHANNEL;
2453 if (!get_trust_pw_hash(domain->name, mach_pwd, &account_name,
2454 &sec_chan_type))
2456 TALLOC_FREE(netlogon_pipe);
2457 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
2460 result = rpccli_netlogon_setup_creds(
2461 netlogon_pipe,
2462 domain->dcname, /* server name. */
2463 domain->name, /* domain name */
2464 global_myname(), /* client name */
2465 account_name, /* machine account */
2466 mach_pwd, /* machine password */
2467 sec_chan_type, /* from get_trust_pw */
2468 &neg_flags);
2470 if (!NT_STATUS_IS_OK(result)) {
2471 TALLOC_FREE(netlogon_pipe);
2472 return result;
2475 if ((lp_client_schannel() == True) &&
2476 ((neg_flags & NETLOGON_NEG_SCHANNEL) == 0)) {
2477 DEBUG(3, ("Server did not offer schannel\n"));
2478 TALLOC_FREE(netlogon_pipe);
2479 return NT_STATUS_ACCESS_DENIED;
2482 no_schannel:
2483 if ((lp_client_schannel() == False) ||
2484 ((neg_flags & NETLOGON_NEG_SCHANNEL) == 0)) {
2486 * NetSamLogonEx only works for schannel
2488 domain->can_do_samlogon_ex = False;
2490 /* We're done - just keep the existing connection to NETLOGON
2491 * open */
2492 conn->netlogon_pipe = netlogon_pipe;
2493 *cli = conn->netlogon_pipe;
2494 return NT_STATUS_OK;
2497 /* Using the credentials from the first pipe, open a signed and sealed
2498 second netlogon pipe. The session key is stored in the schannel
2499 part of the new pipe auth struct.
2502 result = cli_rpc_pipe_open_schannel_with_key(
2503 conn->cli, &ndr_table_netlogon.syntax_id, NCACN_NP,
2504 DCERPC_AUTH_LEVEL_PRIVACY, domain->name, &netlogon_pipe->dc,
2505 &conn->netlogon_pipe);
2507 /* We can now close the initial netlogon pipe. */
2508 TALLOC_FREE(netlogon_pipe);
2510 if (!NT_STATUS_IS_OK(result)) {
2511 DEBUG(3, ("Could not open schannel'ed NETLOGON pipe. Error "
2512 "was %s\n", nt_errstr(result)));
2514 invalidate_cm_connection(conn);
2515 return result;
2519 * Always try netr_LogonSamLogonEx. We will fall back for NT4
2520 * which gives DCERPC_FAULT_OP_RNG_ERROR (function not
2521 * supported). We used to only try SamLogonEx for AD, but
2522 * Samba DCs can also do it. And because we don't distinguish
2523 * between Samba and NT4, always try it once.
2525 domain->can_do_samlogon_ex = true;
2527 *cli = conn->netlogon_pipe;
2528 return NT_STATUS_OK;