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
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
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
65 #define DBGC_CLASS DBGC_WINBIND
69 struct sockaddr_storage ss;
72 extern struct winbindd_methods reconnect_methods;
73 extern bool override_logfile;
75 static NTSTATUS init_dc_connection_network(struct winbindd_domain *domain);
76 static void set_dc_type_and_flags( struct winbindd_domain *domain );
77 static bool get_dcs(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
78 struct dc_name_ip **dcs, int *num_dcs);
80 /****************************************************************
81 Child failed to find DC's. Reschedule check.
82 ****************************************************************/
84 static void msg_failed_to_go_online(struct messaging_context *msg,
87 struct server_id server_id,
90 struct winbindd_domain *domain;
91 const char *domainname = (const char *)data->data;
93 if (data->data == NULL || data->length == 0) {
97 DEBUG(5,("msg_fail_to_go_online: received for domain %s.\n", domainname));
99 for (domain = domain_list(); domain; domain = domain->next) {
100 if (domain->internal) {
104 if (strequal(domain->name, domainname)) {
105 if (domain->online) {
106 /* We're already online, ignore. */
107 DEBUG(5,("msg_fail_to_go_online: domain %s "
108 "already online.\n", domainname));
112 /* Reschedule the online check. */
113 set_domain_offline(domain);
119 /****************************************************************
120 Actually cause a reconnect from a message.
121 ****************************************************************/
123 static void msg_try_to_go_online(struct messaging_context *msg,
126 struct server_id server_id,
129 struct winbindd_domain *domain;
130 const char *domainname = (const char *)data->data;
132 if (data->data == NULL || data->length == 0) {
136 DEBUG(5,("msg_try_to_go_online: received for domain %s.\n", domainname));
138 for (domain = domain_list(); domain; domain = domain->next) {
139 if (domain->internal) {
143 if (strequal(domain->name, domainname)) {
145 if (domain->online) {
146 /* We're already online, ignore. */
147 DEBUG(5,("msg_try_to_go_online: domain %s "
148 "already online.\n", domainname));
152 /* This call takes care of setting the online
153 flag to true if we connected, or re-adding
154 the offline handler if false. Bypasses online
155 check so always does network calls. */
157 init_dc_connection_network(domain);
163 /****************************************************************
164 Fork a child to try and contact a DC. Do this as contacting a
165 DC requires blocking lookups and we don't want to block our
167 ****************************************************************/
169 static bool fork_child_dc_connect(struct winbindd_domain *domain)
171 struct dc_name_ip *dcs = NULL;
173 TALLOC_CTX *mem_ctx = NULL;
174 pid_t parent_pid = sys_getpid();
180 if (domain->dc_probe_pid != (pid_t)-1) {
182 * We might already have a DC probe
183 * child working, check.
185 if (process_exists_by_pid(domain->dc_probe_pid)) {
186 DEBUG(10,("fork_child_dc_connect: pid %u already "
187 "checking for DC's.\n",
188 (unsigned int)domain->dc_probe_pid));
191 domain->dc_probe_pid = (pid_t)-1;
194 domain->dc_probe_pid = sys_fork();
196 if (domain->dc_probe_pid == (pid_t)-1) {
197 DEBUG(0, ("fork_child_dc_connect: Could not fork: %s\n", strerror(errno)));
201 if (domain->dc_probe_pid != (pid_t)0) {
203 messaging_register(winbind_messaging_context(), NULL,
204 MSG_WINBIND_TRY_TO_GO_ONLINE,
205 msg_try_to_go_online);
206 messaging_register(winbind_messaging_context(), NULL,
207 MSG_WINBIND_FAILED_TO_GO_ONLINE,
208 msg_failed_to_go_online);
214 /* Leave messages blocked - we will never process one. */
216 if (!override_logfile) {
217 if (asprintf(&lfile, "%s/log.winbindd-dc-connect", get_dyn_LOGFILEBASE()) == -1) {
218 DEBUG(0, ("fork_child_dc_connect: out of memory.\n"));
223 if (!winbindd_reinit_after_fork(lfile)) {
224 messaging_send_buf(winbind_messaging_context(),
225 pid_to_procid(parent_pid),
226 MSG_WINBIND_FAILED_TO_GO_ONLINE,
227 (uint8 *)domain->name,
228 strlen(domain->name)+1);
233 mem_ctx = talloc_init("fork_child_dc_connect");
235 DEBUG(0,("talloc_init failed.\n"));
236 messaging_send_buf(winbind_messaging_context(),
237 pid_to_procid(parent_pid),
238 MSG_WINBIND_FAILED_TO_GO_ONLINE,
239 (uint8 *)domain->name,
240 strlen(domain->name)+1);
244 if ((!get_dcs(mem_ctx, domain, &dcs, &num_dcs)) || (num_dcs == 0)) {
245 /* Still offline ? Can't find DC's. */
246 messaging_send_buf(winbind_messaging_context(),
247 pid_to_procid(parent_pid),
248 MSG_WINBIND_FAILED_TO_GO_ONLINE,
249 (uint8 *)domain->name,
250 strlen(domain->name)+1);
254 /* We got a DC. Send a message to our parent to get it to
255 try and do the same. */
257 messaging_send_buf(winbind_messaging_context(),
258 pid_to_procid(parent_pid),
259 MSG_WINBIND_TRY_TO_GO_ONLINE,
260 (uint8 *)domain->name,
261 strlen(domain->name)+1);
265 /****************************************************************
266 Handler triggered if we're offline to try and detect a DC.
267 ****************************************************************/
269 static void check_domain_online_handler(struct event_context *ctx,
270 struct timed_event *te,
274 struct winbindd_domain *domain =
275 (struct winbindd_domain *)private_data;
277 DEBUG(10,("check_domain_online_handler: called for domain "
278 "%s (online = %s)\n", domain->name,
279 domain->online ? "True" : "False" ));
281 TALLOC_FREE(domain->check_online_event);
283 /* Are we still in "startup" mode ? */
285 if (domain->startup && (now.tv_sec > domain->startup_time + 30)) {
286 /* No longer in "startup" mode. */
287 DEBUG(10,("check_domain_online_handler: domain %s no longer in 'startup' mode.\n",
289 domain->startup = False;
292 /* We've been told to stay offline, so stay
295 if (get_global_winbindd_state_offline()) {
296 DEBUG(10,("check_domain_online_handler: domain %s remaining globally offline\n",
301 /* Fork a child to test if it can contact a DC.
302 If it can then send ourselves a message to
303 cause a reconnect. */
305 fork_child_dc_connect(domain);
308 /****************************************************************
309 If we're still offline setup the timeout check.
310 ****************************************************************/
312 static void calc_new_online_timeout_check(struct winbindd_domain *domain)
314 int wbr = lp_winbind_reconnect_delay();
316 if (domain->startup) {
317 domain->check_online_timeout = 10;
318 } else if (domain->check_online_timeout < wbr) {
319 domain->check_online_timeout = wbr;
323 /****************************************************************
324 Set domain offline and also add handler to put us back online
326 ****************************************************************/
328 void set_domain_offline(struct winbindd_domain *domain)
330 DEBUG(10,("set_domain_offline: called for domain %s\n",
333 TALLOC_FREE(domain->check_online_event);
335 if (domain->internal) {
336 DEBUG(3,("set_domain_offline: domain %s is internal - logic error.\n",
341 domain->online = False;
343 /* Offline domains are always initialized. They're
344 re-initialized when they go back online. */
346 domain->initialized = True;
348 /* We only add the timeout handler that checks and
349 allows us to go back online when we've not
350 been told to remain offline. */
352 if (get_global_winbindd_state_offline()) {
353 DEBUG(10,("set_domain_offline: domain %s remaining globally offline\n",
358 /* If we're in statup mode, check again in 10 seconds, not in
359 lp_winbind_reconnect_delay() seconds (which is 30 seconds by default). */
361 calc_new_online_timeout_check(domain);
363 domain->check_online_event = event_add_timed(winbind_event_context(),
365 timeval_current_ofs(domain->check_online_timeout,0),
366 check_domain_online_handler,
369 /* The above *has* to succeed for winbindd to work. */
370 if (!domain->check_online_event) {
371 smb_panic("set_domain_offline: failed to add online handler");
374 DEBUG(10,("set_domain_offline: added event handler for domain %s\n",
377 /* Send an offline message to the idmap child when our
378 primary domain goes offline */
380 if ( domain->primary ) {
381 struct winbindd_child *idmap = idmap_child();
383 if ( idmap->pid != 0 ) {
384 messaging_send_buf(winbind_messaging_context(),
385 pid_to_procid(idmap->pid),
387 (uint8 *)domain->name,
388 strlen(domain->name)+1);
395 /****************************************************************
396 Set domain online - if allowed.
397 ****************************************************************/
399 static void set_domain_online(struct winbindd_domain *domain)
401 DEBUG(10,("set_domain_online: called for domain %s\n",
404 if (domain->internal) {
405 DEBUG(3,("set_domain_online: domain %s is internal - logic error.\n",
410 if (get_global_winbindd_state_offline()) {
411 DEBUG(10,("set_domain_online: domain %s remaining globally offline\n",
416 winbindd_set_locator_kdc_envs(domain);
418 /* If we are waiting to get a krb5 ticket, trigger immediately. */
419 ccache_regain_all_now();
421 /* Ok, we're out of any startup mode now... */
422 domain->startup = False;
424 if (domain->online == False) {
425 /* We were offline - now we're online. We default to
426 using the MS-RPC backend if we started offline,
427 and if we're going online for the first time we
428 should really re-initialize the backends and the
429 checks to see if we're talking to an AD or NT domain.
432 domain->initialized = False;
434 /* 'reconnect_methods' is the MS-RPC backend. */
435 if (domain->backend == &reconnect_methods) {
436 domain->backend = NULL;
440 /* Ensure we have no online timeout checks. */
441 domain->check_online_timeout = 0;
442 TALLOC_FREE(domain->check_online_event);
444 /* Ensure we ignore any pending child messages. */
445 messaging_deregister(winbind_messaging_context(),
446 MSG_WINBIND_TRY_TO_GO_ONLINE, NULL);
447 messaging_deregister(winbind_messaging_context(),
448 MSG_WINBIND_FAILED_TO_GO_ONLINE, NULL);
450 domain->online = True;
452 /* Send an online message to the idmap child when our
453 primary domain comes online */
455 if ( domain->primary ) {
456 struct winbindd_child *idmap = idmap_child();
458 if ( idmap->pid != 0 ) {
459 messaging_send_buf(winbind_messaging_context(),
460 pid_to_procid(idmap->pid),
462 (uint8 *)domain->name,
463 strlen(domain->name)+1);
470 /****************************************************************
471 Requested to set a domain online.
472 ****************************************************************/
474 void set_domain_online_request(struct winbindd_domain *domain)
478 DEBUG(10,("set_domain_online_request: called for domain %s\n",
481 if (get_global_winbindd_state_offline()) {
482 DEBUG(10,("set_domain_online_request: domain %s remaining globally offline\n",
487 /* We've been told it's safe to go online and
488 try and connect to a DC. But I don't believe it
489 because network manager seems to lie.
490 Wait at least 5 seconds. Heuristics suck... */
495 /* Go into "startup" mode again. */
496 domain->startup_time = tev.tv_sec;
497 domain->startup = True;
501 if (!domain->check_online_event) {
502 /* If we've come from being globally offline we
503 don't have a check online event handler set.
504 We need to add one now we're trying to go
507 DEBUG(10,("set_domain_online_request: domain %s was globally offline.\n",
511 TALLOC_FREE(domain->check_online_event);
513 domain->check_online_event = event_add_timed(winbind_event_context(),
516 check_domain_online_handler,
519 /* The above *has* to succeed for winbindd to work. */
520 if (!domain->check_online_event) {
521 smb_panic("set_domain_online_request: failed to add online handler");
525 /****************************************************************
526 Add -ve connection cache entries for domain and realm.
527 ****************************************************************/
529 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
533 add_failed_connection_entry(domain->name, server, result);
534 /* If this was the saf name for the last thing we talked to,
536 saf_delete(domain->name);
537 if (*domain->alt_name) {
538 add_failed_connection_entry(domain->alt_name, server, result);
539 saf_delete(domain->alt_name);
541 winbindd_unset_locator_kdc_env(domain);
544 /* Choose between anonymous or authenticated connections. We need to use
545 an authenticated connection if DCs have the RestrictAnonymous registry
546 entry set > 0, or the "Additional restrictions for anonymous
547 connections" set in the win2k Local Security Policy.
549 Caller to free() result in domain, username, password
552 static void cm_get_ipc_userpass(char **username, char **domain, char **password)
554 *username = (char *)secrets_fetch(SECRETS_AUTH_USER, NULL);
555 *domain = (char *)secrets_fetch(SECRETS_AUTH_DOMAIN, NULL);
556 *password = (char *)secrets_fetch(SECRETS_AUTH_PASSWORD, NULL);
558 if (*username && **username) {
560 if (!*domain || !**domain)
561 *domain = smb_xstrdup(lp_workgroup());
563 if (!*password || !**password)
564 *password = smb_xstrdup("");
566 DEBUG(3, ("cm_get_ipc_userpass: Retrieved auth-user from secrets.tdb [%s\\%s]\n",
567 *domain, *username));
570 DEBUG(3, ("cm_get_ipc_userpass: No auth-user defined\n"));
571 *username = smb_xstrdup("");
572 *domain = smb_xstrdup("");
573 *password = smb_xstrdup("");
577 static bool get_dc_name_via_netlogon(struct winbindd_domain *domain,
579 struct sockaddr_storage *dc_ss)
581 struct winbindd_domain *our_domain = NULL;
582 struct rpc_pipe_client *netlogon_pipe = NULL;
586 unsigned int orig_timeout;
587 const char *tmp = NULL;
590 /* Hmmmm. We can only open one connection to the NETLOGON pipe at the
597 if (domain->primary) {
601 our_domain = find_our_domain();
603 if ((mem_ctx = talloc_init("get_dc_name_via_netlogon")) == NULL) {
607 result = cm_connect_netlogon(our_domain, &netlogon_pipe);
608 if (!NT_STATUS_IS_OK(result)) {
609 talloc_destroy(mem_ctx);
613 /* This call can take a long time - allow the server to time out.
614 35 seconds should do it. */
616 orig_timeout = rpccli_set_timeout(netlogon_pipe, 35000);
618 if (our_domain->active_directory) {
619 struct netr_DsRGetDCNameInfo *domain_info = NULL;
621 result = rpccli_netr_DsRGetDCName(netlogon_pipe,
630 if (NT_STATUS_IS_OK(result) && W_ERROR_IS_OK(werr)) {
632 mem_ctx, domain_info->dc_unc);
634 DEBUG(0, ("talloc_strdup failed\n"));
635 talloc_destroy(mem_ctx);
638 if (strlen(domain->alt_name) == 0) {
639 fstrcpy(domain->alt_name,
640 domain_info->domain_name);
642 if (strlen(domain->forest_name) == 0) {
643 fstrcpy(domain->forest_name,
644 domain_info->forest_name);
648 result = rpccli_netr_GetAnyDCName(netlogon_pipe, mem_ctx,
655 /* And restore our original timeout. */
656 rpccli_set_timeout(netlogon_pipe, orig_timeout);
658 if (!NT_STATUS_IS_OK(result)) {
659 DEBUG(10,("rpccli_netr_GetAnyDCName failed: %s\n",
661 talloc_destroy(mem_ctx);
665 if (!W_ERROR_IS_OK(werr)) {
666 DEBUG(10,("rpccli_netr_GetAnyDCName failed: %s\n",
668 talloc_destroy(mem_ctx);
672 /* rpccli_netr_GetAnyDCName gives us a name with \\ */
673 p = strip_hostname(tmp);
677 talloc_destroy(mem_ctx);
679 DEBUG(10,("rpccli_netr_GetAnyDCName returned %s\n", dcname));
681 if (!resolve_name(dcname, dc_ss, 0x20)) {
689 * Helper function to assemble trust password and account name
691 static NTSTATUS get_trust_creds(const struct winbindd_domain *domain,
692 char **machine_password,
693 char **machine_account,
694 char **machine_krb5_principal)
696 const char *account_name;
697 const char *name = NULL;
699 /* If we are a DC and this is not our own domain */
704 struct winbindd_domain *our_domain = find_our_domain();
707 return NT_STATUS_INVALID_SERVER_STATE;
709 name = our_domain->name;
712 if (!get_trust_pw_clear(name, machine_password,
713 &account_name, NULL))
715 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
718 if ((machine_account != NULL) &&
719 (asprintf(machine_account, "%s$", account_name) == -1))
721 return NT_STATUS_NO_MEMORY;
724 /* For now assume our machine account only exists in our domain */
726 if (machine_krb5_principal != NULL)
728 struct winbindd_domain *our_domain = find_our_domain();
731 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
734 if (asprintf(machine_krb5_principal, "%s$@%s",
735 account_name, our_domain->alt_name) == -1)
737 return NT_STATUS_NO_MEMORY;
740 strupper_m(*machine_krb5_principal);
746 /************************************************************************
747 Given a fd with a just-connected TCP connection to a DC, open a connection
749 ************************************************************************/
751 static NTSTATUS cm_prepare_connection(const struct winbindd_domain *domain,
753 const char *controller,
754 struct cli_state **cli,
757 char *machine_password = NULL;
758 char *machine_krb5_principal = NULL;
759 char *machine_account = NULL;
760 char *ipc_username = NULL;
761 char *ipc_domain = NULL;
762 char *ipc_password = NULL;
764 struct named_mutex *mutex;
766 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
768 struct sockaddr peeraddr;
769 socklen_t peeraddr_len;
771 struct sockaddr_in *peeraddr_in = (struct sockaddr_in *)&peeraddr;
773 DEBUG(10,("cm_prepare_connection: connecting to DC %s for domain %s\n",
774 controller, domain->name ));
778 mutex = grab_named_mutex(talloc_tos(), controller,
779 WINBIND_SERVER_MUTEX_WAIT_TIME);
781 DEBUG(0,("cm_prepare_connection: mutex grab failed for %s\n",
783 result = NT_STATUS_POSSIBLE_DEADLOCK;
787 if ((*cli = cli_initialise()) == NULL) {
788 DEBUG(1, ("Could not cli_initialize\n"));
789 result = NT_STATUS_NO_MEMORY;
793 (*cli)->timeout = 10000; /* 10 seconds */
795 fstrcpy((*cli)->desthost, controller);
796 (*cli)->use_kerberos = True;
798 peeraddr_len = sizeof(peeraddr);
800 if ((getpeername((*cli)->fd, &peeraddr, &peeraddr_len) != 0) ||
801 (peeraddr_len != sizeof(struct sockaddr_in)) ||
802 (peeraddr_in->sin_family != PF_INET))
804 DEBUG(0,("cm_prepare_connection: %s\n", strerror(errno)));
805 result = NT_STATUS_UNSUCCESSFUL;
809 if (ntohs(peeraddr_in->sin_port) == 139) {
810 struct nmb_name calling;
811 struct nmb_name called;
813 make_nmb_name(&calling, global_myname(), 0x0);
814 make_nmb_name(&called, "*SMBSERVER", 0x20);
816 if (!cli_session_request(*cli, &calling, &called)) {
817 DEBUG(8, ("cli_session_request failed for %s\n",
819 result = NT_STATUS_UNSUCCESSFUL;
824 result = cli_negprot(*cli);
826 if (!NT_STATUS_IS_OK(result)) {
827 DEBUG(1, ("cli_negprot failed: %s\n", nt_errstr(result)));
831 if (!is_dc_trusted_domain_situation(domain->name) &&
832 (*cli)->protocol >= PROTOCOL_NT1 &&
833 (*cli)->capabilities & CAP_EXTENDED_SECURITY)
835 ADS_STATUS ads_status;
837 result = get_trust_creds(domain, &machine_password,
839 &machine_krb5_principal);
840 if (!NT_STATUS_IS_OK(result)) {
844 if (lp_security() == SEC_ADS) {
846 /* Try a krb5 session */
848 (*cli)->use_kerberos = True;
849 DEBUG(5, ("connecting to %s from %s with kerberos principal "
850 "[%s] and realm [%s]\n", controller, global_myname(),
851 machine_krb5_principal, domain->alt_name));
853 winbindd_set_locator_kdc_envs(domain);
855 ads_status = cli_session_setup_spnego(*cli,
856 machine_krb5_principal,
861 if (!ADS_ERR_OK(ads_status)) {
862 DEBUG(4,("failed kerberos session setup with %s\n",
863 ads_errstr(ads_status)));
866 result = ads_ntstatus(ads_status);
867 if (NT_STATUS_IS_OK(result)) {
868 /* Ensure creds are stored for NTLMSSP authenticated pipe access. */
869 cli_init_creds(*cli, machine_account, lp_workgroup(), machine_password);
870 goto session_setup_done;
874 /* Fall back to non-kerberos session setup using NTLMSSP SPNEGO with the machine account. */
875 (*cli)->use_kerberos = False;
877 DEBUG(5, ("connecting to %s from %s with username "
878 "[%s]\\[%s]\n", controller, global_myname(),
879 lp_workgroup(), machine_account));
881 ads_status = cli_session_setup_spnego(*cli,
886 if (!ADS_ERR_OK(ads_status)) {
887 DEBUG(4, ("authenticated session setup failed with %s\n",
888 ads_errstr(ads_status)));
891 result = ads_ntstatus(ads_status);
892 if (NT_STATUS_IS_OK(result)) {
893 /* Ensure creds are stored for NTLMSSP authenticated pipe access. */
894 cli_init_creds(*cli, machine_account, lp_workgroup(), machine_password);
895 goto session_setup_done;
899 /* Fall back to non-kerberos session setup with auth_user */
901 (*cli)->use_kerberos = False;
903 cm_get_ipc_userpass(&ipc_username, &ipc_domain, &ipc_password);
905 if ((((*cli)->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) != 0) &&
906 (strlen(ipc_username) > 0)) {
908 /* Only try authenticated if we have a username */
910 DEBUG(5, ("connecting to %s from %s with username "
911 "[%s]\\[%s]\n", controller, global_myname(),
912 ipc_domain, ipc_username));
914 if (NT_STATUS_IS_OK(cli_session_setup(
916 ipc_password, strlen(ipc_password)+1,
917 ipc_password, strlen(ipc_password)+1,
919 /* Successful logon with given username. */
920 cli_init_creds(*cli, ipc_username, ipc_domain, ipc_password);
921 goto session_setup_done;
923 DEBUG(4, ("authenticated session setup with user %s\\%s failed.\n",
924 ipc_domain, ipc_username ));
930 /* Fall back to anonymous connection, this might fail later */
931 DEBUG(10,("cm_prepare_connection: falling back to anonymous "
932 "connection for DC %s\n",
935 if (NT_STATUS_IS_OK(cli_session_setup(*cli, "", NULL, 0,
937 DEBUG(5, ("Connected anonymously\n"));
938 cli_init_creds(*cli, "", "", "");
939 goto session_setup_done;
942 result = cli_nt_error(*cli);
944 if (NT_STATUS_IS_OK(result))
945 result = NT_STATUS_UNSUCCESSFUL;
947 /* We can't session setup */
953 /* cache the server name for later connections */
955 saf_store( domain->name, (*cli)->desthost );
956 if (domain->alt_name && (*cli)->use_kerberos) {
957 saf_store( domain->alt_name, (*cli)->desthost );
960 winbindd_set_locator_kdc_envs(domain);
962 result = cli_tcon_andx(*cli, "IPC$", "IPC", "", 0);
964 if (!NT_STATUS_IS_OK(result)) {
965 DEBUG(1,("failed tcon_X with %s\n", nt_errstr(result)));
972 /* set the domain if empty; needed for schannel connections */
973 if ( !*(*cli)->domain ) {
974 fstrcpy( (*cli)->domain, domain->name );
977 result = NT_STATUS_OK;
981 SAFE_FREE(machine_account);
982 SAFE_FREE(machine_password);
983 SAFE_FREE(machine_krb5_principal);
984 SAFE_FREE(ipc_username);
985 SAFE_FREE(ipc_domain);
986 SAFE_FREE(ipc_password);
988 if (!NT_STATUS_IS_OK(result)) {
989 winbind_add_failed_connection_entry(domain, controller, result);
990 if ((*cli) != NULL) {
999 /*******************************************************************
1000 Add a dcname and sockaddr_storage pair to the end of a dc_name_ip
1003 Keeps the list unique by not adding duplicate entries.
1005 @param[in] mem_ctx talloc memory context to allocate from
1006 @param[in] domain_name domain of the DC
1007 @param[in] dcname name of the DC to add to the list
1008 @param[in] pss Internet address and port pair to add to the list
1009 @param[in,out] dcs array of dc_name_ip structures to add to
1010 @param[in,out] num_dcs number of dcs returned in the dcs array
1011 @return true if the list was added to, false otherwise
1012 *******************************************************************/
1014 static bool add_one_dc_unique(TALLOC_CTX *mem_ctx, const char *domain_name,
1015 const char *dcname, struct sockaddr_storage *pss,
1016 struct dc_name_ip **dcs, int *num)
1020 if (!NT_STATUS_IS_OK(check_negative_conn_cache(domain_name, dcname))) {
1021 DEBUG(10, ("DC %s was in the negative conn cache\n", dcname));
1025 /* Make sure there's no duplicates in the list */
1026 for (i=0; i<*num; i++)
1027 if (sockaddr_equal((struct sockaddr *)&(*dcs)[i].ss, (struct sockaddr *)pss))
1030 *dcs = TALLOC_REALLOC_ARRAY(mem_ctx, *dcs, struct dc_name_ip, (*num)+1);
1035 fstrcpy((*dcs)[*num].name, dcname);
1036 (*dcs)[*num].ss = *pss;
1041 static bool add_sockaddr_to_array(TALLOC_CTX *mem_ctx,
1042 struct sockaddr_storage *pss, uint16 port,
1043 struct sockaddr_storage **addrs, int *num)
1045 *addrs = TALLOC_REALLOC_ARRAY(mem_ctx, *addrs, struct sockaddr_storage, (*num)+1);
1047 if (*addrs == NULL) {
1052 (*addrs)[*num] = *pss;
1053 set_sockaddr_port((struct sockaddr *)&(*addrs)[*num], port);
1059 /*******************************************************************
1060 convert an ip to a name
1061 *******************************************************************/
1063 static bool dcip_to_name(TALLOC_CTX *mem_ctx,
1064 const struct winbindd_domain *domain,
1065 struct sockaddr_storage *pss,
1068 struct ip_service ip_list;
1069 uint32_t nt_version = NETLOGON_NT_VERSION_1;
1075 /* For active directory servers, try to get the ldap server name.
1076 None of these failures should be considered critical for now */
1078 if (lp_security() == SEC_ADS) {
1080 ADS_STATUS ads_status;
1081 char addr[INET6_ADDRSTRLEN];
1083 print_sockaddr(addr, sizeof(addr), pss);
1085 ads = ads_init(domain->alt_name, domain->name, addr);
1086 ads->auth.flags |= ADS_AUTH_NO_BIND;
1088 ads_status = ads_connect(ads);
1089 if (ADS_ERR_OK(ads_status)) {
1090 /* We got a cldap packet. */
1091 fstrcpy(name, ads->config.ldap_server_name);
1092 namecache_store(name, 0x20, 1, &ip_list);
1094 DEBUG(10,("dcip_to_name: flags = 0x%x\n", (unsigned int)ads->config.flags));
1096 if (domain->primary && (ads->config.flags & NBT_SERVER_KDC)) {
1097 if (ads_closest_dc(ads)) {
1098 char *sitename = sitename_fetch(ads->config.realm);
1100 /* We're going to use this KDC for this realm/domain.
1101 If we are using sites, then force the krb5 libs
1104 create_local_private_krb5_conf_for_domain(domain->alt_name,
1109 SAFE_FREE(sitename);
1111 /* use an off site KDC */
1112 create_local_private_krb5_conf_for_domain(domain->alt_name,
1117 winbindd_set_locator_kdc_envs(domain);
1119 /* Ensure we contact this DC also. */
1120 saf_store( domain->name, name);
1121 saf_store( domain->alt_name, name);
1124 ads_destroy( &ads );
1128 ads_destroy( &ads );
1132 /* try GETDC requests next */
1134 if (send_getdc_request(mem_ctx, winbind_messaging_context(),
1135 pss, domain->name, &domain->sid,
1137 const char *dc_name = NULL;
1140 for (i=0; i<5; i++) {
1141 if (receive_getdc_response(mem_ctx, pss, domain->name,
1144 fstrcpy(name, dc_name);
1145 namecache_store(name, 0x20, 1, &ip_list);
1152 /* try node status request */
1154 if ( name_status_find(domain->name, 0x1c, 0x20, pss, name) ) {
1155 namecache_store(name, 0x20, 1, &ip_list);
1161 /*******************************************************************
1162 Retrieve a list of IP addresses for domain controllers.
1164 The array is sorted in the preferred connection order.
1166 @param[in] mem_ctx talloc memory context to allocate from
1167 @param[in] domain domain to retrieve DCs for
1168 @param[out] dcs array of dcs that will be returned
1169 @param[out] num_dcs number of dcs returned in the dcs array
1171 *******************************************************************/
1173 static bool get_dcs(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
1174 struct dc_name_ip **dcs, int *num_dcs)
1177 struct sockaddr_storage ss;
1178 struct ip_service *ip_list = NULL;
1179 int iplist_size = 0;
1182 enum security_types sec = (enum security_types)lp_security();
1184 is_our_domain = strequal(domain->name, lp_workgroup());
1186 /* If not our domain, get the preferred DC, by asking our primary DC */
1188 && get_dc_name_via_netlogon(domain, dcname, &ss)
1189 && add_one_dc_unique(mem_ctx, domain->name, dcname, &ss, dcs,
1192 char addr[INET6_ADDRSTRLEN];
1193 print_sockaddr(addr, sizeof(addr), &ss);
1194 DEBUG(10, ("Retrieved DC %s at %s via netlogon\n",
1199 if (sec == SEC_ADS) {
1200 char *sitename = NULL;
1202 /* We need to make sure we know the local site before
1203 doing any DNS queries, as this will restrict the
1204 get_sorted_dc_list() call below to only fetching
1205 DNS records for the correct site. */
1207 /* Find any DC to get the site record.
1208 We deliberately don't care about the
1211 get_dc_name(domain->name, domain->alt_name, dcname, &ss);
1213 sitename = sitename_fetch(domain->alt_name);
1216 /* Do the site-specific AD dns lookup first. */
1217 get_sorted_dc_list(domain->alt_name, sitename, &ip_list,
1218 &iplist_size, True);
1220 /* Add ips to the DC array. We don't look up the name
1221 of the DC in this function, but we fill in the char*
1222 of the ip now to make the failed connection cache
1224 for ( i=0; i<iplist_size; i++ ) {
1225 char addr[INET6_ADDRSTRLEN];
1226 print_sockaddr(addr, sizeof(addr),
1228 add_one_dc_unique(mem_ctx,
1237 SAFE_FREE(sitename);
1241 /* Now we add DCs from the main AD DNS lookup. */
1242 get_sorted_dc_list(domain->alt_name, NULL, &ip_list,
1243 &iplist_size, True);
1245 for ( i=0; i<iplist_size; i++ ) {
1246 char addr[INET6_ADDRSTRLEN];
1247 print_sockaddr(addr, sizeof(addr),
1249 add_one_dc_unique(mem_ctx,
1261 /* Try standard netbios queries if no ADS */
1262 if (*num_dcs == 0) {
1263 get_sorted_dc_list(domain->name, NULL, &ip_list, &iplist_size,
1266 for ( i=0; i<iplist_size; i++ ) {
1267 char addr[INET6_ADDRSTRLEN];
1268 print_sockaddr(addr, sizeof(addr),
1270 add_one_dc_unique(mem_ctx,
1285 /*******************************************************************
1286 Find and make a connection to a DC in the given domain.
1288 @param[in] mem_ctx talloc memory context to allocate from
1289 @param[in] domain domain to find a dc in
1290 @param[out] dcname NetBIOS or FQDN of DC that's connected to
1291 @param[out] pss DC Internet address and port
1292 @param[out] fd fd of the open socket connected to the newly found dc
1293 @return true when a DC connection is made, false otherwise
1294 *******************************************************************/
1296 static bool find_new_dc(TALLOC_CTX *mem_ctx,
1297 struct winbindd_domain *domain,
1298 fstring dcname, struct sockaddr_storage *pss, int *fd)
1300 struct dc_name_ip *dcs = NULL;
1303 const char **dcnames = NULL;
1304 int num_dcnames = 0;
1306 struct sockaddr_storage *addrs = NULL;
1314 if (!get_dcs(mem_ctx, domain, &dcs, &num_dcs) || (num_dcs == 0))
1317 for (i=0; i<num_dcs; i++) {
1319 if (!add_string_to_array(mem_ctx, dcs[i].name,
1320 &dcnames, &num_dcnames)) {
1323 if (!add_sockaddr_to_array(mem_ctx, &dcs[i].ss, 445,
1324 &addrs, &num_addrs)) {
1328 if (!add_string_to_array(mem_ctx, dcs[i].name,
1329 &dcnames, &num_dcnames)) {
1332 if (!add_sockaddr_to_array(mem_ctx, &dcs[i].ss, 139,
1333 &addrs, &num_addrs)) {
1338 if ((num_dcnames == 0) || (num_dcnames != num_addrs))
1341 if ((addrs == NULL) || (dcnames == NULL))
1344 /* 5 second timeout. */
1345 if (!open_any_socket_out(addrs, num_addrs, 5000, &fd_index, fd) ) {
1346 for (i=0; i<num_dcs; i++) {
1347 char ab[INET6_ADDRSTRLEN];
1348 print_sockaddr(ab, sizeof(ab), &dcs[i].ss);
1349 DEBUG(10, ("find_new_dc: open_any_socket_out failed for "
1350 "domain %s address %s. Error was %s\n",
1351 domain->name, ab, strerror(errno) ));
1352 winbind_add_failed_connection_entry(domain,
1353 dcs[i].name, NT_STATUS_UNSUCCESSFUL);
1358 *pss = addrs[fd_index];
1360 if (*dcnames[fd_index] != '\0' && !is_ipaddress(dcnames[fd_index])) {
1361 /* Ok, we've got a name for the DC */
1362 fstrcpy(dcname, dcnames[fd_index]);
1366 /* Try to figure out the name */
1367 if (dcip_to_name(mem_ctx, domain, pss, dcname)) {
1371 /* We can not continue without the DC's name */
1372 winbind_add_failed_connection_entry(domain, dcs[fd_index].name,
1373 NT_STATUS_UNSUCCESSFUL);
1375 /* Throw away all arrays as we're doing this again. */
1379 TALLOC_FREE(dcnames);
1391 static NTSTATUS cm_open_connection(struct winbindd_domain *domain,
1392 struct winbindd_cm_conn *new_conn)
1394 TALLOC_CTX *mem_ctx;
1396 char *saf_servername = saf_fetch( domain->name );
1399 if ((mem_ctx = talloc_init("cm_open_connection")) == NULL) {
1400 SAFE_FREE(saf_servername);
1401 set_domain_offline(domain);
1402 return NT_STATUS_NO_MEMORY;
1405 /* we have to check the server affinity cache here since
1406 later we selecte a DC based on response time and not preference */
1408 /* Check the negative connection cache
1409 before talking to it. It going down may have
1410 triggered the reconnection. */
1412 if ( saf_servername && NT_STATUS_IS_OK(check_negative_conn_cache( domain->name, saf_servername))) {
1414 DEBUG(10,("cm_open_connection: saf_servername is '%s' for domain %s\n",
1415 saf_servername, domain->name ));
1417 /* convert an ip address to a name */
1418 if (is_ipaddress( saf_servername ) ) {
1420 struct sockaddr_storage ss;
1422 if (!interpret_string_addr(&ss, saf_servername,
1424 return NT_STATUS_UNSUCCESSFUL;
1426 if (dcip_to_name(mem_ctx, domain, &ss, saf_name )) {
1427 fstrcpy( domain->dcname, saf_name );
1429 winbind_add_failed_connection_entry(
1430 domain, saf_servername,
1431 NT_STATUS_UNSUCCESSFUL);
1434 fstrcpy( domain->dcname, saf_servername );
1437 SAFE_FREE( saf_servername );
1440 for (retries = 0; retries < 3; retries++) {
1444 result = NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND;
1446 DEBUG(10,("cm_open_connection: dcname is '%s' for domain %s\n",
1447 domain->dcname, domain->name ));
1450 && NT_STATUS_IS_OK(check_negative_conn_cache( domain->name, domain->dcname))
1451 && (resolve_name(domain->dcname, &domain->dcaddr, 0x20)))
1453 struct sockaddr_storage *addrs = NULL;
1457 if (!add_sockaddr_to_array(mem_ctx, &domain->dcaddr, 445, &addrs, &num_addrs)) {
1458 set_domain_offline(domain);
1459 talloc_destroy(mem_ctx);
1460 return NT_STATUS_NO_MEMORY;
1462 if (!add_sockaddr_to_array(mem_ctx, &domain->dcaddr, 139, &addrs, &num_addrs)) {
1463 set_domain_offline(domain);
1464 talloc_destroy(mem_ctx);
1465 return NT_STATUS_NO_MEMORY;
1468 /* 5 second timeout. */
1469 if (!open_any_socket_out(addrs, num_addrs, 5000, &dummy, &fd)) {
1475 && !find_new_dc(mem_ctx, domain, domain->dcname, &domain->dcaddr, &fd))
1477 /* This is the one place where we will
1478 set the global winbindd offline state
1479 to true, if a "WINBINDD_OFFLINE" entry
1480 is found in the winbindd cache. */
1481 set_global_winbindd_state_offline();
1485 new_conn->cli = NULL;
1487 result = cm_prepare_connection(domain, fd, domain->dcname,
1488 &new_conn->cli, &retry);
1494 if (NT_STATUS_IS_OK(result)) {
1496 winbindd_set_locator_kdc_envs(domain);
1498 if (domain->online == False) {
1499 /* We're changing state from offline to online. */
1500 set_global_winbindd_state_online();
1502 set_domain_online(domain);
1504 /* Ensure we setup the retry handler. */
1505 set_domain_offline(domain);
1508 talloc_destroy(mem_ctx);
1512 /* Close down all open pipes on a connection. */
1514 void invalidate_cm_connection(struct winbindd_cm_conn *conn)
1516 /* We're closing down a possibly dead
1517 connection. Don't have impossibly long (10s) timeouts. */
1520 cli_set_timeout(conn->cli, 1000); /* 1 second. */
1523 if (conn->samr_pipe != NULL) {
1524 TALLOC_FREE(conn->samr_pipe);
1525 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1527 cli_set_timeout(conn->cli, 500);
1531 if (conn->lsa_pipe != NULL) {
1532 TALLOC_FREE(conn->lsa_pipe);
1533 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1535 cli_set_timeout(conn->cli, 500);
1539 if (conn->netlogon_pipe != NULL) {
1540 TALLOC_FREE(conn->netlogon_pipe);
1541 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1543 cli_set_timeout(conn->cli, 500);
1548 cli_shutdown(conn->cli);
1554 void close_conns_after_fork(void)
1556 struct winbindd_domain *domain;
1558 for (domain = domain_list(); domain; domain = domain->next) {
1559 if (domain->conn.cli == NULL)
1562 if (domain->conn.cli->fd == -1)
1565 close(domain->conn.cli->fd);
1566 domain->conn.cli->fd = -1;
1570 static bool connection_ok(struct winbindd_domain *domain)
1572 if (domain->conn.cli == NULL) {
1573 DEBUG(8, ("connection_ok: Connection to %s for domain %s has NULL "
1574 "cli!\n", domain->dcname, domain->name));
1578 if (!domain->conn.cli->initialised) {
1579 DEBUG(3, ("connection_ok: Connection to %s for domain %s was never "
1580 "initialised!\n", domain->dcname, domain->name));
1584 if (domain->conn.cli->fd == -1) {
1585 DEBUG(3, ("connection_ok: Connection to %s for domain %s has died or was "
1586 "never started (fd == -1)\n",
1587 domain->dcname, domain->name));
1591 if (domain->online == False) {
1592 DEBUG(3, ("connection_ok: Domain %s is offline\n", domain->name));
1599 /* Initialize a new connection up to the RPC BIND.
1600 Bypass online status check so always does network calls. */
1602 static NTSTATUS init_dc_connection_network(struct winbindd_domain *domain)
1606 /* Internal connections never use the network. */
1607 if (domain->internal) {
1608 domain->initialized = True;
1609 return NT_STATUS_OK;
1612 if (connection_ok(domain)) {
1613 if (!domain->initialized) {
1614 set_dc_type_and_flags(domain);
1616 return NT_STATUS_OK;
1619 invalidate_cm_connection(&domain->conn);
1621 result = cm_open_connection(domain, &domain->conn);
1623 if (NT_STATUS_IS_OK(result) && !domain->initialized) {
1624 set_dc_type_and_flags(domain);
1630 NTSTATUS init_dc_connection(struct winbindd_domain *domain)
1632 if (domain->initialized && !domain->online) {
1633 /* We check for online status elsewhere. */
1634 return NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND;
1637 return init_dc_connection_network(domain);
1640 /******************************************************************************
1641 Set the trust flags (direction and forest location) for a domain
1642 ******************************************************************************/
1644 static bool set_dc_type_and_flags_trustinfo( struct winbindd_domain *domain )
1646 struct winbindd_domain *our_domain;
1647 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1648 struct netr_DomainTrustList trusts;
1650 uint32 flags = (NETR_TRUST_FLAG_IN_FOREST |
1651 NETR_TRUST_FLAG_OUTBOUND |
1652 NETR_TRUST_FLAG_INBOUND);
1653 struct rpc_pipe_client *cli;
1654 TALLOC_CTX *mem_ctx = NULL;
1656 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s\n", domain->name ));
1658 /* Our primary domain doesn't need to worry about trust flags.
1659 Force it to go through the network setup */
1660 if ( domain->primary ) {
1664 our_domain = find_our_domain();
1666 if ( !connection_ok(our_domain) ) {
1667 DEBUG(3,("set_dc_type_and_flags_trustinfo: No connection to our domain!\n"));
1671 /* This won't work unless our domain is AD */
1673 if ( !our_domain->active_directory ) {
1677 /* Use DsEnumerateDomainTrusts to get us the trust direction
1680 result = cm_connect_netlogon(our_domain, &cli);
1682 if (!NT_STATUS_IS_OK(result)) {
1683 DEBUG(5, ("set_dc_type_and_flags_trustinfo: Could not open "
1684 "a connection to %s for PIPE_NETLOGON (%s)\n",
1685 domain->name, nt_errstr(result)));
1689 if ( (mem_ctx = talloc_init("set_dc_type_and_flags_trustinfo")) == NULL ) {
1690 DEBUG(0,("set_dc_type_and_flags_trustinfo: talloc_init() failed!\n"));
1694 result = rpccli_netr_DsrEnumerateDomainTrusts(cli, mem_ctx,
1699 if (!NT_STATUS_IS_OK(result)) {
1700 DEBUG(0,("set_dc_type_and_flags_trustinfo: "
1701 "failed to query trusted domain list: %s\n",
1702 nt_errstr(result)));
1703 talloc_destroy(mem_ctx);
1707 /* Now find the domain name and get the flags */
1709 for ( i=0; i<trusts.count; i++ ) {
1710 if ( strequal( domain->name, trusts.array[i].netbios_name) ) {
1711 domain->domain_flags = trusts.array[i].trust_flags;
1712 domain->domain_type = trusts.array[i].trust_type;
1713 domain->domain_trust_attribs = trusts.array[i].trust_attributes;
1715 if ( domain->domain_type == NETR_TRUST_TYPE_UPLEVEL )
1716 domain->active_directory = True;
1718 /* This flag is only set if the domain is *our*
1719 primary domain and the primary domain is in
1722 domain->native_mode = (domain->domain_flags & NETR_TRUST_FLAG_NATIVE);
1724 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s is %sin "
1725 "native mode.\n", domain->name,
1726 domain->native_mode ? "" : "NOT "));
1728 DEBUG(5,("set_dc_type_and_flags_trustinfo: domain %s is %s"
1729 "running active directory.\n", domain->name,
1730 domain->active_directory ? "" : "NOT "));
1733 domain->initialized = True;
1735 if ( !winbindd_can_contact_domain( domain) )
1736 domain->internal = True;
1742 talloc_destroy( mem_ctx );
1744 return domain->initialized;
1747 /******************************************************************************
1748 We can 'sense' certain things about the DC by it's replies to certain
1751 This tells us if this particular remote server is Active Directory, and if it
1753 ******************************************************************************/
1755 static void set_dc_type_and_flags_connect( struct winbindd_domain *domain )
1759 TALLOC_CTX *mem_ctx = NULL;
1760 struct rpc_pipe_client *cli;
1762 union dssetup_DsRoleInfo info;
1763 union lsa_PolicyInformation *lsa_info = NULL;
1765 if (!connection_ok(domain)) {
1769 mem_ctx = talloc_init("set_dc_type_and_flags on domain %s\n",
1772 DEBUG(1, ("set_dc_type_and_flags_connect: talloc_init() failed\n"));
1776 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s\n", domain->name ));
1778 result = cli_rpc_pipe_open_noauth(domain->conn.cli,
1779 &ndr_table_dssetup.syntax_id,
1782 if (!NT_STATUS_IS_OK(result)) {
1783 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
1784 "PI_DSSETUP on domain %s: (%s)\n",
1785 domain->name, nt_errstr(result)));
1787 /* if this is just a non-AD domain we need to continue
1788 * identifying so that we can in the end return with
1789 * domain->initialized = True - gd */
1794 result = rpccli_dssetup_DsRoleGetPrimaryDomainInformation(cli, mem_ctx,
1795 DS_ROLE_BASIC_INFORMATION,
1800 if (!NT_STATUS_IS_OK(result)) {
1801 DEBUG(5, ("set_dc_type_and_flags_connect: rpccli_ds_getprimarydominfo "
1802 "on domain %s failed: (%s)\n",
1803 domain->name, nt_errstr(result)));
1805 /* older samba3 DCs will return DCERPC_FAULT_OP_RNG_ERROR for
1806 * every opcode on the DSSETUP pipe, continue with
1807 * no_dssetup mode here as well to get domain->initialized
1810 if (NT_STATUS_V(result) == DCERPC_FAULT_OP_RNG_ERROR) {
1814 TALLOC_FREE(mem_ctx);
1818 if ((info.basic.flags & DS_ROLE_PRIMARY_DS_RUNNING) &&
1819 !(info.basic.flags & DS_ROLE_PRIMARY_DS_MIXED_MODE)) {
1820 domain->native_mode = True;
1822 domain->native_mode = False;
1826 result = cli_rpc_pipe_open_noauth(domain->conn.cli,
1827 &ndr_table_lsarpc.syntax_id, &cli);
1829 if (!NT_STATUS_IS_OK(result)) {
1830 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
1831 "PI_LSARPC on domain %s: (%s)\n",
1832 domain->name, nt_errstr(result)));
1834 TALLOC_FREE(mem_ctx);
1838 result = rpccli_lsa_open_policy2(cli, mem_ctx, True,
1839 SEC_RIGHTS_MAXIMUM_ALLOWED, &pol);
1841 if (NT_STATUS_IS_OK(result)) {
1842 /* This particular query is exactly what Win2k clients use
1843 to determine that the DC is active directory */
1844 result = rpccli_lsa_QueryInfoPolicy2(cli, mem_ctx,
1846 LSA_POLICY_INFO_DNS,
1850 if (NT_STATUS_IS_OK(result)) {
1851 domain->active_directory = True;
1853 if (lsa_info->dns.name.string) {
1854 fstrcpy(domain->name, lsa_info->dns.name.string);
1857 if (lsa_info->dns.dns_domain.string) {
1858 fstrcpy(domain->alt_name,
1859 lsa_info->dns.dns_domain.string);
1862 /* See if we can set some domain trust flags about
1865 if (lsa_info->dns.dns_forest.string) {
1866 fstrcpy(domain->forest_name,
1867 lsa_info->dns.dns_forest.string);
1869 if (strequal(domain->forest_name, domain->alt_name)) {
1870 domain->domain_flags |= NETR_TRUST_FLAG_TREEROOT;
1874 if (lsa_info->dns.sid) {
1875 sid_copy(&domain->sid, lsa_info->dns.sid);
1878 domain->active_directory = False;
1880 result = rpccli_lsa_open_policy(cli, mem_ctx, True,
1881 SEC_RIGHTS_MAXIMUM_ALLOWED,
1884 if (!NT_STATUS_IS_OK(result)) {
1888 result = rpccli_lsa_QueryInfoPolicy(cli, mem_ctx,
1890 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
1893 if (NT_STATUS_IS_OK(result)) {
1895 if (lsa_info->account_domain.name.string) {
1896 fstrcpy(domain->name,
1897 lsa_info->account_domain.name.string);
1900 if (lsa_info->account_domain.sid) {
1901 sid_copy(&domain->sid, lsa_info->account_domain.sid);
1907 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s is %sin native mode.\n",
1908 domain->name, domain->native_mode ? "" : "NOT "));
1910 DEBUG(5,("set_dc_type_and_flags_connect: domain %s is %srunning active directory.\n",
1911 domain->name, domain->active_directory ? "" : "NOT "));
1915 TALLOC_FREE(mem_ctx);
1917 domain->initialized = True;
1920 /**********************************************************************
1921 Set the domain_flags (trust attributes, domain operating modes, etc...
1922 ***********************************************************************/
1924 static void set_dc_type_and_flags( struct winbindd_domain *domain )
1926 /* we always have to contact our primary domain */
1928 if ( domain->primary ) {
1929 DEBUG(10,("set_dc_type_and_flags: setting up flags for "
1930 "primary domain\n"));
1931 set_dc_type_and_flags_connect( domain );
1935 /* Use our DC to get the information if possible */
1937 if ( !set_dc_type_and_flags_trustinfo( domain ) ) {
1938 /* Otherwise, fallback to contacting the
1940 set_dc_type_and_flags_connect( domain );
1948 /**********************************************************************
1949 ***********************************************************************/
1951 static bool cm_get_schannel_dcinfo(struct winbindd_domain *domain,
1952 struct dcinfo **ppdc)
1955 struct rpc_pipe_client *netlogon_pipe;
1957 if (lp_client_schannel() == False) {
1961 result = cm_connect_netlogon(domain, &netlogon_pipe);
1962 if (!NT_STATUS_IS_OK(result)) {
1966 /* Return a pointer to the struct dcinfo from the
1969 if (!domain->conn.netlogon_pipe->dc) {
1973 *ppdc = domain->conn.netlogon_pipe->dc;
1977 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
1978 struct rpc_pipe_client **cli, POLICY_HND *sam_handle)
1980 struct winbindd_cm_conn *conn;
1981 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1983 struct dcinfo *p_dcinfo;
1984 char *machine_password = NULL;
1985 char *machine_account = NULL;
1986 char *domain_name = NULL;
1988 result = init_dc_connection(domain);
1989 if (!NT_STATUS_IS_OK(result)) {
1993 conn = &domain->conn;
1995 if (conn->samr_pipe != NULL) {
2001 * No SAMR pipe yet. Attempt to get an NTLMSSP SPNEGO authenticated
2002 * sign and sealed pipe using the machine account password by
2003 * preference. If we can't - try schannel, if that fails, try
2007 pwd_get_cleartext(&conn->cli->pwd, conn_pwd);
2008 if ((conn->cli->user_name[0] == '\0') ||
2009 (conn->cli->domain[0] == '\0') ||
2010 (conn_pwd[0] == '\0'))
2012 result = get_trust_creds(domain, &machine_password,
2013 &machine_account, NULL);
2014 if (!NT_STATUS_IS_OK(result)) {
2015 DEBUG(10, ("cm_connect_sam: No no user available for "
2016 "domain %s, trying schannel\n", conn->cli->domain));
2019 domain_name = domain->name;
2021 machine_password = SMB_STRDUP(conn_pwd);
2022 machine_account = SMB_STRDUP(conn->cli->user_name);
2023 domain_name = conn->cli->domain;
2026 if (!machine_password || !machine_account) {
2027 result = NT_STATUS_NO_MEMORY;
2031 /* We have an authenticated connection. Use a NTLMSSP SPNEGO
2032 authenticated SAMR pipe with sign & seal. */
2033 result = cli_rpc_pipe_open_spnego_ntlmssp(conn->cli,
2034 &ndr_table_samr.syntax_id,
2035 PIPE_AUTH_LEVEL_PRIVACY,
2041 if (!NT_STATUS_IS_OK(result)) {
2042 DEBUG(10,("cm_connect_sam: failed to connect to SAMR "
2043 "pipe for domain %s using NTLMSSP "
2044 "authenticated pipe: user %s\\%s. Error was "
2045 "%s\n", domain->name, domain_name,
2046 machine_account, nt_errstr(result)));
2050 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for "
2051 "domain %s using NTLMSSP authenticated "
2052 "pipe: user %s\\%s\n", domain->name,
2053 domain_name, machine_account));
2055 result = rpccli_samr_Connect2(conn->samr_pipe, mem_ctx,
2056 conn->samr_pipe->desthost,
2057 SEC_RIGHTS_MAXIMUM_ALLOWED,
2058 &conn->sam_connect_handle);
2059 if (NT_STATUS_IS_OK(result)) {
2062 DEBUG(10,("cm_connect_sam: ntlmssp-sealed rpccli_samr_Connect2 "
2063 "failed for domain %s, error was %s. Trying schannel\n",
2064 domain->name, nt_errstr(result) ));
2065 TALLOC_FREE(conn->samr_pipe);
2069 /* Fall back to schannel if it's a W2K pre-SP1 box. */
2071 if (!cm_get_schannel_dcinfo(domain, &p_dcinfo)) {
2072 /* If this call fails - conn->cli can now be NULL ! */
2073 DEBUG(10, ("cm_connect_sam: Could not get schannel auth info "
2074 "for domain %s, trying anon\n", domain->name));
2077 result = cli_rpc_pipe_open_schannel_with_key
2078 (conn->cli, &ndr_table_samr.syntax_id, PIPE_AUTH_LEVEL_PRIVACY,
2079 domain->name, p_dcinfo, &conn->samr_pipe);
2081 if (!NT_STATUS_IS_OK(result)) {
2082 DEBUG(10,("cm_connect_sam: failed to connect to SAMR pipe for "
2083 "domain %s using schannel. Error was %s\n",
2084 domain->name, nt_errstr(result) ));
2087 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for domain %s using "
2088 "schannel.\n", domain->name ));
2090 result = rpccli_samr_Connect2(conn->samr_pipe, mem_ctx,
2091 conn->samr_pipe->desthost,
2092 SEC_RIGHTS_MAXIMUM_ALLOWED,
2093 &conn->sam_connect_handle);
2094 if (NT_STATUS_IS_OK(result)) {
2097 DEBUG(10,("cm_connect_sam: schannel-sealed rpccli_samr_Connect2 failed "
2098 "for domain %s, error was %s. Trying anonymous\n",
2099 domain->name, nt_errstr(result) ));
2100 TALLOC_FREE(conn->samr_pipe);
2104 /* Finally fall back to anonymous. */
2105 result = cli_rpc_pipe_open_noauth(conn->cli, &ndr_table_samr.syntax_id,
2108 if (!NT_STATUS_IS_OK(result)) {
2112 result = rpccli_samr_Connect2(conn->samr_pipe, mem_ctx,
2113 conn->samr_pipe->desthost,
2114 SEC_RIGHTS_MAXIMUM_ALLOWED,
2115 &conn->sam_connect_handle);
2116 if (!NT_STATUS_IS_OK(result)) {
2117 DEBUG(10,("cm_connect_sam: rpccli_samr_Connect2 failed "
2118 "for domain %s Error was %s\n",
2119 domain->name, nt_errstr(result) ));
2124 result = rpccli_samr_OpenDomain(conn->samr_pipe,
2126 &conn->sam_connect_handle,
2127 SEC_RIGHTS_MAXIMUM_ALLOWED,
2129 &conn->sam_domain_handle);
2133 if (!NT_STATUS_IS_OK(result)) {
2134 invalidate_cm_connection(conn);
2138 *cli = conn->samr_pipe;
2139 *sam_handle = conn->sam_domain_handle;
2140 SAFE_FREE(machine_password);
2141 SAFE_FREE(machine_account);
2145 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
2146 struct rpc_pipe_client **cli, POLICY_HND *lsa_policy)
2148 struct winbindd_cm_conn *conn;
2149 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2151 struct dcinfo *p_dcinfo;
2153 result = init_dc_connection(domain);
2154 if (!NT_STATUS_IS_OK(result))
2157 conn = &domain->conn;
2159 if (conn->lsa_pipe != NULL) {
2163 pwd_get_cleartext(&conn->cli->pwd, conn_pwd);
2164 if ((conn->cli->user_name[0] == '\0') ||
2165 (conn->cli->domain[0] == '\0') ||
2166 (conn_pwd[0] == '\0')) {
2167 DEBUG(10, ("cm_connect_lsa: No no user available for "
2168 "domain %s, trying schannel\n", conn->cli->domain));
2172 /* We have an authenticated connection. Use a NTLMSSP SPNEGO
2173 * authenticated LSA pipe with sign & seal. */
2174 result = cli_rpc_pipe_open_spnego_ntlmssp
2175 (conn->cli, &ndr_table_lsarpc.syntax_id,
2176 PIPE_AUTH_LEVEL_PRIVACY,
2177 conn->cli->domain, conn->cli->user_name, conn_pwd,
2180 if (!NT_STATUS_IS_OK(result)) {
2181 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
2182 "domain %s using NTLMSSP authenticated pipe: user "
2183 "%s\\%s. Error was %s. Trying schannel.\n",
2184 domain->name, conn->cli->domain,
2185 conn->cli->user_name, nt_errstr(result)));
2189 DEBUG(10,("cm_connect_lsa: connected to LSA pipe for domain %s using "
2190 "NTLMSSP authenticated pipe: user %s\\%s\n",
2191 domain->name, conn->cli->domain, conn->cli->user_name ));
2193 result = rpccli_lsa_open_policy(conn->lsa_pipe, mem_ctx, True,
2194 SEC_RIGHTS_MAXIMUM_ALLOWED,
2196 if (NT_STATUS_IS_OK(result)) {
2200 DEBUG(10,("cm_connect_lsa: rpccli_lsa_open_policy failed, trying "
2203 TALLOC_FREE(conn->lsa_pipe);
2207 /* Fall back to schannel if it's a W2K pre-SP1 box. */
2209 if (!cm_get_schannel_dcinfo(domain, &p_dcinfo)) {
2210 /* If this call fails - conn->cli can now be NULL ! */
2211 DEBUG(10, ("cm_connect_lsa: Could not get schannel auth info "
2212 "for domain %s, trying anon\n", domain->name));
2215 result = cli_rpc_pipe_open_schannel_with_key
2216 (conn->cli, &ndr_table_lsarpc.syntax_id,
2217 PIPE_AUTH_LEVEL_PRIVACY,
2218 domain->name, p_dcinfo, &conn->lsa_pipe);
2220 if (!NT_STATUS_IS_OK(result)) {
2221 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
2222 "domain %s using schannel. Error was %s\n",
2223 domain->name, nt_errstr(result) ));
2226 DEBUG(10,("cm_connect_lsa: connected to LSA pipe for domain %s using "
2227 "schannel.\n", domain->name ));
2229 result = rpccli_lsa_open_policy(conn->lsa_pipe, mem_ctx, True,
2230 SEC_RIGHTS_MAXIMUM_ALLOWED,
2232 if (NT_STATUS_IS_OK(result)) {
2236 DEBUG(10,("cm_connect_lsa: rpccli_lsa_open_policy failed, trying "
2239 TALLOC_FREE(conn->lsa_pipe);
2243 result = cli_rpc_pipe_open_noauth(conn->cli,
2244 &ndr_table_lsarpc.syntax_id,
2246 if (!NT_STATUS_IS_OK(result)) {
2247 result = NT_STATUS_PIPE_NOT_AVAILABLE;
2251 result = rpccli_lsa_open_policy(conn->lsa_pipe, mem_ctx, True,
2252 SEC_RIGHTS_MAXIMUM_ALLOWED,
2255 if (!NT_STATUS_IS_OK(result)) {
2256 invalidate_cm_connection(conn);
2260 *cli = conn->lsa_pipe;
2261 *lsa_policy = conn->lsa_policy;
2265 /****************************************************************************
2266 Open the netlogon pipe to this DC. Use schannel if specified in client conf.
2267 session key stored in conn->netlogon_pipe->dc->sess_key.
2268 ****************************************************************************/
2270 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
2271 struct rpc_pipe_client **cli)
2273 struct winbindd_cm_conn *conn;
2276 uint32_t neg_flags = NETLOGON_NEG_AUTH2_ADS_FLAGS;
2278 uint32 sec_chan_type;
2279 const char *account_name;
2280 struct rpc_pipe_client *netlogon_pipe = NULL;
2284 result = init_dc_connection(domain);
2285 if (!NT_STATUS_IS_OK(result)) {
2289 conn = &domain->conn;
2291 if (conn->netlogon_pipe != NULL) {
2292 *cli = conn->netlogon_pipe;
2293 return NT_STATUS_OK;
2296 result = cli_rpc_pipe_open_noauth(conn->cli,
2297 &ndr_table_netlogon.syntax_id,
2299 if (!NT_STATUS_IS_OK(result)) {
2303 if ((!IS_DC) && (!domain->primary)) {
2304 /* Clear the schannel request bit and drop down */
2305 neg_flags &= ~NETLOGON_NEG_SCHANNEL;
2309 if (lp_client_schannel() != False) {
2310 neg_flags |= NETLOGON_NEG_SCHANNEL;
2313 if (!get_trust_pw_hash(domain->name, mach_pwd, &account_name,
2316 TALLOC_FREE(netlogon_pipe);
2317 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
2320 result = rpccli_netlogon_setup_creds(
2322 domain->dcname, /* server name. */
2323 domain->name, /* domain name */
2324 global_myname(), /* client name */
2325 account_name, /* machine account */
2326 mach_pwd, /* machine password */
2327 sec_chan_type, /* from get_trust_pw */
2330 if (!NT_STATUS_IS_OK(result)) {
2331 TALLOC_FREE(netlogon_pipe);
2335 if ((lp_client_schannel() == True) &&
2336 ((neg_flags & NETLOGON_NEG_SCHANNEL) == 0)) {
2337 DEBUG(3, ("Server did not offer schannel\n"));
2338 TALLOC_FREE(netlogon_pipe);
2339 return NT_STATUS_ACCESS_DENIED;
2343 if ((lp_client_schannel() == False) ||
2344 ((neg_flags & NETLOGON_NEG_SCHANNEL) == 0)) {
2346 * NetSamLogonEx only works for schannel
2348 domain->can_do_samlogon_ex = False;
2350 /* We're done - just keep the existing connection to NETLOGON
2352 conn->netlogon_pipe = netlogon_pipe;
2353 *cli = conn->netlogon_pipe;
2354 return NT_STATUS_OK;
2357 /* Using the credentials from the first pipe, open a signed and sealed
2358 second netlogon pipe. The session key is stored in the schannel
2359 part of the new pipe auth struct.
2362 result = cli_rpc_pipe_open_schannel_with_key(
2363 conn->cli, &ndr_table_netlogon.syntax_id,
2364 PIPE_AUTH_LEVEL_PRIVACY, domain->name, netlogon_pipe->dc,
2365 &conn->netlogon_pipe);
2367 /* We can now close the initial netlogon pipe. */
2368 TALLOC_FREE(netlogon_pipe);
2370 if (!NT_STATUS_IS_OK(result)) {
2371 DEBUG(3, ("Could not open schannel'ed NETLOGON pipe. Error "
2372 "was %s\n", nt_errstr(result)));
2374 /* make sure we return something besides OK */
2375 return !NT_STATUS_IS_OK(result) ? result : NT_STATUS_PIPE_NOT_AVAILABLE;
2379 * Try NetSamLogonEx for AD domains
2381 domain->can_do_samlogon_ex = domain->active_directory;
2383 *cli = conn->netlogon_pipe;
2384 return NT_STATUS_OK;