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"
83 #define DBGC_CLASS DBGC_WINBIND
87 struct sockaddr_storage ss
;
90 extern struct winbindd_methods reconnect_methods
;
91 extern bool override_logfile
;
93 static NTSTATUS
init_dc_connection_network(struct winbindd_domain
*domain
);
94 static void set_dc_type_and_flags( struct winbindd_domain
*domain
);
95 static bool get_dcs(TALLOC_CTX
*mem_ctx
, struct winbindd_domain
*domain
,
96 struct dc_name_ip
**dcs
, int *num_dcs
);
98 /****************************************************************
99 Child failed to find DC's. Reschedule check.
100 ****************************************************************/
102 static void msg_failed_to_go_online(struct messaging_context
*msg
,
105 struct server_id server_id
,
108 struct winbindd_domain
*domain
;
109 const char *domainname
= (const char *)data
->data
;
111 if (data
->data
== NULL
|| data
->length
== 0) {
115 DEBUG(5,("msg_fail_to_go_online: received for domain %s.\n", domainname
));
117 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
118 if (domain
->internal
) {
122 if (strequal(domain
->name
, domainname
)) {
123 if (domain
->online
) {
124 /* We're already online, ignore. */
125 DEBUG(5,("msg_fail_to_go_online: domain %s "
126 "already online.\n", domainname
));
130 /* Reschedule the online check. */
131 set_domain_offline(domain
);
137 /****************************************************************
138 Actually cause a reconnect from a message.
139 ****************************************************************/
141 static void msg_try_to_go_online(struct messaging_context
*msg
,
144 struct server_id server_id
,
147 struct winbindd_domain
*domain
;
148 const char *domainname
= (const char *)data
->data
;
150 if (data
->data
== NULL
|| data
->length
== 0) {
154 DEBUG(5,("msg_try_to_go_online: received for domain %s.\n", domainname
));
156 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
157 if (domain
->internal
) {
161 if (strequal(domain
->name
, domainname
)) {
163 if (domain
->online
) {
164 /* We're already online, ignore. */
165 DEBUG(5,("msg_try_to_go_online: domain %s "
166 "already online.\n", domainname
));
170 /* This call takes care of setting the online
171 flag to true if we connected, or re-adding
172 the offline handler if false. Bypasses online
173 check so always does network calls. */
175 init_dc_connection_network(domain
);
181 /****************************************************************
182 Fork a child to try and contact a DC. Do this as contacting a
183 DC requires blocking lookups and we don't want to block our
185 ****************************************************************/
187 static bool fork_child_dc_connect(struct winbindd_domain
*domain
)
189 struct dc_name_ip
*dcs
= NULL
;
191 TALLOC_CTX
*mem_ctx
= NULL
;
192 pid_t parent_pid
= getpid();
196 if (domain
->dc_probe_pid
!= (pid_t
)-1) {
198 * We might already have a DC probe
199 * child working, check.
201 if (process_exists_by_pid(domain
->dc_probe_pid
)) {
202 DEBUG(10,("fork_child_dc_connect: pid %u already "
203 "checking for DC's.\n",
204 (unsigned int)domain
->dc_probe_pid
));
207 domain
->dc_probe_pid
= (pid_t
)-1;
210 domain
->dc_probe_pid
= fork();
212 if (domain
->dc_probe_pid
== (pid_t
)-1) {
213 DEBUG(0, ("fork_child_dc_connect: Could not fork: %s\n", strerror(errno
)));
217 if (domain
->dc_probe_pid
!= (pid_t
)0) {
219 messaging_register(winbind_messaging_context(), NULL
,
220 MSG_WINBIND_TRY_TO_GO_ONLINE
,
221 msg_try_to_go_online
);
222 messaging_register(winbind_messaging_context(), NULL
,
223 MSG_WINBIND_FAILED_TO_GO_ONLINE
,
224 msg_failed_to_go_online
);
230 /* Leave messages blocked - we will never process one. */
232 if (!override_logfile
) {
233 if (asprintf(&lfile
, "%s/log.winbindd-dc-connect", get_dyn_LOGFILEBASE()) == -1) {
234 DEBUG(0, ("fork_child_dc_connect: out of memory.\n"));
239 status
= winbindd_reinit_after_fork(NULL
, lfile
);
240 if (!NT_STATUS_IS_OK(status
)) {
241 DEBUG(1, ("winbindd_reinit_after_fork failed: %s\n",
243 messaging_send_buf(winbind_messaging_context(),
244 pid_to_procid(parent_pid
),
245 MSG_WINBIND_FAILED_TO_GO_ONLINE
,
246 (uint8
*)domain
->name
,
247 strlen(domain
->name
)+1);
252 mem_ctx
= talloc_init("fork_child_dc_connect");
254 DEBUG(0,("talloc_init failed.\n"));
255 messaging_send_buf(winbind_messaging_context(),
256 pid_to_procid(parent_pid
),
257 MSG_WINBIND_FAILED_TO_GO_ONLINE
,
258 (uint8
*)domain
->name
,
259 strlen(domain
->name
)+1);
263 if ((!get_dcs(mem_ctx
, domain
, &dcs
, &num_dcs
)) || (num_dcs
== 0)) {
264 /* Still offline ? Can't find DC's. */
265 messaging_send_buf(winbind_messaging_context(),
266 pid_to_procid(parent_pid
),
267 MSG_WINBIND_FAILED_TO_GO_ONLINE
,
268 (uint8
*)domain
->name
,
269 strlen(domain
->name
)+1);
273 /* We got a DC. Send a message to our parent to get it to
274 try and do the same. */
276 messaging_send_buf(winbind_messaging_context(),
277 pid_to_procid(parent_pid
),
278 MSG_WINBIND_TRY_TO_GO_ONLINE
,
279 (uint8
*)domain
->name
,
280 strlen(domain
->name
)+1);
284 /****************************************************************
285 Handler triggered if we're offline to try and detect a DC.
286 ****************************************************************/
288 static void check_domain_online_handler(struct event_context
*ctx
,
289 struct timed_event
*te
,
293 struct winbindd_domain
*domain
=
294 (struct winbindd_domain
*)private_data
;
296 DEBUG(10,("check_domain_online_handler: called for domain "
297 "%s (online = %s)\n", domain
->name
,
298 domain
->online
? "True" : "False" ));
300 TALLOC_FREE(domain
->check_online_event
);
302 /* Are we still in "startup" mode ? */
304 if (domain
->startup
&& (time_mono(NULL
) > domain
->startup_time
+ 30)) {
305 /* No longer in "startup" mode. */
306 DEBUG(10,("check_domain_online_handler: domain %s no longer in 'startup' mode.\n",
308 domain
->startup
= False
;
311 /* We've been told to stay offline, so stay
314 if (get_global_winbindd_state_offline()) {
315 DEBUG(10,("check_domain_online_handler: domain %s remaining globally offline\n",
320 /* Fork a child to test if it can contact a DC.
321 If it can then send ourselves a message to
322 cause a reconnect. */
324 fork_child_dc_connect(domain
);
327 /****************************************************************
328 If we're still offline setup the timeout check.
329 ****************************************************************/
331 static void calc_new_online_timeout_check(struct winbindd_domain
*domain
)
333 int wbr
= lp_winbind_reconnect_delay();
335 if (domain
->startup
) {
336 domain
->check_online_timeout
= 10;
337 } else if (domain
->check_online_timeout
< wbr
) {
338 domain
->check_online_timeout
= wbr
;
342 /****************************************************************
343 Set domain offline and also add handler to put us back online
345 ****************************************************************/
347 void set_domain_offline(struct winbindd_domain
*domain
)
349 DEBUG(10,("set_domain_offline: called for domain %s\n",
352 TALLOC_FREE(domain
->check_online_event
);
354 if (domain
->internal
) {
355 DEBUG(3,("set_domain_offline: domain %s is internal - logic error.\n",
360 domain
->online
= False
;
362 /* Offline domains are always initialized. They're
363 re-initialized when they go back online. */
365 domain
->initialized
= True
;
367 /* We only add the timeout handler that checks and
368 allows us to go back online when we've not
369 been told to remain offline. */
371 if (get_global_winbindd_state_offline()) {
372 DEBUG(10,("set_domain_offline: domain %s remaining globally offline\n",
377 /* If we're in startup mode, check again in 10 seconds, not in
378 lp_winbind_reconnect_delay() seconds (which is 30 seconds by default). */
380 calc_new_online_timeout_check(domain
);
382 domain
->check_online_event
= event_add_timed(winbind_event_context(),
384 timeval_current_ofs(domain
->check_online_timeout
,0),
385 check_domain_online_handler
,
388 /* The above *has* to succeed for winbindd to work. */
389 if (!domain
->check_online_event
) {
390 smb_panic("set_domain_offline: failed to add online handler");
393 DEBUG(10,("set_domain_offline: added event handler for domain %s\n",
396 /* Send an offline message to the idmap child when our
397 primary domain goes offline */
399 if ( domain
->primary
) {
400 struct winbindd_child
*idmap
= idmap_child();
402 if ( idmap
->pid
!= 0 ) {
403 messaging_send_buf(winbind_messaging_context(),
404 pid_to_procid(idmap
->pid
),
406 (uint8
*)domain
->name
,
407 strlen(domain
->name
)+1);
414 /****************************************************************
415 Set domain online - if allowed.
416 ****************************************************************/
418 static void set_domain_online(struct winbindd_domain
*domain
)
420 DEBUG(10,("set_domain_online: called for domain %s\n",
423 if (domain
->internal
) {
424 DEBUG(3,("set_domain_online: domain %s is internal - logic error.\n",
429 if (get_global_winbindd_state_offline()) {
430 DEBUG(10,("set_domain_online: domain %s remaining globally offline\n",
435 winbindd_set_locator_kdc_envs(domain
);
437 /* If we are waiting to get a krb5 ticket, trigger immediately. */
438 ccache_regain_all_now();
440 /* Ok, we're out of any startup mode now... */
441 domain
->startup
= False
;
443 if (domain
->online
== False
) {
444 /* We were offline - now we're online. We default to
445 using the MS-RPC backend if we started offline,
446 and if we're going online for the first time we
447 should really re-initialize the backends and the
448 checks to see if we're talking to an AD or NT domain.
451 domain
->initialized
= False
;
453 /* 'reconnect_methods' is the MS-RPC backend. */
454 if (domain
->backend
== &reconnect_methods
) {
455 domain
->backend
= NULL
;
459 /* Ensure we have no online timeout checks. */
460 domain
->check_online_timeout
= 0;
461 TALLOC_FREE(domain
->check_online_event
);
463 /* Ensure we ignore any pending child messages. */
464 messaging_deregister(winbind_messaging_context(),
465 MSG_WINBIND_TRY_TO_GO_ONLINE
, NULL
);
466 messaging_deregister(winbind_messaging_context(),
467 MSG_WINBIND_FAILED_TO_GO_ONLINE
, NULL
);
469 domain
->online
= True
;
471 /* Send an online message to the idmap child when our
472 primary domain comes online */
474 if ( domain
->primary
) {
475 struct winbindd_child
*idmap
= idmap_child();
477 if ( idmap
->pid
!= 0 ) {
478 messaging_send_buf(winbind_messaging_context(),
479 pid_to_procid(idmap
->pid
),
481 (uint8
*)domain
->name
,
482 strlen(domain
->name
)+1);
489 /****************************************************************
490 Requested to set a domain online.
491 ****************************************************************/
493 void set_domain_online_request(struct winbindd_domain
*domain
)
497 DEBUG(10,("set_domain_online_request: called for domain %s\n",
500 if (get_global_winbindd_state_offline()) {
501 DEBUG(10,("set_domain_online_request: domain %s remaining globally offline\n",
506 if (domain
->internal
) {
507 DEBUG(10, ("set_domain_online_request: Internal domains are "
512 /* We've been told it's safe to go online and
513 try and connect to a DC. But I don't believe it
514 because network manager seems to lie.
515 Wait at least 5 seconds. Heuristics suck... */
520 /* Go into "startup" mode again. */
521 domain
->startup_time
= time_mono(NULL
);
522 domain
->startup
= True
;
526 if (!domain
->check_online_event
) {
527 /* If we've come from being globally offline we
528 don't have a check online event handler set.
529 We need to add one now we're trying to go
532 DEBUG(10,("set_domain_online_request: domain %s was globally offline.\n",
536 TALLOC_FREE(domain
->check_online_event
);
538 domain
->check_online_event
= event_add_timed(winbind_event_context(),
541 check_domain_online_handler
,
544 /* The above *has* to succeed for winbindd to work. */
545 if (!domain
->check_online_event
) {
546 smb_panic("set_domain_online_request: failed to add online handler");
550 /****************************************************************
551 Add -ve connection cache entries for domain and realm.
552 ****************************************************************/
554 static void winbind_add_failed_connection_entry(
555 const struct winbindd_domain
*domain
,
559 add_failed_connection_entry(domain
->name
, server
, result
);
560 /* If this was the saf name for the last thing we talked to,
562 saf_delete(domain
->name
);
563 if (*domain
->alt_name
) {
564 add_failed_connection_entry(domain
->alt_name
, server
, result
);
565 saf_delete(domain
->alt_name
);
567 winbindd_unset_locator_kdc_env(domain
);
570 /* Choose between anonymous or authenticated connections. We need to use
571 an authenticated connection if DCs have the RestrictAnonymous registry
572 entry set > 0, or the "Additional restrictions for anonymous
573 connections" set in the win2k Local Security Policy.
575 Caller to free() result in domain, username, password
578 static void cm_get_ipc_userpass(char **username
, char **domain
, char **password
)
580 *username
= (char *)secrets_fetch(SECRETS_AUTH_USER
, NULL
);
581 *domain
= (char *)secrets_fetch(SECRETS_AUTH_DOMAIN
, NULL
);
582 *password
= (char *)secrets_fetch(SECRETS_AUTH_PASSWORD
, NULL
);
584 if (*username
&& **username
) {
586 if (!*domain
|| !**domain
)
587 *domain
= smb_xstrdup(lp_workgroup());
589 if (!*password
|| !**password
)
590 *password
= smb_xstrdup("");
592 DEBUG(3, ("cm_get_ipc_userpass: Retrieved auth-user from secrets.tdb [%s\\%s]\n",
593 *domain
, *username
));
596 DEBUG(3, ("cm_get_ipc_userpass: No auth-user defined\n"));
597 *username
= smb_xstrdup("");
598 *domain
= smb_xstrdup("");
599 *password
= smb_xstrdup("");
603 static bool get_dc_name_via_netlogon(struct winbindd_domain
*domain
,
605 struct sockaddr_storage
*dc_ss
)
607 struct winbindd_domain
*our_domain
= NULL
;
608 struct rpc_pipe_client
*netlogon_pipe
= NULL
;
612 unsigned int orig_timeout
;
613 const char *tmp
= NULL
;
615 struct dcerpc_binding_handle
*b
;
617 /* Hmmmm. We can only open one connection to the NETLOGON pipe at the
624 if (domain
->primary
) {
628 our_domain
= find_our_domain();
630 if ((mem_ctx
= talloc_init("get_dc_name_via_netlogon")) == NULL
) {
634 result
= cm_connect_netlogon(our_domain
, &netlogon_pipe
);
635 if (!NT_STATUS_IS_OK(result
)) {
636 talloc_destroy(mem_ctx
);
640 b
= netlogon_pipe
->binding_handle
;
642 /* This call can take a long time - allow the server to time out.
643 35 seconds should do it. */
645 orig_timeout
= rpccli_set_timeout(netlogon_pipe
, 35000);
647 if (our_domain
->active_directory
) {
648 struct netr_DsRGetDCNameInfo
*domain_info
= NULL
;
650 result
= dcerpc_netr_DsRGetDCName(b
,
659 if (NT_STATUS_IS_OK(result
) && W_ERROR_IS_OK(werr
)) {
661 mem_ctx
, domain_info
->dc_unc
);
663 DEBUG(0, ("talloc_strdup failed\n"));
664 talloc_destroy(mem_ctx
);
667 if (strlen(domain
->alt_name
) == 0) {
668 fstrcpy(domain
->alt_name
,
669 domain_info
->domain_name
);
671 if (strlen(domain
->forest_name
) == 0) {
672 fstrcpy(domain
->forest_name
,
673 domain_info
->forest_name
);
677 result
= dcerpc_netr_GetAnyDCName(b
, mem_ctx
,
684 /* And restore our original timeout. */
685 rpccli_set_timeout(netlogon_pipe
, orig_timeout
);
687 if (!NT_STATUS_IS_OK(result
)) {
688 DEBUG(10,("dcerpc_netr_GetAnyDCName failed: %s\n",
690 talloc_destroy(mem_ctx
);
694 if (!W_ERROR_IS_OK(werr
)) {
695 DEBUG(10,("dcerpc_netr_GetAnyDCName failed: %s\n",
697 talloc_destroy(mem_ctx
);
701 /* dcerpc_netr_GetAnyDCName gives us a name with \\ */
702 p
= strip_hostname(tmp
);
706 talloc_destroy(mem_ctx
);
708 DEBUG(10,("dcerpc_netr_GetAnyDCName returned %s\n", dcname
));
710 if (!resolve_name(dcname
, dc_ss
, 0x20, true)) {
718 * Helper function to assemble trust password and account name
720 static NTSTATUS
get_trust_creds(const struct winbindd_domain
*domain
,
721 char **machine_password
,
722 char **machine_account
,
723 char **machine_krb5_principal
)
725 const char *account_name
;
726 const char *name
= NULL
;
728 /* If we are a DC and this is not our own domain */
733 struct winbindd_domain
*our_domain
= find_our_domain();
736 return NT_STATUS_INVALID_SERVER_STATE
;
738 name
= our_domain
->name
;
741 if (!get_trust_pw_clear(name
, machine_password
,
742 &account_name
, NULL
))
744 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
747 if ((machine_account
!= NULL
) &&
748 (asprintf(machine_account
, "%s$", account_name
) == -1))
750 return NT_STATUS_NO_MEMORY
;
753 /* For now assume our machine account only exists in our domain */
755 if (machine_krb5_principal
!= NULL
)
757 struct winbindd_domain
*our_domain
= find_our_domain();
760 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
763 if (asprintf(machine_krb5_principal
, "%s$@%s",
764 account_name
, our_domain
->alt_name
) == -1)
766 return NT_STATUS_NO_MEMORY
;
769 strupper_m(*machine_krb5_principal
);
775 /************************************************************************
776 Given a fd with a just-connected TCP connection to a DC, open a connection
778 ************************************************************************/
780 static NTSTATUS
cm_prepare_connection(const struct winbindd_domain
*domain
,
782 const char *controller
,
783 struct cli_state
**cli
,
786 bool try_spnego
= false;
787 bool try_ipc_auth
= false;
788 char *machine_password
= NULL
;
789 char *machine_krb5_principal
= NULL
;
790 char *machine_account
= NULL
;
791 char *ipc_username
= NULL
;
792 char *ipc_domain
= NULL
;
793 char *ipc_password
= NULL
;
795 uint16_t sec_mode
= 0;
797 struct named_mutex
*mutex
;
799 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
801 DEBUG(10,("cm_prepare_connection: connecting to DC %s for domain %s\n",
802 controller
, domain
->name
));
806 mutex
= grab_named_mutex(talloc_tos(), controller
,
807 WINBIND_SERVER_MUTEX_WAIT_TIME
);
810 DEBUG(0,("cm_prepare_connection: mutex grab failed for %s\n",
812 result
= NT_STATUS_POSSIBLE_DEADLOCK
;
816 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
;
818 *cli
= cli_state_create(NULL
, sockfd
,
819 controller
, domain
->alt_name
,
820 SMB_SIGNING_DEFAULT
, flags
);
823 DEBUG(1, ("Could not cli_initialize\n"));
824 result
= NT_STATUS_NO_MEMORY
;
828 cli_set_timeout(*cli
, 10000); /* 10 seconds */
830 result
= smbXcli_negprot((*cli
)->conn
, (*cli
)->timeout
, PROTOCOL_CORE
,
833 if (!NT_STATUS_IS_OK(result
)) {
834 DEBUG(1, ("cli_negprot failed: %s\n", nt_errstr(result
)));
838 if (smbXcli_conn_protocol((*cli
)->conn
) >= PROTOCOL_NT1
&&
839 smb1cli_conn_capabilities((*cli
)->conn
) & CAP_EXTENDED_SECURITY
) {
841 } else if (smbXcli_conn_protocol((*cli
)->conn
) >= PROTOCOL_SMB2_02
) {
845 if (!is_dc_trusted_domain_situation(domain
->name
) && try_spnego
) {
846 result
= get_trust_creds(domain
, &machine_password
,
848 &machine_krb5_principal
);
849 if (!NT_STATUS_IS_OK(result
)) {
853 if (lp_security() == SEC_ADS
) {
855 /* Try a krb5 session */
857 (*cli
)->use_kerberos
= True
;
858 DEBUG(5, ("connecting to %s from %s with kerberos principal "
859 "[%s] and realm [%s]\n", controller
, lp_netbios_name(),
860 machine_krb5_principal
, domain
->alt_name
));
862 winbindd_set_locator_kdc_envs(domain
);
864 result
= cli_session_setup(*cli
,
865 machine_krb5_principal
,
867 strlen(machine_password
)+1,
869 strlen(machine_password
)+1,
872 if (!NT_STATUS_IS_OK(result
)) {
873 DEBUG(4,("failed kerberos session setup with %s\n",
877 if (NT_STATUS_IS_OK(result
)) {
878 /* Ensure creds are stored for NTLMSSP authenticated pipe access. */
879 result
= cli_init_creds(*cli
, machine_account
, lp_workgroup(), machine_password
);
880 if (!NT_STATUS_IS_OK(result
)) {
883 goto session_setup_done
;
887 /* Fall back to non-kerberos session setup using NTLMSSP SPNEGO with the machine account. */
888 (*cli
)->use_kerberos
= False
;
890 DEBUG(5, ("connecting to %s from %s with username "
891 "[%s]\\[%s]\n", controller
, lp_netbios_name(),
892 lp_workgroup(), machine_account
));
894 result
= cli_session_setup(*cli
,
897 strlen(machine_password
)+1,
899 strlen(machine_password
)+1,
901 if (!NT_STATUS_IS_OK(result
)) {
902 DEBUG(4, ("authenticated session setup failed with %s\n",
906 if (NT_STATUS_IS_OK(result
)) {
907 /* Ensure creds are stored for NTLMSSP authenticated pipe access. */
908 result
= cli_init_creds(*cli
, machine_account
, lp_workgroup(), machine_password
);
909 if (!NT_STATUS_IS_OK(result
)) {
912 goto session_setup_done
;
916 /* Fall back to non-kerberos session setup with auth_user */
918 (*cli
)->use_kerberos
= False
;
920 cm_get_ipc_userpass(&ipc_username
, &ipc_domain
, &ipc_password
);
922 sec_mode
= smb1cli_conn_server_security_mode((*cli
)->conn
);
924 try_ipc_auth
= false;
927 } else if (sec_mode
& NEGOTIATE_SECURITY_CHALLENGE_RESPONSE
) {
931 if (try_ipc_auth
&& (strlen(ipc_username
) > 0)) {
933 /* Only try authenticated if we have a username */
935 DEBUG(5, ("connecting to %s from %s with username "
936 "[%s]\\[%s]\n", controller
, lp_netbios_name(),
937 ipc_domain
, ipc_username
));
939 if (NT_STATUS_IS_OK(cli_session_setup(
941 ipc_password
, strlen(ipc_password
)+1,
942 ipc_password
, strlen(ipc_password
)+1,
944 /* Successful logon with given username. */
945 result
= cli_init_creds(*cli
, ipc_username
, ipc_domain
, ipc_password
);
946 if (!NT_STATUS_IS_OK(result
)) {
949 goto session_setup_done
;
951 DEBUG(4, ("authenticated session setup with user %s\\%s failed.\n",
952 ipc_domain
, ipc_username
));
958 /* Fall back to anonymous connection, this might fail later */
959 DEBUG(10,("cm_prepare_connection: falling back to anonymous "
960 "connection for DC %s\n",
963 result
= cli_session_setup(*cli
, "", NULL
, 0, NULL
, 0, "");
964 if (NT_STATUS_IS_OK(result
)) {
965 DEBUG(5, ("Connected anonymously\n"));
966 result
= cli_init_creds(*cli
, "", "", "");
967 if (!NT_STATUS_IS_OK(result
)) {
970 goto session_setup_done
;
973 /* We can't session setup */
978 /* cache the server name for later connections */
980 saf_store(domain
->name
, controller
);
981 if (domain
->alt_name
&& (*cli
)->use_kerberos
) {
982 saf_store(domain
->alt_name
, controller
);
985 winbindd_set_locator_kdc_envs(domain
);
987 result
= cli_tree_connect(*cli
, "IPC$", "IPC", "", 0);
989 if (!NT_STATUS_IS_OK(result
)) {
990 DEBUG(1,("failed tcon_X with %s\n", nt_errstr(result
)));
997 /* set the domain if empty; needed for schannel connections */
998 if ( !(*cli
)->domain
[0] ) {
999 result
= cli_set_domain((*cli
), domain
->name
);
1000 if (!NT_STATUS_IS_OK(result
)) {
1005 result
= NT_STATUS_OK
;
1009 SAFE_FREE(machine_account
);
1010 SAFE_FREE(machine_password
);
1011 SAFE_FREE(machine_krb5_principal
);
1012 SAFE_FREE(ipc_username
);
1013 SAFE_FREE(ipc_domain
);
1014 SAFE_FREE(ipc_password
);
1016 if (!NT_STATUS_IS_OK(result
)) {
1017 winbind_add_failed_connection_entry(domain
, controller
, result
);
1018 if ((*cli
) != NULL
) {
1027 /*******************************************************************
1028 Add a dcname and sockaddr_storage pair to the end of a dc_name_ip
1031 Keeps the list unique by not adding duplicate entries.
1033 @param[in] mem_ctx talloc memory context to allocate from
1034 @param[in] domain_name domain of the DC
1035 @param[in] dcname name of the DC to add to the list
1036 @param[in] pss Internet address and port pair to add to the list
1037 @param[in,out] dcs array of dc_name_ip structures to add to
1038 @param[in,out] num_dcs number of dcs returned in the dcs array
1039 @return true if the list was added to, false otherwise
1040 *******************************************************************/
1042 static bool add_one_dc_unique(TALLOC_CTX
*mem_ctx
, const char *domain_name
,
1043 const char *dcname
, struct sockaddr_storage
*pss
,
1044 struct dc_name_ip
**dcs
, int *num
)
1048 if (!NT_STATUS_IS_OK(check_negative_conn_cache(domain_name
, dcname
))) {
1049 DEBUG(10, ("DC %s was in the negative conn cache\n", dcname
));
1053 /* Make sure there's no duplicates in the list */
1054 for (i
=0; i
<*num
; i
++)
1056 (struct sockaddr
*)(void *)&(*dcs
)[i
].ss
,
1057 (struct sockaddr
*)(void *)pss
))
1060 *dcs
= talloc_realloc(mem_ctx
, *dcs
, struct dc_name_ip
, (*num
)+1);
1065 fstrcpy((*dcs
)[*num
].name
, dcname
);
1066 (*dcs
)[*num
].ss
= *pss
;
1071 static bool add_sockaddr_to_array(TALLOC_CTX
*mem_ctx
,
1072 struct sockaddr_storage
*pss
, uint16 port
,
1073 struct sockaddr_storage
**addrs
, int *num
)
1075 *addrs
= talloc_realloc(mem_ctx
, *addrs
, struct sockaddr_storage
, (*num
)+1);
1077 if (*addrs
== NULL
) {
1082 (*addrs
)[*num
] = *pss
;
1083 set_sockaddr_port((struct sockaddr
*)&(*addrs
)[*num
], port
);
1089 /*******************************************************************
1090 convert an ip to a name
1091 *******************************************************************/
1093 static bool dcip_to_name(TALLOC_CTX
*mem_ctx
,
1094 const struct winbindd_domain
*domain
,
1095 struct sockaddr_storage
*pss
,
1098 struct ip_service ip_list
;
1099 uint32_t nt_version
= NETLOGON_NT_VERSION_1
;
1101 const char *dc_name
;
1107 /* For active directory servers, try to get the ldap server name.
1108 None of these failures should be considered critical for now */
1110 if (lp_security() == SEC_ADS
) {
1112 ADS_STATUS ads_status
;
1113 char addr
[INET6_ADDRSTRLEN
];
1115 print_sockaddr(addr
, sizeof(addr
), pss
);
1117 ads
= ads_init(domain
->alt_name
, domain
->name
, addr
);
1118 ads
->auth
.flags
|= ADS_AUTH_NO_BIND
;
1120 ads_status
= ads_connect(ads
);
1121 if (ADS_ERR_OK(ads_status
)) {
1122 /* We got a cldap packet. */
1123 fstrcpy(name
, ads
->config
.ldap_server_name
);
1124 namecache_store(name
, 0x20, 1, &ip_list
);
1126 DEBUG(10,("dcip_to_name: flags = 0x%x\n", (unsigned int)ads
->config
.flags
));
1128 if (domain
->primary
&& (ads
->config
.flags
& NBT_SERVER_KDC
)) {
1129 if (ads_closest_dc(ads
)) {
1130 char *sitename
= sitename_fetch(ads
->config
.realm
);
1132 /* We're going to use this KDC for this realm/domain.
1133 If we are using sites, then force the krb5 libs
1136 create_local_private_krb5_conf_for_domain(domain
->alt_name
,
1142 SAFE_FREE(sitename
);
1144 /* use an off site KDC */
1145 create_local_private_krb5_conf_for_domain(domain
->alt_name
,
1151 winbindd_set_locator_kdc_envs(domain
);
1153 /* Ensure we contact this DC also. */
1154 saf_store( domain
->name
, name
);
1155 saf_store( domain
->alt_name
, name
);
1158 ads_destroy( &ads
);
1162 ads_destroy( &ads
);
1167 status
= nbt_getdc(winbind_messaging_context(), 10, pss
, domain
->name
,
1168 &domain
->sid
, nt_version
, mem_ctx
, &nt_version
,
1170 if (NT_STATUS_IS_OK(status
)) {
1171 fstrcpy(name
, dc_name
);
1172 namecache_store(name
, 0x20, 1, &ip_list
);
1176 /* try node status request */
1178 if ( name_status_find(domain
->name
, 0x1c, 0x20, pss
, name
) ) {
1179 namecache_store(name
, 0x20, 1, &ip_list
);
1185 /*******************************************************************
1186 Retrieve a list of IP addresses for domain controllers.
1188 The array is sorted in the preferred connection order.
1190 @param[in] mem_ctx talloc memory context to allocate from
1191 @param[in] domain domain to retrieve DCs for
1192 @param[out] dcs array of dcs that will be returned
1193 @param[out] num_dcs number of dcs returned in the dcs array
1195 *******************************************************************/
1197 static bool get_dcs(TALLOC_CTX
*mem_ctx
, struct winbindd_domain
*domain
,
1198 struct dc_name_ip
**dcs
, int *num_dcs
)
1201 struct sockaddr_storage ss
;
1202 struct ip_service
*ip_list
= NULL
;
1203 int iplist_size
= 0;
1206 enum security_types sec
= (enum security_types
)lp_security();
1208 is_our_domain
= strequal(domain
->name
, lp_workgroup());
1210 /* If not our domain, get the preferred DC, by asking our primary DC */
1212 && get_dc_name_via_netlogon(domain
, dcname
, &ss
)
1213 && add_one_dc_unique(mem_ctx
, domain
->name
, dcname
, &ss
, dcs
,
1216 char addr
[INET6_ADDRSTRLEN
];
1217 print_sockaddr(addr
, sizeof(addr
), &ss
);
1218 DEBUG(10, ("Retrieved DC %s at %s via netlogon\n",
1223 if (sec
== SEC_ADS
) {
1224 char *sitename
= NULL
;
1226 /* We need to make sure we know the local site before
1227 doing any DNS queries, as this will restrict the
1228 get_sorted_dc_list() call below to only fetching
1229 DNS records for the correct site. */
1231 /* Find any DC to get the site record.
1232 We deliberately don't care about the
1235 get_dc_name(domain
->name
, domain
->alt_name
, dcname
, &ss
);
1237 sitename
= sitename_fetch(domain
->alt_name
);
1240 /* Do the site-specific AD dns lookup first. */
1241 get_sorted_dc_list(domain
->alt_name
, sitename
, &ip_list
,
1242 &iplist_size
, True
);
1244 /* Add ips to the DC array. We don't look up the name
1245 of the DC in this function, but we fill in the char*
1246 of the ip now to make the failed connection cache
1248 for ( i
=0; i
<iplist_size
; i
++ ) {
1249 char addr
[INET6_ADDRSTRLEN
];
1250 print_sockaddr(addr
, sizeof(addr
),
1252 add_one_dc_unique(mem_ctx
,
1261 SAFE_FREE(sitename
);
1265 /* Now we add DCs from the main AD DNS lookup. */
1266 get_sorted_dc_list(domain
->alt_name
, NULL
, &ip_list
,
1267 &iplist_size
, True
);
1269 for ( i
=0; i
<iplist_size
; i
++ ) {
1270 char addr
[INET6_ADDRSTRLEN
];
1271 print_sockaddr(addr
, sizeof(addr
),
1273 add_one_dc_unique(mem_ctx
,
1285 /* Try standard netbios queries if no ADS */
1286 if (*num_dcs
== 0) {
1287 get_sorted_dc_list(domain
->name
, NULL
, &ip_list
, &iplist_size
,
1290 for ( i
=0; i
<iplist_size
; i
++ ) {
1291 char addr
[INET6_ADDRSTRLEN
];
1292 print_sockaddr(addr
, sizeof(addr
),
1294 add_one_dc_unique(mem_ctx
,
1309 /*******************************************************************
1310 Find and make a connection to a DC in the given domain.
1312 @param[in] mem_ctx talloc memory context to allocate from
1313 @param[in] domain domain to find a dc in
1314 @param[out] dcname NetBIOS or FQDN of DC that's connected to
1315 @param[out] pss DC Internet address and port
1316 @param[out] fd fd of the open socket connected to the newly found dc
1317 @return true when a DC connection is made, false otherwise
1318 *******************************************************************/
1320 static bool find_new_dc(TALLOC_CTX
*mem_ctx
,
1321 struct winbindd_domain
*domain
,
1322 fstring dcname
, struct sockaddr_storage
*pss
, int *fd
)
1324 struct dc_name_ip
*dcs
= NULL
;
1327 const char **dcnames
= NULL
;
1328 int num_dcnames
= 0;
1330 struct sockaddr_storage
*addrs
= NULL
;
1341 if (!get_dcs(mem_ctx
, domain
, &dcs
, &num_dcs
) || (num_dcs
== 0))
1344 for (i
=0; i
<num_dcs
; i
++) {
1346 if (!add_string_to_array(mem_ctx
, dcs
[i
].name
,
1347 &dcnames
, &num_dcnames
)) {
1350 if (!add_sockaddr_to_array(mem_ctx
, &dcs
[i
].ss
, TCP_SMB_PORT
,
1351 &addrs
, &num_addrs
)) {
1356 if ((num_dcnames
== 0) || (num_dcnames
!= num_addrs
))
1359 if ((addrs
== NULL
) || (dcnames
== NULL
))
1362 status
= smbsock_any_connect(addrs
, dcnames
, NULL
, NULL
, NULL
,
1363 num_addrs
, 0, 10, fd
, &fd_index
, NULL
);
1364 if (!NT_STATUS_IS_OK(status
)) {
1365 for (i
=0; i
<num_dcs
; i
++) {
1366 char ab
[INET6_ADDRSTRLEN
];
1367 print_sockaddr(ab
, sizeof(ab
), &dcs
[i
].ss
);
1368 DEBUG(10, ("find_new_dc: smbsock_any_connect failed for "
1369 "domain %s address %s. Error was %s\n",
1370 domain
->name
, ab
, nt_errstr(status
) ));
1371 winbind_add_failed_connection_entry(domain
,
1372 dcs
[i
].name
, NT_STATUS_UNSUCCESSFUL
);
1377 *pss
= addrs
[fd_index
];
1379 if (*dcnames
[fd_index
] != '\0' && !is_ipaddress(dcnames
[fd_index
])) {
1380 /* Ok, we've got a name for the DC */
1381 fstrcpy(dcname
, dcnames
[fd_index
]);
1385 /* Try to figure out the name */
1386 if (dcip_to_name(mem_ctx
, domain
, pss
, dcname
)) {
1390 /* We can not continue without the DC's name */
1391 winbind_add_failed_connection_entry(domain
, dcs
[fd_index
].name
,
1392 NT_STATUS_UNSUCCESSFUL
);
1394 /* Throw away all arrays as we're doing this again. */
1398 TALLOC_FREE(dcnames
);
1410 static char *current_dc_key(TALLOC_CTX
*mem_ctx
, const char *domain_name
)
1412 return talloc_asprintf_strupper_m(mem_ctx
, "CURRENT_DCNAME/%s",
1416 static void store_current_dc_in_gencache(const char *domain_name
,
1417 const char *dc_name
,
1418 struct cli_state
*cli
)
1420 char addr
[INET6_ADDRSTRLEN
];
1424 if (!cli_state_is_connected(cli
)) {
1428 print_sockaddr(addr
, sizeof(addr
),
1429 smbXcli_conn_remote_sockaddr(cli
->conn
));
1431 key
= current_dc_key(talloc_tos(), domain_name
);
1436 value
= talloc_asprintf(talloc_tos(), "%s %s", addr
, dc_name
);
1437 if (value
== NULL
) {
1441 gencache_set(key
, value
, 0x7fffffff);
1447 bool fetch_current_dc_from_gencache(TALLOC_CTX
*mem_ctx
,
1448 const char *domain_name
,
1449 char **p_dc_name
, char **p_dc_ip
)
1451 char *key
, *value
, *p
;
1453 char *dc_name
= NULL
;
1456 key
= current_dc_key(talloc_tos(), domain_name
);
1460 if (!gencache_get(key
, &value
, NULL
)) {
1463 p
= strchr(value
, ' ');
1467 dc_ip
= talloc_strndup(mem_ctx
, value
, p
- value
);
1468 if (dc_ip
== NULL
) {
1471 dc_name
= talloc_strdup(mem_ctx
, p
+1);
1472 if (dc_name
== NULL
) {
1476 if (p_dc_ip
!= NULL
) {
1480 if (p_dc_name
!= NULL
) {
1481 *p_dc_name
= dc_name
;
1486 TALLOC_FREE(dc_name
);
1492 static NTSTATUS
cm_open_connection(struct winbindd_domain
*domain
,
1493 struct winbindd_cm_conn
*new_conn
)
1495 TALLOC_CTX
*mem_ctx
;
1497 char *saf_servername
= saf_fetch( domain
->name
);
1500 if ((mem_ctx
= talloc_init("cm_open_connection")) == NULL
) {
1501 SAFE_FREE(saf_servername
);
1502 set_domain_offline(domain
);
1503 return NT_STATUS_NO_MEMORY
;
1506 /* we have to check the server affinity cache here since
1507 later we select a DC based on response time and not preference */
1509 /* Check the negative connection cache
1510 before talking to it. It going down may have
1511 triggered the reconnection. */
1513 if ( saf_servername
&& NT_STATUS_IS_OK(check_negative_conn_cache( domain
->name
, saf_servername
))) {
1515 DEBUG(10,("cm_open_connection: saf_servername is '%s' for domain %s\n",
1516 saf_servername
, domain
->name
));
1518 /* convert an ip address to a name */
1519 if (is_ipaddress( saf_servername
) ) {
1521 struct sockaddr_storage ss
;
1523 if (!interpret_string_addr(&ss
, saf_servername
,
1525 return NT_STATUS_UNSUCCESSFUL
;
1527 if (dcip_to_name(mem_ctx
, domain
, &ss
, saf_name
)) {
1528 strlcpy(domain
->dcname
, saf_name
, sizeof(domain
->dcname
));
1530 winbind_add_failed_connection_entry(
1531 domain
, saf_servername
,
1532 NT_STATUS_UNSUCCESSFUL
);
1535 fstrcpy( domain
->dcname
, saf_servername
);
1538 SAFE_FREE( saf_servername
);
1541 for (retries
= 0; retries
< 3; retries
++) {
1545 result
= NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND
;
1547 DEBUG(10,("cm_open_connection: dcname is '%s' for domain %s\n",
1548 domain
->dcname
, domain
->name
));
1551 && NT_STATUS_IS_OK(check_negative_conn_cache( domain
->name
, domain
->dcname
))
1552 && (resolve_name(domain
->dcname
, &domain
->dcaddr
, 0x20, true)))
1556 status
= smbsock_connect(&domain
->dcaddr
, 0,
1559 if (!NT_STATUS_IS_OK(status
)) {
1565 && !find_new_dc(mem_ctx
, domain
, domain
->dcname
, &domain
->dcaddr
, &fd
))
1567 /* This is the one place where we will
1568 set the global winbindd offline state
1569 to true, if a "WINBINDD_OFFLINE" entry
1570 is found in the winbindd cache. */
1571 set_global_winbindd_state_offline();
1575 new_conn
->cli
= NULL
;
1577 result
= cm_prepare_connection(domain
, fd
, domain
->dcname
,
1578 &new_conn
->cli
, &retry
);
1584 if (NT_STATUS_IS_OK(result
)) {
1586 winbindd_set_locator_kdc_envs(domain
);
1588 if (domain
->online
== False
) {
1589 /* We're changing state from offline to online. */
1590 set_global_winbindd_state_online();
1592 set_domain_online(domain
);
1595 * Much as I hate global state, this seems to be the point
1596 * where we can be certain that we have a proper connection to
1597 * a DC. wbinfo --dc-info needs that information, store it in
1598 * gencache with a looong timeout. This will need revisiting
1599 * once we start to connect to multiple DCs, wbcDcInfo is
1600 * already prepared for that.
1602 store_current_dc_in_gencache(domain
->name
, domain
->dcname
,
1605 /* Ensure we setup the retry handler. */
1606 set_domain_offline(domain
);
1609 talloc_destroy(mem_ctx
);
1613 /* Close down all open pipes on a connection. */
1615 void invalidate_cm_connection(struct winbindd_cm_conn
*conn
)
1619 /* We're closing down a possibly dead
1620 connection. Don't have impossibly long (10s) timeouts. */
1623 cli_set_timeout(conn
->cli
, 1000); /* 1 second. */
1626 if (conn
->samr_pipe
!= NULL
) {
1627 if (is_valid_policy_hnd(&conn
->sam_connect_handle
)) {
1628 dcerpc_samr_Close(conn
->samr_pipe
->binding_handle
,
1630 &conn
->sam_connect_handle
,
1633 TALLOC_FREE(conn
->samr_pipe
);
1634 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1636 cli_set_timeout(conn
->cli
, 500);
1640 if (conn
->lsa_pipe
!= NULL
) {
1641 if (is_valid_policy_hnd(&conn
->lsa_policy
)) {
1642 dcerpc_lsa_Close(conn
->lsa_pipe
->binding_handle
,
1647 TALLOC_FREE(conn
->lsa_pipe
);
1648 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1650 cli_set_timeout(conn
->cli
, 500);
1654 if (conn
->lsa_pipe_tcp
!= NULL
) {
1655 if (is_valid_policy_hnd(&conn
->lsa_policy
)) {
1656 dcerpc_lsa_Close(conn
->lsa_pipe_tcp
->binding_handle
,
1661 TALLOC_FREE(conn
->lsa_pipe_tcp
);
1662 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1664 cli_set_timeout(conn
->cli
, 500);
1668 if (conn
->netlogon_pipe
!= NULL
) {
1669 TALLOC_FREE(conn
->netlogon_pipe
);
1670 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1672 cli_set_timeout(conn
->cli
, 500);
1677 cli_shutdown(conn
->cli
);
1683 void close_conns_after_fork(void)
1685 struct winbindd_domain
*domain
;
1686 struct winbindd_cli_state
*cli_state
;
1688 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
1690 * first close the low level SMB TCP connection
1691 * so that we don't generate any SMBclose
1692 * requests in invalidate_cm_connection()
1694 if (cli_state_is_connected(domain
->conn
.cli
)) {
1695 smbXcli_conn_disconnect(domain
->conn
.cli
->conn
, NT_STATUS_OK
);
1698 invalidate_cm_connection(&domain
->conn
);
1701 for (cli_state
= winbindd_client_list();
1703 cli_state
= cli_state
->next
) {
1704 if (cli_state
->sock
>= 0) {
1705 close(cli_state
->sock
);
1706 cli_state
->sock
= -1;
1711 static bool connection_ok(struct winbindd_domain
*domain
)
1715 ok
= cli_state_is_connected(domain
->conn
.cli
);
1717 DEBUG(3, ("connection_ok: Connection to %s for domain %s is not connected\n",
1718 domain
->dcname
, domain
->name
));
1722 if (domain
->online
== False
) {
1723 DEBUG(3, ("connection_ok: Domain %s is offline\n", domain
->name
));
1730 /* Initialize a new connection up to the RPC BIND.
1731 Bypass online status check so always does network calls. */
1733 static NTSTATUS
init_dc_connection_network(struct winbindd_domain
*domain
)
1737 /* Internal connections never use the network. */
1738 if (domain
->internal
) {
1739 domain
->initialized
= True
;
1740 return NT_STATUS_OK
;
1743 if (!winbindd_can_contact_domain(domain
)) {
1744 invalidate_cm_connection(&domain
->conn
);
1745 domain
->initialized
= True
;
1746 return NT_STATUS_OK
;
1749 if (connection_ok(domain
)) {
1750 if (!domain
->initialized
) {
1751 set_dc_type_and_flags(domain
);
1753 return NT_STATUS_OK
;
1756 invalidate_cm_connection(&domain
->conn
);
1758 result
= cm_open_connection(domain
, &domain
->conn
);
1760 if (NT_STATUS_IS_OK(result
) && !domain
->initialized
) {
1761 set_dc_type_and_flags(domain
);
1767 NTSTATUS
init_dc_connection(struct winbindd_domain
*domain
)
1769 if (domain
->internal
) {
1770 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
1773 if (domain
->initialized
&& !domain
->online
) {
1774 /* We check for online status elsewhere. */
1775 return NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND
;
1778 return init_dc_connection_network(domain
);
1781 static NTSTATUS
init_dc_connection_rpc(struct winbindd_domain
*domain
)
1785 status
= init_dc_connection(domain
);
1786 if (!NT_STATUS_IS_OK(status
)) {
1790 if (!domain
->internal
&& domain
->conn
.cli
== NULL
) {
1791 /* happens for trusted domains without inbound trust */
1792 return NT_STATUS_TRUSTED_DOMAIN_FAILURE
;
1795 return NT_STATUS_OK
;
1798 /******************************************************************************
1799 Set the trust flags (direction and forest location) for a domain
1800 ******************************************************************************/
1802 static bool set_dc_type_and_flags_trustinfo( struct winbindd_domain
*domain
)
1804 struct winbindd_domain
*our_domain
;
1805 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
1807 struct netr_DomainTrustList trusts
;
1809 uint32 flags
= (NETR_TRUST_FLAG_IN_FOREST
|
1810 NETR_TRUST_FLAG_OUTBOUND
|
1811 NETR_TRUST_FLAG_INBOUND
);
1812 struct rpc_pipe_client
*cli
;
1813 TALLOC_CTX
*mem_ctx
= NULL
;
1814 struct dcerpc_binding_handle
*b
;
1816 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s\n", domain
->name
));
1818 /* Our primary domain doesn't need to worry about trust flags.
1819 Force it to go through the network setup */
1820 if ( domain
->primary
) {
1824 our_domain
= find_our_domain();
1826 if ( !connection_ok(our_domain
) ) {
1827 DEBUG(3,("set_dc_type_and_flags_trustinfo: No connection to our domain!\n"));
1831 /* This won't work unless our domain is AD */
1833 if ( !our_domain
->active_directory
) {
1837 /* Use DsEnumerateDomainTrusts to get us the trust direction
1840 result
= cm_connect_netlogon(our_domain
, &cli
);
1842 if (!NT_STATUS_IS_OK(result
)) {
1843 DEBUG(5, ("set_dc_type_and_flags_trustinfo: Could not open "
1844 "a connection to %s for PIPE_NETLOGON (%s)\n",
1845 domain
->name
, nt_errstr(result
)));
1849 b
= cli
->binding_handle
;
1851 if ( (mem_ctx
= talloc_init("set_dc_type_and_flags_trustinfo")) == NULL
) {
1852 DEBUG(0,("set_dc_type_and_flags_trustinfo: talloc_init() failed!\n"));
1856 result
= dcerpc_netr_DsrEnumerateDomainTrusts(b
, mem_ctx
,
1861 if (!NT_STATUS_IS_OK(result
)) {
1862 DEBUG(0,("set_dc_type_and_flags_trustinfo: "
1863 "failed to query trusted domain list: %s\n",
1864 nt_errstr(result
)));
1865 talloc_destroy(mem_ctx
);
1868 if (!W_ERROR_IS_OK(werr
)) {
1869 DEBUG(0,("set_dc_type_and_flags_trustinfo: "
1870 "failed to query trusted domain list: %s\n",
1872 talloc_destroy(mem_ctx
);
1876 /* Now find the domain name and get the flags */
1878 for ( i
=0; i
<trusts
.count
; i
++ ) {
1879 if ( strequal( domain
->name
, trusts
.array
[i
].netbios_name
) ) {
1880 domain
->domain_flags
= trusts
.array
[i
].trust_flags
;
1881 domain
->domain_type
= trusts
.array
[i
].trust_type
;
1882 domain
->domain_trust_attribs
= trusts
.array
[i
].trust_attributes
;
1884 if ( domain
->domain_type
== NETR_TRUST_TYPE_UPLEVEL
)
1885 domain
->active_directory
= True
;
1887 /* This flag is only set if the domain is *our*
1888 primary domain and the primary domain is in
1891 domain
->native_mode
= (domain
->domain_flags
& NETR_TRUST_FLAG_NATIVE
);
1893 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s is %sin "
1894 "native mode.\n", domain
->name
,
1895 domain
->native_mode
? "" : "NOT "));
1897 DEBUG(5,("set_dc_type_and_flags_trustinfo: domain %s is %s"
1898 "running active directory.\n", domain
->name
,
1899 domain
->active_directory
? "" : "NOT "));
1901 domain
->can_do_ncacn_ip_tcp
= domain
->active_directory
;
1902 domain
->can_do_validation6
= domain
->active_directory
;
1904 domain
->initialized
= True
;
1910 talloc_destroy( mem_ctx
);
1912 return domain
->initialized
;
1915 /******************************************************************************
1916 We can 'sense' certain things about the DC by it's replies to certain
1919 This tells us if this particular remote server is Active Directory, and if it
1921 ******************************************************************************/
1923 static void set_dc_type_and_flags_connect( struct winbindd_domain
*domain
)
1925 NTSTATUS status
, result
;
1927 TALLOC_CTX
*mem_ctx
= NULL
;
1928 struct rpc_pipe_client
*cli
= NULL
;
1929 struct policy_handle pol
;
1930 union dssetup_DsRoleInfo info
;
1931 union lsa_PolicyInformation
*lsa_info
= NULL
;
1933 if (!connection_ok(domain
)) {
1937 mem_ctx
= talloc_init("set_dc_type_and_flags on domain %s\n",
1940 DEBUG(1, ("set_dc_type_and_flags_connect: talloc_init() failed\n"));
1944 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s\n", domain
->name
));
1946 status
= cli_rpc_pipe_open_noauth(domain
->conn
.cli
,
1947 &ndr_table_dssetup
.syntax_id
,
1950 if (!NT_STATUS_IS_OK(status
)) {
1951 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
1952 "PI_DSSETUP on domain %s: (%s)\n",
1953 domain
->name
, nt_errstr(status
)));
1955 /* if this is just a non-AD domain we need to continue
1956 * identifying so that we can in the end return with
1957 * domain->initialized = True - gd */
1962 status
= dcerpc_dssetup_DsRoleGetPrimaryDomainInformation(cli
->binding_handle
, mem_ctx
,
1963 DS_ROLE_BASIC_INFORMATION
,
1968 if (NT_STATUS_IS_OK(status
)) {
1969 result
= werror_to_ntstatus(werr
);
1971 if (!NT_STATUS_IS_OK(status
)) {
1972 DEBUG(5, ("set_dc_type_and_flags_connect: rpccli_ds_getprimarydominfo "
1973 "on domain %s failed: (%s)\n",
1974 domain
->name
, nt_errstr(status
)));
1976 /* older samba3 DCs will return DCERPC_FAULT_OP_RNG_ERROR for
1977 * every opcode on the DSSETUP pipe, continue with
1978 * no_dssetup mode here as well to get domain->initialized
1981 if (NT_STATUS_EQUAL(status
, NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE
)) {
1985 TALLOC_FREE(mem_ctx
);
1989 if ((info
.basic
.flags
& DS_ROLE_PRIMARY_DS_RUNNING
) &&
1990 !(info
.basic
.flags
& DS_ROLE_PRIMARY_DS_MIXED_MODE
)) {
1991 domain
->native_mode
= True
;
1993 domain
->native_mode
= False
;
1997 status
= cli_rpc_pipe_open_noauth(domain
->conn
.cli
,
1998 &ndr_table_lsarpc
.syntax_id
, &cli
);
2000 if (!NT_STATUS_IS_OK(status
)) {
2001 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
2002 "PI_LSARPC on domain %s: (%s)\n",
2003 domain
->name
, nt_errstr(status
)));
2005 TALLOC_FREE(mem_ctx
);
2009 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
,
2010 SEC_FLAG_MAXIMUM_ALLOWED
, &pol
);
2012 if (NT_STATUS_IS_OK(status
)) {
2013 /* This particular query is exactly what Win2k clients use
2014 to determine that the DC is active directory */
2015 status
= dcerpc_lsa_QueryInfoPolicy2(cli
->binding_handle
, mem_ctx
,
2017 LSA_POLICY_INFO_DNS
,
2022 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(result
)) {
2023 domain
->active_directory
= True
;
2025 if (lsa_info
->dns
.name
.string
) {
2026 fstrcpy(domain
->name
, lsa_info
->dns
.name
.string
);
2029 if (lsa_info
->dns
.dns_domain
.string
) {
2030 fstrcpy(domain
->alt_name
,
2031 lsa_info
->dns
.dns_domain
.string
);
2034 /* See if we can set some domain trust flags about
2037 if (lsa_info
->dns
.dns_forest
.string
) {
2038 fstrcpy(domain
->forest_name
,
2039 lsa_info
->dns
.dns_forest
.string
);
2041 if (strequal(domain
->forest_name
, domain
->alt_name
)) {
2042 domain
->domain_flags
|= NETR_TRUST_FLAG_TREEROOT
;
2046 if (lsa_info
->dns
.sid
) {
2047 sid_copy(&domain
->sid
, lsa_info
->dns
.sid
);
2050 domain
->active_directory
= False
;
2052 status
= rpccli_lsa_open_policy(cli
, mem_ctx
, True
,
2053 SEC_FLAG_MAXIMUM_ALLOWED
,
2056 if (!NT_STATUS_IS_OK(status
)) {
2060 status
= dcerpc_lsa_QueryInfoPolicy(cli
->binding_handle
, mem_ctx
,
2062 LSA_POLICY_INFO_ACCOUNT_DOMAIN
,
2065 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(result
)) {
2067 if (lsa_info
->account_domain
.name
.string
) {
2068 fstrcpy(domain
->name
,
2069 lsa_info
->account_domain
.name
.string
);
2072 if (lsa_info
->account_domain
.sid
) {
2073 sid_copy(&domain
->sid
, lsa_info
->account_domain
.sid
);
2079 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s is %sin native mode.\n",
2080 domain
->name
, domain
->native_mode
? "" : "NOT "));
2082 DEBUG(5,("set_dc_type_and_flags_connect: domain %s is %srunning active directory.\n",
2083 domain
->name
, domain
->active_directory
? "" : "NOT "));
2085 domain
->can_do_ncacn_ip_tcp
= domain
->active_directory
;
2086 domain
->can_do_validation6
= domain
->active_directory
;
2090 TALLOC_FREE(mem_ctx
);
2092 domain
->initialized
= True
;
2095 /**********************************************************************
2096 Set the domain_flags (trust attributes, domain operating modes, etc...
2097 ***********************************************************************/
2099 static void set_dc_type_and_flags( struct winbindd_domain
*domain
)
2101 /* we always have to contact our primary domain */
2103 if ( domain
->primary
) {
2104 DEBUG(10,("set_dc_type_and_flags: setting up flags for "
2105 "primary domain\n"));
2106 set_dc_type_and_flags_connect( domain
);
2110 /* Use our DC to get the information if possible */
2112 if ( !set_dc_type_and_flags_trustinfo( domain
) ) {
2113 /* Otherwise, fallback to contacting the
2115 set_dc_type_and_flags_connect( domain
);
2123 /**********************************************************************
2124 ***********************************************************************/
2126 static NTSTATUS
cm_get_schannel_creds(struct winbindd_domain
*domain
,
2127 struct netlogon_creds_CredentialState
**ppdc
)
2129 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
2130 struct rpc_pipe_client
*netlogon_pipe
;
2132 if (lp_client_schannel() == False
) {
2133 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
2136 result
= cm_connect_netlogon(domain
, &netlogon_pipe
);
2137 if (!NT_STATUS_IS_OK(result
)) {
2141 /* Return a pointer to the struct netlogon_creds_CredentialState from the
2144 if (!domain
->conn
.netlogon_pipe
->dc
) {
2145 return NT_STATUS_INTERNAL_ERROR
; /* This shouldn't happen. */
2148 *ppdc
= domain
->conn
.netlogon_pipe
->dc
;
2149 return NT_STATUS_OK
;
2152 NTSTATUS
cm_connect_sam(struct winbindd_domain
*domain
, TALLOC_CTX
*mem_ctx
,
2153 struct rpc_pipe_client
**cli
, struct policy_handle
*sam_handle
)
2155 struct winbindd_cm_conn
*conn
;
2156 NTSTATUS status
, result
;
2157 struct netlogon_creds_CredentialState
*p_creds
;
2158 char *machine_password
= NULL
;
2159 char *machine_account
= NULL
;
2160 char *domain_name
= NULL
;
2162 if (sid_check_is_domain(&domain
->sid
)) {
2163 return open_internal_samr_conn(mem_ctx
, domain
, cli
, sam_handle
);
2166 status
= init_dc_connection_rpc(domain
);
2167 if (!NT_STATUS_IS_OK(status
)) {
2171 conn
= &domain
->conn
;
2173 if (rpccli_is_connected(conn
->samr_pipe
)) {
2177 TALLOC_FREE(conn
->samr_pipe
);
2180 * No SAMR pipe yet. Attempt to get an NTLMSSP SPNEGO authenticated
2181 * sign and sealed pipe using the machine account password by
2182 * preference. If we can't - try schannel, if that fails, try
2186 if ((conn
->cli
->user_name
[0] == '\0') ||
2187 (conn
->cli
->domain
[0] == '\0') ||
2188 (conn
->cli
->password
== NULL
|| conn
->cli
->password
[0] == '\0'))
2190 status
= get_trust_creds(domain
, &machine_password
,
2191 &machine_account
, NULL
);
2192 if (!NT_STATUS_IS_OK(status
)) {
2193 DEBUG(10, ("cm_connect_sam: No no user available for "
2194 "domain %s, trying schannel\n", conn
->cli
->domain
));
2197 domain_name
= domain
->name
;
2199 machine_password
= SMB_STRDUP(conn
->cli
->password
);
2200 machine_account
= SMB_STRDUP(conn
->cli
->user_name
);
2201 domain_name
= conn
->cli
->domain
;
2204 if (!machine_password
|| !machine_account
) {
2205 status
= NT_STATUS_NO_MEMORY
;
2209 /* We have an authenticated connection. Use a NTLMSSP SPNEGO
2210 authenticated SAMR pipe with sign & seal. */
2211 status
= cli_rpc_pipe_open_spnego(conn
->cli
,
2215 DCERPC_AUTH_LEVEL_PRIVACY
,
2216 smbXcli_conn_remote_name(conn
->cli
->conn
),
2222 if (!NT_STATUS_IS_OK(status
)) {
2223 DEBUG(10,("cm_connect_sam: failed to connect to SAMR "
2224 "pipe for domain %s using NTLMSSP "
2225 "authenticated pipe: user %s\\%s. Error was "
2226 "%s\n", domain
->name
, domain_name
,
2227 machine_account
, nt_errstr(status
)));
2231 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for "
2232 "domain %s using NTLMSSP authenticated "
2233 "pipe: user %s\\%s\n", domain
->name
,
2234 domain_name
, machine_account
));
2236 status
= dcerpc_samr_Connect2(conn
->samr_pipe
->binding_handle
, mem_ctx
,
2237 conn
->samr_pipe
->desthost
,
2238 SEC_FLAG_MAXIMUM_ALLOWED
,
2239 &conn
->sam_connect_handle
,
2241 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(result
)) {
2244 if (NT_STATUS_IS_OK(status
)) {
2248 DEBUG(10,("cm_connect_sam: ntlmssp-sealed dcerpc_samr_Connect2 "
2249 "failed for domain %s, error was %s. Trying schannel\n",
2250 domain
->name
, nt_errstr(status
) ));
2251 TALLOC_FREE(conn
->samr_pipe
);
2255 /* Fall back to schannel if it's a W2K pre-SP1 box. */
2257 status
= cm_get_schannel_creds(domain
, &p_creds
);
2258 if (!NT_STATUS_IS_OK(status
)) {
2259 /* If this call fails - conn->cli can now be NULL ! */
2260 DEBUG(10, ("cm_connect_sam: Could not get schannel auth info "
2261 "for domain %s (error %s), trying anon\n",
2263 nt_errstr(status
) ));
2266 status
= cli_rpc_pipe_open_schannel_with_key
2267 (conn
->cli
, &ndr_table_samr
.syntax_id
, NCACN_NP
,
2268 DCERPC_AUTH_LEVEL_PRIVACY
,
2269 domain
->name
, &p_creds
, &conn
->samr_pipe
);
2271 if (!NT_STATUS_IS_OK(status
)) {
2272 DEBUG(10,("cm_connect_sam: failed to connect to SAMR pipe for "
2273 "domain %s using schannel. Error was %s\n",
2274 domain
->name
, nt_errstr(status
) ));
2277 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for domain %s using "
2278 "schannel.\n", domain
->name
));
2280 status
= dcerpc_samr_Connect2(conn
->samr_pipe
->binding_handle
, mem_ctx
,
2281 conn
->samr_pipe
->desthost
,
2282 SEC_FLAG_MAXIMUM_ALLOWED
,
2283 &conn
->sam_connect_handle
,
2285 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(result
)) {
2288 if (NT_STATUS_IS_OK(status
)) {
2291 DEBUG(10,("cm_connect_sam: schannel-sealed dcerpc_samr_Connect2 failed "
2292 "for domain %s, error was %s. Trying anonymous\n",
2293 domain
->name
, nt_errstr(status
) ));
2294 TALLOC_FREE(conn
->samr_pipe
);
2298 /* Finally fall back to anonymous. */
2299 status
= cli_rpc_pipe_open_noauth(conn
->cli
, &ndr_table_samr
.syntax_id
,
2302 if (!NT_STATUS_IS_OK(status
)) {
2306 status
= dcerpc_samr_Connect2(conn
->samr_pipe
->binding_handle
, mem_ctx
,
2307 conn
->samr_pipe
->desthost
,
2308 SEC_FLAG_MAXIMUM_ALLOWED
,
2309 &conn
->sam_connect_handle
,
2311 if (!NT_STATUS_IS_OK(status
)) {
2312 DEBUG(10,("cm_connect_sam: rpccli_samr_Connect2 failed "
2313 "for domain %s Error was %s\n",
2314 domain
->name
, nt_errstr(status
) ));
2317 if (!NT_STATUS_IS_OK(result
)) {
2319 DEBUG(10,("cm_connect_sam: dcerpc_samr_Connect2 failed "
2320 "for domain %s Error was %s\n",
2321 domain
->name
, nt_errstr(result
)));
2326 status
= dcerpc_samr_OpenDomain(conn
->samr_pipe
->binding_handle
,
2328 &conn
->sam_connect_handle
,
2329 SEC_FLAG_MAXIMUM_ALLOWED
,
2331 &conn
->sam_domain_handle
,
2333 if (!NT_STATUS_IS_OK(status
)) {
2340 if (NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
2342 * if we got access denied, we might just have no access rights
2343 * to talk to the remote samr server server (e.g. when we are a
2344 * PDC and we are connecting a w2k8 pdc via an interdomain
2345 * trust). In that case do not invalidate the whole connection
2348 TALLOC_FREE(conn
->samr_pipe
);
2349 ZERO_STRUCT(conn
->sam_domain_handle
);
2351 } else if (!NT_STATUS_IS_OK(status
)) {
2352 invalidate_cm_connection(conn
);
2356 *cli
= conn
->samr_pipe
;
2357 *sam_handle
= conn
->sam_domain_handle
;
2358 SAFE_FREE(machine_password
);
2359 SAFE_FREE(machine_account
);
2363 /**********************************************************************
2364 open an schanneld ncacn_ip_tcp connection to LSA
2365 ***********************************************************************/
2367 NTSTATUS
cm_connect_lsa_tcp(struct winbindd_domain
*domain
,
2368 TALLOC_CTX
*mem_ctx
,
2369 struct rpc_pipe_client
**cli
)
2371 struct winbindd_cm_conn
*conn
;
2372 struct netlogon_creds_CredentialState
*creds
;
2375 DEBUG(10,("cm_connect_lsa_tcp\n"));
2377 status
= init_dc_connection_rpc(domain
);
2378 if (!NT_STATUS_IS_OK(status
)) {
2382 conn
= &domain
->conn
;
2384 if (conn
->lsa_pipe_tcp
&&
2385 conn
->lsa_pipe_tcp
->transport
->transport
== NCACN_IP_TCP
&&
2386 conn
->lsa_pipe_tcp
->auth
->auth_level
== DCERPC_AUTH_LEVEL_PRIVACY
&&
2387 rpccli_is_connected(conn
->lsa_pipe_tcp
)) {
2391 TALLOC_FREE(conn
->lsa_pipe_tcp
);
2393 status
= cm_get_schannel_creds(domain
, &creds
);
2394 if (!NT_STATUS_IS_OK(status
)) {
2398 status
= cli_rpc_pipe_open_schannel_with_key(conn
->cli
,
2399 &ndr_table_lsarpc
.syntax_id
,
2401 DCERPC_AUTH_LEVEL_PRIVACY
,
2404 &conn
->lsa_pipe_tcp
);
2405 if (!NT_STATUS_IS_OK(status
)) {
2406 DEBUG(10,("cli_rpc_pipe_open_schannel_with_key failed: %s\n",
2407 nt_errstr(status
)));
2412 if (!NT_STATUS_IS_OK(status
)) {
2413 TALLOC_FREE(conn
->lsa_pipe_tcp
);
2417 *cli
= conn
->lsa_pipe_tcp
;
2422 NTSTATUS
cm_connect_lsa(struct winbindd_domain
*domain
, TALLOC_CTX
*mem_ctx
,
2423 struct rpc_pipe_client
**cli
, struct policy_handle
*lsa_policy
)
2425 struct winbindd_cm_conn
*conn
;
2426 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
2427 struct netlogon_creds_CredentialState
*p_creds
;
2429 result
= init_dc_connection_rpc(domain
);
2430 if (!NT_STATUS_IS_OK(result
))
2433 conn
= &domain
->conn
;
2435 if (rpccli_is_connected(conn
->lsa_pipe
)) {
2439 TALLOC_FREE(conn
->lsa_pipe
);
2441 if ((conn
->cli
->user_name
[0] == '\0') ||
2442 (conn
->cli
->domain
[0] == '\0') ||
2443 (conn
->cli
->password
== NULL
|| conn
->cli
->password
[0] == '\0')) {
2444 DEBUG(10, ("cm_connect_lsa: No no user available for "
2445 "domain %s, trying schannel\n", conn
->cli
->domain
));
2449 /* We have an authenticated connection. Use a NTLMSSP SPNEGO
2450 * authenticated LSA pipe with sign & seal. */
2451 result
= cli_rpc_pipe_open_spnego
2452 (conn
->cli
, &ndr_table_lsarpc
, NCACN_NP
,
2454 DCERPC_AUTH_LEVEL_PRIVACY
,
2455 smbXcli_conn_remote_name(conn
->cli
->conn
),
2456 conn
->cli
->domain
, conn
->cli
->user_name
, conn
->cli
->password
,
2459 if (!NT_STATUS_IS_OK(result
)) {
2460 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
2461 "domain %s using NTLMSSP authenticated pipe: user "
2462 "%s\\%s. Error was %s. Trying schannel.\n",
2463 domain
->name
, conn
->cli
->domain
,
2464 conn
->cli
->user_name
, nt_errstr(result
)));
2468 DEBUG(10,("cm_connect_lsa: connected to LSA pipe for domain %s using "
2469 "NTLMSSP authenticated pipe: user %s\\%s\n",
2470 domain
->name
, conn
->cli
->domain
, conn
->cli
->user_name
));
2472 result
= rpccli_lsa_open_policy(conn
->lsa_pipe
, mem_ctx
, True
,
2473 SEC_FLAG_MAXIMUM_ALLOWED
,
2475 if (NT_STATUS_IS_OK(result
)) {
2479 DEBUG(10,("cm_connect_lsa: rpccli_lsa_open_policy failed, trying "
2482 TALLOC_FREE(conn
->lsa_pipe
);
2486 /* Fall back to schannel if it's a W2K pre-SP1 box. */
2488 result
= cm_get_schannel_creds(domain
, &p_creds
);
2489 if (!NT_STATUS_IS_OK(result
)) {
2490 /* If this call fails - conn->cli can now be NULL ! */
2491 DEBUG(10, ("cm_connect_lsa: Could not get schannel auth info "
2492 "for domain %s (error %s), trying anon\n",
2494 nt_errstr(result
) ));
2497 result
= cli_rpc_pipe_open_schannel_with_key
2498 (conn
->cli
, &ndr_table_lsarpc
.syntax_id
, NCACN_NP
,
2499 DCERPC_AUTH_LEVEL_PRIVACY
,
2500 domain
->name
, &p_creds
, &conn
->lsa_pipe
);
2502 if (!NT_STATUS_IS_OK(result
)) {
2503 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
2504 "domain %s using schannel. Error was %s\n",
2505 domain
->name
, nt_errstr(result
) ));
2508 DEBUG(10,("cm_connect_lsa: connected to LSA pipe for domain %s using "
2509 "schannel.\n", domain
->name
));
2511 result
= rpccli_lsa_open_policy(conn
->lsa_pipe
, mem_ctx
, True
,
2512 SEC_FLAG_MAXIMUM_ALLOWED
,
2514 if (NT_STATUS_IS_OK(result
)) {
2518 DEBUG(10,("cm_connect_lsa: rpccli_lsa_open_policy failed, trying "
2521 TALLOC_FREE(conn
->lsa_pipe
);
2525 result
= cli_rpc_pipe_open_noauth(conn
->cli
,
2526 &ndr_table_lsarpc
.syntax_id
,
2528 if (!NT_STATUS_IS_OK(result
)) {
2529 result
= NT_STATUS_PIPE_NOT_AVAILABLE
;
2533 result
= rpccli_lsa_open_policy(conn
->lsa_pipe
, mem_ctx
, True
,
2534 SEC_FLAG_MAXIMUM_ALLOWED
,
2537 if (!NT_STATUS_IS_OK(result
)) {
2538 invalidate_cm_connection(conn
);
2542 *cli
= conn
->lsa_pipe
;
2543 *lsa_policy
= conn
->lsa_policy
;
2547 /****************************************************************************
2548 Open the netlogon pipe to this DC. Use schannel if specified in client conf.
2549 session key stored in conn->netlogon_pipe->dc->sess_key.
2550 ****************************************************************************/
2552 NTSTATUS
cm_connect_netlogon(struct winbindd_domain
*domain
,
2553 struct rpc_pipe_client
**cli
)
2555 struct winbindd_cm_conn
*conn
;
2558 uint32_t neg_flags
= NETLOGON_NEG_AUTH2_ADS_FLAGS
;
2560 enum netr_SchannelType sec_chan_type
;
2561 const char *account_name
;
2562 struct rpc_pipe_client
*netlogon_pipe
= NULL
;
2566 result
= init_dc_connection_rpc(domain
);
2567 if (!NT_STATUS_IS_OK(result
)) {
2571 conn
= &domain
->conn
;
2573 if (rpccli_is_connected(conn
->netlogon_pipe
)) {
2574 *cli
= conn
->netlogon_pipe
;
2575 return NT_STATUS_OK
;
2578 TALLOC_FREE(conn
->netlogon_pipe
);
2580 result
= cli_rpc_pipe_open_noauth(conn
->cli
,
2581 &ndr_table_netlogon
.syntax_id
,
2583 if (!NT_STATUS_IS_OK(result
)) {
2587 if ((!IS_DC
) && (!domain
->primary
)) {
2588 /* Clear the schannel request bit and drop down */
2589 neg_flags
&= ~NETLOGON_NEG_SCHANNEL
;
2593 if (lp_client_schannel() != False
) {
2594 neg_flags
|= NETLOGON_NEG_SCHANNEL
;
2597 if (!get_trust_pw_hash(domain
->name
, mach_pwd
, &account_name
,
2600 TALLOC_FREE(netlogon_pipe
);
2601 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
2604 result
= rpccli_netlogon_setup_creds(
2606 domain
->dcname
, /* server name. */
2607 domain
->name
, /* domain name */
2608 lp_netbios_name(), /* client name */
2609 account_name
, /* machine account */
2610 mach_pwd
, /* machine password */
2611 sec_chan_type
, /* from get_trust_pw */
2614 if (!NT_STATUS_IS_OK(result
)) {
2615 TALLOC_FREE(netlogon_pipe
);
2619 if ((lp_client_schannel() == True
) &&
2620 ((neg_flags
& NETLOGON_NEG_SCHANNEL
) == 0)) {
2621 DEBUG(3, ("Server did not offer schannel\n"));
2622 TALLOC_FREE(netlogon_pipe
);
2623 return NT_STATUS_ACCESS_DENIED
;
2627 if ((lp_client_schannel() == False
) ||
2628 ((neg_flags
& NETLOGON_NEG_SCHANNEL
) == 0)) {
2630 * NetSamLogonEx only works for schannel
2632 domain
->can_do_samlogon_ex
= False
;
2634 /* We're done - just keep the existing connection to NETLOGON
2636 conn
->netlogon_pipe
= netlogon_pipe
;
2637 *cli
= conn
->netlogon_pipe
;
2638 return NT_STATUS_OK
;
2641 /* Using the credentials from the first pipe, open a signed and sealed
2642 second netlogon pipe. The session key is stored in the schannel
2643 part of the new pipe auth struct.
2646 result
= cli_rpc_pipe_open_schannel_with_key(
2647 conn
->cli
, &ndr_table_netlogon
.syntax_id
, NCACN_NP
,
2648 DCERPC_AUTH_LEVEL_PRIVACY
, domain
->name
, &netlogon_pipe
->dc
,
2649 &conn
->netlogon_pipe
);
2651 /* We can now close the initial netlogon pipe. */
2652 TALLOC_FREE(netlogon_pipe
);
2654 if (!NT_STATUS_IS_OK(result
)) {
2655 DEBUG(3, ("Could not open schannel'ed NETLOGON pipe. Error "
2656 "was %s\n", nt_errstr(result
)));
2658 invalidate_cm_connection(conn
);
2663 * Always try netr_LogonSamLogonEx. We will fall back for NT4
2664 * which gives DCERPC_FAULT_OP_RNG_ERROR (function not
2665 * supported). We used to only try SamLogonEx for AD, but
2666 * Samba DCs can also do it. And because we don't distinguish
2667 * between Samba and NT4, always try it once.
2669 domain
->can_do_samlogon_ex
= true;
2671 *cli
= conn
->netlogon_pipe
;
2672 return NT_STATUS_OK
;
2675 void winbind_msg_ip_dropped(struct messaging_context
*msg_ctx
,
2678 struct server_id server_id
,
2681 struct winbindd_domain
*domain
;
2682 char *freeit
= NULL
;
2686 || (data
->data
== NULL
)
2687 || (data
->length
== 0)
2688 || (data
->data
[data
->length
-1] != '\0')) {
2689 DEBUG(1, ("invalid msg_ip_dropped message: not a valid "
2694 addr
= (char *)data
->data
;
2695 DEBUG(10, ("IP %s dropped\n", addr
));
2697 if (!is_ipaddress(addr
)) {
2700 * Some code sends us ip addresses with the /netmask
2703 slash
= strchr(addr
, '/');
2704 if (slash
== NULL
) {
2705 DEBUG(1, ("invalid msg_ip_dropped message: %s",
2709 freeit
= talloc_strndup(talloc_tos(), addr
, slash
-addr
);
2710 if (freeit
== NULL
) {
2711 DEBUG(1, ("talloc failed\n"));
2715 DEBUG(10, ("Stripped /netmask to IP %s\n", addr
));
2718 for (domain
= domain_list(); domain
!= NULL
; domain
= domain
->next
) {
2719 char sockaddr
[INET6_ADDRSTRLEN
];
2721 if (!cli_state_is_connected(domain
->conn
.cli
)) {
2725 print_sockaddr(sockaddr
, sizeof(sockaddr
),
2726 smbXcli_conn_local_sockaddr(domain
->conn
.cli
->conn
));
2728 if (strequal(sockaddr
, addr
)) {
2729 smbXcli_conn_disconnect(domain
->conn
.cli
->conn
, NT_STATUS_OK
);
2732 TALLOC_FREE(freeit
);