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
63 #include "../libcli/auth/libcli_auth.h"
64 #include "../librpc/gen_ndr/ndr_netlogon_c.h"
65 #include "rpc_client/cli_pipe.h"
66 #include "rpc_client/cli_netlogon.h"
67 #include "../librpc/gen_ndr/ndr_samr_c.h"
68 #include "../librpc/gen_ndr/ndr_lsa_c.h"
69 #include "rpc_client/cli_lsarpc.h"
70 #include "../librpc/gen_ndr/ndr_dssetup_c.h"
71 #include "libads/sitename_cache.h"
72 #include "libsmb/libsmb.h"
73 #include "libsmb/clidgram.h"
76 #include "../libcli/security/security.h"
79 #include "auth/gensec/gensec.h"
80 #include "../libcli/smb/smbXcli_base.h"
81 #include "libcli/auth/netlogon_creds_cli.h"
83 #include "rpc_server/rpc_ncacn_np.h"
84 #include "auth/credentials/credentials.h"
85 #include "lib/param/param.h"
88 #define DBGC_CLASS DBGC_WINBIND
92 struct sockaddr_storage ss;
95 extern struct winbindd_methods reconnect_methods;
96 extern bool override_logfile;
98 static NTSTATUS init_dc_connection_network(struct winbindd_domain *domain, bool need_rw_dc);
99 static void set_dc_type_and_flags( struct winbindd_domain *domain );
100 static bool set_dc_type_and_flags_trustinfo( struct winbindd_domain *domain );
101 static bool get_dcs(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
102 struct dc_name_ip **dcs, int *num_dcs);
104 /****************************************************************
105 Child failed to find DC's. Reschedule check.
106 ****************************************************************/
108 static void msg_failed_to_go_online(struct messaging_context *msg,
111 struct server_id server_id,
114 struct winbindd_domain *domain;
115 const char *domainname = (const char *)data->data;
117 if (data->data == NULL || data->length == 0) {
121 DEBUG(5,("msg_fail_to_go_online: received for domain %s.\n", domainname));
123 for (domain = domain_list(); domain; domain = domain->next) {
124 if (domain->internal) {
128 if (strequal(domain->name, domainname)) {
129 if (domain->online) {
130 /* We're already online, ignore. */
131 DEBUG(5,("msg_fail_to_go_online: domain %s "
132 "already online.\n", domainname));
136 /* Reschedule the online check. */
137 set_domain_offline(domain);
143 /****************************************************************
144 Actually cause a reconnect from a message.
145 ****************************************************************/
147 static void msg_try_to_go_online(struct messaging_context *msg,
150 struct server_id server_id,
153 struct winbindd_domain *domain;
154 const char *domainname = (const char *)data->data;
156 if (data->data == NULL || data->length == 0) {
160 DEBUG(5,("msg_try_to_go_online: received for domain %s.\n", domainname));
162 for (domain = domain_list(); domain; domain = domain->next) {
163 if (domain->internal) {
167 if (strequal(domain->name, domainname)) {
169 if (domain->online) {
170 /* We're already online, ignore. */
171 DEBUG(5,("msg_try_to_go_online: domain %s "
172 "already online.\n", domainname));
176 /* This call takes care of setting the online
177 flag to true if we connected, or re-adding
178 the offline handler if false. Bypasses online
179 check so always does network calls. */
181 init_dc_connection_network(domain, true);
187 /****************************************************************
188 Fork a child to try and contact a DC. Do this as contacting a
189 DC requires blocking lookups and we don't want to block our
191 ****************************************************************/
193 static bool fork_child_dc_connect(struct winbindd_domain *domain)
195 struct dc_name_ip *dcs = NULL;
197 TALLOC_CTX *mem_ctx = NULL;
198 pid_t parent_pid = getpid();
202 if (domain->dc_probe_pid != (pid_t)-1) {
204 * We might already have a DC probe
205 * child working, check.
207 if (process_exists_by_pid(domain->dc_probe_pid)) {
208 DEBUG(10,("fork_child_dc_connect: pid %u already "
209 "checking for DC's.\n",
210 (unsigned int)domain->dc_probe_pid));
213 domain->dc_probe_pid = (pid_t)-1;
216 domain->dc_probe_pid = fork();
218 if (domain->dc_probe_pid == (pid_t)-1) {
219 DEBUG(0, ("fork_child_dc_connect: Could not fork: %s\n", strerror(errno)));
223 if (domain->dc_probe_pid != (pid_t)0) {
225 messaging_register(winbind_messaging_context(), NULL,
226 MSG_WINBIND_TRY_TO_GO_ONLINE,
227 msg_try_to_go_online);
228 messaging_register(winbind_messaging_context(), NULL,
229 MSG_WINBIND_FAILED_TO_GO_ONLINE,
230 msg_failed_to_go_online);
236 /* Leave messages blocked - we will never process one. */
238 if (!override_logfile) {
239 if (asprintf(&lfile, "%s/log.winbindd-dc-connect", get_dyn_LOGFILEBASE()) == -1) {
240 DEBUG(0, ("fork_child_dc_connect: out of memory.\n"));
245 status = winbindd_reinit_after_fork(NULL, lfile);
246 if (!NT_STATUS_IS_OK(status)) {
247 DEBUG(1, ("winbindd_reinit_after_fork failed: %s\n",
249 messaging_send_buf(winbind_messaging_context(),
250 pid_to_procid(parent_pid),
251 MSG_WINBIND_FAILED_TO_GO_ONLINE,
252 (const uint8_t *)domain->name,
253 strlen(domain->name)+1);
258 mem_ctx = talloc_init("fork_child_dc_connect");
260 DEBUG(0,("talloc_init failed.\n"));
261 messaging_send_buf(winbind_messaging_context(),
262 pid_to_procid(parent_pid),
263 MSG_WINBIND_FAILED_TO_GO_ONLINE,
264 (const uint8_t *)domain->name,
265 strlen(domain->name)+1);
269 if ((!get_dcs(mem_ctx, domain, &dcs, &num_dcs)) || (num_dcs == 0)) {
270 /* Still offline ? Can't find DC's. */
271 messaging_send_buf(winbind_messaging_context(),
272 pid_to_procid(parent_pid),
273 MSG_WINBIND_FAILED_TO_GO_ONLINE,
274 (const uint8_t *)domain->name,
275 strlen(domain->name)+1);
279 /* We got a DC. Send a message to our parent to get it to
280 try and do the same. */
282 messaging_send_buf(winbind_messaging_context(),
283 pid_to_procid(parent_pid),
284 MSG_WINBIND_TRY_TO_GO_ONLINE,
285 (const uint8_t *)domain->name,
286 strlen(domain->name)+1);
290 /****************************************************************
291 Handler triggered if we're offline to try and detect a DC.
292 ****************************************************************/
294 static void check_domain_online_handler(struct tevent_context *ctx,
295 struct tevent_timer *te,
299 struct winbindd_domain *domain =
300 (struct winbindd_domain *)private_data;
302 DEBUG(10,("check_domain_online_handler: called for domain "
303 "%s (online = %s)\n", domain->name,
304 domain->online ? "True" : "False" ));
306 TALLOC_FREE(domain->check_online_event);
308 /* Are we still in "startup" mode ? */
310 if (domain->startup && (time_mono(NULL) > domain->startup_time + 30)) {
311 /* No longer in "startup" mode. */
312 DEBUG(10,("check_domain_online_handler: domain %s no longer in 'startup' mode.\n",
314 domain->startup = False;
317 /* We've been told to stay offline, so stay
320 if (get_global_winbindd_state_offline()) {
321 DEBUG(10,("check_domain_online_handler: domain %s remaining globally offline\n",
326 /* Fork a child to test if it can contact a DC.
327 If it can then send ourselves a message to
328 cause a reconnect. */
330 fork_child_dc_connect(domain);
333 /****************************************************************
334 If we're still offline setup the timeout check.
335 ****************************************************************/
337 static void calc_new_online_timeout_check(struct winbindd_domain *domain)
339 int wbr = lp_winbind_reconnect_delay();
341 if (domain->startup) {
342 domain->check_online_timeout = 10;
343 } else if (domain->check_online_timeout < wbr) {
344 domain->check_online_timeout = wbr;
348 void winbind_msg_domain_offline(struct messaging_context *msg_ctx,
351 struct server_id server_id,
354 const char *domain_name = (const char *)data->data;
355 struct winbindd_domain *domain;
357 domain = find_domain_from_name_noinit(domain_name);
358 if (domain == NULL) {
362 domain->online = false;
364 DEBUG(10, ("Domain %s is marked as offline now.\n",
368 void winbind_msg_domain_online(struct messaging_context *msg_ctx,
371 struct server_id server_id,
374 const char *domain_name = (const char *)data->data;
375 struct winbindd_domain *domain;
377 domain = find_domain_from_name_noinit(domain_name);
378 if (domain == NULL) {
382 domain->online = true;
384 DEBUG(10, ("Domain %s is marked as online now.\n",
388 /****************************************************************
389 Set domain offline and also add handler to put us back online
391 ****************************************************************/
393 void set_domain_offline(struct winbindd_domain *domain)
395 pid_t parent_pid = getppid();
397 DEBUG(10,("set_domain_offline: called for domain %s\n",
400 TALLOC_FREE(domain->check_online_event);
402 if (domain->internal) {
403 DEBUG(3,("set_domain_offline: domain %s is internal - logic error.\n",
408 domain->online = False;
410 /* Offline domains are always initialized. They're
411 re-initialized when they go back online. */
413 domain->initialized = True;
415 /* We only add the timeout handler that checks and
416 allows us to go back online when we've not
417 been told to remain offline. */
419 if (get_global_winbindd_state_offline()) {
420 DEBUG(10,("set_domain_offline: domain %s remaining globally offline\n",
425 /* If we're in startup mode, check again in 10 seconds, not in
426 lp_winbind_reconnect_delay() seconds (which is 30 seconds by default). */
428 calc_new_online_timeout_check(domain);
430 domain->check_online_event = tevent_add_timer(winbind_event_context(),
432 timeval_current_ofs(domain->check_online_timeout,0),
433 check_domain_online_handler,
436 /* The above *has* to succeed for winbindd to work. */
437 if (!domain->check_online_event) {
438 smb_panic("set_domain_offline: failed to add online handler");
441 DEBUG(10,("set_domain_offline: added event handler for domain %s\n",
444 /* Send a message to the parent that the domain is offline. */
445 if (parent_pid > 1 && !domain->internal) {
446 messaging_send_buf(winbind_messaging_context(),
447 pid_to_procid(parent_pid),
448 MSG_WINBIND_DOMAIN_OFFLINE,
449 (uint8_t *)domain->name,
450 strlen(domain->name) + 1);
453 /* Send an offline message to the idmap child when our
454 primary domain goes offline */
456 if ( domain->primary ) {
457 struct winbindd_child *idmap = idmap_child();
459 if ( idmap->pid != 0 ) {
460 messaging_send_buf(winbind_messaging_context(),
461 pid_to_procid(idmap->pid),
463 (const uint8_t *)domain->name,
464 strlen(domain->name)+1);
471 /****************************************************************
472 Set domain online - if allowed.
473 ****************************************************************/
475 static void set_domain_online(struct winbindd_domain *domain)
477 pid_t parent_pid = getppid();
479 DEBUG(10,("set_domain_online: called for domain %s\n",
482 if (domain->internal) {
483 DEBUG(3,("set_domain_online: domain %s is internal - logic error.\n",
488 if (get_global_winbindd_state_offline()) {
489 DEBUG(10,("set_domain_online: domain %s remaining globally offline\n",
494 winbindd_set_locator_kdc_envs(domain);
496 /* If we are waiting to get a krb5 ticket, trigger immediately. */
497 ccache_regain_all_now();
499 /* Ok, we're out of any startup mode now... */
500 domain->startup = False;
502 if (domain->online == False) {
503 /* We were offline - now we're online. We default to
504 using the MS-RPC backend if we started offline,
505 and if we're going online for the first time we
506 should really re-initialize the backends and the
507 checks to see if we're talking to an AD or NT domain.
510 domain->initialized = False;
512 /* 'reconnect_methods' is the MS-RPC backend. */
513 if (domain->backend == &reconnect_methods) {
514 domain->backend = NULL;
518 /* Ensure we have no online timeout checks. */
519 domain->check_online_timeout = 0;
520 TALLOC_FREE(domain->check_online_event);
522 /* Ensure we ignore any pending child messages. */
523 messaging_deregister(winbind_messaging_context(),
524 MSG_WINBIND_TRY_TO_GO_ONLINE, NULL);
525 messaging_deregister(winbind_messaging_context(),
526 MSG_WINBIND_FAILED_TO_GO_ONLINE, NULL);
528 domain->online = True;
530 /* Send a message to the parent that the domain is online. */
531 if (parent_pid > 1 && !domain->internal) {
532 messaging_send_buf(winbind_messaging_context(),
533 pid_to_procid(parent_pid),
534 MSG_WINBIND_DOMAIN_ONLINE,
535 (uint8_t *)domain->name,
536 strlen(domain->name) + 1);
539 /* Send an online message to the idmap child when our
540 primary domain comes online */
542 if ( domain->primary ) {
543 struct winbindd_child *idmap = idmap_child();
545 if ( idmap->pid != 0 ) {
546 messaging_send_buf(winbind_messaging_context(),
547 pid_to_procid(idmap->pid),
549 (const uint8_t *)domain->name,
550 strlen(domain->name)+1);
557 /****************************************************************
558 Requested to set a domain online.
559 ****************************************************************/
561 void set_domain_online_request(struct winbindd_domain *domain)
565 DEBUG(10,("set_domain_online_request: called for domain %s\n",
568 if (get_global_winbindd_state_offline()) {
569 DEBUG(10,("set_domain_online_request: domain %s remaining globally offline\n",
574 if (domain->internal) {
575 DEBUG(10, ("set_domain_online_request: Internal domains are "
580 /* We've been told it's safe to go online and
581 try and connect to a DC. But I don't believe it
582 because network manager seems to lie.
583 Wait at least 5 seconds. Heuristics suck... */
588 /* Go into "startup" mode again. */
589 domain->startup_time = time_mono(NULL);
590 domain->startup = True;
594 if (!domain->check_online_event) {
595 /* If we've come from being globally offline we
596 don't have a check online event handler set.
597 We need to add one now we're trying to go
600 DEBUG(10,("set_domain_online_request: domain %s was globally offline.\n",
604 TALLOC_FREE(domain->check_online_event);
606 domain->check_online_event = tevent_add_timer(winbind_event_context(),
609 check_domain_online_handler,
612 /* The above *has* to succeed for winbindd to work. */
613 if (!domain->check_online_event) {
614 smb_panic("set_domain_online_request: failed to add online handler");
618 /****************************************************************
619 Add -ve connection cache entries for domain and realm.
620 ****************************************************************/
622 static void winbind_add_failed_connection_entry(
623 const struct winbindd_domain *domain,
627 add_failed_connection_entry(domain->name, server, result);
628 /* If this was the saf name for the last thing we talked to,
630 saf_delete(domain->name);
631 if (domain->alt_name != NULL) {
632 add_failed_connection_entry(domain->alt_name, server, result);
633 saf_delete(domain->alt_name);
635 winbindd_unset_locator_kdc_env(domain);
638 /* Choose between anonymous or authenticated connections. We need to use
639 an authenticated connection if DCs have the RestrictAnonymous registry
640 entry set > 0, or the "Additional restrictions for anonymous
641 connections" set in the win2k Local Security Policy.
643 Caller to free() result in domain, username, password
646 static void cm_get_ipc_userpass(char **username, char **domain, char **password)
648 *username = (char *)secrets_fetch(SECRETS_AUTH_USER, NULL);
649 *domain = (char *)secrets_fetch(SECRETS_AUTH_DOMAIN, NULL);
650 *password = (char *)secrets_fetch(SECRETS_AUTH_PASSWORD, NULL);
652 if (*username && **username) {
654 if (!*domain || !**domain)
655 *domain = smb_xstrdup(lp_workgroup());
657 if (!*password || !**password)
658 *password = smb_xstrdup("");
660 DEBUG(3, ("cm_get_ipc_userpass: Retrieved auth-user from secrets.tdb [%s\\%s]\n",
661 *domain, *username));
664 DEBUG(3, ("cm_get_ipc_userpass: No auth-user defined\n"));
665 *username = smb_xstrdup("");
666 *domain = smb_xstrdup("");
667 *password = smb_xstrdup("");
671 static NTSTATUS cm_get_ipc_credentials(TALLOC_CTX *mem_ctx,
672 struct cli_credentials **_creds)
675 TALLOC_CTX *frame = talloc_stackframe();
676 NTSTATUS status = NT_STATUS_INTERNAL_ERROR;
677 struct loadparm_context *lp_ctx;
678 char *username = NULL;
679 char *netbios_domain = NULL;
680 char *password = NULL;
681 struct cli_credentials *creds = NULL;
684 cm_get_ipc_userpass(&username, &netbios_domain, &password);
686 lp_ctx = loadparm_init_s3(frame, loadparm_s3_helpers());
687 if (lp_ctx == NULL) {
688 DEBUG(1, ("loadparm_init_s3 failed\n"));
689 status = NT_STATUS_INTERNAL_ERROR;
693 creds = cli_credentials_init(mem_ctx);
695 status = NT_STATUS_NO_MEMORY;
699 cli_credentials_set_conf(creds, lp_ctx);
700 cli_credentials_set_kerberos_state(creds, CRED_DONT_USE_KERBEROS);
702 ok = cli_credentials_set_domain(creds, netbios_domain, CRED_SPECIFIED);
704 status = NT_STATUS_NO_MEMORY;
708 ok = cli_credentials_set_username(creds, username, CRED_SPECIFIED);
710 status = NT_STATUS_NO_MEMORY;
714 ok = cli_credentials_set_password(creds, password, CRED_SPECIFIED);
716 status = NT_STATUS_NO_MEMORY;
722 status = NT_STATUS_OK;
726 SAFE_FREE(netbios_domain);
732 static bool cm_is_ipc_credentials(struct cli_credentials *creds)
734 TALLOC_CTX *frame = talloc_stackframe();
735 char *ipc_account = NULL;
736 char *ipc_domain = NULL;
737 char *ipc_password = NULL;
738 const char *creds_account = NULL;
739 const char *creds_domain = NULL;
740 const char *creds_password = NULL;
743 cm_get_ipc_userpass(&ipc_account, &ipc_domain, &ipc_password);
745 creds_account = cli_credentials_get_username(creds);
746 creds_domain = cli_credentials_get_domain(creds);
747 creds_password = cli_credentials_get_password(creds);
749 if (!strequal(ipc_domain, creds_domain)) {
753 if (!strequal(ipc_account, creds_account)) {
757 if (!strcsequal(ipc_password, creds_password)) {
763 SAFE_FREE(ipc_account);
764 SAFE_FREE(ipc_domain);
765 SAFE_FREE(ipc_password);
770 static bool get_dc_name_via_netlogon(struct winbindd_domain *domain,
772 struct sockaddr_storage *dc_ss)
774 struct winbindd_domain *our_domain = NULL;
775 struct rpc_pipe_client *netlogon_pipe = NULL;
779 unsigned int orig_timeout;
780 const char *tmp = NULL;
782 struct dcerpc_binding_handle *b;
784 /* Hmmmm. We can only open one connection to the NETLOGON pipe at the
791 if (domain->primary) {
795 our_domain = find_our_domain();
797 if ((mem_ctx = talloc_init("get_dc_name_via_netlogon")) == NULL) {
801 result = cm_connect_netlogon(our_domain, &netlogon_pipe);
802 if (!NT_STATUS_IS_OK(result)) {
803 talloc_destroy(mem_ctx);
807 b = netlogon_pipe->binding_handle;
809 /* This call can take a long time - allow the server to time out.
810 35 seconds should do it. */
812 orig_timeout = rpccli_set_timeout(netlogon_pipe, 35000);
814 if (our_domain->active_directory) {
815 struct netr_DsRGetDCNameInfo *domain_info = NULL;
817 result = dcerpc_netr_DsRGetDCName(b,
826 if (NT_STATUS_IS_OK(result) && W_ERROR_IS_OK(werr)) {
828 mem_ctx, domain_info->dc_unc);
830 DEBUG(0, ("talloc_strdup failed\n"));
831 talloc_destroy(mem_ctx);
834 if (domain->alt_name == NULL) {
835 domain->alt_name = talloc_strdup(domain,
836 domain_info->domain_name);
837 if (domain->alt_name == NULL) {
838 DEBUG(0, ("talloc_strdup failed\n"));
839 talloc_destroy(mem_ctx);
843 if (domain->forest_name == NULL) {
844 domain->forest_name = talloc_strdup(domain,
845 domain_info->forest_name);
846 if (domain->forest_name == NULL) {
847 DEBUG(0, ("talloc_strdup failed\n"));
848 talloc_destroy(mem_ctx);
854 result = dcerpc_netr_GetAnyDCName(b, mem_ctx,
861 /* And restore our original timeout. */
862 rpccli_set_timeout(netlogon_pipe, orig_timeout);
864 if (!NT_STATUS_IS_OK(result)) {
865 DEBUG(10,("dcerpc_netr_GetAnyDCName failed: %s\n",
867 talloc_destroy(mem_ctx);
871 if (!W_ERROR_IS_OK(werr)) {
872 DEBUG(10,("dcerpc_netr_GetAnyDCName failed: %s\n",
874 talloc_destroy(mem_ctx);
878 /* dcerpc_netr_GetAnyDCName gives us a name with \\ */
879 p = strip_hostname(tmp);
883 talloc_destroy(mem_ctx);
885 DEBUG(10,("dcerpc_netr_GetAnyDCName returned %s\n", dcname));
887 if (!resolve_name(dcname, dc_ss, 0x20, true)) {
895 * Helper function to assemble trust password and account name
897 static NTSTATUS get_trust_credentials(struct winbindd_domain *domain,
900 struct cli_credentials **_creds)
902 const struct winbindd_domain *creds_domain = NULL;
903 struct cli_credentials *creds;
905 bool force_machine_account = false;
907 /* If we are a DC and this is not our own domain */
909 if (!domain->active_directory) {
912 * For non active directory domains
913 * we can only use NTLMSSP for SMB.
915 * But the trust account is not allowed
916 * to use SMB with NTLMSSP.
918 force_machine_account = true;
922 if (IS_DC && !force_machine_account) {
923 creds_domain = domain;
925 creds_domain = find_our_domain();
926 if (creds_domain == NULL) {
927 return NT_STATUS_INVALID_SERVER_STATE;
931 status = pdb_get_trust_credentials(creds_domain->name,
932 creds_domain->alt_name,
935 if (!NT_STATUS_IS_OK(status)) {
939 if (domain->primary && lp_security() == SEC_ADS) {
940 cli_credentials_set_kerberos_state(creds,
941 CRED_AUTO_USE_KERBEROS);
942 } else if (domain->active_directory) {
943 cli_credentials_set_kerberos_state(creds,
944 CRED_MUST_USE_KERBEROS);
946 cli_credentials_set_kerberos_state(creds,
947 CRED_DONT_USE_KERBEROS);
950 if (creds_domain != domain) {
952 * We can only use schannel against a direct trust
954 cli_credentials_set_secure_channel_type(creds,
963 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
966 status = cm_get_ipc_credentials(mem_ctx, &creds);
967 if (!NT_STATUS_IS_OK(status)) {
975 /************************************************************************
976 Given a fd with a just-connected TCP connection to a DC, open a connection
978 ************************************************************************/
980 static NTSTATUS cm_prepare_connection(struct winbindd_domain *domain,
982 const char *controller,
983 struct cli_state **cli,
986 bool try_ipc_auth = false;
987 const char *machine_password = NULL;
988 const char *machine_krb5_principal = NULL;
989 const char *machine_account = NULL;
990 const char *machine_domain = NULL;
992 struct cli_credentials *creds = NULL;
993 enum credentials_use_kerberos krb5_state;
995 struct named_mutex *mutex;
997 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
999 enum smb_signing_setting smb_sign_client_connections = lp_client_ipc_signing();
1001 if (smb_sign_client_connections == SMB_SIGNING_DEFAULT) {
1003 * If we are connecting to our own AD domain, require
1004 * smb signing to disrupt MITM attacks
1006 if (domain->primary && lp_security() == SEC_ADS) {
1007 smb_sign_client_connections = SMB_SIGNING_REQUIRED;
1009 * If we are in or are an AD domain and connecting to another
1010 * AD domain in our forest
1011 * then require smb signing to disrupt MITM attacks
1013 } else if ((lp_security() == SEC_ADS ||
1014 lp_server_role() == ROLE_ACTIVE_DIRECTORY_DC)
1015 && domain->active_directory
1016 && (domain->domain_trust_attribs
1017 & LSA_TRUST_ATTRIBUTE_WITHIN_FOREST)) {
1018 smb_sign_client_connections = SMB_SIGNING_REQUIRED;
1022 DEBUG(10,("cm_prepare_connection: connecting to DC %s for domain %s\n",
1023 controller, domain->name ));
1027 mutex = grab_named_mutex(talloc_tos(), controller,
1028 WINBIND_SERVER_MUTEX_WAIT_TIME);
1029 if (mutex == NULL) {
1031 DEBUG(0,("cm_prepare_connection: mutex grab failed for %s\n",
1033 result = NT_STATUS_POSSIBLE_DEADLOCK;
1037 flags |= CLI_FULL_CONNECTION_USE_KERBEROS;
1039 *cli = cli_state_create(NULL, sockfd,
1040 controller, domain->alt_name,
1041 smb_sign_client_connections, flags);
1044 DEBUG(1, ("Could not cli_initialize\n"));
1045 result = NT_STATUS_NO_MEMORY;
1049 cli_set_timeout(*cli, 10000); /* 10 seconds */
1051 result = smbXcli_negprot((*cli)->conn, (*cli)->timeout,
1052 lp_client_ipc_min_protocol(),
1053 lp_client_ipc_max_protocol());
1055 if (!NT_STATUS_IS_OK(result)) {
1056 DEBUG(1, ("cli_negprot failed: %s\n", nt_errstr(result)));
1060 if (smbXcli_conn_protocol((*cli)->conn) >= PROTOCOL_NT1 &&
1061 smb1cli_conn_capabilities((*cli)->conn) & CAP_EXTENDED_SECURITY) {
1062 try_ipc_auth = true;
1063 } else if (smbXcli_conn_protocol((*cli)->conn) >= PROTOCOL_SMB2_02) {
1064 try_ipc_auth = true;
1065 } else if (smb_sign_client_connections == SMB_SIGNING_REQUIRED) {
1067 * If we are forcing on SMB signing, then we must
1068 * require authentication unless this is a one-way
1069 * trust, and we have no stored user/password
1071 try_ipc_auth = true;
1075 result = get_trust_credentials(domain, talloc_tos(), false, &creds);
1076 if (!NT_STATUS_IS_OK(result)) {
1077 DEBUG(1, ("get_trust_credentials(%s) failed: %s\n",
1078 domain->name, nt_errstr(result)));
1083 * Without SPNEGO or NTLMSSP (perhaps via SMB2) we
1084 * would try and authentication with our machine
1085 * account password and fail. This is very rare in
1086 * the modern world however
1088 creds = cli_credentials_init_anon(talloc_tos());
1089 if (creds == NULL) {
1090 result = NT_STATUS_NO_MEMORY;
1091 DEBUG(1, ("cli_credentials_init_anon(%s) failed: %s\n",
1092 domain->name, nt_errstr(result)));
1097 krb5_state = cli_credentials_get_kerberos_state(creds);
1099 machine_krb5_principal = cli_credentials_get_principal(creds,
1101 if (machine_krb5_principal == NULL) {
1102 krb5_state = CRED_DONT_USE_KERBEROS;
1105 machine_account = cli_credentials_get_username(creds);
1106 machine_password = cli_credentials_get_password(creds);
1107 machine_domain = cli_credentials_get_domain(creds);
1109 if (krb5_state != CRED_DONT_USE_KERBEROS) {
1111 /* Try a krb5 session */
1113 (*cli)->use_kerberos = True;
1114 DEBUG(5, ("connecting to %s from %s with kerberos principal "
1115 "[%s] and realm [%s]\n", controller, lp_netbios_name(),
1116 machine_krb5_principal, domain->alt_name));
1118 winbindd_set_locator_kdc_envs(domain);
1120 result = cli_session_setup(*cli,
1121 machine_krb5_principal,
1123 strlen(machine_password)+1,
1125 strlen(machine_password)+1,
1128 if (NT_STATUS_IS_OK(result)) {
1129 goto session_setup_done;
1132 DEBUG(4,("failed kerberos session setup with %s\n",
1133 nt_errstr(result)));
1136 if (krb5_state != CRED_MUST_USE_KERBEROS) {
1137 /* Fall back to non-kerberos session setup using NTLMSSP SPNEGO with the machine account. */
1138 (*cli)->use_kerberos = False;
1140 DEBUG(5, ("connecting to %s from %s using NTLMSSP with username "
1141 "[%s]\\[%s]\n", controller, lp_netbios_name(),
1142 machine_domain, machine_account));
1144 result = cli_session_setup(*cli,
1147 strlen(machine_password)+1,
1149 strlen(machine_password)+1,
1153 if (NT_STATUS_IS_OK(result)) {
1154 goto session_setup_done;
1158 * If we are not going to validiate the conneciton
1159 * with SMB signing, then allow us to fall back to
1162 if (NT_STATUS_EQUAL(result, NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT)
1163 || NT_STATUS_EQUAL(result, NT_STATUS_TRUSTED_DOMAIN_FAILURE)
1164 || NT_STATUS_EQUAL(result, NT_STATUS_INVALID_ACCOUNT_NAME)
1165 || NT_STATUS_EQUAL(result, NT_STATUS_NO_LOGON_SERVERS)
1166 || NT_STATUS_EQUAL(result, NT_STATUS_LOGON_FAILURE))
1168 if (cli_credentials_is_anonymous(creds)) {
1172 if (!cm_is_ipc_credentials(creds)) {
1176 if (smb_sign_client_connections == SMB_SIGNING_REQUIRED) {
1183 DEBUG(4, ("authenticated session setup failed with %s\n",
1184 nt_errstr(result)));
1189 result = cm_get_ipc_credentials(talloc_tos(), &creds);
1190 if (!NT_STATUS_IS_OK(result)) {
1194 if (cli_credentials_is_anonymous(creds)) {
1199 machine_account = cli_credentials_get_username(creds);
1200 machine_password = cli_credentials_get_password(creds);
1201 machine_domain = cli_credentials_get_domain(creds);
1203 /* Fall back to non-kerberos session setup using NTLMSSP SPNEGO with the ipc creds. */
1204 (*cli)->use_kerberos = False;
1206 DEBUG(5, ("connecting to %s from %s using NTLMSSP with username "
1207 "[%s]\\[%s]\n", controller, lp_netbios_name(),
1208 machine_domain, machine_account));
1210 result = cli_session_setup(*cli,
1213 strlen(machine_password)+1,
1215 strlen(machine_password)+1,
1218 if (NT_STATUS_IS_OK(result)) {
1219 goto session_setup_done;
1223 * If we are not going to validiate the conneciton
1224 * with SMB signing, then allow us to fall back to
1227 if (NT_STATUS_EQUAL(result, NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT)
1228 || NT_STATUS_EQUAL(result, NT_STATUS_TRUSTED_DOMAIN_FAILURE)
1229 || NT_STATUS_EQUAL(result, NT_STATUS_INVALID_ACCOUNT_NAME)
1230 || NT_STATUS_EQUAL(result, NT_STATUS_NO_LOGON_SERVERS)
1231 || NT_STATUS_EQUAL(result, NT_STATUS_LOGON_FAILURE))
1236 DEBUG(4, ("authenticated session setup failed with %s\n",
1237 nt_errstr(result)));
1243 if (smb_sign_client_connections == SMB_SIGNING_REQUIRED) {
1247 /* Fall back to anonymous connection, this might fail later */
1248 DEBUG(10,("cm_prepare_connection: falling back to anonymous "
1249 "connection for DC %s\n",
1252 (*cli)->use_kerberos = False;
1254 result = cli_session_setup(*cli, "", "", 0, "", 0, "");
1255 if (NT_STATUS_IS_OK(result)) {
1256 DEBUG(5, ("Connected anonymously\n"));
1257 goto session_setup_done;
1260 /* We can't session setup */
1266 * This should be a short term hack until
1267 * dynamic re-authentication is implemented.
1269 * See Bug 9175 - winbindd doesn't recover from
1270 * NT_STATUS_NETWORK_SESSION_EXPIRED
1272 if (smbXcli_conn_protocol((*cli)->conn) >= PROTOCOL_SMB2_02) {
1273 smbXcli_session_set_disconnect_expired((*cli)->smb2.session);
1276 result = cli_tree_connect(*cli, "IPC$", "IPC", "", 0);
1278 if (!NT_STATUS_IS_OK(result)) {
1279 DEBUG(1,("failed tcon_X with %s\n", nt_errstr(result)));
1283 /* cache the server name for later connections */
1285 saf_store(domain->name, controller);
1286 if (domain->alt_name && (*cli)->use_kerberos) {
1287 saf_store(domain->alt_name, controller);
1290 winbindd_set_locator_kdc_envs(domain);
1295 result = NT_STATUS_OK;
1300 if (!NT_STATUS_IS_OK(result)) {
1301 winbind_add_failed_connection_entry(domain, controller, result);
1302 if ((*cli) != NULL) {
1311 /*******************************************************************
1312 Add a dcname and sockaddr_storage pair to the end of a dc_name_ip
1315 Keeps the list unique by not adding duplicate entries.
1317 @param[in] mem_ctx talloc memory context to allocate from
1318 @param[in] domain_name domain of the DC
1319 @param[in] dcname name of the DC to add to the list
1320 @param[in] pss Internet address and port pair to add to the list
1321 @param[in,out] dcs array of dc_name_ip structures to add to
1322 @param[in,out] num_dcs number of dcs returned in the dcs array
1323 @return true if the list was added to, false otherwise
1324 *******************************************************************/
1326 static bool add_one_dc_unique(TALLOC_CTX *mem_ctx, const char *domain_name,
1327 const char *dcname, struct sockaddr_storage *pss,
1328 struct dc_name_ip **dcs, int *num)
1332 if (!NT_STATUS_IS_OK(check_negative_conn_cache(domain_name, dcname))) {
1333 DEBUG(10, ("DC %s was in the negative conn cache\n", dcname));
1337 /* Make sure there's no duplicates in the list */
1338 for (i=0; i<*num; i++)
1340 (struct sockaddr *)(void *)&(*dcs)[i].ss,
1341 (struct sockaddr *)(void *)pss))
1344 *dcs = talloc_realloc(mem_ctx, *dcs, struct dc_name_ip, (*num)+1);
1349 fstrcpy((*dcs)[*num].name, dcname);
1350 (*dcs)[*num].ss = *pss;
1355 static bool add_sockaddr_to_array(TALLOC_CTX *mem_ctx,
1356 struct sockaddr_storage *pss, uint16_t port,
1357 struct sockaddr_storage **addrs, int *num)
1359 *addrs = talloc_realloc(mem_ctx, *addrs, struct sockaddr_storage, (*num)+1);
1361 if (*addrs == NULL) {
1366 (*addrs)[*num] = *pss;
1367 set_sockaddr_port((struct sockaddr *)&(*addrs)[*num], port);
1373 /*******************************************************************
1374 convert an ip to a name
1375 *******************************************************************/
1377 static bool dcip_to_name(TALLOC_CTX *mem_ctx,
1378 const struct winbindd_domain *domain,
1379 struct sockaddr_storage *pss,
1382 struct ip_service ip_list;
1383 uint32_t nt_version = NETLOGON_NT_VERSION_1;
1385 const char *dc_name;
1388 bool is_ad_domain = false;
1394 /* For active directory servers, try to get the ldap server name.
1395 None of these failures should be considered critical for now */
1397 if ((lp_security() == SEC_ADS) && (domain->alt_name != NULL)) {
1398 is_ad_domain = true;
1399 } else if (lp_server_role() == ROLE_ACTIVE_DIRECTORY_DC) {
1400 is_ad_domain = domain->active_directory;
1405 ADS_STATUS ads_status;
1406 char addr[INET6_ADDRSTRLEN];
1408 print_sockaddr(addr, sizeof(addr), pss);
1410 ads = ads_init(domain->alt_name, domain->name, addr);
1411 ads->auth.flags |= ADS_AUTH_NO_BIND;
1413 ads_status = ads_connect(ads);
1414 if (ADS_ERR_OK(ads_status)) {
1415 /* We got a cldap packet. */
1416 *name = talloc_strdup(mem_ctx,
1417 ads->config.ldap_server_name);
1418 if (*name == NULL) {
1421 namecache_store(*name, 0x20, 1, &ip_list);
1423 DEBUG(10,("dcip_to_name: flags = 0x%x\n", (unsigned int)ads->config.flags));
1425 if (domain->primary && (ads->config.flags & NBT_SERVER_KDC)) {
1426 if (ads_closest_dc(ads)) {
1427 char *sitename = sitename_fetch(mem_ctx, ads->config.realm);
1429 /* We're going to use this KDC for this realm/domain.
1430 If we are using sites, then force the krb5 libs
1433 create_local_private_krb5_conf_for_domain(domain->alt_name,
1438 TALLOC_FREE(sitename);
1440 /* use an off site KDC */
1441 create_local_private_krb5_conf_for_domain(domain->alt_name,
1446 winbindd_set_locator_kdc_envs(domain);
1448 /* Ensure we contact this DC also. */
1449 saf_store(domain->name, *name);
1450 saf_store(domain->alt_name, *name);
1453 ads_destroy( &ads );
1457 ads_destroy( &ads );
1462 status = nbt_getdc(winbind_messaging_context(), 10, pss, domain->name,
1463 &domain->sid, nt_version, mem_ctx, &nt_version,
1465 if (NT_STATUS_IS_OK(status)) {
1466 *name = talloc_strdup(mem_ctx, dc_name);
1467 if (*name == NULL) {
1470 namecache_store(*name, 0x20, 1, &ip_list);
1474 /* try node status request */
1476 if (name_status_find(domain->name, 0x1c, 0x20, pss, nbtname) ) {
1477 namecache_store(nbtname, 0x20, 1, &ip_list);
1480 *name = talloc_strdup(mem_ctx, nbtname);
1481 if (*name == NULL) {
1491 /*******************************************************************
1492 Retrieve a list of IP addresses for domain controllers.
1494 The array is sorted in the preferred connection order.
1496 @param[in] mem_ctx talloc memory context to allocate from
1497 @param[in] domain domain to retrieve DCs for
1498 @param[out] dcs array of dcs that will be returned
1499 @param[out] num_dcs number of dcs returned in the dcs array
1501 *******************************************************************/
1503 static bool get_dcs(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
1504 struct dc_name_ip **dcs, int *num_dcs)
1507 struct sockaddr_storage ss;
1508 struct ip_service *ip_list = NULL;
1509 int iplist_size = 0;
1512 enum security_types sec = (enum security_types)lp_security();
1514 is_our_domain = strequal(domain->name, lp_workgroup());
1516 /* If not our domain, get the preferred DC, by asking our primary DC */
1518 && get_dc_name_via_netlogon(domain, dcname, &ss)
1519 && add_one_dc_unique(mem_ctx, domain->name, dcname, &ss, dcs,
1522 char addr[INET6_ADDRSTRLEN];
1523 print_sockaddr(addr, sizeof(addr), &ss);
1524 DEBUG(10, ("Retrieved DC %s at %s via netlogon\n",
1529 if ((sec == SEC_ADS) && (domain->alt_name != NULL)) {
1530 char *sitename = NULL;
1532 /* We need to make sure we know the local site before
1533 doing any DNS queries, as this will restrict the
1534 get_sorted_dc_list() call below to only fetching
1535 DNS records for the correct site. */
1537 /* Find any DC to get the site record.
1538 We deliberately don't care about the
1541 get_dc_name(domain->name, domain->alt_name, dcname, &ss);
1543 sitename = sitename_fetch(mem_ctx, domain->alt_name);
1546 /* Do the site-specific AD dns lookup first. */
1547 get_sorted_dc_list(domain->alt_name, sitename, &ip_list,
1548 &iplist_size, True);
1550 /* Add ips to the DC array. We don't look up the name
1551 of the DC in this function, but we fill in the char*
1552 of the ip now to make the failed connection cache
1554 for ( i=0; i<iplist_size; i++ ) {
1555 char addr[INET6_ADDRSTRLEN];
1556 print_sockaddr(addr, sizeof(addr),
1558 add_one_dc_unique(mem_ctx,
1567 TALLOC_FREE(sitename);
1571 /* Now we add DCs from the main AD DNS lookup. */
1572 get_sorted_dc_list(domain->alt_name, NULL, &ip_list,
1573 &iplist_size, True);
1575 for ( i=0; i<iplist_size; i++ ) {
1576 char addr[INET6_ADDRSTRLEN];
1577 print_sockaddr(addr, sizeof(addr),
1579 add_one_dc_unique(mem_ctx,
1591 /* Try standard netbios queries if no ADS and fall back to DNS queries
1592 * if alt_name is available */
1593 if (*num_dcs == 0) {
1594 get_sorted_dc_list(domain->name, NULL, &ip_list, &iplist_size,
1596 if (iplist_size == 0) {
1597 if (domain->alt_name != NULL) {
1598 get_sorted_dc_list(domain->alt_name, NULL, &ip_list,
1599 &iplist_size, true);
1603 for ( i=0; i<iplist_size; i++ ) {
1604 char addr[INET6_ADDRSTRLEN];
1605 print_sockaddr(addr, sizeof(addr),
1607 add_one_dc_unique(mem_ctx,
1622 /*******************************************************************
1623 Find and make a connection to a DC in the given domain.
1625 @param[in] mem_ctx talloc memory context to allocate from
1626 @param[in] domain domain to find a dc in
1627 @param[out] dcname NetBIOS or FQDN of DC that's connected to
1628 @param[out] pss DC Internet address and port
1629 @param[out] fd fd of the open socket connected to the newly found dc
1630 @return true when a DC connection is made, false otherwise
1631 *******************************************************************/
1633 static bool find_new_dc(TALLOC_CTX *mem_ctx,
1634 struct winbindd_domain *domain,
1635 char **dcname, struct sockaddr_storage *pss, int *fd)
1637 struct dc_name_ip *dcs = NULL;
1640 const char **dcnames = NULL;
1641 size_t num_dcnames = 0;
1643 struct sockaddr_storage *addrs = NULL;
1654 if (!get_dcs(mem_ctx, domain, &dcs, &num_dcs) || (num_dcs == 0))
1657 for (i=0; i<num_dcs; i++) {
1659 if (!add_string_to_array(mem_ctx, dcs[i].name,
1660 &dcnames, &num_dcnames)) {
1663 if (!add_sockaddr_to_array(mem_ctx, &dcs[i].ss, TCP_SMB_PORT,
1664 &addrs, &num_addrs)) {
1669 if ((num_dcnames == 0) || (num_dcnames != num_addrs))
1672 if ((addrs == NULL) || (dcnames == NULL))
1675 status = smbsock_any_connect(addrs, dcnames, NULL, NULL, NULL,
1676 num_addrs, 0, 10, fd, &fd_index, NULL);
1677 if (!NT_STATUS_IS_OK(status)) {
1678 for (i=0; i<num_dcs; i++) {
1679 char ab[INET6_ADDRSTRLEN];
1680 print_sockaddr(ab, sizeof(ab), &dcs[i].ss);
1681 DEBUG(10, ("find_new_dc: smbsock_any_connect failed for "
1682 "domain %s address %s. Error was %s\n",
1683 domain->name, ab, nt_errstr(status) ));
1684 winbind_add_failed_connection_entry(domain,
1685 dcs[i].name, NT_STATUS_UNSUCCESSFUL);
1690 *pss = addrs[fd_index];
1692 if (*dcnames[fd_index] != '\0' && !is_ipaddress(dcnames[fd_index])) {
1693 /* Ok, we've got a name for the DC */
1694 *dcname = talloc_strdup(mem_ctx, dcnames[fd_index]);
1695 if (*dcname == NULL) {
1701 /* Try to figure out the name */
1702 if (dcip_to_name(mem_ctx, domain, pss, dcname)) {
1706 /* We can not continue without the DC's name */
1707 winbind_add_failed_connection_entry(domain, dcs[fd_index].name,
1708 NT_STATUS_UNSUCCESSFUL);
1710 /* Throw away all arrays as we're doing this again. */
1714 TALLOC_FREE(dcnames);
1726 static char *current_dc_key(TALLOC_CTX *mem_ctx, const char *domain_name)
1728 return talloc_asprintf_strupper_m(mem_ctx, "CURRENT_DCNAME/%s",
1732 static void store_current_dc_in_gencache(const char *domain_name,
1733 const char *dc_name,
1734 struct cli_state *cli)
1736 char addr[INET6_ADDRSTRLEN];
1740 if (!cli_state_is_connected(cli)) {
1744 print_sockaddr(addr, sizeof(addr),
1745 smbXcli_conn_remote_sockaddr(cli->conn));
1747 key = current_dc_key(talloc_tos(), domain_name);
1752 value = talloc_asprintf(talloc_tos(), "%s %s", addr, dc_name);
1753 if (value == NULL) {
1757 gencache_set(key, value, 0x7fffffff);
1763 bool fetch_current_dc_from_gencache(TALLOC_CTX *mem_ctx,
1764 const char *domain_name,
1765 char **p_dc_name, char **p_dc_ip)
1770 char *dc_name = NULL;
1773 key = current_dc_key(talloc_tos(), domain_name);
1777 if (!gencache_get(key, mem_ctx, &value, NULL)) {
1780 p = strchr(value, ' ');
1784 dc_ip = talloc_strndup(mem_ctx, value, p - value);
1785 if (dc_ip == NULL) {
1788 dc_name = talloc_strdup(mem_ctx, p+1);
1789 if (dc_name == NULL) {
1793 if (p_dc_ip != NULL) {
1797 if (p_dc_name != NULL) {
1798 *p_dc_name = dc_name;
1803 TALLOC_FREE(dc_name);
1810 NTSTATUS wb_open_internal_pipe(TALLOC_CTX *mem_ctx,
1811 const struct ndr_interface_table *table,
1812 struct rpc_pipe_client **ret_pipe)
1814 struct rpc_pipe_client *cli = NULL;
1815 const struct auth_session_info *session_info;
1816 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
1819 session_info = get_session_info_system();
1820 SMB_ASSERT(session_info != NULL);
1822 /* create a connection to the specified pipe */
1823 if (lp_parm_bool(-1, "winbindd", "use external pipes", false)) {
1824 status = rpc_pipe_open_interface(mem_ctx,
1828 winbind_messaging_context(),
1831 status = rpc_pipe_open_internal(mem_ctx,
1835 winbind_messaging_context(),
1838 if (!NT_STATUS_IS_OK(status)) {
1839 DEBUG(0, ("open_internal_pipe: Could not connect to %s pipe: %s\n",
1840 table->name, nt_errstr(status)));
1848 return NT_STATUS_OK;
1851 static NTSTATUS cm_open_connection(struct winbindd_domain *domain,
1852 struct winbindd_cm_conn *new_conn)
1854 TALLOC_CTX *mem_ctx;
1856 char *saf_servername;
1859 if ((mem_ctx = talloc_init("cm_open_connection")) == NULL) {
1860 set_domain_offline(domain);
1861 return NT_STATUS_NO_MEMORY;
1864 saf_servername = saf_fetch(mem_ctx, domain->name );
1866 /* we have to check the server affinity cache here since
1867 later we select a DC based on response time and not preference */
1869 /* Check the negative connection cache
1870 before talking to it. It going down may have
1871 triggered the reconnection. */
1873 if ( saf_servername && NT_STATUS_IS_OK(check_negative_conn_cache( domain->name, saf_servername))) {
1875 DEBUG(10,("cm_open_connection: saf_servername is '%s' for domain %s\n",
1876 saf_servername, domain->name ));
1878 /* convert an ip address to a name */
1879 if (is_ipaddress( saf_servername ) ) {
1880 char *dcname = NULL;
1881 struct sockaddr_storage ss;
1883 if (!interpret_string_addr(&ss, saf_servername,
1885 TALLOC_FREE(mem_ctx);
1886 return NT_STATUS_UNSUCCESSFUL;
1888 if (dcip_to_name(mem_ctx, domain, &ss, &dcname)) {
1889 domain->dcname = talloc_strdup(domain,
1891 if (domain->dcname == NULL) {
1892 TALLOC_FREE(mem_ctx);
1893 return NT_STATUS_NO_MEMORY;
1896 winbind_add_failed_connection_entry(
1897 domain, saf_servername,
1898 NT_STATUS_UNSUCCESSFUL);
1901 domain->dcname = talloc_strdup(domain, saf_servername);
1902 if (domain->dcname == NULL) {
1903 TALLOC_FREE(mem_ctx);
1904 return NT_STATUS_NO_MEMORY;
1909 for (retries = 0; retries < 3; retries++) {
1912 char *dcname = NULL;
1914 result = NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND;
1916 DEBUG(10,("cm_open_connection: dcname is '%s' for domain %s\n",
1917 domain->dcname ? domain->dcname : "", domain->name ));
1919 if (domain->dcname != NULL
1920 && NT_STATUS_IS_OK(check_negative_conn_cache( domain->name, domain->dcname))
1921 && (resolve_name(domain->dcname, &domain->dcaddr, 0x20, true)))
1925 status = smbsock_connect(&domain->dcaddr, 0,
1928 if (!NT_STATUS_IS_OK(status)) {
1934 !find_new_dc(mem_ctx, domain, &dcname, &domain->dcaddr, &fd))
1936 /* This is the one place where we will
1937 set the global winbindd offline state
1938 to true, if a "WINBINDD_OFFLINE" entry
1939 is found in the winbindd cache. */
1940 set_global_winbindd_state_offline();
1943 if (dcname != NULL) {
1944 talloc_free(domain->dcname);
1946 domain->dcname = talloc_move(domain, &dcname);
1947 if (domain->dcname == NULL) {
1948 result = NT_STATUS_NO_MEMORY;
1953 new_conn->cli = NULL;
1955 result = cm_prepare_connection(domain, fd, domain->dcname,
1956 &new_conn->cli, &retry);
1957 if (!NT_STATUS_IS_OK(result)) {
1958 /* Don't leak the smb connection socket */
1966 if (NT_STATUS_IS_OK(result)) {
1967 bool seal_pipes = true;
1969 winbindd_set_locator_kdc_envs(domain);
1971 if (domain->online == False) {
1972 /* We're changing state from offline to online. */
1973 set_global_winbindd_state_online();
1975 set_domain_online(domain);
1978 * Much as I hate global state, this seems to be the point
1979 * where we can be certain that we have a proper connection to
1980 * a DC. wbinfo --dc-info needs that information, store it in
1981 * gencache with a looong timeout. This will need revisiting
1982 * once we start to connect to multiple DCs, wbcDcInfo is
1983 * already prepared for that.
1985 store_current_dc_in_gencache(domain->name, domain->dcname,
1988 seal_pipes = lp_winbind_sealed_pipes();
1989 seal_pipes = lp_parm_bool(-1, "winbind sealed pipes",
1994 new_conn->auth_level = DCERPC_AUTH_LEVEL_PRIVACY;
1996 new_conn->auth_level = DCERPC_AUTH_LEVEL_INTEGRITY;
1999 /* Ensure we setup the retry handler. */
2000 set_domain_offline(domain);
2003 talloc_destroy(mem_ctx);
2007 /* Close down all open pipes on a connection. */
2009 void invalidate_cm_connection(struct winbindd_domain *domain)
2012 struct winbindd_cm_conn *conn = &domain->conn;
2014 /* We're closing down a possibly dead
2015 connection. Don't have impossibly long (10s) timeouts. */
2018 cli_set_timeout(conn->cli, 1000); /* 1 second. */
2021 if (conn->samr_pipe != NULL) {
2022 if (is_valid_policy_hnd(&conn->sam_connect_handle)) {
2023 dcerpc_samr_Close(conn->samr_pipe->binding_handle,
2025 &conn->sam_connect_handle,
2028 TALLOC_FREE(conn->samr_pipe);
2029 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
2031 cli_set_timeout(conn->cli, 500);
2035 if (conn->lsa_pipe != NULL) {
2036 if (is_valid_policy_hnd(&conn->lsa_policy)) {
2037 dcerpc_lsa_Close(conn->lsa_pipe->binding_handle,
2042 TALLOC_FREE(conn->lsa_pipe);
2043 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
2045 cli_set_timeout(conn->cli, 500);
2049 if (conn->lsa_pipe_tcp != NULL) {
2050 if (is_valid_policy_hnd(&conn->lsa_policy)) {
2051 dcerpc_lsa_Close(conn->lsa_pipe_tcp->binding_handle,
2056 TALLOC_FREE(conn->lsa_pipe_tcp);
2057 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
2059 cli_set_timeout(conn->cli, 500);
2063 if (conn->netlogon_pipe != NULL) {
2064 TALLOC_FREE(conn->netlogon_pipe);
2065 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
2067 cli_set_timeout(conn->cli, 500);
2071 conn->auth_level = DCERPC_AUTH_LEVEL_PRIVACY;
2072 conn->netlogon_force_reauth = false;
2073 conn->netlogon_flags = 0;
2074 TALLOC_FREE(conn->netlogon_creds);
2077 cli_shutdown(conn->cli);
2083 void close_conns_after_fork(void)
2085 struct winbindd_domain *domain;
2086 struct winbindd_cli_state *cli_state;
2088 for (domain = domain_list(); domain; domain = domain->next) {
2090 * first close the low level SMB TCP connection
2091 * so that we don't generate any SMBclose
2092 * requests in invalidate_cm_connection()
2094 if (cli_state_is_connected(domain->conn.cli)) {
2095 smbXcli_conn_disconnect(domain->conn.cli->conn, NT_STATUS_OK);
2098 invalidate_cm_connection(domain);
2101 for (cli_state = winbindd_client_list();
2103 cli_state = cli_state->next) {
2104 if (cli_state->sock >= 0) {
2105 close(cli_state->sock);
2106 cli_state->sock = -1;
2111 static bool connection_ok(struct winbindd_domain *domain)
2115 ok = cli_state_is_connected(domain->conn.cli);
2117 DEBUG(3, ("connection_ok: Connection to %s for domain %s is not connected\n",
2118 domain->dcname, domain->name));
2122 if (domain->online == False) {
2123 DEBUG(3, ("connection_ok: Domain %s is offline\n", domain->name));
2130 /* Initialize a new connection up to the RPC BIND.
2131 Bypass online status check so always does network calls. */
2133 static NTSTATUS init_dc_connection_network(struct winbindd_domain *domain, bool need_rw_dc)
2136 bool skip_connection = domain->internal;
2137 if (need_rw_dc && domain->rodc) {
2138 skip_connection = false;
2141 /* Internal connections never use the network. */
2142 if (dom_sid_equal(&domain->sid, &global_sid_Builtin)) {
2143 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
2146 /* Still ask the internal LSA and SAMR server about the local domain */
2147 if (skip_connection || connection_ok(domain)) {
2148 if (!domain->initialized) {
2149 set_dc_type_and_flags(domain);
2151 return NT_STATUS_OK;
2154 invalidate_cm_connection(domain);
2156 if (!domain->primary && !domain->initialized) {
2158 * Before we connect to a trust, work out if it is an
2159 * AD domain by asking our own domain.
2161 set_dc_type_and_flags_trustinfo(domain);
2164 result = cm_open_connection(domain, &domain->conn);
2166 if (NT_STATUS_IS_OK(result) && !domain->initialized) {
2167 set_dc_type_and_flags(domain);
2173 NTSTATUS init_dc_connection(struct winbindd_domain *domain, bool need_rw_dc)
2175 if (dom_sid_equal(&domain->sid, &global_sid_Builtin)) {
2176 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
2179 if (domain->initialized && !domain->online) {
2180 /* We check for online status elsewhere. */
2181 return NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND;
2184 return init_dc_connection_network(domain, need_rw_dc);
2187 static NTSTATUS init_dc_connection_rpc(struct winbindd_domain *domain, bool need_rw_dc)
2191 status = init_dc_connection(domain, need_rw_dc);
2192 if (!NT_STATUS_IS_OK(status)) {
2196 if (!domain->internal && domain->conn.cli == NULL) {
2197 /* happens for trusted domains without inbound trust */
2198 return NT_STATUS_TRUSTED_DOMAIN_FAILURE;
2201 return NT_STATUS_OK;
2204 /******************************************************************************
2205 Set the trust flags (direction and forest location) for a domain
2206 ******************************************************************************/
2208 static bool set_dc_type_and_flags_trustinfo( struct winbindd_domain *domain )
2210 struct winbindd_domain *our_domain;
2211 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2213 struct netr_DomainTrustList trusts;
2215 uint32_t flags = (NETR_TRUST_FLAG_IN_FOREST |
2216 NETR_TRUST_FLAG_OUTBOUND |
2217 NETR_TRUST_FLAG_INBOUND);
2218 struct rpc_pipe_client *cli;
2219 TALLOC_CTX *mem_ctx = NULL;
2220 struct dcerpc_binding_handle *b;
2222 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s\n", domain->name ));
2224 /* Our primary domain doesn't need to worry about trust flags.
2225 Force it to go through the network setup */
2226 if ( domain->primary ) {
2230 mem_ctx = talloc_stackframe();
2231 our_domain = find_our_domain();
2232 if (our_domain->internal) {
2233 result = init_dc_connection(our_domain, false);
2234 if (!NT_STATUS_IS_OK(result)) {
2235 DEBUG(3,("set_dc_type_and_flags_trustinfo: "
2236 "Not able to make a connection to our domain: %s\n",
2237 nt_errstr(result)));
2238 TALLOC_FREE(mem_ctx);
2243 /* This won't work unless our domain is AD */
2244 if ( !our_domain->active_directory ) {
2245 TALLOC_FREE(mem_ctx);
2249 if (our_domain->internal) {
2250 result = wb_open_internal_pipe(mem_ctx, &ndr_table_netlogon, &cli);
2251 } else if (!connection_ok(our_domain)) {
2252 DEBUG(3,("set_dc_type_and_flags_trustinfo: "
2253 "No connection to our domain!\n"));
2254 TALLOC_FREE(mem_ctx);
2257 result = cm_connect_netlogon(our_domain, &cli);
2260 if (!NT_STATUS_IS_OK(result)) {
2261 DEBUG(5, ("set_dc_type_and_flags_trustinfo: Could not open "
2262 "a connection to %s for PIPE_NETLOGON (%s)\n",
2263 domain->name, nt_errstr(result)));
2264 TALLOC_FREE(mem_ctx);
2267 b = cli->binding_handle;
2269 /* Use DsEnumerateDomainTrusts to get us the trust direction and type. */
2270 result = dcerpc_netr_DsrEnumerateDomainTrusts(b, mem_ctx,
2275 if (!NT_STATUS_IS_OK(result)) {
2276 DEBUG(0,("set_dc_type_and_flags_trustinfo: "
2277 "failed to query trusted domain list: %s\n",
2278 nt_errstr(result)));
2279 TALLOC_FREE(mem_ctx);
2282 if (!W_ERROR_IS_OK(werr)) {
2283 DEBUG(0,("set_dc_type_and_flags_trustinfo: "
2284 "failed to query trusted domain list: %s\n",
2286 TALLOC_FREE(mem_ctx);
2290 /* Now find the domain name and get the flags */
2292 for ( i=0; i<trusts.count; i++ ) {
2293 if ( strequal( domain->name, trusts.array[i].netbios_name) ) {
2294 domain->domain_flags = trusts.array[i].trust_flags;
2295 domain->domain_type = trusts.array[i].trust_type;
2296 domain->domain_trust_attribs = trusts.array[i].trust_attributes;
2298 if ( domain->domain_type == LSA_TRUST_TYPE_UPLEVEL )
2299 domain->active_directory = True;
2301 /* This flag is only set if the domain is *our*
2302 primary domain and the primary domain is in
2305 domain->native_mode = (domain->domain_flags & NETR_TRUST_FLAG_NATIVE);
2307 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s is %sin "
2308 "native mode.\n", domain->name,
2309 domain->native_mode ? "" : "NOT "));
2311 DEBUG(5,("set_dc_type_and_flags_trustinfo: domain %s is %s"
2312 "running active directory.\n", domain->name,
2313 domain->active_directory ? "" : "NOT "));
2315 domain->can_do_ncacn_ip_tcp = domain->active_directory;
2317 domain->initialized = True;
2323 TALLOC_FREE(mem_ctx);
2325 return domain->initialized;
2328 /******************************************************************************
2329 We can 'sense' certain things about the DC by it's replies to certain
2332 This tells us if this particular remote server is Active Directory, and if it
2334 ******************************************************************************/
2336 static void set_dc_type_and_flags_connect( struct winbindd_domain *domain )
2338 NTSTATUS status, result;
2340 TALLOC_CTX *mem_ctx = NULL;
2341 struct rpc_pipe_client *cli = NULL;
2342 struct policy_handle pol;
2343 union dssetup_DsRoleInfo info;
2344 union lsa_PolicyInformation *lsa_info = NULL;
2346 if (!domain->internal && !connection_ok(domain)) {
2350 mem_ctx = talloc_init("set_dc_type_and_flags on domain %s\n",
2353 DEBUG(1, ("set_dc_type_and_flags_connect: talloc_init() failed\n"));
2357 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s\n", domain->name ));
2359 if (domain->internal) {
2360 status = wb_open_internal_pipe(mem_ctx,
2364 status = cli_rpc_pipe_open_noauth(domain->conn.cli,
2369 if (!NT_STATUS_IS_OK(status)) {
2370 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
2371 "PI_DSSETUP on domain %s: (%s)\n",
2372 domain->name, nt_errstr(status)));
2374 /* if this is just a non-AD domain we need to continue
2375 * identifying so that we can in the end return with
2376 * domain->initialized = True - gd */
2381 status = dcerpc_dssetup_DsRoleGetPrimaryDomainInformation(cli->binding_handle, mem_ctx,
2382 DS_ROLE_BASIC_INFORMATION,
2387 if (NT_STATUS_IS_OK(status)) {
2388 result = werror_to_ntstatus(werr);
2390 if (!NT_STATUS_IS_OK(status)) {
2391 DEBUG(5, ("set_dc_type_and_flags_connect: rpccli_ds_getprimarydominfo "
2392 "on domain %s failed: (%s)\n",
2393 domain->name, nt_errstr(status)));
2395 /* older samba3 DCs will return DCERPC_FAULT_OP_RNG_ERROR for
2396 * every opcode on the DSSETUP pipe, continue with
2397 * no_dssetup mode here as well to get domain->initialized
2400 if (NT_STATUS_EQUAL(status, NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE)) {
2404 TALLOC_FREE(mem_ctx);
2408 if ((info.basic.flags & DS_ROLE_PRIMARY_DS_RUNNING) &&
2409 !(info.basic.flags & DS_ROLE_PRIMARY_DS_MIXED_MODE)) {
2410 domain->native_mode = True;
2412 domain->native_mode = False;
2416 if (domain->internal) {
2417 status = wb_open_internal_pipe(mem_ctx,
2421 status = cli_rpc_pipe_open_noauth(domain->conn.cli,
2422 &ndr_table_lsarpc, &cli);
2424 if (!NT_STATUS_IS_OK(status)) {
2425 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
2426 "PI_LSARPC on domain %s: (%s)\n",
2427 domain->name, nt_errstr(status)));
2429 TALLOC_FREE(mem_ctx);
2433 status = rpccli_lsa_open_policy2(cli, mem_ctx, True,
2434 SEC_FLAG_MAXIMUM_ALLOWED, &pol);
2436 if (NT_STATUS_IS_OK(status)) {
2437 /* This particular query is exactly what Win2k clients use
2438 to determine that the DC is active directory */
2439 status = dcerpc_lsa_QueryInfoPolicy2(cli->binding_handle, mem_ctx,
2441 LSA_POLICY_INFO_DNS,
2446 if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(result)) {
2447 domain->active_directory = True;
2449 if (lsa_info->dns.name.string) {
2450 if (!strequal(domain->name, lsa_info->dns.name.string))
2452 DEBUG(1, ("set_dc_type_and_flags_connect: DC "
2453 "for domain %s claimed it was a DC "
2454 "for domain %s, refusing to "
2457 lsa_info->dns.name.string));
2459 TALLOC_FREE(mem_ctx);
2462 talloc_free(domain->name);
2463 domain->name = talloc_strdup(domain,
2464 lsa_info->dns.name.string);
2465 if (domain->name == NULL) {
2470 if (lsa_info->dns.dns_domain.string) {
2471 if (domain->alt_name != NULL &&
2472 !strequal(domain->alt_name,
2473 lsa_info->dns.dns_domain.string))
2475 DEBUG(1, ("set_dc_type_and_flags_connect: DC "
2476 "for domain %s (%s) claimed it was "
2477 "a DC for domain %s, refusing to "
2479 domain->alt_name, domain->name,
2480 lsa_info->dns.dns_domain.string));
2482 TALLOC_FREE(mem_ctx);
2485 talloc_free(domain->alt_name);
2487 talloc_strdup(domain,
2488 lsa_info->dns.dns_domain.string);
2489 if (domain->alt_name == NULL) {
2494 /* See if we can set some domain trust flags about
2497 if (lsa_info->dns.dns_forest.string) {
2498 talloc_free(domain->forest_name);
2499 domain->forest_name =
2500 talloc_strdup(domain,
2501 lsa_info->dns.dns_forest.string);
2502 if (domain->forest_name == NULL) {
2506 if (strequal(domain->forest_name, domain->alt_name)) {
2507 domain->domain_flags |= NETR_TRUST_FLAG_TREEROOT;
2511 if (lsa_info->dns.sid) {
2512 if (!is_null_sid(&domain->sid) &&
2513 !dom_sid_equal(&domain->sid,
2516 DEBUG(1, ("set_dc_type_and_flags_connect: DC "
2517 "for domain %s (%s) claimed it was "
2518 "a DC for domain %s, refusing to "
2520 dom_sid_string(talloc_tos(),
2523 dom_sid_string(talloc_tos(),
2524 lsa_info->dns.sid)));
2526 TALLOC_FREE(mem_ctx);
2529 sid_copy(&domain->sid, lsa_info->dns.sid);
2532 domain->active_directory = False;
2534 status = rpccli_lsa_open_policy(cli, mem_ctx, True,
2535 SEC_FLAG_MAXIMUM_ALLOWED,
2538 if (!NT_STATUS_IS_OK(status)) {
2542 status = dcerpc_lsa_QueryInfoPolicy(cli->binding_handle, mem_ctx,
2544 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
2547 if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(result)) {
2549 if (lsa_info->account_domain.name.string) {
2550 if (!strequal(domain->name,
2551 lsa_info->account_domain.name.string))
2554 ("set_dc_type_and_flags_connect: "
2555 "DC for domain %s claimed it was"
2556 " a DC for domain %s, refusing "
2557 "to initialize\n", domain->name,
2559 account_domain.name.string));
2561 TALLOC_FREE(mem_ctx);
2564 talloc_free(domain->name);
2566 talloc_strdup(domain,
2567 lsa_info->account_domain.name.string);
2570 if (lsa_info->account_domain.sid) {
2571 if (!is_null_sid(&domain->sid) &&
2572 !dom_sid_equal(&domain->sid,
2573 lsa_info->account_domain.sid))
2576 ("set_dc_type_and_flags_connect: "
2577 "DC for domain %s (%s) claimed "
2578 "it was a DC for domain %s, "
2579 "refusing to initialize\n",
2580 dom_sid_string(talloc_tos(),
2583 dom_sid_string(talloc_tos(),
2584 lsa_info->account_domain.sid)));
2586 TALLOC_FREE(mem_ctx);
2589 sid_copy(&domain->sid, lsa_info->account_domain.sid);
2595 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s is %sin native mode.\n",
2596 domain->name, domain->native_mode ? "" : "NOT "));
2598 DEBUG(5,("set_dc_type_and_flags_connect: domain %s is %srunning active directory.\n",
2599 domain->name, domain->active_directory ? "" : "NOT "));
2601 domain->can_do_ncacn_ip_tcp = domain->active_directory;
2605 TALLOC_FREE(mem_ctx);
2607 domain->initialized = True;
2610 /**********************************************************************
2611 Set the domain_flags (trust attributes, domain operating modes, etc...
2612 ***********************************************************************/
2614 static void set_dc_type_and_flags( struct winbindd_domain *domain )
2616 /* we always have to contact our primary domain */
2618 if ( domain->primary || domain->internal) {
2619 DEBUG(10,("set_dc_type_and_flags: setting up flags for "
2620 "primary or internal domain\n"));
2621 set_dc_type_and_flags_connect( domain );
2625 /* Use our DC to get the information if possible */
2627 if ( !set_dc_type_and_flags_trustinfo( domain ) ) {
2628 /* Otherwise, fallback to contacting the
2630 set_dc_type_and_flags_connect( domain );
2638 /**********************************************************************
2639 ***********************************************************************/
2641 static NTSTATUS cm_get_schannel_creds(struct winbindd_domain *domain,
2642 struct netlogon_creds_cli_context **ppdc)
2644 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2645 struct rpc_pipe_client *netlogon_pipe;
2649 if ((!IS_DC) && (!domain->primary)) {
2650 return NT_STATUS_TRUSTED_DOMAIN_FAILURE;
2653 if (domain->conn.netlogon_creds != NULL) {
2654 if (!(domain->conn.netlogon_flags & NETLOGON_NEG_AUTHENTICATED_RPC)) {
2655 return NT_STATUS_TRUSTED_DOMAIN_FAILURE;
2657 *ppdc = domain->conn.netlogon_creds;
2658 return NT_STATUS_OK;
2661 result = cm_connect_netlogon(domain, &netlogon_pipe);
2662 if (!NT_STATUS_IS_OK(result)) {
2666 if (domain->conn.netlogon_creds == NULL) {
2667 return NT_STATUS_TRUSTED_DOMAIN_FAILURE;
2670 if (!(domain->conn.netlogon_flags & NETLOGON_NEG_AUTHENTICATED_RPC)) {
2671 return NT_STATUS_TRUSTED_DOMAIN_FAILURE;
2674 *ppdc = domain->conn.netlogon_creds;
2675 return NT_STATUS_OK;
2678 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
2680 struct rpc_pipe_client **cli, struct policy_handle *sam_handle)
2682 struct winbindd_cm_conn *conn;
2683 NTSTATUS status, result;
2684 struct netlogon_creds_cli_context *p_creds;
2685 struct cli_credentials *creds = NULL;
2686 bool retry = false; /* allow one retry attempt for expired session */
2688 if (sid_check_is_our_sam(&domain->sid)) {
2689 if (domain->rodc == false || need_rw_dc == false) {
2690 return open_internal_samr_conn(mem_ctx, domain, cli, sam_handle);
2695 status = init_dc_connection_rpc(domain, need_rw_dc);
2696 if (!NT_STATUS_IS_OK(status)) {
2700 conn = &domain->conn;
2702 if (rpccli_is_connected(conn->samr_pipe)) {
2706 TALLOC_FREE(conn->samr_pipe);
2709 * No SAMR pipe yet. Attempt to get an NTLMSSP SPNEGO authenticated
2710 * sign and sealed pipe using the machine account password by
2711 * preference. If we can't - try schannel, if that fails, try
2715 result = get_trust_credentials(domain, talloc_tos(), false, &creds);
2716 if (!NT_STATUS_IS_OK(result)) {
2717 DEBUG(10, ("cm_connect_sam: No user available for "
2718 "domain %s, trying schannel\n", domain->name));
2722 if (cli_credentials_is_anonymous(creds)) {
2727 * We have an authenticated connection. Use a SPNEGO
2728 * authenticated SAMR pipe with sign & seal.
2730 status = cli_rpc_pipe_open_with_creds(conn->cli,
2733 DCERPC_AUTH_TYPE_SPNEGO,
2735 smbXcli_conn_remote_name(conn->cli->conn),
2739 if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_SESSION_EXPIRED)
2741 invalidate_cm_connection(domain);
2746 if (!NT_STATUS_IS_OK(status)) {
2747 DEBUG(10,("cm_connect_sam: failed to connect to SAMR "
2748 "pipe for domain %s using NTLMSSP "
2749 "authenticated pipe: user %s. Error was "
2750 "%s\n", domain->name,
2751 cli_credentials_get_unparsed_name(creds, talloc_tos()),
2752 nt_errstr(status)));
2756 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for "
2757 "domain %s using NTLMSSP authenticated "
2758 "pipe: user %s\n", domain->name,
2759 cli_credentials_get_unparsed_name(creds, talloc_tos())));
2761 status = dcerpc_samr_Connect2(conn->samr_pipe->binding_handle, mem_ctx,
2762 conn->samr_pipe->desthost,
2763 SEC_FLAG_MAXIMUM_ALLOWED,
2764 &conn->sam_connect_handle,
2767 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_DEVICE_ERROR) && !retry) {
2768 invalidate_cm_connection(domain);
2769 TALLOC_FREE(conn->samr_pipe);
2774 if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(result)) {
2777 if (NT_STATUS_IS_OK(status)) {
2781 DEBUG(10,("cm_connect_sam: ntlmssp-sealed dcerpc_samr_Connect2 "
2782 "failed for domain %s, error was %s. Trying schannel\n",
2783 domain->name, nt_errstr(status) ));
2784 TALLOC_FREE(conn->samr_pipe);
2788 /* Fall back to schannel if it's a W2K pre-SP1 box. */
2790 status = cm_get_schannel_creds(domain, &p_creds);
2791 if (!NT_STATUS_IS_OK(status)) {
2792 /* If this call fails - conn->cli can now be NULL ! */
2793 DEBUG(10, ("cm_connect_sam: Could not get schannel auth info "
2794 "for domain %s (error %s), trying anon\n",
2796 nt_errstr(status) ));
2800 result = get_trust_credentials(domain, talloc_tos(), true, &creds);
2801 if (!NT_STATUS_IS_OK(result)) {
2802 DEBUG(10, ("cm_connect_sam: No user available for "
2803 "domain %s (error %s), trying anon\n", domain->name,
2804 nt_errstr(result)));
2807 status = cli_rpc_pipe_open_schannel_with_creds
2808 (conn->cli, &ndr_table_samr, NCACN_NP,
2809 creds, p_creds, &conn->samr_pipe);
2811 if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_SESSION_EXPIRED)
2813 invalidate_cm_connection(domain);
2818 if (!NT_STATUS_IS_OK(status)) {
2819 DEBUG(10,("cm_connect_sam: failed to connect to SAMR pipe for "
2820 "domain %s using schannel. Error was %s\n",
2821 domain->name, nt_errstr(status) ));
2824 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for domain %s using "
2825 "schannel.\n", domain->name ));
2827 status = dcerpc_samr_Connect2(conn->samr_pipe->binding_handle, mem_ctx,
2828 conn->samr_pipe->desthost,
2829 SEC_FLAG_MAXIMUM_ALLOWED,
2830 &conn->sam_connect_handle,
2833 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_DEVICE_ERROR) && !retry) {
2834 invalidate_cm_connection(domain);
2835 TALLOC_FREE(conn->samr_pipe);
2840 if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(result)) {
2843 if (NT_STATUS_IS_OK(status)) {
2846 DEBUG(10,("cm_connect_sam: schannel-sealed dcerpc_samr_Connect2 failed "
2847 "for domain %s, error was %s. Trying anonymous\n",
2848 domain->name, nt_errstr(status) ));
2849 TALLOC_FREE(conn->samr_pipe);
2853 /* Finally fall back to anonymous. */
2854 if (lp_winbind_sealed_pipes() || lp_require_strong_key()) {
2855 status = NT_STATUS_DOWNGRADE_DETECTED;
2856 DEBUG(1, ("Unwilling to make SAMR connection to domain %s"
2857 "without connection level security, "
2858 "must set 'winbind sealed pipes = false' and "
2859 "'require strong key = false' to proceed: %s\n",
2860 domain->name, nt_errstr(status)));
2863 status = cli_rpc_pipe_open_noauth(conn->cli, &ndr_table_samr,
2866 if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_SESSION_EXPIRED)
2868 invalidate_cm_connection(domain);
2873 if (!NT_STATUS_IS_OK(status)) {
2877 status = dcerpc_samr_Connect2(conn->samr_pipe->binding_handle, mem_ctx,
2878 conn->samr_pipe->desthost,
2879 SEC_FLAG_MAXIMUM_ALLOWED,
2880 &conn->sam_connect_handle,
2883 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_DEVICE_ERROR) && !retry) {
2884 invalidate_cm_connection(domain);
2885 TALLOC_FREE(conn->samr_pipe);
2890 if (!NT_STATUS_IS_OK(status)) {
2891 DEBUG(10,("cm_connect_sam: rpccli_samr_Connect2 failed "
2892 "for domain %s Error was %s\n",
2893 domain->name, nt_errstr(status) ));
2896 if (!NT_STATUS_IS_OK(result)) {
2898 DEBUG(10,("cm_connect_sam: dcerpc_samr_Connect2 failed "
2899 "for domain %s Error was %s\n",
2900 domain->name, nt_errstr(result)));
2905 status = dcerpc_samr_OpenDomain(conn->samr_pipe->binding_handle,
2907 &conn->sam_connect_handle,
2908 SEC_FLAG_MAXIMUM_ALLOWED,
2910 &conn->sam_domain_handle,
2912 if (!NT_STATUS_IS_OK(status)) {
2919 if (NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
2921 * if we got access denied, we might just have no access rights
2922 * to talk to the remote samr server server (e.g. when we are a
2923 * PDC and we are connecting a w2k8 pdc via an interdomain
2924 * trust). In that case do not invalidate the whole connection
2927 TALLOC_FREE(conn->samr_pipe);
2928 ZERO_STRUCT(conn->sam_domain_handle);
2930 } else if (!NT_STATUS_IS_OK(status)) {
2931 invalidate_cm_connection(domain);
2935 *cli = conn->samr_pipe;
2936 *sam_handle = conn->sam_domain_handle;
2940 /**********************************************************************
2941 open an schanneld ncacn_ip_tcp connection to LSA
2942 ***********************************************************************/
2944 static NTSTATUS cm_connect_lsa_tcp(struct winbindd_domain *domain,
2945 TALLOC_CTX *mem_ctx,
2946 struct rpc_pipe_client **cli)
2948 struct winbindd_cm_conn *conn;
2949 struct netlogon_creds_cli_context *p_creds = NULL;
2950 struct cli_credentials *creds = NULL;
2953 DEBUG(10,("cm_connect_lsa_tcp\n"));
2955 status = init_dc_connection_rpc(domain, false);
2956 if (!NT_STATUS_IS_OK(status)) {
2960 conn = &domain->conn;
2962 if (conn->lsa_pipe_tcp &&
2963 conn->lsa_pipe_tcp->transport->transport == NCACN_IP_TCP &&
2964 conn->lsa_pipe_tcp->auth->auth_level >= DCERPC_AUTH_LEVEL_INTEGRITY &&
2965 rpccli_is_connected(conn->lsa_pipe_tcp)) {
2969 TALLOC_FREE(conn->lsa_pipe_tcp);
2971 status = cm_get_schannel_creds(domain, &p_creds);
2972 if (!NT_STATUS_IS_OK(status)) {
2976 status = get_trust_credentials(domain, talloc_tos(), true, &creds);
2977 if (!NT_STATUS_IS_OK(status)) {
2981 status = cli_rpc_pipe_open_schannel_with_creds(conn->cli,
2986 &conn->lsa_pipe_tcp);
2987 if (!NT_STATUS_IS_OK(status)) {
2988 DEBUG(10,("cli_rpc_pipe_open_schannel_with_key failed: %s\n",
2989 nt_errstr(status)));
2994 if (!NT_STATUS_IS_OK(status)) {
2995 TALLOC_FREE(conn->lsa_pipe_tcp);
2999 *cli = conn->lsa_pipe_tcp;
3004 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
3005 struct rpc_pipe_client **cli, struct policy_handle *lsa_policy)
3007 struct winbindd_cm_conn *conn;
3008 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
3009 struct netlogon_creds_cli_context *p_creds;
3010 struct cli_credentials *creds = NULL;
3011 bool retry = false; /* allow one retry attempt for expired session */
3014 result = init_dc_connection_rpc(domain, false);
3015 if (!NT_STATUS_IS_OK(result))
3018 conn = &domain->conn;
3020 if (rpccli_is_connected(conn->lsa_pipe)) {
3024 TALLOC_FREE(conn->lsa_pipe);
3026 result = get_trust_credentials(domain, talloc_tos(), false, &creds);
3027 if (!NT_STATUS_IS_OK(result)) {
3028 DEBUG(10, ("cm_connect_lsa: No user available for "
3029 "domain %s, trying schannel\n", domain->name));
3033 if (cli_credentials_is_anonymous(creds)) {
3038 * We have an authenticated connection. Use a SPNEGO
3039 * authenticated LSA pipe with sign & seal.
3041 result = cli_rpc_pipe_open_with_creds
3042 (conn->cli, &ndr_table_lsarpc, NCACN_NP,
3043 DCERPC_AUTH_TYPE_SPNEGO,
3045 smbXcli_conn_remote_name(conn->cli->conn),
3049 if (NT_STATUS_EQUAL(result, NT_STATUS_NETWORK_SESSION_EXPIRED)
3051 invalidate_cm_connection(domain);
3056 if (!NT_STATUS_IS_OK(result)) {
3057 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
3058 "domain %s using NTLMSSP authenticated pipe: user "
3059 "%s. Error was %s. Trying schannel.\n",
3061 cli_credentials_get_unparsed_name(creds, talloc_tos()),
3062 nt_errstr(result)));
3066 DEBUG(10,("cm_connect_lsa: connected&n