s3-lsa: Fix static list of luids in our privileges implementation.
[Samba/ekacnet.git] / source3 / winbindd / winbindd_cm.c
blob19b73bceb7a24d776cce4db37a29078d076eb1f2
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 "rpc_client/cli_netlogon.h"
66 #include "../librpc/gen_ndr/cli_samr.h"
67 #include "../librpc/gen_ndr/cli_lsa.h"
68 #include "rpc_client/cli_lsarpc.h"
69 #include "../librpc/gen_ndr/cli_dssetup.h"
70 #include "libads/sitename_cache.h"
71 #include "librpc/gen_ndr/messaging.h"
72 #include "libsmb/clidgram.h"
74 #undef DBGC_CLASS
75 #define DBGC_CLASS DBGC_WINBIND
77 struct dc_name_ip {
78 fstring name;
79 struct sockaddr_storage ss;
82 extern struct winbindd_methods reconnect_methods;
83 extern bool override_logfile;
85 static NTSTATUS init_dc_connection_network(struct winbindd_domain *domain);
86 static void set_dc_type_and_flags( struct winbindd_domain *domain );
87 static bool get_dcs(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
88 struct dc_name_ip **dcs, int *num_dcs);
90 /****************************************************************
91 Child failed to find DC's. Reschedule check.
92 ****************************************************************/
94 static void msg_failed_to_go_online(struct messaging_context *msg,
95 void *private_data,
96 uint32_t msg_type,
97 struct server_id server_id,
98 DATA_BLOB *data)
100 struct winbindd_domain *domain;
101 const char *domainname = (const char *)data->data;
103 if (data->data == NULL || data->length == 0) {
104 return;
107 DEBUG(5,("msg_fail_to_go_online: received for domain %s.\n", domainname));
109 for (domain = domain_list(); domain; domain = domain->next) {
110 if (domain->internal) {
111 continue;
114 if (strequal(domain->name, domainname)) {
115 if (domain->online) {
116 /* We're already online, ignore. */
117 DEBUG(5,("msg_fail_to_go_online: domain %s "
118 "already online.\n", domainname));
119 continue;
122 /* Reschedule the online check. */
123 set_domain_offline(domain);
124 break;
129 /****************************************************************
130 Actually cause a reconnect from a message.
131 ****************************************************************/
133 static void msg_try_to_go_online(struct messaging_context *msg,
134 void *private_data,
135 uint32_t msg_type,
136 struct server_id server_id,
137 DATA_BLOB *data)
139 struct winbindd_domain *domain;
140 const char *domainname = (const char *)data->data;
142 if (data->data == NULL || data->length == 0) {
143 return;
146 DEBUG(5,("msg_try_to_go_online: received for domain %s.\n", domainname));
148 for (domain = domain_list(); domain; domain = domain->next) {
149 if (domain->internal) {
150 continue;
153 if (strequal(domain->name, domainname)) {
155 if (domain->online) {
156 /* We're already online, ignore. */
157 DEBUG(5,("msg_try_to_go_online: domain %s "
158 "already online.\n", domainname));
159 continue;
162 /* This call takes care of setting the online
163 flag to true if we connected, or re-adding
164 the offline handler if false. Bypasses online
165 check so always does network calls. */
167 init_dc_connection_network(domain);
168 break;
173 /****************************************************************
174 Fork a child to try and contact a DC. Do this as contacting a
175 DC requires blocking lookups and we don't want to block our
176 parent.
177 ****************************************************************/
179 static bool fork_child_dc_connect(struct winbindd_domain *domain)
181 struct dc_name_ip *dcs = NULL;
182 int num_dcs = 0;
183 TALLOC_CTX *mem_ctx = NULL;
184 pid_t parent_pid = sys_getpid();
185 char *lfile = NULL;
187 if (domain->dc_probe_pid != (pid_t)-1) {
189 * We might already have a DC probe
190 * child working, check.
192 if (process_exists_by_pid(domain->dc_probe_pid)) {
193 DEBUG(10,("fork_child_dc_connect: pid %u already "
194 "checking for DC's.\n",
195 (unsigned int)domain->dc_probe_pid));
196 return true;
198 domain->dc_probe_pid = (pid_t)-1;
201 domain->dc_probe_pid = sys_fork();
203 if (domain->dc_probe_pid == (pid_t)-1) {
204 DEBUG(0, ("fork_child_dc_connect: Could not fork: %s\n", strerror(errno)));
205 return False;
208 if (domain->dc_probe_pid != (pid_t)0) {
209 /* Parent */
210 messaging_register(winbind_messaging_context(), NULL,
211 MSG_WINBIND_TRY_TO_GO_ONLINE,
212 msg_try_to_go_online);
213 messaging_register(winbind_messaging_context(), NULL,
214 MSG_WINBIND_FAILED_TO_GO_ONLINE,
215 msg_failed_to_go_online);
216 return True;
219 /* Child. */
221 /* Leave messages blocked - we will never process one. */
223 if (!override_logfile) {
224 if (asprintf(&lfile, "%s/log.winbindd-dc-connect", get_dyn_LOGFILEBASE()) == -1) {
225 DEBUG(0, ("fork_child_dc_connect: out of memory.\n"));
226 _exit(1);
230 if (!winbindd_reinit_after_fork(lfile)) {
231 messaging_send_buf(winbind_messaging_context(),
232 pid_to_procid(parent_pid),
233 MSG_WINBIND_FAILED_TO_GO_ONLINE,
234 (uint8 *)domain->name,
235 strlen(domain->name)+1);
236 _exit(1);
238 SAFE_FREE(lfile);
240 mem_ctx = talloc_init("fork_child_dc_connect");
241 if (!mem_ctx) {
242 DEBUG(0,("talloc_init failed.\n"));
243 messaging_send_buf(winbind_messaging_context(),
244 pid_to_procid(parent_pid),
245 MSG_WINBIND_FAILED_TO_GO_ONLINE,
246 (uint8 *)domain->name,
247 strlen(domain->name)+1);
248 _exit(1);
251 if ((!get_dcs(mem_ctx, domain, &dcs, &num_dcs)) || (num_dcs == 0)) {
252 /* Still offline ? Can't find DC's. */
253 messaging_send_buf(winbind_messaging_context(),
254 pid_to_procid(parent_pid),
255 MSG_WINBIND_FAILED_TO_GO_ONLINE,
256 (uint8 *)domain->name,
257 strlen(domain->name)+1);
258 _exit(0);
261 /* We got a DC. Send a message to our parent to get it to
262 try and do the same. */
264 messaging_send_buf(winbind_messaging_context(),
265 pid_to_procid(parent_pid),
266 MSG_WINBIND_TRY_TO_GO_ONLINE,
267 (uint8 *)domain->name,
268 strlen(domain->name)+1);
269 _exit(0);
272 /****************************************************************
273 Handler triggered if we're offline to try and detect a DC.
274 ****************************************************************/
276 static void check_domain_online_handler(struct event_context *ctx,
277 struct timed_event *te,
278 struct timeval now,
279 void *private_data)
281 struct winbindd_domain *domain =
282 (struct winbindd_domain *)private_data;
284 DEBUG(10,("check_domain_online_handler: called for domain "
285 "%s (online = %s)\n", domain->name,
286 domain->online ? "True" : "False" ));
288 TALLOC_FREE(domain->check_online_event);
290 /* Are we still in "startup" mode ? */
292 if (domain->startup && (now.tv_sec > domain->startup_time + 30)) {
293 /* No longer in "startup" mode. */
294 DEBUG(10,("check_domain_online_handler: domain %s no longer in 'startup' mode.\n",
295 domain->name ));
296 domain->startup = False;
299 /* We've been told to stay offline, so stay
300 that way. */
302 if (get_global_winbindd_state_offline()) {
303 DEBUG(10,("check_domain_online_handler: domain %s remaining globally offline\n",
304 domain->name ));
305 return;
308 /* Fork a child to test if it can contact a DC.
309 If it can then send ourselves a message to
310 cause a reconnect. */
312 fork_child_dc_connect(domain);
315 /****************************************************************
316 If we're still offline setup the timeout check.
317 ****************************************************************/
319 static void calc_new_online_timeout_check(struct winbindd_domain *domain)
321 int wbr = lp_winbind_reconnect_delay();
323 if (domain->startup) {
324 domain->check_online_timeout = 10;
325 } else if (domain->check_online_timeout < wbr) {
326 domain->check_online_timeout = wbr;
330 /****************************************************************
331 Set domain offline and also add handler to put us back online
332 if we detect a DC.
333 ****************************************************************/
335 void set_domain_offline(struct winbindd_domain *domain)
337 DEBUG(10,("set_domain_offline: called for domain %s\n",
338 domain->name ));
340 TALLOC_FREE(domain->check_online_event);
342 if (domain->internal) {
343 DEBUG(3,("set_domain_offline: domain %s is internal - logic error.\n",
344 domain->name ));
345 return;
348 domain->online = False;
350 /* Offline domains are always initialized. They're
351 re-initialized when they go back online. */
353 domain->initialized = True;
355 /* We only add the timeout handler that checks and
356 allows us to go back online when we've not
357 been told to remain offline. */
359 if (get_global_winbindd_state_offline()) {
360 DEBUG(10,("set_domain_offline: domain %s remaining globally offline\n",
361 domain->name ));
362 return;
365 /* If we're in startup mode, check again in 10 seconds, not in
366 lp_winbind_reconnect_delay() seconds (which is 30 seconds by default). */
368 calc_new_online_timeout_check(domain);
370 domain->check_online_event = event_add_timed(winbind_event_context(),
371 NULL,
372 timeval_current_ofs(domain->check_online_timeout,0),
373 check_domain_online_handler,
374 domain);
376 /* The above *has* to succeed for winbindd to work. */
377 if (!domain->check_online_event) {
378 smb_panic("set_domain_offline: failed to add online handler");
381 DEBUG(10,("set_domain_offline: added event handler for domain %s\n",
382 domain->name ));
384 /* Send an offline message to the idmap child when our
385 primary domain goes offline */
387 if ( domain->primary ) {
388 struct winbindd_child *idmap = idmap_child();
390 if ( idmap->pid != 0 ) {
391 messaging_send_buf(winbind_messaging_context(),
392 pid_to_procid(idmap->pid),
393 MSG_WINBIND_OFFLINE,
394 (uint8 *)domain->name,
395 strlen(domain->name)+1);
399 return;
402 /****************************************************************
403 Set domain online - if allowed.
404 ****************************************************************/
406 static void set_domain_online(struct winbindd_domain *domain)
408 DEBUG(10,("set_domain_online: called for domain %s\n",
409 domain->name ));
411 if (domain->internal) {
412 DEBUG(3,("set_domain_online: domain %s is internal - logic error.\n",
413 domain->name ));
414 return;
417 if (get_global_winbindd_state_offline()) {
418 DEBUG(10,("set_domain_online: domain %s remaining globally offline\n",
419 domain->name ));
420 return;
423 winbindd_set_locator_kdc_envs(domain);
425 /* If we are waiting to get a krb5 ticket, trigger immediately. */
426 ccache_regain_all_now();
428 /* Ok, we're out of any startup mode now... */
429 domain->startup = False;
431 if (domain->online == False) {
432 /* We were offline - now we're online. We default to
433 using the MS-RPC backend if we started offline,
434 and if we're going online for the first time we
435 should really re-initialize the backends and the
436 checks to see if we're talking to an AD or NT domain.
439 domain->initialized = False;
441 /* 'reconnect_methods' is the MS-RPC backend. */
442 if (domain->backend == &reconnect_methods) {
443 domain->backend = NULL;
447 /* Ensure we have no online timeout checks. */
448 domain->check_online_timeout = 0;
449 TALLOC_FREE(domain->check_online_event);
451 /* Ensure we ignore any pending child messages. */
452 messaging_deregister(winbind_messaging_context(),
453 MSG_WINBIND_TRY_TO_GO_ONLINE, NULL);
454 messaging_deregister(winbind_messaging_context(),
455 MSG_WINBIND_FAILED_TO_GO_ONLINE, NULL);
457 domain->online = True;
459 /* Send an online message to the idmap child when our
460 primary domain comes online */
462 if ( domain->primary ) {
463 struct winbindd_child *idmap = idmap_child();
465 if ( idmap->pid != 0 ) {
466 messaging_send_buf(winbind_messaging_context(),
467 pid_to_procid(idmap->pid),
468 MSG_WINBIND_ONLINE,
469 (uint8 *)domain->name,
470 strlen(domain->name)+1);
474 return;
477 /****************************************************************
478 Requested to set a domain online.
479 ****************************************************************/
481 void set_domain_online_request(struct winbindd_domain *domain)
483 struct timeval tev;
485 DEBUG(10,("set_domain_online_request: called for domain %s\n",
486 domain->name ));
488 if (get_global_winbindd_state_offline()) {
489 DEBUG(10,("set_domain_online_request: domain %s remaining globally offline\n",
490 domain->name ));
491 return;
494 if (domain->internal) {
495 DEBUG(10, ("set_domain_online_request: Internal domains are "
496 "always online\n"));
497 return;
500 /* We've been told it's safe to go online and
501 try and connect to a DC. But I don't believe it
502 because network manager seems to lie.
503 Wait at least 5 seconds. Heuristics suck... */
506 GetTimeOfDay(&tev);
508 /* Go into "startup" mode again. */
509 domain->startup_time = tev.tv_sec;
510 domain->startup = True;
512 tev.tv_sec += 5;
514 if (!domain->check_online_event) {
515 /* If we've come from being globally offline we
516 don't have a check online event handler set.
517 We need to add one now we're trying to go
518 back online. */
520 DEBUG(10,("set_domain_online_request: domain %s was globally offline.\n",
521 domain->name ));
524 TALLOC_FREE(domain->check_online_event);
526 domain->check_online_event = event_add_timed(winbind_event_context(),
527 NULL,
528 tev,
529 check_domain_online_handler,
530 domain);
532 /* The above *has* to succeed for winbindd to work. */
533 if (!domain->check_online_event) {
534 smb_panic("set_domain_online_request: failed to add online handler");
538 /****************************************************************
539 Add -ve connection cache entries for domain and realm.
540 ****************************************************************/
542 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
543 const char *server,
544 NTSTATUS result)
546 add_failed_connection_entry(domain->name, server, result);
547 /* If this was the saf name for the last thing we talked to,
548 remove it. */
549 saf_delete(domain->name);
550 if (*domain->alt_name) {
551 add_failed_connection_entry(domain->alt_name, server, result);
552 saf_delete(domain->alt_name);
554 winbindd_unset_locator_kdc_env(domain);
557 /* Choose between anonymous or authenticated connections. We need to use
558 an authenticated connection if DCs have the RestrictAnonymous registry
559 entry set > 0, or the "Additional restrictions for anonymous
560 connections" set in the win2k Local Security Policy.
562 Caller to free() result in domain, username, password
565 static void cm_get_ipc_userpass(char **username, char **domain, char **password)
567 *username = (char *)secrets_fetch(SECRETS_AUTH_USER, NULL);
568 *domain = (char *)secrets_fetch(SECRETS_AUTH_DOMAIN, NULL);
569 *password = (char *)secrets_fetch(SECRETS_AUTH_PASSWORD, NULL);
571 if (*username && **username) {
573 if (!*domain || !**domain)
574 *domain = smb_xstrdup(lp_workgroup());
576 if (!*password || !**password)
577 *password = smb_xstrdup("");
579 DEBUG(3, ("cm_get_ipc_userpass: Retrieved auth-user from secrets.tdb [%s\\%s]\n",
580 *domain, *username));
582 } else {
583 DEBUG(3, ("cm_get_ipc_userpass: No auth-user defined\n"));
584 *username = smb_xstrdup("");
585 *domain = smb_xstrdup("");
586 *password = smb_xstrdup("");
590 static bool get_dc_name_via_netlogon(struct winbindd_domain *domain,
591 fstring dcname,
592 struct sockaddr_storage *dc_ss)
594 struct winbindd_domain *our_domain = NULL;
595 struct rpc_pipe_client *netlogon_pipe = NULL;
596 NTSTATUS result;
597 WERROR werr;
598 TALLOC_CTX *mem_ctx;
599 unsigned int orig_timeout;
600 const char *tmp = NULL;
601 const char *p;
603 /* Hmmmm. We can only open one connection to the NETLOGON pipe at the
604 * moment.... */
606 if (IS_DC) {
607 return False;
610 if (domain->primary) {
611 return False;
614 our_domain = find_our_domain();
616 if ((mem_ctx = talloc_init("get_dc_name_via_netlogon")) == NULL) {
617 return False;
620 result = cm_connect_netlogon(our_domain, &netlogon_pipe);
621 if (!NT_STATUS_IS_OK(result)) {
622 talloc_destroy(mem_ctx);
623 return False;
626 /* This call can take a long time - allow the server to time out.
627 35 seconds should do it. */
629 orig_timeout = rpccli_set_timeout(netlogon_pipe, 35000);
631 if (our_domain->active_directory) {
632 struct netr_DsRGetDCNameInfo *domain_info = NULL;
634 result = rpccli_netr_DsRGetDCName(netlogon_pipe,
635 mem_ctx,
636 our_domain->dcname,
637 domain->name,
638 NULL,
639 NULL,
640 DS_RETURN_DNS_NAME,
641 &domain_info,
642 &werr);
643 if (NT_STATUS_IS_OK(result) && W_ERROR_IS_OK(werr)) {
644 tmp = talloc_strdup(
645 mem_ctx, domain_info->dc_unc);
646 if (tmp == NULL) {
647 DEBUG(0, ("talloc_strdup failed\n"));
648 talloc_destroy(mem_ctx);
649 return false;
651 if (strlen(domain->alt_name) == 0) {
652 fstrcpy(domain->alt_name,
653 domain_info->domain_name);
655 if (strlen(domain->forest_name) == 0) {
656 fstrcpy(domain->forest_name,
657 domain_info->forest_name);
660 } else {
661 result = rpccli_netr_GetAnyDCName(netlogon_pipe, mem_ctx,
662 our_domain->dcname,
663 domain->name,
664 &tmp,
665 &werr);
668 /* And restore our original timeout. */
669 rpccli_set_timeout(netlogon_pipe, orig_timeout);
671 if (!NT_STATUS_IS_OK(result)) {
672 DEBUG(10,("rpccli_netr_GetAnyDCName failed: %s\n",
673 nt_errstr(result)));
674 talloc_destroy(mem_ctx);
675 return false;
678 if (!W_ERROR_IS_OK(werr)) {
679 DEBUG(10,("rpccli_netr_GetAnyDCName failed: %s\n",
680 win_errstr(werr)));
681 talloc_destroy(mem_ctx);
682 return false;
685 /* rpccli_netr_GetAnyDCName gives us a name with \\ */
686 p = strip_hostname(tmp);
688 fstrcpy(dcname, p);
690 talloc_destroy(mem_ctx);
692 DEBUG(10,("rpccli_netr_GetAnyDCName returned %s\n", dcname));
694 if (!resolve_name(dcname, dc_ss, 0x20, true)) {
695 return False;
698 return True;
702 * Helper function to assemble trust password and account name
704 static NTSTATUS get_trust_creds(const struct winbindd_domain *domain,
705 char **machine_password,
706 char **machine_account,
707 char **machine_krb5_principal)
709 const char *account_name;
710 const char *name = NULL;
712 /* If we are a DC and this is not our own domain */
714 if (IS_DC) {
715 name = domain->name;
716 } else {
717 struct winbindd_domain *our_domain = find_our_domain();
719 if (!our_domain)
720 return NT_STATUS_INVALID_SERVER_STATE;
722 name = our_domain->name;
725 if (!get_trust_pw_clear(name, machine_password,
726 &account_name, NULL))
728 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
731 if ((machine_account != NULL) &&
732 (asprintf(machine_account, "%s$", account_name) == -1))
734 return NT_STATUS_NO_MEMORY;
737 /* For now assume our machine account only exists in our domain */
739 if (machine_krb5_principal != NULL)
741 struct winbindd_domain *our_domain = find_our_domain();
743 if (!our_domain) {
744 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
747 if (asprintf(machine_krb5_principal, "%s$@%s",
748 account_name, our_domain->alt_name) == -1)
750 return NT_STATUS_NO_MEMORY;
753 strupper_m(*machine_krb5_principal);
756 return NT_STATUS_OK;
759 /************************************************************************
760 Given a fd with a just-connected TCP connection to a DC, open a connection
761 to the pipe.
762 ************************************************************************/
764 static NTSTATUS cm_prepare_connection(const struct winbindd_domain *domain,
765 const int sockfd,
766 const char *controller,
767 struct cli_state **cli,
768 bool *retry)
770 char *machine_password = NULL;
771 char *machine_krb5_principal = NULL;
772 char *machine_account = NULL;
773 char *ipc_username = NULL;
774 char *ipc_domain = NULL;
775 char *ipc_password = NULL;
777 struct named_mutex *mutex;
779 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
781 struct sockaddr peeraddr;
782 socklen_t peeraddr_len;
784 struct sockaddr_in *peeraddr_in =
785 (struct sockaddr_in *)(void *)&peeraddr;
787 DEBUG(10,("cm_prepare_connection: connecting to DC %s for domain %s\n",
788 controller, domain->name ));
790 *retry = True;
792 mutex = grab_named_mutex(talloc_tos(), controller,
793 WINBIND_SERVER_MUTEX_WAIT_TIME);
794 if (mutex == NULL) {
795 DEBUG(0,("cm_prepare_connection: mutex grab failed for %s\n",
796 controller));
797 result = NT_STATUS_POSSIBLE_DEADLOCK;
798 goto done;
801 if ((*cli = cli_initialise()) == NULL) {
802 DEBUG(1, ("Could not cli_initialize\n"));
803 result = NT_STATUS_NO_MEMORY;
804 goto done;
807 (*cli)->timeout = 10000; /* 10 seconds */
808 (*cli)->fd = sockfd;
809 fstrcpy((*cli)->desthost, controller);
810 (*cli)->use_kerberos = True;
812 peeraddr_len = sizeof(peeraddr);
814 if ((getpeername((*cli)->fd, &peeraddr, &peeraddr_len) != 0)) {
815 DEBUG(0,("cm_prepare_connection: getpeername failed with: %s\n",
816 strerror(errno)));
817 result = NT_STATUS_UNSUCCESSFUL;
818 goto done;
821 if ((peeraddr_len != sizeof(struct sockaddr_in))
822 #ifdef HAVE_IPV6
823 && (peeraddr_len != sizeof(struct sockaddr_in6))
824 #endif
826 DEBUG(0,("cm_prepare_connection: got unexpected peeraddr len %d\n",
827 peeraddr_len));
828 result = NT_STATUS_UNSUCCESSFUL;
829 goto done;
832 if ((peeraddr_in->sin_family != PF_INET)
833 #ifdef HAVE_IPV6
834 && (peeraddr_in->sin_family != PF_INET6)
835 #endif
837 DEBUG(0,("cm_prepare_connection: got unexpected family %d\n",
838 peeraddr_in->sin_family));
839 result = NT_STATUS_UNSUCCESSFUL;
840 goto done;
843 if (ntohs(peeraddr_in->sin_port) == 139) {
844 struct nmb_name calling;
845 struct nmb_name called;
847 make_nmb_name(&calling, global_myname(), 0x0);
848 make_nmb_name(&called, "*SMBSERVER", 0x20);
850 if (!cli_session_request(*cli, &calling, &called)) {
851 DEBUG(8, ("cli_session_request failed for %s\n",
852 controller));
853 result = NT_STATUS_UNSUCCESSFUL;
854 goto done;
858 result = cli_negprot(*cli);
860 if (!NT_STATUS_IS_OK(result)) {
861 DEBUG(1, ("cli_negprot failed: %s\n", nt_errstr(result)));
862 goto done;
865 if (!is_dc_trusted_domain_situation(domain->name) &&
866 (*cli)->protocol >= PROTOCOL_NT1 &&
867 (*cli)->capabilities & CAP_EXTENDED_SECURITY)
869 ADS_STATUS ads_status;
871 result = get_trust_creds(domain, &machine_password,
872 &machine_account,
873 &machine_krb5_principal);
874 if (!NT_STATUS_IS_OK(result)) {
875 goto anon_fallback;
878 if (lp_security() == SEC_ADS) {
880 /* Try a krb5 session */
882 (*cli)->use_kerberos = True;
883 DEBUG(5, ("connecting to %s from %s with kerberos principal "
884 "[%s] and realm [%s]\n", controller, global_myname(),
885 machine_krb5_principal, domain->alt_name));
887 winbindd_set_locator_kdc_envs(domain);
889 ads_status = cli_session_setup_spnego(*cli,
890 machine_krb5_principal,
891 machine_password,
892 lp_workgroup(),
893 domain->alt_name);
895 if (!ADS_ERR_OK(ads_status)) {
896 DEBUG(4,("failed kerberos session setup with %s\n",
897 ads_errstr(ads_status)));
900 result = ads_ntstatus(ads_status);
901 if (NT_STATUS_IS_OK(result)) {
902 /* Ensure creds are stored for NTLMSSP authenticated pipe access. */
903 result = cli_init_creds(*cli, machine_account, lp_workgroup(), machine_password);
904 if (!NT_STATUS_IS_OK(result)) {
905 goto done;
907 goto session_setup_done;
911 /* Fall back to non-kerberos session setup using NTLMSSP SPNEGO with the machine account. */
912 (*cli)->use_kerberos = False;
914 DEBUG(5, ("connecting to %s from %s with username "
915 "[%s]\\[%s]\n", controller, global_myname(),
916 lp_workgroup(), machine_account));
918 ads_status = cli_session_setup_spnego(*cli,
919 machine_account,
920 machine_password,
921 lp_workgroup(),
922 NULL);
923 if (!ADS_ERR_OK(ads_status)) {
924 DEBUG(4, ("authenticated session setup failed with %s\n",
925 ads_errstr(ads_status)));
928 result = ads_ntstatus(ads_status);
929 if (NT_STATUS_IS_OK(result)) {
930 /* Ensure creds are stored for NTLMSSP authenticated pipe access. */
931 result = cli_init_creds(*cli, machine_account, lp_workgroup(), machine_password);
932 if (!NT_STATUS_IS_OK(result)) {
933 goto done;
935 goto session_setup_done;
939 /* Fall back to non-kerberos session setup with auth_user */
941 (*cli)->use_kerberos = False;
943 cm_get_ipc_userpass(&ipc_username, &ipc_domain, &ipc_password);
945 if ((((*cli)->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) != 0) &&
946 (strlen(ipc_username) > 0)) {
948 /* Only try authenticated if we have a username */
950 DEBUG(5, ("connecting to %s from %s with username "
951 "[%s]\\[%s]\n", controller, global_myname(),
952 ipc_domain, ipc_username));
954 if (NT_STATUS_IS_OK(cli_session_setup(
955 *cli, ipc_username,
956 ipc_password, strlen(ipc_password)+1,
957 ipc_password, strlen(ipc_password)+1,
958 ipc_domain))) {
959 /* Successful logon with given username. */
960 result = cli_init_creds(*cli, ipc_username, ipc_domain, ipc_password);
961 if (!NT_STATUS_IS_OK(result)) {
962 goto done;
964 goto session_setup_done;
965 } else {
966 DEBUG(4, ("authenticated session setup with user %s\\%s failed.\n",
967 ipc_domain, ipc_username ));
971 anon_fallback:
973 /* Fall back to anonymous connection, this might fail later */
974 DEBUG(10,("cm_prepare_connection: falling back to anonymous "
975 "connection for DC %s\n",
976 controller ));
978 if (NT_STATUS_IS_OK(cli_session_setup(*cli, "", NULL, 0,
979 NULL, 0, ""))) {
980 DEBUG(5, ("Connected anonymously\n"));
981 result = cli_init_creds(*cli, "", "", "");
982 if (!NT_STATUS_IS_OK(result)) {
983 goto done;
985 goto session_setup_done;
988 result = cli_nt_error(*cli);
990 if (NT_STATUS_IS_OK(result))
991 result = NT_STATUS_UNSUCCESSFUL;
993 /* We can't session setup */
995 goto done;
997 session_setup_done:
999 /* cache the server name for later connections */
1001 saf_store( domain->name, (*cli)->desthost );
1002 if (domain->alt_name && (*cli)->use_kerberos) {
1003 saf_store( domain->alt_name, (*cli)->desthost );
1006 winbindd_set_locator_kdc_envs(domain);
1008 result = cli_tcon_andx(*cli, "IPC$", "IPC", "", 0);
1010 if (!NT_STATUS_IS_OK(result)) {
1011 DEBUG(1,("failed tcon_X with %s\n", nt_errstr(result)));
1012 goto done;
1015 TALLOC_FREE(mutex);
1016 *retry = False;
1018 /* set the domain if empty; needed for schannel connections */
1019 if ( !(*cli)->domain[0] ) {
1020 result = cli_set_domain((*cli), domain->name);
1021 if (!NT_STATUS_IS_OK(result)) {
1022 return result;
1026 result = NT_STATUS_OK;
1028 done:
1029 TALLOC_FREE(mutex);
1030 SAFE_FREE(machine_account);
1031 SAFE_FREE(machine_password);
1032 SAFE_FREE(machine_krb5_principal);
1033 SAFE_FREE(ipc_username);
1034 SAFE_FREE(ipc_domain);
1035 SAFE_FREE(ipc_password);
1037 if (!NT_STATUS_IS_OK(result)) {
1038 winbind_add_failed_connection_entry(domain, controller, result);
1039 if ((*cli) != NULL) {
1040 cli_shutdown(*cli);
1041 *cli = NULL;
1045 return result;
1048 /*******************************************************************
1049 Add a dcname and sockaddr_storage pair to the end of a dc_name_ip
1050 array.
1052 Keeps the list unique by not adding duplicate entries.
1054 @param[in] mem_ctx talloc memory context to allocate from
1055 @param[in] domain_name domain of the DC
1056 @param[in] dcname name of the DC to add to the list
1057 @param[in] pss Internet address and port pair to add to the list
1058 @param[in,out] dcs array of dc_name_ip structures to add to
1059 @param[in,out] num_dcs number of dcs returned in the dcs array
1060 @return true if the list was added to, false otherwise
1061 *******************************************************************/
1063 static bool add_one_dc_unique(TALLOC_CTX *mem_ctx, const char *domain_name,
1064 const char *dcname, struct sockaddr_storage *pss,
1065 struct dc_name_ip **dcs, int *num)
1067 int i = 0;
1069 if (!NT_STATUS_IS_OK(check_negative_conn_cache(domain_name, dcname))) {
1070 DEBUG(10, ("DC %s was in the negative conn cache\n", dcname));
1071 return False;
1074 /* Make sure there's no duplicates in the list */
1075 for (i=0; i<*num; i++)
1076 if (sockaddr_equal(
1077 (struct sockaddr *)(void *)&(*dcs)[i].ss,
1078 (struct sockaddr *)(void *)pss))
1079 return False;
1081 *dcs = TALLOC_REALLOC_ARRAY(mem_ctx, *dcs, struct dc_name_ip, (*num)+1);
1083 if (*dcs == NULL)
1084 return False;
1086 fstrcpy((*dcs)[*num].name, dcname);
1087 (*dcs)[*num].ss = *pss;
1088 *num += 1;
1089 return True;
1092 static bool add_sockaddr_to_array(TALLOC_CTX *mem_ctx,
1093 struct sockaddr_storage *pss, uint16 port,
1094 struct sockaddr_storage **addrs, int *num)
1096 *addrs = TALLOC_REALLOC_ARRAY(mem_ctx, *addrs, struct sockaddr_storage, (*num)+1);
1098 if (*addrs == NULL) {
1099 *num = 0;
1100 return False;
1103 (*addrs)[*num] = *pss;
1104 set_sockaddr_port((struct sockaddr *)&(*addrs)[*num], port);
1106 *num += 1;
1107 return True;
1110 /*******************************************************************
1111 convert an ip to a name
1112 *******************************************************************/
1114 static bool dcip_to_name(TALLOC_CTX *mem_ctx,
1115 const struct winbindd_domain *domain,
1116 struct sockaddr_storage *pss,
1117 fstring name )
1119 struct ip_service ip_list;
1120 uint32_t nt_version = NETLOGON_NT_VERSION_1;
1122 ip_list.ss = *pss;
1123 ip_list.port = 0;
1125 #ifdef WITH_ADS
1126 /* For active directory servers, try to get the ldap server name.
1127 None of these failures should be considered critical for now */
1129 if (lp_security() == SEC_ADS) {
1130 ADS_STRUCT *ads;
1131 ADS_STATUS ads_status;
1132 char addr[INET6_ADDRSTRLEN];
1134 print_sockaddr(addr, sizeof(addr), pss);
1136 ads = ads_init(domain->alt_name, domain->name, addr);
1137 ads->auth.flags |= ADS_AUTH_NO_BIND;
1139 ads_status = ads_connect(ads);
1140 if (ADS_ERR_OK(ads_status)) {
1141 /* We got a cldap packet. */
1142 fstrcpy(name, ads->config.ldap_server_name);
1143 namecache_store(name, 0x20, 1, &ip_list);
1145 DEBUG(10,("dcip_to_name: flags = 0x%x\n", (unsigned int)ads->config.flags));
1147 if (domain->primary && (ads->config.flags & NBT_SERVER_KDC)) {
1148 if (ads_closest_dc(ads)) {
1149 char *sitename = sitename_fetch(ads->config.realm);
1151 /* We're going to use this KDC for this realm/domain.
1152 If we are using sites, then force the krb5 libs
1153 to use this KDC. */
1155 create_local_private_krb5_conf_for_domain(domain->alt_name,
1156 domain->name,
1157 sitename,
1158 pss,
1159 name);
1161 SAFE_FREE(sitename);
1162 } else {
1163 /* use an off site KDC */
1164 create_local_private_krb5_conf_for_domain(domain->alt_name,
1165 domain->name,
1166 NULL,
1167 pss,
1168 name);
1170 winbindd_set_locator_kdc_envs(domain);
1172 /* Ensure we contact this DC also. */
1173 saf_store( domain->name, name);
1174 saf_store( domain->alt_name, name);
1177 ads_destroy( &ads );
1178 return True;
1181 ads_destroy( &ads );
1183 #endif
1185 /* try GETDC requests next */
1187 if (send_getdc_request(mem_ctx, winbind_messaging_context(),
1188 pss, domain->name, &domain->sid,
1189 nt_version)) {
1190 const char *dc_name = NULL;
1191 int i;
1192 smb_msleep(100);
1193 for (i=0; i<5; i++) {
1194 if (receive_getdc_response(mem_ctx, pss, domain->name,
1195 &nt_version,
1196 &dc_name, NULL)) {
1197 fstrcpy(name, dc_name);
1198 namecache_store(name, 0x20, 1, &ip_list);
1199 return True;
1201 smb_msleep(500);
1205 /* try node status request */
1207 if ( name_status_find(domain->name, 0x1c, 0x20, pss, name) ) {
1208 namecache_store(name, 0x20, 1, &ip_list);
1209 return True;
1211 return False;
1214 /*******************************************************************
1215 Retrieve a list of IP addresses for domain controllers.
1217 The array is sorted in the preferred connection order.
1219 @param[in] mem_ctx talloc memory context to allocate from
1220 @param[in] domain domain to retrieve DCs for
1221 @param[out] dcs array of dcs that will be returned
1222 @param[out] num_dcs number of dcs returned in the dcs array
1223 @return always true
1224 *******************************************************************/
1226 static bool get_dcs(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
1227 struct dc_name_ip **dcs, int *num_dcs)
1229 fstring dcname;
1230 struct sockaddr_storage ss;
1231 struct ip_service *ip_list = NULL;
1232 int iplist_size = 0;
1233 int i;
1234 bool is_our_domain;
1235 enum security_types sec = (enum security_types)lp_security();
1237 is_our_domain = strequal(domain->name, lp_workgroup());
1239 /* If not our domain, get the preferred DC, by asking our primary DC */
1240 if ( !is_our_domain
1241 && get_dc_name_via_netlogon(domain, dcname, &ss)
1242 && add_one_dc_unique(mem_ctx, domain->name, dcname, &ss, dcs,
1243 num_dcs) )
1245 char addr[INET6_ADDRSTRLEN];
1246 print_sockaddr(addr, sizeof(addr), &ss);
1247 DEBUG(10, ("Retrieved DC %s at %s via netlogon\n",
1248 dcname, addr));
1249 return True;
1252 if (sec == SEC_ADS) {
1253 char *sitename = NULL;
1255 /* We need to make sure we know the local site before
1256 doing any DNS queries, as this will restrict the
1257 get_sorted_dc_list() call below to only fetching
1258 DNS records for the correct site. */
1260 /* Find any DC to get the site record.
1261 We deliberately don't care about the
1262 return here. */
1264 get_dc_name(domain->name, domain->alt_name, dcname, &ss);
1266 sitename = sitename_fetch(domain->alt_name);
1267 if (sitename) {
1269 /* Do the site-specific AD dns lookup first. */
1270 get_sorted_dc_list(domain->alt_name, sitename, &ip_list,
1271 &iplist_size, True);
1273 /* Add ips to the DC array. We don't look up the name
1274 of the DC in this function, but we fill in the char*
1275 of the ip now to make the failed connection cache
1276 work */
1277 for ( i=0; i<iplist_size; i++ ) {
1278 char addr[INET6_ADDRSTRLEN];
1279 print_sockaddr(addr, sizeof(addr),
1280 &ip_list[i].ss);
1281 add_one_dc_unique(mem_ctx,
1282 domain->name,
1283 addr,
1284 &ip_list[i].ss,
1285 dcs,
1286 num_dcs);
1289 SAFE_FREE(ip_list);
1290 SAFE_FREE(sitename);
1291 iplist_size = 0;
1294 /* Now we add DCs from the main AD DNS lookup. */
1295 get_sorted_dc_list(domain->alt_name, NULL, &ip_list,
1296 &iplist_size, True);
1298 for ( i=0; i<iplist_size; i++ ) {
1299 char addr[INET6_ADDRSTRLEN];
1300 print_sockaddr(addr, sizeof(addr),
1301 &ip_list[i].ss);
1302 add_one_dc_unique(mem_ctx,
1303 domain->name,
1304 addr,
1305 &ip_list[i].ss,
1306 dcs,
1307 num_dcs);
1310 SAFE_FREE(ip_list);
1311 iplist_size = 0;
1314 /* Try standard netbios queries if no ADS */
1315 if (*num_dcs == 0) {
1316 get_sorted_dc_list(domain->name, NULL, &ip_list, &iplist_size,
1317 False);
1319 for ( i=0; i<iplist_size; i++ ) {
1320 char addr[INET6_ADDRSTRLEN];
1321 print_sockaddr(addr, sizeof(addr),
1322 &ip_list[i].ss);
1323 add_one_dc_unique(mem_ctx,
1324 domain->name,
1325 addr,
1326 &ip_list[i].ss,
1327 dcs,
1328 num_dcs);
1331 SAFE_FREE(ip_list);
1332 iplist_size = 0;
1335 return True;
1338 /*******************************************************************
1339 Find and make a connection to a DC in the given domain.
1341 @param[in] mem_ctx talloc memory context to allocate from
1342 @param[in] domain domain to find a dc in
1343 @param[out] dcname NetBIOS or FQDN of DC that's connected to
1344 @param[out] pss DC Internet address and port
1345 @param[out] fd fd of the open socket connected to the newly found dc
1346 @return true when a DC connection is made, false otherwise
1347 *******************************************************************/
1349 static bool find_new_dc(TALLOC_CTX *mem_ctx,
1350 struct winbindd_domain *domain,
1351 fstring dcname, struct sockaddr_storage *pss, int *fd)
1353 struct dc_name_ip *dcs = NULL;
1354 int num_dcs = 0;
1356 const char **dcnames = NULL;
1357 int num_dcnames = 0;
1359 struct sockaddr_storage *addrs = NULL;
1360 int num_addrs = 0;
1362 int i, fd_index;
1364 *fd = -1;
1366 again:
1367 if (!get_dcs(mem_ctx, domain, &dcs, &num_dcs) || (num_dcs == 0))
1368 return False;
1370 for (i=0; i<num_dcs; i++) {
1372 if (!add_string_to_array(mem_ctx, dcs[i].name,
1373 &dcnames, &num_dcnames)) {
1374 return False;
1376 if (!add_sockaddr_to_array(mem_ctx, &dcs[i].ss, 445,
1377 &addrs, &num_addrs)) {
1378 return False;
1381 if (!add_string_to_array(mem_ctx, dcs[i].name,
1382 &dcnames, &num_dcnames)) {
1383 return False;
1385 if (!add_sockaddr_to_array(mem_ctx, &dcs[i].ss, 139,
1386 &addrs, &num_addrs)) {
1387 return False;
1391 if ((num_dcnames == 0) || (num_dcnames != num_addrs))
1392 return False;
1394 if ((addrs == NULL) || (dcnames == NULL))
1395 return False;
1397 /* 5 second timeout. */
1398 if (!open_any_socket_out(addrs, num_addrs, 5000, &fd_index, fd) ) {
1399 for (i=0; i<num_dcs; i++) {
1400 char ab[INET6_ADDRSTRLEN];
1401 print_sockaddr(ab, sizeof(ab), &dcs[i].ss);
1402 DEBUG(10, ("find_new_dc: open_any_socket_out failed for "
1403 "domain %s address %s. Error was %s\n",
1404 domain->name, ab, strerror(errno) ));
1405 winbind_add_failed_connection_entry(domain,
1406 dcs[i].name, NT_STATUS_UNSUCCESSFUL);
1408 return False;
1411 *pss = addrs[fd_index];
1413 if (*dcnames[fd_index] != '\0' && !is_ipaddress(dcnames[fd_index])) {
1414 /* Ok, we've got a name for the DC */
1415 fstrcpy(dcname, dcnames[fd_index]);
1416 return True;
1419 /* Try to figure out the name */
1420 if (dcip_to_name(mem_ctx, domain, pss, dcname)) {
1421 return True;
1424 /* We can not continue without the DC's name */
1425 winbind_add_failed_connection_entry(domain, dcs[fd_index].name,
1426 NT_STATUS_UNSUCCESSFUL);
1428 /* Throw away all arrays as we're doing this again. */
1429 TALLOC_FREE(dcs);
1430 num_dcs = 0;
1432 TALLOC_FREE(dcnames);
1433 num_dcnames = 0;
1435 TALLOC_FREE(addrs);
1436 num_addrs = 0;
1438 close(*fd);
1439 *fd = -1;
1441 goto again;
1444 static NTSTATUS cm_open_connection(struct winbindd_domain *domain,
1445 struct winbindd_cm_conn *new_conn)
1447 TALLOC_CTX *mem_ctx;
1448 NTSTATUS result;
1449 char *saf_servername = saf_fetch( domain->name );
1450 int retries;
1452 if ((mem_ctx = talloc_init("cm_open_connection")) == NULL) {
1453 SAFE_FREE(saf_servername);
1454 set_domain_offline(domain);
1455 return NT_STATUS_NO_MEMORY;
1458 /* we have to check the server affinity cache here since
1459 later we selecte a DC based on response time and not preference */
1461 /* Check the negative connection cache
1462 before talking to it. It going down may have
1463 triggered the reconnection. */
1465 if ( saf_servername && NT_STATUS_IS_OK(check_negative_conn_cache( domain->name, saf_servername))) {
1467 DEBUG(10,("cm_open_connection: saf_servername is '%s' for domain %s\n",
1468 saf_servername, domain->name ));
1470 /* convert an ip address to a name */
1471 if (is_ipaddress( saf_servername ) ) {
1472 fstring saf_name;
1473 struct sockaddr_storage ss;
1475 if (!interpret_string_addr(&ss, saf_servername,
1476 AI_NUMERICHOST)) {
1477 return NT_STATUS_UNSUCCESSFUL;
1479 if (dcip_to_name(mem_ctx, domain, &ss, saf_name )) {
1480 fstrcpy( domain->dcname, saf_name );
1481 } else {
1482 winbind_add_failed_connection_entry(
1483 domain, saf_servername,
1484 NT_STATUS_UNSUCCESSFUL);
1486 } else {
1487 fstrcpy( domain->dcname, saf_servername );
1490 SAFE_FREE( saf_servername );
1493 for (retries = 0; retries < 3; retries++) {
1494 int fd = -1;
1495 bool retry = False;
1497 result = NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND;
1499 DEBUG(10,("cm_open_connection: dcname is '%s' for domain %s\n",
1500 domain->dcname, domain->name ));
1502 if (*domain->dcname
1503 && NT_STATUS_IS_OK(check_negative_conn_cache( domain->name, domain->dcname))
1504 && (resolve_name(domain->dcname, &domain->dcaddr, 0x20, true)))
1506 struct sockaddr_storage *addrs = NULL;
1507 int num_addrs = 0;
1508 int dummy = 0;
1510 if (!add_sockaddr_to_array(mem_ctx, &domain->dcaddr, 445, &addrs, &num_addrs)) {
1511 set_domain_offline(domain);
1512 talloc_destroy(mem_ctx);
1513 return NT_STATUS_NO_MEMORY;
1515 if (!add_sockaddr_to_array(mem_ctx, &domain->dcaddr, 139, &addrs, &num_addrs)) {
1516 set_domain_offline(domain);
1517 talloc_destroy(mem_ctx);
1518 return NT_STATUS_NO_MEMORY;
1521 /* 5 second timeout. */
1522 if (!open_any_socket_out(addrs, num_addrs, 5000, &dummy, &fd)) {
1523 fd = -1;
1527 if ((fd == -1)
1528 && !find_new_dc(mem_ctx, domain, domain->dcname, &domain->dcaddr, &fd))
1530 /* This is the one place where we will
1531 set the global winbindd offline state
1532 to true, if a "WINBINDD_OFFLINE" entry
1533 is found in the winbindd cache. */
1534 set_global_winbindd_state_offline();
1535 break;
1538 new_conn->cli = NULL;
1540 result = cm_prepare_connection(domain, fd, domain->dcname,
1541 &new_conn->cli, &retry);
1543 if (!retry)
1544 break;
1547 if (NT_STATUS_IS_OK(result)) {
1549 winbindd_set_locator_kdc_envs(domain);
1551 if (domain->online == False) {
1552 /* We're changing state from offline to online. */
1553 set_global_winbindd_state_online();
1555 set_domain_online(domain);
1556 } else {
1557 /* Ensure we setup the retry handler. */
1558 set_domain_offline(domain);
1561 talloc_destroy(mem_ctx);
1562 return result;
1565 /* Close down all open pipes on a connection. */
1567 void invalidate_cm_connection(struct winbindd_cm_conn *conn)
1569 /* We're closing down a possibly dead
1570 connection. Don't have impossibly long (10s) timeouts. */
1572 if (conn->cli) {
1573 cli_set_timeout(conn->cli, 1000); /* 1 second. */
1576 if (conn->samr_pipe != NULL) {
1577 TALLOC_FREE(conn->samr_pipe);
1578 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1579 if (conn->cli) {
1580 cli_set_timeout(conn->cli, 500);
1584 if (conn->lsa_pipe != NULL) {
1585 TALLOC_FREE(conn->lsa_pipe);
1586 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1587 if (conn->cli) {
1588 cli_set_timeout(conn->cli, 500);
1592 if (conn->lsa_pipe_tcp != NULL) {
1593 TALLOC_FREE(conn->lsa_pipe_tcp);
1594 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1595 if (conn->cli) {
1596 cli_set_timeout(conn->cli, 500);
1600 if (conn->netlogon_pipe != NULL) {
1601 TALLOC_FREE(conn->netlogon_pipe);
1602 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1603 if (conn->cli) {
1604 cli_set_timeout(conn->cli, 500);
1608 if (conn->cli) {
1609 cli_shutdown(conn->cli);
1612 conn->cli = NULL;
1615 void close_conns_after_fork(void)
1617 struct winbindd_domain *domain;
1619 for (domain = domain_list(); domain; domain = domain->next) {
1620 struct cli_state *cli = domain->conn.cli;
1623 * first close the low level SMB TCP connection
1624 * so that we don't generate any SMBclose
1625 * requests in invalidate_cm_connection()
1627 if (cli && cli->fd != -1) {
1628 close(domain->conn.cli->fd);
1629 domain->conn.cli->fd = -1;
1632 invalidate_cm_connection(&domain->conn);
1636 static bool connection_ok(struct winbindd_domain *domain)
1638 bool ok;
1640 ok = cli_state_is_connected(domain->conn.cli);
1641 if (!ok) {
1642 DEBUG(3, ("connection_ok: Connection to %s for domain %s is not connected\n",
1643 domain->dcname, domain->name));
1644 return False;
1647 if (domain->online == False) {
1648 DEBUG(3, ("connection_ok: Domain %s is offline\n", domain->name));
1649 return False;
1652 return True;
1655 /* Initialize a new connection up to the RPC BIND.
1656 Bypass online status check so always does network calls. */
1658 static NTSTATUS init_dc_connection_network(struct winbindd_domain *domain)
1660 NTSTATUS result;
1662 /* Internal connections never use the network. */
1663 if (domain->internal) {
1664 domain->initialized = True;
1665 return NT_STATUS_OK;
1668 if (!winbindd_can_contact_domain(domain)) {
1669 invalidate_cm_connection(&domain->conn);
1670 domain->initialized = True;
1671 return NT_STATUS_OK;
1674 if (connection_ok(domain)) {
1675 if (!domain->initialized) {
1676 set_dc_type_and_flags(domain);
1678 return NT_STATUS_OK;
1681 invalidate_cm_connection(&domain->conn);
1683 result = cm_open_connection(domain, &domain->conn);
1685 if (NT_STATUS_IS_OK(result) && !domain->initialized) {
1686 set_dc_type_and_flags(domain);
1689 return result;
1692 NTSTATUS init_dc_connection(struct winbindd_domain *domain)
1694 if (domain->internal) {
1695 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
1698 if (domain->initialized && !domain->online) {
1699 /* We check for online status elsewhere. */
1700 return NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND;
1703 return init_dc_connection_network(domain);
1706 static NTSTATUS init_dc_connection_rpc(struct winbindd_domain *domain)
1708 NTSTATUS status;
1710 status = init_dc_connection(domain);
1711 if (!NT_STATUS_IS_OK(status)) {
1712 return status;
1715 if (!domain->internal && domain->conn.cli == NULL) {
1716 /* happens for trusted domains without inbound trust */
1717 return NT_STATUS_TRUSTED_DOMAIN_FAILURE;
1720 return NT_STATUS_OK;
1723 /******************************************************************************
1724 Set the trust flags (direction and forest location) for a domain
1725 ******************************************************************************/
1727 static bool set_dc_type_and_flags_trustinfo( struct winbindd_domain *domain )
1729 struct winbindd_domain *our_domain;
1730 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1731 struct netr_DomainTrustList trusts;
1732 int i;
1733 uint32 flags = (NETR_TRUST_FLAG_IN_FOREST |
1734 NETR_TRUST_FLAG_OUTBOUND |
1735 NETR_TRUST_FLAG_INBOUND);
1736 struct rpc_pipe_client *cli;
1737 TALLOC_CTX *mem_ctx = NULL;
1739 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s\n", domain->name ));
1741 /* Our primary domain doesn't need to worry about trust flags.
1742 Force it to go through the network setup */
1743 if ( domain->primary ) {
1744 return False;
1747 our_domain = find_our_domain();
1749 if ( !connection_ok(our_domain) ) {
1750 DEBUG(3,("set_dc_type_and_flags_trustinfo: No connection to our domain!\n"));
1751 return False;
1754 /* This won't work unless our domain is AD */
1756 if ( !our_domain->active_directory ) {
1757 return False;
1760 /* Use DsEnumerateDomainTrusts to get us the trust direction
1761 and type */
1763 result = cm_connect_netlogon(our_domain, &cli);
1765 if (!NT_STATUS_IS_OK(result)) {
1766 DEBUG(5, ("set_dc_type_and_flags_trustinfo: Could not open "
1767 "a connection to %s for PIPE_NETLOGON (%s)\n",
1768 domain->name, nt_errstr(result)));
1769 return False;
1772 if ( (mem_ctx = talloc_init("set_dc_type_and_flags_trustinfo")) == NULL ) {
1773 DEBUG(0,("set_dc_type_and_flags_trustinfo: talloc_init() failed!\n"));
1774 return False;
1777 result = rpccli_netr_DsrEnumerateDomainTrusts(cli, mem_ctx,
1778 cli->desthost,
1779 flags,
1780 &trusts,
1781 NULL);
1782 if (!NT_STATUS_IS_OK(result)) {
1783 DEBUG(0,("set_dc_type_and_flags_trustinfo: "
1784 "failed to query trusted domain list: %s\n",
1785 nt_errstr(result)));
1786 talloc_destroy(mem_ctx);
1787 return false;
1790 /* Now find the domain name and get the flags */
1792 for ( i=0; i<trusts.count; i++ ) {
1793 if ( strequal( domain->name, trusts.array[i].netbios_name) ) {
1794 domain->domain_flags = trusts.array[i].trust_flags;
1795 domain->domain_type = trusts.array[i].trust_type;
1796 domain->domain_trust_attribs = trusts.array[i].trust_attributes;
1798 if ( domain->domain_type == NETR_TRUST_TYPE_UPLEVEL )
1799 domain->active_directory = True;
1801 /* This flag is only set if the domain is *our*
1802 primary domain and the primary domain is in
1803 native mode */
1805 domain->native_mode = (domain->domain_flags & NETR_TRUST_FLAG_NATIVE);
1807 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s is %sin "
1808 "native mode.\n", domain->name,
1809 domain->native_mode ? "" : "NOT "));
1811 DEBUG(5,("set_dc_type_and_flags_trustinfo: domain %s is %s"
1812 "running active directory.\n", domain->name,
1813 domain->active_directory ? "" : "NOT "));
1816 domain->initialized = True;
1818 break;
1822 talloc_destroy( mem_ctx );
1824 return domain->initialized;
1827 /******************************************************************************
1828 We can 'sense' certain things about the DC by it's replies to certain
1829 questions.
1831 This tells us if this particular remote server is Active Directory, and if it
1832 is native mode.
1833 ******************************************************************************/
1835 static void set_dc_type_and_flags_connect( struct winbindd_domain *domain )
1837 NTSTATUS result;
1838 WERROR werr;
1839 TALLOC_CTX *mem_ctx = NULL;
1840 struct rpc_pipe_client *cli = NULL;
1841 struct policy_handle pol;
1842 union dssetup_DsRoleInfo info;
1843 union lsa_PolicyInformation *lsa_info = NULL;
1845 if (!connection_ok(domain)) {
1846 return;
1849 mem_ctx = talloc_init("set_dc_type_and_flags on domain %s\n",
1850 domain->name);
1851 if (!mem_ctx) {
1852 DEBUG(1, ("set_dc_type_and_flags_connect: talloc_init() failed\n"));
1853 return;
1856 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s\n", domain->name ));
1858 result = cli_rpc_pipe_open_noauth(domain->conn.cli,
1859 &ndr_table_dssetup.syntax_id,
1860 &cli);
1862 if (!NT_STATUS_IS_OK(result)) {
1863 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
1864 "PI_DSSETUP on domain %s: (%s)\n",
1865 domain->name, nt_errstr(result)));
1867 /* if this is just a non-AD domain we need to continue
1868 * identifying so that we can in the end return with
1869 * domain->initialized = True - gd */
1871 goto no_dssetup;
1874 result = rpccli_dssetup_DsRoleGetPrimaryDomainInformation(cli, mem_ctx,
1875 DS_ROLE_BASIC_INFORMATION,
1876 &info,
1877 &werr);
1878 TALLOC_FREE(cli);
1880 if (!NT_STATUS_IS_OK(result)) {
1881 DEBUG(5, ("set_dc_type_and_flags_connect: rpccli_ds_getprimarydominfo "
1882 "on domain %s failed: (%s)\n",
1883 domain->name, nt_errstr(result)));
1885 /* older samba3 DCs will return DCERPC_FAULT_OP_RNG_ERROR for
1886 * every opcode on the DSSETUP pipe, continue with
1887 * no_dssetup mode here as well to get domain->initialized
1888 * set - gd */
1890 if (NT_STATUS_V(result) == DCERPC_FAULT_OP_RNG_ERROR) {
1891 goto no_dssetup;
1894 TALLOC_FREE(mem_ctx);
1895 return;
1898 if ((info.basic.flags & DS_ROLE_PRIMARY_DS_RUNNING) &&
1899 !(info.basic.flags & DS_ROLE_PRIMARY_DS_MIXED_MODE)) {
1900 domain->native_mode = True;
1901 } else {
1902 domain->native_mode = False;
1905 no_dssetup:
1906 result = cli_rpc_pipe_open_noauth(domain->conn.cli,
1907 &ndr_table_lsarpc.syntax_id, &cli);
1909 if (!NT_STATUS_IS_OK(result)) {
1910 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
1911 "PI_LSARPC on domain %s: (%s)\n",
1912 domain->name, nt_errstr(result)));
1913 TALLOC_FREE(cli);
1914 TALLOC_FREE(mem_ctx);
1915 return;
1918 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
1919 SEC_FLAG_MAXIMUM_ALLOWED, &pol);
1921 if (NT_STATUS_IS_OK(result)) {
1922 /* This particular query is exactly what Win2k clients use
1923 to determine that the DC is active directory */
1924 result = rpccli_lsa_QueryInfoPolicy2(cli, mem_ctx,
1925 &pol,
1926 LSA_POLICY_INFO_DNS,
1927 &lsa_info);
1930 if (NT_STATUS_IS_OK(result)) {
1931 domain->active_directory = True;
1933 if (lsa_info->dns.name.string) {
1934 fstrcpy(domain->name, lsa_info->dns.name.string);
1937 if (lsa_info->dns.dns_domain.string) {
1938 fstrcpy(domain->alt_name,
1939 lsa_info->dns.dns_domain.string);
1942 /* See if we can set some domain trust flags about
1943 ourself */
1945 if (lsa_info->dns.dns_forest.string) {
1946 fstrcpy(domain->forest_name,
1947 lsa_info->dns.dns_forest.string);
1949 if (strequal(domain->forest_name, domain->alt_name)) {
1950 domain->domain_flags |= NETR_TRUST_FLAG_TREEROOT;
1954 if (lsa_info->dns.sid) {
1955 sid_copy(&domain->sid, lsa_info->dns.sid);
1957 } else {
1958 domain->active_directory = False;
1960 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
1961 SEC_FLAG_MAXIMUM_ALLOWED,
1962 &pol);
1964 if (!NT_STATUS_IS_OK(result)) {
1965 goto done;
1968 result = rpccli_lsa_QueryInfoPolicy(cli, mem_ctx,
1969 &pol,
1970 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
1971 &lsa_info);
1973 if (NT_STATUS_IS_OK(result)) {
1975 if (lsa_info->account_domain.name.string) {
1976 fstrcpy(domain->name,
1977 lsa_info->account_domain.name.string);
1980 if (lsa_info->account_domain.sid) {
1981 sid_copy(&domain->sid, lsa_info->account_domain.sid);
1985 done:
1987 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s is %sin native mode.\n",
1988 domain->name, domain->native_mode ? "" : "NOT "));
1990 DEBUG(5,("set_dc_type_and_flags_connect: domain %s is %srunning active directory.\n",
1991 domain->name, domain->active_directory ? "" : "NOT "));
1993 domain->can_do_ncacn_ip_tcp = domain->active_directory;
1995 TALLOC_FREE(cli);
1997 TALLOC_FREE(mem_ctx);
1999 domain->initialized = True;
2002 /**********************************************************************
2003 Set the domain_flags (trust attributes, domain operating modes, etc...
2004 ***********************************************************************/
2006 static void set_dc_type_and_flags( struct winbindd_domain *domain )
2008 /* we always have to contact our primary domain */
2010 if ( domain->primary ) {
2011 DEBUG(10,("set_dc_type_and_flags: setting up flags for "
2012 "primary domain\n"));
2013 set_dc_type_and_flags_connect( domain );
2014 return;
2017 /* Use our DC to get the information if possible */
2019 if ( !set_dc_type_and_flags_trustinfo( domain ) ) {
2020 /* Otherwise, fallback to contacting the
2021 domain directly */
2022 set_dc_type_and_flags_connect( domain );
2025 return;
2030 /**********************************************************************
2031 ***********************************************************************/
2033 static bool cm_get_schannel_creds(struct winbindd_domain *domain,
2034 struct netlogon_creds_CredentialState **ppdc)
2036 NTSTATUS result;
2037 struct rpc_pipe_client *netlogon_pipe;
2039 if (lp_client_schannel() == False) {
2040 return False;
2043 result = cm_connect_netlogon(domain, &netlogon_pipe);
2044 if (!NT_STATUS_IS_OK(result)) {
2045 return False;
2048 /* Return a pointer to the struct netlogon_creds_CredentialState from the
2049 netlogon pipe. */
2051 if (!domain->conn.netlogon_pipe->dc) {
2052 return false;
2055 *ppdc = domain->conn.netlogon_pipe->dc;
2056 return True;
2059 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
2060 struct rpc_pipe_client **cli, struct policy_handle *sam_handle)
2062 struct winbindd_cm_conn *conn;
2063 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2064 struct netlogon_creds_CredentialState *p_creds;
2065 char *machine_password = NULL;
2066 char *machine_account = NULL;
2067 char *domain_name = NULL;
2069 result = init_dc_connection_rpc(domain);
2070 if (!NT_STATUS_IS_OK(result)) {
2071 return result;
2074 conn = &domain->conn;
2076 if (rpccli_is_connected(conn->samr_pipe)) {
2077 goto done;
2080 TALLOC_FREE(conn->samr_pipe);
2083 * No SAMR pipe yet. Attempt to get an NTLMSSP SPNEGO authenticated
2084 * sign and sealed pipe using the machine account password by
2085 * preference. If we can't - try schannel, if that fails, try
2086 * anonymous.
2089 if ((conn->cli->user_name[0] == '\0') ||
2090 (conn->cli->domain[0] == '\0') ||
2091 (conn->cli->password == NULL || conn->cli->password[0] == '\0'))
2093 result = get_trust_creds(domain, &machine_password,
2094 &machine_account, NULL);
2095 if (!NT_STATUS_IS_OK(result)) {
2096 DEBUG(10, ("cm_connect_sam: No no user available for "
2097 "domain %s, trying schannel\n", conn->cli->domain));
2098 goto schannel;
2100 domain_name = domain->name;
2101 } else {
2102 machine_password = SMB_STRDUP(conn->cli->password);
2103 machine_account = SMB_STRDUP(conn->cli->user_name);
2104 domain_name = conn->cli->domain;
2107 if (!machine_password || !machine_account) {
2108 result = NT_STATUS_NO_MEMORY;
2109 goto done;
2112 /* We have an authenticated connection. Use a NTLMSSP SPNEGO
2113 authenticated SAMR pipe with sign & seal. */
2114 result = cli_rpc_pipe_open_spnego_ntlmssp(conn->cli,
2115 &ndr_table_samr.syntax_id,
2116 NCACN_NP,
2117 DCERPC_AUTH_LEVEL_PRIVACY,
2118 domain_name,
2119 machine_account,
2120 machine_password,
2121 &conn->samr_pipe);
2123 if (!NT_STATUS_IS_OK(result)) {
2124 DEBUG(10,("cm_connect_sam: failed to connect to SAMR "
2125 "pipe for domain %s using NTLMSSP "
2126 "authenticated pipe: user %s\\%s. Error was "
2127 "%s\n", domain->name, domain_name,
2128 machine_account, nt_errstr(result)));
2129 goto schannel;
2132 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for "
2133 "domain %s using NTLMSSP authenticated "
2134 "pipe: user %s\\%s\n", domain->name,
2135 domain_name, machine_account));
2137 result = rpccli_samr_Connect2(conn->samr_pipe, mem_ctx,
2138 conn->samr_pipe->desthost,
2139 SEC_FLAG_MAXIMUM_ALLOWED,
2140 &conn->sam_connect_handle);
2141 if (NT_STATUS_IS_OK(result)) {
2142 goto open_domain;
2144 DEBUG(10,("cm_connect_sam: ntlmssp-sealed rpccli_samr_Connect2 "
2145 "failed for domain %s, error was %s. Trying schannel\n",
2146 domain->name, nt_errstr(result) ));
2147 TALLOC_FREE(conn->samr_pipe);
2149 schannel:
2151 /* Fall back to schannel if it's a W2K pre-SP1 box. */
2153 if (!cm_get_schannel_creds(domain, &p_creds)) {
2154 /* If this call fails - conn->cli can now be NULL ! */
2155 DEBUG(10, ("cm_connect_sam: Could not get schannel auth info "
2156 "for domain %s, trying anon\n", domain->name));
2157 goto anonymous;
2159 result = cli_rpc_pipe_open_schannel_with_key
2160 (conn->cli, &ndr_table_samr.syntax_id, NCACN_NP,
2161 DCERPC_AUTH_LEVEL_PRIVACY,
2162 domain->name, &p_creds, &conn->samr_pipe);
2164 if (!NT_STATUS_IS_OK(result)) {
2165 DEBUG(10,("cm_connect_sam: failed to connect to SAMR pipe for "
2166 "domain %s using schannel. Error was %s\n",
2167 domain->name, nt_errstr(result) ));
2168 goto anonymous;
2170 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for domain %s using "
2171 "schannel.\n", domain->name ));
2173 result = rpccli_samr_Connect2(conn->samr_pipe, mem_ctx,
2174 conn->samr_pipe->desthost,
2175 SEC_FLAG_MAXIMUM_ALLOWED,
2176 &conn->sam_connect_handle);
2177 if (NT_STATUS_IS_OK(result)) {
2178 goto open_domain;
2180 DEBUG(10,("cm_connect_sam: schannel-sealed rpccli_samr_Connect2 failed "
2181 "for domain %s, error was %s. Trying anonymous\n",
2182 domain->name, nt_errstr(result) ));
2183 TALLOC_FREE(conn->samr_pipe);
2185 anonymous:
2187 /* Finally fall back to anonymous. */
2188 result = cli_rpc_pipe_open_noauth(conn->cli, &ndr_table_samr.syntax_id,
2189 &conn->samr_pipe);
2191 if (!NT_STATUS_IS_OK(result)) {
2192 goto done;
2195 result = rpccli_samr_Connect2(conn->samr_pipe, mem_ctx,
2196 conn->samr_pipe->desthost,
2197 SEC_FLAG_MAXIMUM_ALLOWED,
2198 &conn->sam_connect_handle);
2199 if (!NT_STATUS_IS_OK(result)) {
2200 DEBUG(10,("cm_connect_sam: rpccli_samr_Connect2 failed "
2201 "for domain %s Error was %s\n",
2202 domain->name, nt_errstr(result) ));
2203 goto done;
2206 open_domain:
2207 result = rpccli_samr_OpenDomain(conn->samr_pipe,
2208 mem_ctx,
2209 &conn->sam_connect_handle,
2210 SEC_FLAG_MAXIMUM_ALLOWED,
2211 &domain->sid,
2212 &conn->sam_domain_handle);
2214 done:
2216 if (NT_STATUS_EQUAL(result, NT_STATUS_ACCESS_DENIED)) {
2218 * if we got access denied, we might just have no access rights
2219 * to talk to the remote samr server server (e.g. when we are a
2220 * PDC and we are connecting a w2k8 pdc via an interdomain
2221 * trust). In that case do not invalidate the whole connection
2222 * stack
2224 TALLOC_FREE(conn->samr_pipe);
2225 ZERO_STRUCT(conn->sam_domain_handle);
2226 return result;
2227 } else if (!NT_STATUS_IS_OK(result)) {
2228 invalidate_cm_connection(conn);
2229 return result;
2232 *cli = conn->samr_pipe;
2233 *sam_handle = conn->sam_domain_handle;
2234 SAFE_FREE(machine_password);
2235 SAFE_FREE(machine_account);
2236 return result;
2239 /**********************************************************************
2240 open an schanneld ncacn_ip_tcp connection to LSA
2241 ***********************************************************************/
2243 NTSTATUS cm_connect_lsa_tcp(struct winbindd_domain *domain,
2244 TALLOC_CTX *mem_ctx,
2245 struct rpc_pipe_client **cli)
2247 struct winbindd_cm_conn *conn;
2248 NTSTATUS status;
2250 DEBUG(10,("cm_connect_lsa_tcp\n"));
2252 status = init_dc_connection_rpc(domain);
2253 if (!NT_STATUS_IS_OK(status)) {
2254 return status;
2257 conn = &domain->conn;
2259 if (conn->lsa_pipe_tcp &&
2260 conn->lsa_pipe_tcp->transport->transport == NCACN_IP_TCP &&
2261 conn->lsa_pipe_tcp->auth->auth_level == DCERPC_AUTH_LEVEL_PRIVACY &&
2262 rpccli_is_connected(conn->lsa_pipe_tcp)) {
2263 goto done;
2266 TALLOC_FREE(conn->lsa_pipe_tcp);
2268 status = cli_rpc_pipe_open_schannel(conn->cli,
2269 &ndr_table_lsarpc.syntax_id,
2270 NCACN_IP_TCP,
2271 DCERPC_AUTH_LEVEL_PRIVACY,
2272 domain->name,
2273 &conn->lsa_pipe_tcp);
2274 if (!NT_STATUS_IS_OK(status)) {
2275 DEBUG(10,("cli_rpc_pipe_open_schannel failed: %s\n",
2276 nt_errstr(status)));
2277 goto done;
2280 done:
2281 if (!NT_STATUS_IS_OK(status)) {
2282 TALLOC_FREE(conn->lsa_pipe_tcp);
2283 return status;
2286 *cli = conn->lsa_pipe_tcp;
2288 return status;
2291 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
2292 struct rpc_pipe_client **cli, struct policy_handle *lsa_policy)
2294 struct winbindd_cm_conn *conn;
2295 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2296 struct netlogon_creds_CredentialState *p_creds;
2298 result = init_dc_connection_rpc(domain);
2299 if (!NT_STATUS_IS_OK(result))
2300 return result;
2302 conn = &domain->conn;
2304 if (rpccli_is_connected(conn->lsa_pipe)) {
2305 goto done;
2308 TALLOC_FREE(conn->lsa_pipe);
2310 if ((conn->cli->user_name[0] == '\0') ||
2311 (conn->cli->domain[0] == '\0') ||
2312 (conn->cli->password == NULL || conn->cli->password[0] == '\0')) {
2313 DEBUG(10, ("cm_connect_lsa: No no user available for "
2314 "domain %s, trying schannel\n", conn->cli->domain));
2315 goto schannel;
2318 /* We have an authenticated connection. Use a NTLMSSP SPNEGO
2319 * authenticated LSA pipe with sign & seal. */
2320 result = cli_rpc_pipe_open_spnego_ntlmssp
2321 (conn->cli, &ndr_table_lsarpc.syntax_id, NCACN_NP,
2322 DCERPC_AUTH_LEVEL_PRIVACY,
2323 conn->cli->domain, conn->cli->user_name, conn->cli->password,
2324 &conn->lsa_pipe);
2326 if (!NT_STATUS_IS_OK(result)) {
2327 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
2328 "domain %s using NTLMSSP authenticated pipe: user "
2329 "%s\\%s. Error was %s. Trying schannel.\n",
2330 domain->name, conn->cli->domain,
2331 conn->cli->user_name, nt_errstr(result)));
2332 goto schannel;
2335 DEBUG(10,("cm_connect_lsa: connected to LSA pipe for domain %s using "
2336 "NTLMSSP authenticated pipe: user %s\\%s\n",
2337 domain->name, conn->cli->domain, conn->cli->user_name ));
2339 result = rpccli_lsa_open_policy(conn->lsa_pipe, mem_ctx, True,
2340 SEC_FLAG_MAXIMUM_ALLOWED,
2341 &conn->lsa_policy);
2342 if (NT_STATUS_IS_OK(result)) {
2343 goto done;
2346 DEBUG(10,("cm_connect_lsa: rpccli_lsa_open_policy failed, trying "
2347 "schannel\n"));
2349 TALLOC_FREE(conn->lsa_pipe);
2351 schannel:
2353 /* Fall back to schannel if it's a W2K pre-SP1 box. */
2355 if (!cm_get_schannel_creds(domain, &p_creds)) {
2356 /* If this call fails - conn->cli can now be NULL ! */
2357 DEBUG(10, ("cm_connect_lsa: Could not get schannel auth info "
2358 "for domain %s, trying anon\n", domain->name));
2359 goto anonymous;
2361 result = cli_rpc_pipe_open_schannel_with_key
2362 (conn->cli, &ndr_table_lsarpc.syntax_id, NCACN_NP,
2363 DCERPC_AUTH_LEVEL_PRIVACY,
2364 domain->name, &p_creds, &conn->lsa_pipe);
2366 if (!NT_STATUS_IS_OK(result)) {
2367 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
2368 "domain %s using schannel. Error was %s\n",
2369 domain->name, nt_errstr(result) ));
2370 goto anonymous;
2372 DEBUG(10,("cm_connect_lsa: connected to LSA pipe for domain %s using "
2373 "schannel.\n", domain->name ));
2375 result = rpccli_lsa_open_policy(conn->lsa_pipe, mem_ctx, True,
2376 SEC_FLAG_MAXIMUM_ALLOWED,
2377 &conn->lsa_policy);
2378 if (NT_STATUS_IS_OK(result)) {
2379 goto done;
2382 DEBUG(10,("cm_connect_lsa: rpccli_lsa_open_policy failed, trying "
2383 "anonymous\n"));
2385 TALLOC_FREE(conn->lsa_pipe);
2387 anonymous:
2389 result = cli_rpc_pipe_open_noauth(conn->cli,
2390 &ndr_table_lsarpc.syntax_id,
2391 &conn->lsa_pipe);
2392 if (!NT_STATUS_IS_OK(result)) {
2393 result = NT_STATUS_PIPE_NOT_AVAILABLE;
2394 goto done;
2397 result = rpccli_lsa_open_policy(conn->lsa_pipe, mem_ctx, True,
2398 SEC_FLAG_MAXIMUM_ALLOWED,
2399 &conn->lsa_policy);
2400 done:
2401 if (!NT_STATUS_IS_OK(result)) {
2402 invalidate_cm_connection(conn);
2403 return result;
2406 *cli = conn->lsa_pipe;
2407 *lsa_policy = conn->lsa_policy;
2408 return result;
2411 /****************************************************************************
2412 Open the netlogon pipe to this DC. Use schannel if specified in client conf.
2413 session key stored in conn->netlogon_pipe->dc->sess_key.
2414 ****************************************************************************/
2416 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
2417 struct rpc_pipe_client **cli)
2419 struct winbindd_cm_conn *conn;
2420 NTSTATUS result;
2422 uint32_t neg_flags = NETLOGON_NEG_AUTH2_ADS_FLAGS;
2423 uint8 mach_pwd[16];
2424 enum netr_SchannelType sec_chan_type;
2425 const char *account_name;
2426 struct rpc_pipe_client *netlogon_pipe = NULL;
2428 *cli = NULL;
2430 result = init_dc_connection_rpc(domain);
2431 if (!NT_STATUS_IS_OK(result)) {
2432 return result;
2435 conn = &domain->conn;
2437 if (rpccli_is_connected(conn->netlogon_pipe)) {
2438 *cli = conn->netlogon_pipe;
2439 return NT_STATUS_OK;
2442 TALLOC_FREE(conn->netlogon_pipe);
2444 result = cli_rpc_pipe_open_noauth(conn->cli,
2445 &ndr_table_netlogon.syntax_id,
2446 &netlogon_pipe);
2447 if (!NT_STATUS_IS_OK(result)) {
2448 return result;
2451 if ((!IS_DC) && (!domain->primary)) {
2452 /* Clear the schannel request bit and drop down */
2453 neg_flags &= ~NETLOGON_NEG_SCHANNEL;
2454 goto no_schannel;
2457 if (lp_client_schannel() != False) {
2458 neg_flags |= NETLOGON_NEG_SCHANNEL;
2461 if (!get_trust_pw_hash(domain->name, mach_pwd, &account_name,
2462 &sec_chan_type))
2464 TALLOC_FREE(netlogon_pipe);
2465 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
2468 result = rpccli_netlogon_setup_creds(
2469 netlogon_pipe,
2470 domain->dcname, /* server name. */
2471 domain->name, /* domain name */
2472 global_myname(), /* client name */
2473 account_name, /* machine account */
2474 mach_pwd, /* machine password */
2475 sec_chan_type, /* from get_trust_pw */
2476 &neg_flags);
2478 if (!NT_STATUS_IS_OK(result)) {
2479 TALLOC_FREE(netlogon_pipe);
2480 return result;
2483 if ((lp_client_schannel() == True) &&
2484 ((neg_flags & NETLOGON_NEG_SCHANNEL) == 0)) {
2485 DEBUG(3, ("Server did not offer schannel\n"));
2486 TALLOC_FREE(netlogon_pipe);
2487 return NT_STATUS_ACCESS_DENIED;
2490 no_schannel:
2491 if ((lp_client_schannel() == False) ||
2492 ((neg_flags & NETLOGON_NEG_SCHANNEL) == 0)) {
2494 * NetSamLogonEx only works for schannel
2496 domain->can_do_samlogon_ex = False;
2498 /* We're done - just keep the existing connection to NETLOGON
2499 * open */
2500 conn->netlogon_pipe = netlogon_pipe;
2501 *cli = conn->netlogon_pipe;
2502 return NT_STATUS_OK;
2505 /* Using the credentials from the first pipe, open a signed and sealed
2506 second netlogon pipe. The session key is stored in the schannel
2507 part of the new pipe auth struct.
2510 result = cli_rpc_pipe_open_schannel_with_key(
2511 conn->cli, &ndr_table_netlogon.syntax_id, NCACN_NP,
2512 DCERPC_AUTH_LEVEL_PRIVACY, domain->name, &netlogon_pipe->dc,
2513 &conn->netlogon_pipe);
2515 /* We can now close the initial netlogon pipe. */
2516 TALLOC_FREE(netlogon_pipe);
2518 if (!NT_STATUS_IS_OK(result)) {
2519 DEBUG(3, ("Could not open schannel'ed NETLOGON pipe. Error "
2520 "was %s\n", nt_errstr(result)));
2522 invalidate_cm_connection(conn);
2523 return result;
2527 * Always try netr_LogonSamLogonEx. We will fall back for NT4
2528 * which gives DCERPC_FAULT_OP_RNG_ERROR (function not
2529 * supported). We used to only try SamLogonEx for AD, but
2530 * Samba DCs can also do it. And because we don't distinguish
2531 * between Samba and NT4, always try it once.
2533 domain->can_do_samlogon_ex = true;
2535 *cli = conn->netlogon_pipe;
2536 return NT_STATUS_OK;