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 "lib/param/loadparm.h"
84 #define DBGC_CLASS DBGC_WINBIND
88 struct sockaddr_storage ss
;
91 extern struct winbindd_methods reconnect_methods
;
92 extern bool override_logfile
;
94 static NTSTATUS
init_dc_connection_network(struct winbindd_domain
*domain
);
95 static void set_dc_type_and_flags( struct winbindd_domain
*domain
);
96 static bool get_dcs(TALLOC_CTX
*mem_ctx
, struct winbindd_domain
*domain
,
97 struct dc_name_ip
**dcs
, int *num_dcs
);
99 /****************************************************************
100 Child failed to find DC's. Reschedule check.
101 ****************************************************************/
103 static void msg_failed_to_go_online(struct messaging_context
*msg
,
106 struct server_id server_id
,
109 struct winbindd_domain
*domain
;
110 const char *domainname
= (const char *)data
->data
;
112 if (data
->data
== NULL
|| data
->length
== 0) {
116 DEBUG(5,("msg_fail_to_go_online: received for domain %s.\n", domainname
));
118 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
119 if (domain
->internal
) {
123 if (strequal(domain
->name
, domainname
)) {
124 if (domain
->online
) {
125 /* We're already online, ignore. */
126 DEBUG(5,("msg_fail_to_go_online: domain %s "
127 "already online.\n", domainname
));
131 /* Reschedule the online check. */
132 set_domain_offline(domain
);
138 /****************************************************************
139 Actually cause a reconnect from a message.
140 ****************************************************************/
142 static void msg_try_to_go_online(struct messaging_context
*msg
,
145 struct server_id server_id
,
148 struct winbindd_domain
*domain
;
149 const char *domainname
= (const char *)data
->data
;
151 if (data
->data
== NULL
|| data
->length
== 0) {
155 DEBUG(5,("msg_try_to_go_online: received for domain %s.\n", domainname
));
157 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
158 if (domain
->internal
) {
162 if (strequal(domain
->name
, domainname
)) {
164 if (domain
->online
) {
165 /* We're already online, ignore. */
166 DEBUG(5,("msg_try_to_go_online: domain %s "
167 "already online.\n", domainname
));
171 /* This call takes care of setting the online
172 flag to true if we connected, or re-adding
173 the offline handler if false. Bypasses online
174 check so always does network calls. */
176 init_dc_connection_network(domain
);
182 /****************************************************************
183 Fork a child to try and contact a DC. Do this as contacting a
184 DC requires blocking lookups and we don't want to block our
186 ****************************************************************/
188 static bool fork_child_dc_connect(struct winbindd_domain
*domain
)
190 struct dc_name_ip
*dcs
= NULL
;
192 TALLOC_CTX
*mem_ctx
= NULL
;
193 pid_t parent_pid
= getpid();
197 if (domain
->dc_probe_pid
!= (pid_t
)-1) {
199 * We might already have a DC probe
200 * child working, check.
202 if (process_exists_by_pid(domain
->dc_probe_pid
)) {
203 DEBUG(10,("fork_child_dc_connect: pid %u already "
204 "checking for DC's.\n",
205 (unsigned int)domain
->dc_probe_pid
));
208 domain
->dc_probe_pid
= (pid_t
)-1;
211 domain
->dc_probe_pid
= fork();
213 if (domain
->dc_probe_pid
== (pid_t
)-1) {
214 DEBUG(0, ("fork_child_dc_connect: Could not fork: %s\n", strerror(errno
)));
218 if (domain
->dc_probe_pid
!= (pid_t
)0) {
220 messaging_register(winbind_messaging_context(), NULL
,
221 MSG_WINBIND_TRY_TO_GO_ONLINE
,
222 msg_try_to_go_online
);
223 messaging_register(winbind_messaging_context(), NULL
,
224 MSG_WINBIND_FAILED_TO_GO_ONLINE
,
225 msg_failed_to_go_online
);
231 /* Leave messages blocked - we will never process one. */
233 if (!override_logfile
) {
234 if (asprintf(&lfile
, "%s/log.winbindd-dc-connect", get_dyn_LOGFILEBASE()) == -1) {
235 DEBUG(0, ("fork_child_dc_connect: out of memory.\n"));
240 status
= winbindd_reinit_after_fork(NULL
, lfile
);
241 if (!NT_STATUS_IS_OK(status
)) {
242 DEBUG(1, ("winbindd_reinit_after_fork failed: %s\n",
244 messaging_send_buf(winbind_messaging_context(),
245 pid_to_procid(parent_pid
),
246 MSG_WINBIND_FAILED_TO_GO_ONLINE
,
247 (const uint8_t *)domain
->name
,
248 strlen(domain
->name
)+1);
253 mem_ctx
= talloc_init("fork_child_dc_connect");
255 DEBUG(0,("talloc_init failed.\n"));
256 messaging_send_buf(winbind_messaging_context(),
257 pid_to_procid(parent_pid
),
258 MSG_WINBIND_FAILED_TO_GO_ONLINE
,
259 (const uint8_t *)domain
->name
,
260 strlen(domain
->name
)+1);
264 if ((!get_dcs(mem_ctx
, domain
, &dcs
, &num_dcs
)) || (num_dcs
== 0)) {
265 /* Still offline ? Can't find DC's. */
266 messaging_send_buf(winbind_messaging_context(),
267 pid_to_procid(parent_pid
),
268 MSG_WINBIND_FAILED_TO_GO_ONLINE
,
269 (const uint8_t *)domain
->name
,
270 strlen(domain
->name
)+1);
274 /* We got a DC. Send a message to our parent to get it to
275 try and do the same. */
277 messaging_send_buf(winbind_messaging_context(),
278 pid_to_procid(parent_pid
),
279 MSG_WINBIND_TRY_TO_GO_ONLINE
,
280 (const uint8_t *)domain
->name
,
281 strlen(domain
->name
)+1);
285 /****************************************************************
286 Handler triggered if we're offline to try and detect a DC.
287 ****************************************************************/
289 static void check_domain_online_handler(struct tevent_context
*ctx
,
290 struct tevent_timer
*te
,
294 struct winbindd_domain
*domain
=
295 (struct winbindd_domain
*)private_data
;
297 DEBUG(10,("check_domain_online_handler: called for domain "
298 "%s (online = %s)\n", domain
->name
,
299 domain
->online
? "True" : "False" ));
301 TALLOC_FREE(domain
->check_online_event
);
303 /* Are we still in "startup" mode ? */
305 if (domain
->startup
&& (time_mono(NULL
) > domain
->startup_time
+ 30)) {
306 /* No longer in "startup" mode. */
307 DEBUG(10,("check_domain_online_handler: domain %s no longer in 'startup' mode.\n",
309 domain
->startup
= False
;
312 /* We've been told to stay offline, so stay
315 if (get_global_winbindd_state_offline()) {
316 DEBUG(10,("check_domain_online_handler: domain %s remaining globally offline\n",
321 /* Fork a child to test if it can contact a DC.
322 If it can then send ourselves a message to
323 cause a reconnect. */
325 fork_child_dc_connect(domain
);
328 /****************************************************************
329 If we're still offline setup the timeout check.
330 ****************************************************************/
332 static void calc_new_online_timeout_check(struct winbindd_domain
*domain
)
334 int wbr
= lp_winbind_reconnect_delay();
336 if (domain
->startup
) {
337 domain
->check_online_timeout
= 10;
338 } else if (domain
->check_online_timeout
< wbr
) {
339 domain
->check_online_timeout
= wbr
;
343 void winbind_msg_domain_offline(struct messaging_context
*msg_ctx
,
346 struct server_id server_id
,
349 const char *domain_name
= (const char *)data
->data
;
350 struct winbindd_domain
*domain
;
352 domain
= find_domain_from_name_noinit(domain_name
);
353 if (domain
== NULL
) {
357 domain
->online
= false;
359 DEBUG(10, ("Domain %s is marked as offline now.\n",
363 void winbind_msg_domain_online(struct messaging_context
*msg_ctx
,
366 struct server_id server_id
,
369 const char *domain_name
= (const char *)data
->data
;
370 struct winbindd_domain
*domain
;
372 domain
= find_domain_from_name_noinit(domain_name
);
373 if (domain
== NULL
) {
377 domain
->online
= true;
379 DEBUG(10, ("Domain %s is marked as online now.\n",
383 /****************************************************************
384 Set domain offline and also add handler to put us back online
386 ****************************************************************/
388 void set_domain_offline(struct winbindd_domain
*domain
)
390 pid_t parent_pid
= getppid();
392 DEBUG(10,("set_domain_offline: called for domain %s\n",
395 TALLOC_FREE(domain
->check_online_event
);
397 if (domain
->internal
) {
398 DEBUG(3,("set_domain_offline: domain %s is internal - logic error.\n",
403 domain
->online
= False
;
405 /* Offline domains are always initialized. They're
406 re-initialized when they go back online. */
408 domain
->initialized
= True
;
410 /* We only add the timeout handler that checks and
411 allows us to go back online when we've not
412 been told to remain offline. */
414 if (get_global_winbindd_state_offline()) {
415 DEBUG(10,("set_domain_offline: domain %s remaining globally offline\n",
420 /* If we're in startup mode, check again in 10 seconds, not in
421 lp_winbind_reconnect_delay() seconds (which is 30 seconds by default). */
423 calc_new_online_timeout_check(domain
);
425 domain
->check_online_event
= tevent_add_timer(winbind_event_context(),
427 timeval_current_ofs(domain
->check_online_timeout
,0),
428 check_domain_online_handler
,
431 /* The above *has* to succeed for winbindd to work. */
432 if (!domain
->check_online_event
) {
433 smb_panic("set_domain_offline: failed to add online handler");
436 DEBUG(10,("set_domain_offline: added event handler for domain %s\n",
439 /* Send a message to the parent that the domain is offline. */
440 if (parent_pid
> 1 && !domain
->internal
) {
441 messaging_send_buf(winbind_messaging_context(),
442 pid_to_procid(parent_pid
),
443 MSG_WINBIND_DOMAIN_OFFLINE
,
444 (uint8
*)domain
->name
,
445 strlen(domain
->name
) + 1);
448 /* Send an offline message to the idmap child when our
449 primary domain goes offline */
451 if ( domain
->primary
) {
452 struct winbindd_child
*idmap
= idmap_child();
454 if ( idmap
->pid
!= 0 ) {
455 messaging_send_buf(winbind_messaging_context(),
456 pid_to_procid(idmap
->pid
),
458 (const uint8_t *)domain
->name
,
459 strlen(domain
->name
)+1);
466 /****************************************************************
467 Set domain online - if allowed.
468 ****************************************************************/
470 static void set_domain_online(struct winbindd_domain
*domain
)
472 pid_t parent_pid
= getppid();
474 DEBUG(10,("set_domain_online: called for domain %s\n",
477 if (domain
->internal
) {
478 DEBUG(3,("set_domain_online: domain %s is internal - logic error.\n",
483 if (get_global_winbindd_state_offline()) {
484 DEBUG(10,("set_domain_online: domain %s remaining globally offline\n",
489 winbindd_set_locator_kdc_envs(domain
);
491 /* If we are waiting to get a krb5 ticket, trigger immediately. */
492 ccache_regain_all_now();
494 /* Ok, we're out of any startup mode now... */
495 domain
->startup
= False
;
497 if (domain
->online
== False
) {
498 /* We were offline - now we're online. We default to
499 using the MS-RPC backend if we started offline,
500 and if we're going online for the first time we
501 should really re-initialize the backends and the
502 checks to see if we're talking to an AD or NT domain.
505 domain
->initialized
= False
;
507 /* 'reconnect_methods' is the MS-RPC backend. */
508 if (domain
->backend
== &reconnect_methods
) {
509 domain
->backend
= NULL
;
513 /* Ensure we have no online timeout checks. */
514 domain
->check_online_timeout
= 0;
515 TALLOC_FREE(domain
->check_online_event
);
517 /* Ensure we ignore any pending child messages. */
518 messaging_deregister(winbind_messaging_context(),
519 MSG_WINBIND_TRY_TO_GO_ONLINE
, NULL
);
520 messaging_deregister(winbind_messaging_context(),
521 MSG_WINBIND_FAILED_TO_GO_ONLINE
, NULL
);
523 domain
->online
= True
;
525 /* Send a message to the parent that the domain is online. */
526 if (parent_pid
> 1 && !domain
->internal
) {
527 messaging_send_buf(winbind_messaging_context(),
528 pid_to_procid(parent_pid
),
529 MSG_WINBIND_DOMAIN_ONLINE
,
530 (uint8
*)domain
->name
,
531 strlen(domain
->name
) + 1);
534 /* Send an online message to the idmap child when our
535 primary domain comes online */
537 if ( domain
->primary
) {
538 struct winbindd_child
*idmap
= idmap_child();
540 if ( idmap
->pid
!= 0 ) {
541 messaging_send_buf(winbind_messaging_context(),
542 pid_to_procid(idmap
->pid
),
544 (const uint8_t *)domain
->name
,
545 strlen(domain
->name
)+1);
552 /****************************************************************
553 Requested to set a domain online.
554 ****************************************************************/
556 void set_domain_online_request(struct winbindd_domain
*domain
)
560 DEBUG(10,("set_domain_online_request: called for domain %s\n",
563 if (get_global_winbindd_state_offline()) {
564 DEBUG(10,("set_domain_online_request: domain %s remaining globally offline\n",
569 if (domain
->internal
) {
570 DEBUG(10, ("set_domain_online_request: Internal domains are "
575 /* We've been told it's safe to go online and
576 try and connect to a DC. But I don't believe it
577 because network manager seems to lie.
578 Wait at least 5 seconds. Heuristics suck... */
583 /* Go into "startup" mode again. */
584 domain
->startup_time
= time_mono(NULL
);
585 domain
->startup
= True
;
589 if (!domain
->check_online_event
) {
590 /* If we've come from being globally offline we
591 don't have a check online event handler set.
592 We need to add one now we're trying to go
595 DEBUG(10,("set_domain_online_request: domain %s was globally offline.\n",
599 TALLOC_FREE(domain
->check_online_event
);
601 domain
->check_online_event
= tevent_add_timer(winbind_event_context(),
604 check_domain_online_handler
,
607 /* The above *has* to succeed for winbindd to work. */
608 if (!domain
->check_online_event
) {
609 smb_panic("set_domain_online_request: failed to add online handler");
613 /****************************************************************
614 Add -ve connection cache entries for domain and realm.
615 ****************************************************************/
617 static void winbind_add_failed_connection_entry(
618 const struct winbindd_domain
*domain
,
622 add_failed_connection_entry(domain
->name
, server
, result
);
623 /* If this was the saf name for the last thing we talked to,
625 saf_delete(domain
->name
);
626 if (domain
->alt_name
!= NULL
) {
627 add_failed_connection_entry(domain
->alt_name
, server
, result
);
628 saf_delete(domain
->alt_name
);
630 winbindd_unset_locator_kdc_env(domain
);
633 /* Choose between anonymous or authenticated connections. We need to use
634 an authenticated connection if DCs have the RestrictAnonymous registry
635 entry set > 0, or the "Additional restrictions for anonymous
636 connections" set in the win2k Local Security Policy.
638 Caller to free() result in domain, username, password
641 static void cm_get_ipc_userpass(char **username
, char **domain
, char **password
)
643 *username
= (char *)secrets_fetch(SECRETS_AUTH_USER
, NULL
);
644 *domain
= (char *)secrets_fetch(SECRETS_AUTH_DOMAIN
, NULL
);
645 *password
= (char *)secrets_fetch(SECRETS_AUTH_PASSWORD
, NULL
);
647 if (*username
&& **username
) {
649 if (!*domain
|| !**domain
)
650 *domain
= smb_xstrdup(lp_workgroup());
652 if (!*password
|| !**password
)
653 *password
= smb_xstrdup("");
655 DEBUG(3, ("cm_get_ipc_userpass: Retrieved auth-user from secrets.tdb [%s\\%s]\n",
656 *domain
, *username
));
659 DEBUG(3, ("cm_get_ipc_userpass: No auth-user defined\n"));
660 *username
= smb_xstrdup("");
661 *domain
= smb_xstrdup("");
662 *password
= smb_xstrdup("");
666 static bool get_dc_name_via_netlogon(struct winbindd_domain
*domain
,
668 struct sockaddr_storage
*dc_ss
)
670 struct winbindd_domain
*our_domain
= NULL
;
671 struct rpc_pipe_client
*netlogon_pipe
= NULL
;
675 unsigned int orig_timeout
;
676 const char *tmp
= NULL
;
678 struct dcerpc_binding_handle
*b
;
680 /* Hmmmm. We can only open one connection to the NETLOGON pipe at the
687 if (domain
->primary
) {
691 our_domain
= find_our_domain();
693 if ((mem_ctx
= talloc_init("get_dc_name_via_netlogon")) == NULL
) {
697 result
= cm_connect_netlogon(our_domain
, &netlogon_pipe
);
698 if (!NT_STATUS_IS_OK(result
)) {
699 talloc_destroy(mem_ctx
);
703 b
= netlogon_pipe
->binding_handle
;
705 /* This call can take a long time - allow the server to time out.
706 35 seconds should do it. */
708 orig_timeout
= rpccli_set_timeout(netlogon_pipe
, 35000);
710 if (our_domain
->active_directory
) {
711 struct netr_DsRGetDCNameInfo
*domain_info
= NULL
;
713 result
= dcerpc_netr_DsRGetDCName(b
,
722 if (NT_STATUS_IS_OK(result
) && W_ERROR_IS_OK(werr
)) {
724 mem_ctx
, domain_info
->dc_unc
);
726 DEBUG(0, ("talloc_strdup failed\n"));
727 talloc_destroy(mem_ctx
);
730 if (domain
->alt_name
== NULL
) {
731 domain
->alt_name
= talloc_strdup(domain
,
732 domain_info
->domain_name
);
733 if (domain
->alt_name
== NULL
) {
734 DEBUG(0, ("talloc_strdup failed\n"));
735 talloc_destroy(mem_ctx
);
739 if (domain
->forest_name
== NULL
) {
740 domain
->forest_name
= talloc_strdup(domain
,
741 domain_info
->forest_name
);
742 if (domain
->forest_name
== NULL
) {
743 DEBUG(0, ("talloc_strdup failed\n"));
744 talloc_destroy(mem_ctx
);
750 result
= dcerpc_netr_GetAnyDCName(b
, mem_ctx
,
757 /* And restore our original timeout. */
758 rpccli_set_timeout(netlogon_pipe
, orig_timeout
);
760 if (!NT_STATUS_IS_OK(result
)) {
761 DEBUG(10,("dcerpc_netr_GetAnyDCName failed: %s\n",
763 talloc_destroy(mem_ctx
);
767 if (!W_ERROR_IS_OK(werr
)) {
768 DEBUG(10,("dcerpc_netr_GetAnyDCName failed: %s\n",
770 talloc_destroy(mem_ctx
);
774 /* dcerpc_netr_GetAnyDCName gives us a name with \\ */
775 p
= strip_hostname(tmp
);
779 talloc_destroy(mem_ctx
);
781 DEBUG(10,("dcerpc_netr_GetAnyDCName returned %s\n", dcname
));
783 if (!resolve_name(dcname
, dc_ss
, 0x20, true)) {
791 * Helper function to assemble trust password and account name
793 static NTSTATUS
get_trust_creds(const struct winbindd_domain
*domain
,
794 char **machine_password
,
795 char **machine_account
,
796 char **machine_krb5_principal
)
798 const char *account_name
;
799 const char *name
= NULL
;
801 /* If we are a DC and this is not our own domain */
806 struct winbindd_domain
*our_domain
= find_our_domain();
809 return NT_STATUS_INVALID_SERVER_STATE
;
811 name
= our_domain
->name
;
814 if (!get_trust_pw_clear(name
, machine_password
,
815 &account_name
, NULL
))
817 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
820 if ((machine_account
!= NULL
) &&
821 (asprintf(machine_account
, "%s$", account_name
) == -1))
823 return NT_STATUS_NO_MEMORY
;
826 /* For now assume our machine account only exists in our domain */
828 if (machine_krb5_principal
!= NULL
)
830 struct winbindd_domain
*our_domain
= find_our_domain();
833 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
836 if (our_domain
->alt_name
== NULL
) {
837 return NT_STATUS_INVALID_PARAMETER
;
840 if (asprintf(machine_krb5_principal
, "%s$@%s",
841 account_name
, our_domain
->alt_name
) == -1)
843 return NT_STATUS_NO_MEMORY
;
846 if (!strupper_m(*machine_krb5_principal
)) {
847 SAFE_FREE(machine_krb5_principal
);
848 return NT_STATUS_INVALID_PARAMETER
;
855 /************************************************************************
856 Given a fd with a just-connected TCP connection to a DC, open a connection
858 ************************************************************************/
860 static NTSTATUS
cm_prepare_connection(const struct winbindd_domain
*domain
,
862 const char *controller
,
863 struct cli_state
**cli
,
866 bool try_spnego
= false;
867 bool try_ipc_auth
= false;
868 char *machine_password
= NULL
;
869 char *machine_krb5_principal
= NULL
;
870 char *machine_account
= NULL
;
871 char *ipc_username
= NULL
;
872 char *ipc_domain
= NULL
;
873 char *ipc_password
= NULL
;
875 uint16_t sec_mode
= 0;
877 struct named_mutex
*mutex
;
879 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
881 DEBUG(10,("cm_prepare_connection: connecting to DC %s for domain %s\n",
882 controller
, domain
->name
));
886 mutex
= grab_named_mutex(talloc_tos(), controller
,
887 WINBIND_SERVER_MUTEX_WAIT_TIME
);
890 DEBUG(0,("cm_prepare_connection: mutex grab failed for %s\n",
892 result
= NT_STATUS_POSSIBLE_DEADLOCK
;
896 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
;
898 *cli
= cli_state_create(NULL
, sockfd
,
899 controller
, domain
->alt_name
,
900 SMB_SIGNING_DEFAULT
, flags
);
903 DEBUG(1, ("Could not cli_initialize\n"));
904 result
= NT_STATUS_NO_MEMORY
;
908 cli_set_timeout(*cli
, 10000); /* 10 seconds */
910 result
= smbXcli_negprot((*cli
)->conn
, (*cli
)->timeout
,
911 lp_cli_minprotocol(),
912 lp_cli_maxprotocol());
914 if (!NT_STATUS_IS_OK(result
)) {
915 DEBUG(1, ("cli_negprot failed: %s\n", nt_errstr(result
)));
919 if (smbXcli_conn_protocol((*cli
)->conn
) >= PROTOCOL_NT1
&&
920 smb1cli_conn_capabilities((*cli
)->conn
) & CAP_EXTENDED_SECURITY
) {
922 } else if (smbXcli_conn_protocol((*cli
)->conn
) >= PROTOCOL_SMB2_02
) {
926 if (!is_dc_trusted_domain_situation(domain
->name
) && try_spnego
) {
927 result
= get_trust_creds(domain
, &machine_password
,
929 &machine_krb5_principal
);
930 if (!NT_STATUS_IS_OK(result
)) {
934 if (lp_security() == SEC_ADS
) {
936 /* Try a krb5 session */
938 (*cli
)->use_kerberos
= True
;
939 DEBUG(5, ("connecting to %s from %s with kerberos principal "
940 "[%s] and realm [%s]\n", controller
, lp_netbios_name(),
941 machine_krb5_principal
, domain
->alt_name
));
943 winbindd_set_locator_kdc_envs(domain
);
945 result
= cli_session_setup(*cli
,
946 machine_krb5_principal
,
948 strlen(machine_password
)+1,
950 strlen(machine_password
)+1,
953 if (!NT_STATUS_IS_OK(result
)) {
954 DEBUG(4,("failed kerberos session setup with %s\n",
958 if (NT_STATUS_IS_OK(result
)) {
959 /* Ensure creds are stored for NTLMSSP authenticated pipe access. */
960 result
= cli_init_creds(*cli
, machine_account
, lp_workgroup(), machine_password
);
961 if (!NT_STATUS_IS_OK(result
)) {
964 goto session_setup_done
;
968 /* Fall back to non-kerberos session setup using NTLMSSP SPNEGO with the machine account. */
969 (*cli
)->use_kerberos
= False
;
971 DEBUG(5, ("connecting to %s from %s with username "
972 "[%s]\\[%s]\n", controller
, lp_netbios_name(),
973 lp_workgroup(), machine_account
));
975 result
= cli_session_setup(*cli
,
978 strlen(machine_password
)+1,
980 strlen(machine_password
)+1,
982 if (!NT_STATUS_IS_OK(result
)) {
983 DEBUG(4, ("authenticated session setup failed with %s\n",
987 if (NT_STATUS_IS_OK(result
)) {
988 /* Ensure creds are stored for NTLMSSP authenticated pipe access. */
989 result
= cli_init_creds(*cli
, machine_account
, lp_workgroup(), machine_password
);
990 if (!NT_STATUS_IS_OK(result
)) {
993 goto session_setup_done
;
997 /* Fall back to non-kerberos session setup with auth_user */
999 (*cli
)->use_kerberos
= False
;
1001 cm_get_ipc_userpass(&ipc_username
, &ipc_domain
, &ipc_password
);
1003 sec_mode
= smb1cli_conn_server_security_mode((*cli
)->conn
);
1005 try_ipc_auth
= false;
1007 try_ipc_auth
= true;
1008 } else if (sec_mode
& NEGOTIATE_SECURITY_CHALLENGE_RESPONSE
) {
1009 try_ipc_auth
= true;
1012 if (try_ipc_auth
&& (strlen(ipc_username
) > 0)) {
1014 /* Only try authenticated if we have a username */
1016 DEBUG(5, ("connecting to %s from %s with username "
1017 "[%s]\\[%s]\n", controller
, lp_netbios_name(),
1018 ipc_domain
, ipc_username
));
1020 if (NT_STATUS_IS_OK(cli_session_setup(
1022 ipc_password
, strlen(ipc_password
)+1,
1023 ipc_password
, strlen(ipc_password
)+1,
1025 /* Successful logon with given username. */
1026 result
= cli_init_creds(*cli
, ipc_username
, ipc_domain
, ipc_password
);
1027 if (!NT_STATUS_IS_OK(result
)) {
1030 goto session_setup_done
;
1032 DEBUG(4, ("authenticated session setup with user %s\\%s failed.\n",
1033 ipc_domain
, ipc_username
));
1039 /* Fall back to anonymous connection, this might fail later */
1040 DEBUG(10,("cm_prepare_connection: falling back to anonymous "
1041 "connection for DC %s\n",
1044 result
= cli_session_setup(*cli
, "", NULL
, 0, NULL
, 0, "");
1045 if (NT_STATUS_IS_OK(result
)) {
1046 DEBUG(5, ("Connected anonymously\n"));
1047 result
= cli_init_creds(*cli
, "", "", "");
1048 if (!NT_STATUS_IS_OK(result
)) {
1051 goto session_setup_done
;
1054 /* We can't session setup */
1060 * This should be a short term hack until
1061 * dynamic re-authentication is implemented.
1063 * See Bug 9175 - winbindd doesn't recover from
1064 * NT_STATUS_NETWORK_SESSION_EXPIRED
1066 if (smbXcli_conn_protocol((*cli
)->conn
) >= PROTOCOL_SMB2_02
) {
1067 smbXcli_session_set_disconnect_expired((*cli
)->smb2
.session
);
1070 /* cache the server name for later connections */
1072 saf_store(domain
->name
, controller
);
1073 if (domain
->alt_name
&& (*cli
)->use_kerberos
) {
1074 saf_store(domain
->alt_name
, controller
);
1077 winbindd_set_locator_kdc_envs(domain
);
1079 result
= cli_tree_connect(*cli
, "IPC$", "IPC", "", 0);
1081 if (!NT_STATUS_IS_OK(result
)) {
1082 DEBUG(1,("failed tcon_X with %s\n", nt_errstr(result
)));
1089 /* set the domain if empty; needed for schannel connections */
1090 if ( !(*cli
)->domain
[0] ) {
1091 result
= cli_set_domain((*cli
), domain
->name
);
1092 if (!NT_STATUS_IS_OK(result
)) {
1093 SAFE_FREE(ipc_username
);
1094 SAFE_FREE(ipc_domain
);
1095 SAFE_FREE(ipc_password
);
1100 result
= NT_STATUS_OK
;
1104 SAFE_FREE(machine_account
);
1105 SAFE_FREE(machine_password
);
1106 SAFE_FREE(machine_krb5_principal
);
1107 SAFE_FREE(ipc_username
);
1108 SAFE_FREE(ipc_domain
);
1109 SAFE_FREE(ipc_password
);
1111 if (!NT_STATUS_IS_OK(result
)) {
1112 winbind_add_failed_connection_entry(domain
, controller
, result
);
1113 if ((*cli
) != NULL
) {
1122 /*******************************************************************
1123 Add a dcname and sockaddr_storage pair to the end of a dc_name_ip
1126 Keeps the list unique by not adding duplicate entries.
1128 @param[in] mem_ctx talloc memory context to allocate from
1129 @param[in] domain_name domain of the DC
1130 @param[in] dcname name of the DC to add to the list
1131 @param[in] pss Internet address and port pair to add to the list
1132 @param[in,out] dcs array of dc_name_ip structures to add to
1133 @param[in,out] num_dcs number of dcs returned in the dcs array
1134 @return true if the list was added to, false otherwise
1135 *******************************************************************/
1137 static bool add_one_dc_unique(TALLOC_CTX
*mem_ctx
, const char *domain_name
,
1138 const char *dcname
, struct sockaddr_storage
*pss
,
1139 struct dc_name_ip
**dcs
, int *num
)
1143 if (!NT_STATUS_IS_OK(check_negative_conn_cache(domain_name
, dcname
))) {
1144 DEBUG(10, ("DC %s was in the negative conn cache\n", dcname
));
1148 /* Make sure there's no duplicates in the list */
1149 for (i
=0; i
<*num
; i
++)
1151 (struct sockaddr
*)(void *)&(*dcs
)[i
].ss
,
1152 (struct sockaddr
*)(void *)pss
))
1155 *dcs
= talloc_realloc(mem_ctx
, *dcs
, struct dc_name_ip
, (*num
)+1);
1160 fstrcpy((*dcs
)[*num
].name
, dcname
);
1161 (*dcs
)[*num
].ss
= *pss
;
1166 static bool add_sockaddr_to_array(TALLOC_CTX
*mem_ctx
,
1167 struct sockaddr_storage
*pss
, uint16 port
,
1168 struct sockaddr_storage
**addrs
, int *num
)
1170 *addrs
= talloc_realloc(mem_ctx
, *addrs
, struct sockaddr_storage
, (*num
)+1);
1172 if (*addrs
== NULL
) {
1177 (*addrs
)[*num
] = *pss
;
1178 set_sockaddr_port((struct sockaddr
*)&(*addrs
)[*num
], port
);
1184 /*******************************************************************
1185 convert an ip to a name
1186 *******************************************************************/
1188 static bool dcip_to_name(TALLOC_CTX
*mem_ctx
,
1189 const struct winbindd_domain
*domain
,
1190 struct sockaddr_storage
*pss
,
1193 struct ip_service ip_list
;
1194 uint32_t nt_version
= NETLOGON_NT_VERSION_1
;
1196 const char *dc_name
;
1203 /* For active directory servers, try to get the ldap server name.
1204 None of these failures should be considered critical for now */
1206 if ((lp_security() == SEC_ADS
) && (domain
->alt_name
!= NULL
)) {
1208 ADS_STATUS ads_status
;
1209 char addr
[INET6_ADDRSTRLEN
];
1211 print_sockaddr(addr
, sizeof(addr
), pss
);
1213 ads
= ads_init(domain
->alt_name
, domain
->name
, addr
);
1214 ads
->auth
.flags
|= ADS_AUTH_NO_BIND
;
1216 ads_status
= ads_connect(ads
);
1217 if (ADS_ERR_OK(ads_status
)) {
1218 /* We got a cldap packet. */
1219 *name
= talloc_strdup(mem_ctx
,
1220 ads
->config
.ldap_server_name
);
1221 if (*name
== NULL
) {
1224 namecache_store(*name
, 0x20, 1, &ip_list
);
1226 DEBUG(10,("dcip_to_name: flags = 0x%x\n", (unsigned int)ads
->config
.flags
));
1228 if (domain
->primary
&& (ads
->config
.flags
& NBT_SERVER_KDC
)) {
1229 if (ads_closest_dc(ads
)) {
1230 char *sitename
= sitename_fetch(ads
->config
.realm
);
1232 /* We're going to use this KDC for this realm/domain.
1233 If we are using sites, then force the krb5 libs
1236 create_local_private_krb5_conf_for_domain(domain
->alt_name
,
1242 SAFE_FREE(sitename
);
1244 /* use an off site KDC */
1245 create_local_private_krb5_conf_for_domain(domain
->alt_name
,
1251 winbindd_set_locator_kdc_envs(domain
);
1253 /* Ensure we contact this DC also. */
1254 saf_store(domain
->name
, *name
);
1255 saf_store(domain
->alt_name
, *name
);
1258 ads_destroy( &ads
);
1262 ads_destroy( &ads
);
1267 status
= nbt_getdc(winbind_messaging_context(), 10, pss
, domain
->name
,
1268 &domain
->sid
, nt_version
, mem_ctx
, &nt_version
,
1270 if (NT_STATUS_IS_OK(status
)) {
1271 *name
= talloc_strdup(mem_ctx
, dc_name
);
1272 if (*name
== NULL
) {
1275 namecache_store(*name
, 0x20, 1, &ip_list
);
1279 /* try node status request */
1281 if (name_status_find(domain
->name
, 0x1c, 0x20, pss
, nbtname
) ) {
1282 namecache_store(nbtname
, 0x20, 1, &ip_list
);
1285 *name
= talloc_strdup(mem_ctx
, nbtname
);
1286 if (*name
== NULL
) {
1296 /*******************************************************************
1297 Retrieve a list of IP addresses for domain controllers.
1299 The array is sorted in the preferred connection order.
1301 @param[in] mem_ctx talloc memory context to allocate from
1302 @param[in] domain domain to retrieve DCs for
1303 @param[out] dcs array of dcs that will be returned
1304 @param[out] num_dcs number of dcs returned in the dcs array
1306 *******************************************************************/
1308 static bool get_dcs(TALLOC_CTX
*mem_ctx
, struct winbindd_domain
*domain
,
1309 struct dc_name_ip
**dcs
, int *num_dcs
)
1312 struct sockaddr_storage ss
;
1313 struct ip_service
*ip_list
= NULL
;
1314 int iplist_size
= 0;
1317 enum security_types sec
= (enum security_types
)lp_security();
1319 is_our_domain
= strequal(domain
->name
, lp_workgroup());
1321 /* If not our domain, get the preferred DC, by asking our primary DC */
1323 && get_dc_name_via_netlogon(domain
, dcname
, &ss
)
1324 && add_one_dc_unique(mem_ctx
, domain
->name
, dcname
, &ss
, dcs
,
1327 char addr
[INET6_ADDRSTRLEN
];
1328 print_sockaddr(addr
, sizeof(addr
), &ss
);
1329 DEBUG(10, ("Retrieved DC %s at %s via netlogon\n",
1334 if ((sec
== SEC_ADS
) && (domain
->alt_name
!= NULL
)) {
1335 char *sitename
= NULL
;
1337 /* We need to make sure we know the local site before
1338 doing any DNS queries, as this will restrict the
1339 get_sorted_dc_list() call below to only fetching
1340 DNS records for the correct site. */
1342 /* Find any DC to get the site record.
1343 We deliberately don't care about the
1346 get_dc_name(domain
->name
, domain
->alt_name
, dcname
, &ss
);
1348 sitename
= sitename_fetch(domain
->alt_name
);
1351 /* Do the site-specific AD dns lookup first. */
1352 get_sorted_dc_list(domain
->alt_name
, sitename
, &ip_list
,
1353 &iplist_size
, True
);
1355 /* Add ips to the DC array. We don't look up the name
1356 of the DC in this function, but we fill in the char*
1357 of the ip now to make the failed connection cache
1359 for ( i
=0; i
<iplist_size
; i
++ ) {
1360 char addr
[INET6_ADDRSTRLEN
];
1361 print_sockaddr(addr
, sizeof(addr
),
1363 add_one_dc_unique(mem_ctx
,
1372 SAFE_FREE(sitename
);
1376 /* Now we add DCs from the main AD DNS lookup. */
1377 get_sorted_dc_list(domain
->alt_name
, NULL
, &ip_list
,
1378 &iplist_size
, True
);
1380 for ( i
=0; i
<iplist_size
; i
++ ) {
1381 char addr
[INET6_ADDRSTRLEN
];
1382 print_sockaddr(addr
, sizeof(addr
),
1384 add_one_dc_unique(mem_ctx
,
1396 /* Try standard netbios queries if no ADS and fall back to DNS queries
1397 * if alt_name is available */
1398 if (*num_dcs
== 0) {
1399 get_sorted_dc_list(domain
->name
, NULL
, &ip_list
, &iplist_size
,
1401 if (iplist_size
== 0) {
1402 if (domain
->alt_name
!= NULL
) {
1403 get_sorted_dc_list(domain
->alt_name
, NULL
, &ip_list
,
1404 &iplist_size
, true);
1408 for ( i
=0; i
<iplist_size
; i
++ ) {
1409 char addr
[INET6_ADDRSTRLEN
];
1410 print_sockaddr(addr
, sizeof(addr
),
1412 add_one_dc_unique(mem_ctx
,
1427 /*******************************************************************
1428 Find and make a connection to a DC in the given domain.
1430 @param[in] mem_ctx talloc memory context to allocate from
1431 @param[in] domain domain to find a dc in
1432 @param[out] dcname NetBIOS or FQDN of DC that's connected to
1433 @param[out] pss DC Internet address and port
1434 @param[out] fd fd of the open socket connected to the newly found dc
1435 @return true when a DC connection is made, false otherwise
1436 *******************************************************************/
1438 static bool find_new_dc(TALLOC_CTX
*mem_ctx
,
1439 struct winbindd_domain
*domain
,
1440 char **dcname
, struct sockaddr_storage
*pss
, int *fd
)
1442 struct dc_name_ip
*dcs
= NULL
;
1445 const char **dcnames
= NULL
;
1446 size_t num_dcnames
= 0;
1448 struct sockaddr_storage
*addrs
= NULL
;
1459 if (!get_dcs(mem_ctx
, domain
, &dcs
, &num_dcs
) || (num_dcs
== 0))
1462 for (i
=0; i
<num_dcs
; i
++) {
1464 if (!add_string_to_array(mem_ctx
, dcs
[i
].name
,
1465 &dcnames
, &num_dcnames
)) {
1468 if (!add_sockaddr_to_array(mem_ctx
, &dcs
[i
].ss
, TCP_SMB_PORT
,
1469 &addrs
, &num_addrs
)) {
1474 if ((num_dcnames
== 0) || (num_dcnames
!= num_addrs
))
1477 if ((addrs
== NULL
) || (dcnames
== NULL
))
1480 status
= smbsock_any_connect(addrs
, dcnames
, NULL
, NULL
, NULL
,
1481 num_addrs
, 0, 10, fd
, &fd_index
, NULL
);
1482 if (!NT_STATUS_IS_OK(status
)) {
1483 for (i
=0; i
<num_dcs
; i
++) {
1484 char ab
[INET6_ADDRSTRLEN
];
1485 print_sockaddr(ab
, sizeof(ab
), &dcs
[i
].ss
);
1486 DEBUG(10, ("find_new_dc: smbsock_any_connect failed for "
1487 "domain %s address %s. Error was %s\n",
1488 domain
->name
, ab
, nt_errstr(status
) ));
1489 winbind_add_failed_connection_entry(domain
,
1490 dcs
[i
].name
, NT_STATUS_UNSUCCESSFUL
);
1495 *pss
= addrs
[fd_index
];
1497 if (*dcnames
[fd_index
] != '\0' && !is_ipaddress(dcnames
[fd_index
])) {
1498 /* Ok, we've got a name for the DC */
1499 *dcname
= talloc_strdup(mem_ctx
, dcnames
[fd_index
]);
1500 if (*dcname
== NULL
) {
1506 /* Try to figure out the name */
1507 if (dcip_to_name(mem_ctx
, domain
, pss
, dcname
)) {
1511 /* We can not continue without the DC's name */
1512 winbind_add_failed_connection_entry(domain
, dcs
[fd_index
].name
,
1513 NT_STATUS_UNSUCCESSFUL
);
1515 /* Throw away all arrays as we're doing this again. */
1519 TALLOC_FREE(dcnames
);
1531 static char *current_dc_key(TALLOC_CTX
*mem_ctx
, const char *domain_name
)
1533 return talloc_asprintf_strupper_m(mem_ctx
, "CURRENT_DCNAME/%s",
1537 static void store_current_dc_in_gencache(const char *domain_name
,
1538 const char *dc_name
,
1539 struct cli_state
*cli
)
1541 char addr
[INET6_ADDRSTRLEN
];
1545 if (!cli_state_is_connected(cli
)) {
1549 print_sockaddr(addr
, sizeof(addr
),
1550 smbXcli_conn_remote_sockaddr(cli
->conn
));
1552 key
= current_dc_key(talloc_tos(), domain_name
);
1557 value
= talloc_asprintf(talloc_tos(), "%s %s", addr
, dc_name
);
1558 if (value
== NULL
) {
1562 gencache_set(key
, value
, 0x7fffffff);
1568 bool fetch_current_dc_from_gencache(TALLOC_CTX
*mem_ctx
,
1569 const char *domain_name
,
1570 char **p_dc_name
, char **p_dc_ip
)
1572 char *key
, *value
, *p
;
1574 char *dc_name
= NULL
;
1577 key
= current_dc_key(talloc_tos(), domain_name
);
1581 if (!gencache_get(key
, &value
, NULL
)) {
1584 p
= strchr(value
, ' ');
1588 dc_ip
= talloc_strndup(mem_ctx
, value
, p
- value
);
1589 if (dc_ip
== NULL
) {
1592 dc_name
= talloc_strdup(mem_ctx
, p
+1);
1593 if (dc_name
== NULL
) {
1597 if (p_dc_ip
!= NULL
) {
1601 if (p_dc_name
!= NULL
) {
1602 *p_dc_name
= dc_name
;
1607 TALLOC_FREE(dc_name
);
1613 static NTSTATUS
cm_open_connection(struct winbindd_domain
*domain
,
1614 struct winbindd_cm_conn
*new_conn
)
1616 TALLOC_CTX
*mem_ctx
;
1618 char *saf_servername
= saf_fetch( domain
->name
);
1621 if ((mem_ctx
= talloc_init("cm_open_connection")) == NULL
) {
1622 SAFE_FREE(saf_servername
);
1623 set_domain_offline(domain
);
1624 return NT_STATUS_NO_MEMORY
;
1627 /* we have to check the server affinity cache here since
1628 later we select a DC based on response time and not preference */
1630 /* Check the negative connection cache
1631 before talking to it. It going down may have
1632 triggered the reconnection. */
1634 if ( saf_servername
&& NT_STATUS_IS_OK(check_negative_conn_cache( domain
->name
, saf_servername
))) {
1636 DEBUG(10,("cm_open_connection: saf_servername is '%s' for domain %s\n",
1637 saf_servername
, domain
->name
));
1639 /* convert an ip address to a name */
1640 if (is_ipaddress( saf_servername
) ) {
1641 char *dcname
= NULL
;
1642 struct sockaddr_storage ss
;
1644 if (!interpret_string_addr(&ss
, saf_servername
,
1646 return NT_STATUS_UNSUCCESSFUL
;
1648 if (dcip_to_name(mem_ctx
, domain
, &ss
, &dcname
)) {
1649 domain
->dcname
= talloc_strdup(domain
,
1651 if (domain
->dcname
== NULL
) {
1652 SAFE_FREE(saf_servername
);
1653 return NT_STATUS_NO_MEMORY
;
1656 winbind_add_failed_connection_entry(
1657 domain
, saf_servername
,
1658 NT_STATUS_UNSUCCESSFUL
);
1661 domain
->dcname
= talloc_strdup(domain
, saf_servername
);
1662 if (domain
->dcname
== NULL
) {
1663 SAFE_FREE(saf_servername
);
1664 return NT_STATUS_NO_MEMORY
;
1668 SAFE_FREE( saf_servername
);
1671 for (retries
= 0; retries
< 3; retries
++) {
1674 char *dcname
= NULL
;
1676 result
= NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND
;
1678 DEBUG(10,("cm_open_connection: dcname is '%s' for domain %s\n",
1679 domain
->dcname
? domain
->dcname
: "", domain
->name
));
1681 if (domain
->dcname
!= NULL
1682 && NT_STATUS_IS_OK(check_negative_conn_cache( domain
->name
, domain
->dcname
))
1683 && (resolve_name(domain
->dcname
, &domain
->dcaddr
, 0x20, true)))
1687 status
= smbsock_connect(&domain
->dcaddr
, 0,
1690 if (!NT_STATUS_IS_OK(status
)) {
1696 !find_new_dc(mem_ctx
, domain
, &dcname
, &domain
->dcaddr
, &fd
))
1698 /* This is the one place where we will
1699 set the global winbindd offline state
1700 to true, if a "WINBINDD_OFFLINE" entry
1701 is found in the winbindd cache. */
1702 set_global_winbindd_state_offline();
1705 if (dcname
!= NULL
) {
1706 talloc_free(domain
->dcname
);
1708 domain
->dcname
= talloc_move(domain
, &dcname
);
1709 if (domain
->dcname
== NULL
) {
1710 result
= NT_STATUS_NO_MEMORY
;
1715 new_conn
->cli
= NULL
;
1717 result
= cm_prepare_connection(domain
, fd
, domain
->dcname
,
1718 &new_conn
->cli
, &retry
);
1719 if (!NT_STATUS_IS_OK(result
)) {
1720 /* Don't leak the smb connection socket */
1728 if (NT_STATUS_IS_OK(result
)) {
1730 winbindd_set_locator_kdc_envs(domain
);
1732 if (domain
->online
== False
) {
1733 /* We're changing state from offline to online. */
1734 set_global_winbindd_state_online();
1736 set_domain_online(domain
);
1739 * Much as I hate global state, this seems to be the point
1740 * where we can be certain that we have a proper connection to
1741 * a DC. wbinfo --dc-info needs that information, store it in
1742 * gencache with a looong timeout. This will need revisiting
1743 * once we start to connect to multiple DCs, wbcDcInfo is
1744 * already prepared for that.
1746 store_current_dc_in_gencache(domain
->name
, domain
->dcname
,
1749 /* Ensure we setup the retry handler. */
1750 set_domain_offline(domain
);
1753 talloc_destroy(mem_ctx
);
1757 /* Close down all open pipes on a connection. */
1759 void invalidate_cm_connection(struct winbindd_cm_conn
*conn
)
1763 /* We're closing down a possibly dead
1764 connection. Don't have impossibly long (10s) timeouts. */
1767 cli_set_timeout(conn
->cli
, 1000); /* 1 second. */
1770 if (conn
->samr_pipe
!= NULL
) {
1771 if (is_valid_policy_hnd(&conn
->sam_connect_handle
)) {
1772 dcerpc_samr_Close(conn
->samr_pipe
->binding_handle
,
1774 &conn
->sam_connect_handle
,
1777 TALLOC_FREE(conn
->samr_pipe
);
1778 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1780 cli_set_timeout(conn
->cli
, 500);
1784 if (conn
->lsa_pipe
!= NULL
) {
1785 if (is_valid_policy_hnd(&conn
->lsa_policy
)) {
1786 dcerpc_lsa_Close(conn
->lsa_pipe
->binding_handle
,
1791 TALLOC_FREE(conn
->lsa_pipe
);
1792 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1794 cli_set_timeout(conn
->cli
, 500);
1798 if (conn
->lsa_pipe_tcp
!= NULL
) {
1799 if (is_valid_policy_hnd(&conn
->lsa_policy
)) {
1800 dcerpc_lsa_Close(conn
->lsa_pipe_tcp
->binding_handle
,
1805 TALLOC_FREE(conn
->lsa_pipe_tcp
);
1806 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1808 cli_set_timeout(conn
->cli
, 500);
1812 if (conn
->netlogon_pipe
!= NULL
) {
1813 TALLOC_FREE(conn
->netlogon_pipe
);
1814 /* Ok, it must be dead. Drop timeout to 0.5 sec. */
1816 cli_set_timeout(conn
->cli
, 500);
1821 cli_shutdown(conn
->cli
);
1827 void close_conns_after_fork(void)
1829 struct winbindd_domain
*domain
;
1830 struct winbindd_cli_state
*cli_state
;
1832 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
1834 * first close the low level SMB TCP connection
1835 * so that we don't generate any SMBclose
1836 * requests in invalidate_cm_connection()
1838 if (cli_state_is_connected(domain
->conn
.cli
)) {
1839 smbXcli_conn_disconnect(domain
->conn
.cli
->conn
, NT_STATUS_OK
);
1842 invalidate_cm_connection(&domain
->conn
);
1845 for (cli_state
= winbindd_client_list();
1847 cli_state
= cli_state
->next
) {
1848 if (cli_state
->sock
>= 0) {
1849 close(cli_state
->sock
);
1850 cli_state
->sock
= -1;
1855 static bool connection_ok(struct winbindd_domain
*domain
)
1859 ok
= cli_state_is_connected(domain
->conn
.cli
);
1861 DEBUG(3, ("connection_ok: Connection to %s for domain %s is not connected\n",
1862 domain
->dcname
, domain
->name
));
1866 if (domain
->online
== False
) {
1867 DEBUG(3, ("connection_ok: Domain %s is offline\n", domain
->name
));
1874 /* Initialize a new connection up to the RPC BIND.
1875 Bypass online status check so always does network calls. */
1877 static NTSTATUS
init_dc_connection_network(struct winbindd_domain
*domain
)
1881 /* Internal connections never use the network. */
1882 if (domain
->internal
) {
1883 domain
->initialized
= True
;
1884 return NT_STATUS_OK
;
1887 if (connection_ok(domain
)) {
1888 if (!domain
->initialized
) {
1889 set_dc_type_and_flags(domain
);
1891 return NT_STATUS_OK
;
1894 invalidate_cm_connection(&domain
->conn
);
1896 result
= cm_open_connection(domain
, &domain
->conn
);
1898 if (NT_STATUS_IS_OK(result
) && !domain
->initialized
) {
1899 set_dc_type_and_flags(domain
);
1905 NTSTATUS
init_dc_connection(struct winbindd_domain
*domain
)
1907 if (domain
->internal
) {
1908 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
1911 if (domain
->initialized
&& !domain
->online
) {
1912 /* We check for online status elsewhere. */
1913 return NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND
;
1916 return init_dc_connection_network(domain
);
1919 static NTSTATUS
init_dc_connection_rpc(struct winbindd_domain
*domain
)
1923 status
= init_dc_connection(domain
);
1924 if (!NT_STATUS_IS_OK(status
)) {
1928 if (!domain
->internal
&& domain
->conn
.cli
== NULL
) {
1929 /* happens for trusted domains without inbound trust */
1930 return NT_STATUS_TRUSTED_DOMAIN_FAILURE
;
1933 return NT_STATUS_OK
;
1936 /******************************************************************************
1937 Set the trust flags (direction and forest location) for a domain
1938 ******************************************************************************/
1940 static bool set_dc_type_and_flags_trustinfo( struct winbindd_domain
*domain
)
1942 struct winbindd_domain
*our_domain
;
1943 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
1945 struct netr_DomainTrustList trusts
;
1947 uint32 flags
= (NETR_TRUST_FLAG_IN_FOREST
|
1948 NETR_TRUST_FLAG_OUTBOUND
|
1949 NETR_TRUST_FLAG_INBOUND
);
1950 struct rpc_pipe_client
*cli
;
1951 TALLOC_CTX
*mem_ctx
= NULL
;
1952 struct dcerpc_binding_handle
*b
;
1954 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s\n", domain
->name
));
1956 /* Our primary domain doesn't need to worry about trust flags.
1957 Force it to go through the network setup */
1958 if ( domain
->primary
) {
1962 our_domain
= find_our_domain();
1964 if ( !connection_ok(our_domain
) ) {
1965 DEBUG(3,("set_dc_type_and_flags_trustinfo: No connection to our domain!\n"));
1969 /* This won't work unless our domain is AD */
1971 if ( !our_domain
->active_directory
) {
1975 /* Use DsEnumerateDomainTrusts to get us the trust direction
1978 result
= cm_connect_netlogon(our_domain
, &cli
);
1980 if (!NT_STATUS_IS_OK(result
)) {
1981 DEBUG(5, ("set_dc_type_and_flags_trustinfo: Could not open "
1982 "a connection to %s for PIPE_NETLOGON (%s)\n",
1983 domain
->name
, nt_errstr(result
)));
1987 b
= cli
->binding_handle
;
1989 if ( (mem_ctx
= talloc_init("set_dc_type_and_flags_trustinfo")) == NULL
) {
1990 DEBUG(0,("set_dc_type_and_flags_trustinfo: talloc_init() failed!\n"));
1994 result
= dcerpc_netr_DsrEnumerateDomainTrusts(b
, mem_ctx
,
1999 if (!NT_STATUS_IS_OK(result
)) {
2000 DEBUG(0,("set_dc_type_and_flags_trustinfo: "
2001 "failed to query trusted domain list: %s\n",
2002 nt_errstr(result
)));
2003 talloc_destroy(mem_ctx
);
2006 if (!W_ERROR_IS_OK(werr
)) {
2007 DEBUG(0,("set_dc_type_and_flags_trustinfo: "
2008 "failed to query trusted domain list: %s\n",
2010 talloc_destroy(mem_ctx
);
2014 /* Now find the domain name and get the flags */
2016 for ( i
=0; i
<trusts
.count
; i
++ ) {
2017 if ( strequal( domain
->name
, trusts
.array
[i
].netbios_name
) ) {
2018 domain
->domain_flags
= trusts
.array
[i
].trust_flags
;
2019 domain
->domain_type
= trusts
.array
[i
].trust_type
;
2020 domain
->domain_trust_attribs
= trusts
.array
[i
].trust_attributes
;
2022 if ( domain
->domain_type
== NETR_TRUST_TYPE_UPLEVEL
)
2023 domain
->active_directory
= True
;
2025 /* This flag is only set if the domain is *our*
2026 primary domain and the primary domain is in
2029 domain
->native_mode
= (domain
->domain_flags
& NETR_TRUST_FLAG_NATIVE
);
2031 DEBUG(5, ("set_dc_type_and_flags_trustinfo: domain %s is %sin "
2032 "native mode.\n", domain
->name
,
2033 domain
->native_mode
? "" : "NOT "));
2035 DEBUG(5,("set_dc_type_and_flags_trustinfo: domain %s is %s"
2036 "running active directory.\n", domain
->name
,
2037 domain
->active_directory
? "" : "NOT "));
2039 domain
->can_do_ncacn_ip_tcp
= domain
->active_directory
;
2040 domain
->can_do_validation6
= domain
->active_directory
;
2042 domain
->initialized
= True
;
2048 talloc_destroy( mem_ctx
);
2050 return domain
->initialized
;
2053 /******************************************************************************
2054 We can 'sense' certain things about the DC by it's replies to certain
2057 This tells us if this particular remote server is Active Directory, and if it
2059 ******************************************************************************/
2061 static void set_dc_type_and_flags_connect( struct winbindd_domain
*domain
)
2063 NTSTATUS status
, result
;
2065 TALLOC_CTX
*mem_ctx
= NULL
;
2066 struct rpc_pipe_client
*cli
= NULL
;
2067 struct policy_handle pol
;
2068 union dssetup_DsRoleInfo info
;
2069 union lsa_PolicyInformation
*lsa_info
= NULL
;
2071 if (!connection_ok(domain
)) {
2075 mem_ctx
= talloc_init("set_dc_type_and_flags on domain %s\n",
2078 DEBUG(1, ("set_dc_type_and_flags_connect: talloc_init() failed\n"));
2082 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s\n", domain
->name
));
2084 status
= cli_rpc_pipe_open_noauth(domain
->conn
.cli
,
2085 &ndr_table_dssetup
.syntax_id
,
2088 if (!NT_STATUS_IS_OK(status
)) {
2089 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
2090 "PI_DSSETUP on domain %s: (%s)\n",
2091 domain
->name
, nt_errstr(status
)));
2093 /* if this is just a non-AD domain we need to continue
2094 * identifying so that we can in the end return with
2095 * domain->initialized = True - gd */
2100 status
= dcerpc_dssetup_DsRoleGetPrimaryDomainInformation(cli
->binding_handle
, mem_ctx
,
2101 DS_ROLE_BASIC_INFORMATION
,
2106 if (NT_STATUS_IS_OK(status
)) {
2107 result
= werror_to_ntstatus(werr
);
2109 if (!NT_STATUS_IS_OK(status
)) {
2110 DEBUG(5, ("set_dc_type_and_flags_connect: rpccli_ds_getprimarydominfo "
2111 "on domain %s failed: (%s)\n",
2112 domain
->name
, nt_errstr(status
)));
2114 /* older samba3 DCs will return DCERPC_FAULT_OP_RNG_ERROR for
2115 * every opcode on the DSSETUP pipe, continue with
2116 * no_dssetup mode here as well to get domain->initialized
2119 if (NT_STATUS_EQUAL(status
, NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE
)) {
2123 TALLOC_FREE(mem_ctx
);
2127 if ((info
.basic
.flags
& DS_ROLE_PRIMARY_DS_RUNNING
) &&
2128 !(info
.basic
.flags
& DS_ROLE_PRIMARY_DS_MIXED_MODE
)) {
2129 domain
->native_mode
= True
;
2131 domain
->native_mode
= False
;
2135 status
= cli_rpc_pipe_open_noauth(domain
->conn
.cli
,
2136 &ndr_table_lsarpc
.syntax_id
, &cli
);
2138 if (!NT_STATUS_IS_OK(status
)) {
2139 DEBUG(5, ("set_dc_type_and_flags_connect: Could not bind to "
2140 "PI_LSARPC on domain %s: (%s)\n",
2141 domain
->name
, nt_errstr(status
)));
2143 TALLOC_FREE(mem_ctx
);
2147 status
= rpccli_lsa_open_policy2(cli
, mem_ctx
, True
,
2148 SEC_FLAG_MAXIMUM_ALLOWED
, &pol
);
2150 if (NT_STATUS_IS_OK(status
)) {
2151 /* This particular query is exactly what Win2k clients use
2152 to determine that the DC is active directory */
2153 status
= dcerpc_lsa_QueryInfoPolicy2(cli
->binding_handle
, mem_ctx
,
2155 LSA_POLICY_INFO_DNS
,
2160 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(result
)) {
2161 domain
->active_directory
= True
;
2163 if (lsa_info
->dns
.name
.string
) {
2164 talloc_free(domain
->name
);
2165 domain
->name
= talloc_strdup(domain
,
2166 lsa_info
->dns
.name
.string
);
2167 if (domain
->name
== NULL
) {
2172 if (lsa_info
->dns
.dns_domain
.string
) {
2173 talloc_free(domain
->alt_name
);
2175 talloc_strdup(domain
,
2176 lsa_info
->dns
.dns_domain
.string
);
2177 if (domain
->alt_name
== NULL
) {
2182 /* See if we can set some domain trust flags about
2185 if (lsa_info
->dns
.dns_forest
.string
) {
2186 talloc_free(domain
->forest_name
);
2187 domain
->forest_name
=
2188 talloc_strdup(domain
,
2189 lsa_info
->dns
.dns_forest
.string
);
2190 if (domain
->forest_name
== NULL
) {
2194 if (strequal(domain
->forest_name
, domain
->alt_name
)) {
2195 domain
->domain_flags
|= NETR_TRUST_FLAG_TREEROOT
;
2199 if (lsa_info
->dns
.sid
) {
2200 sid_copy(&domain
->sid
, lsa_info
->dns
.sid
);
2203 domain
->active_directory
= False
;
2205 status
= rpccli_lsa_open_policy(cli
, mem_ctx
, True
,
2206 SEC_FLAG_MAXIMUM_ALLOWED
,
2209 if (!NT_STATUS_IS_OK(status
)) {
2213 status
= dcerpc_lsa_QueryInfoPolicy(cli
->binding_handle
, mem_ctx
,
2215 LSA_POLICY_INFO_ACCOUNT_DOMAIN
,
2218 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(result
)) {
2220 if (lsa_info
->account_domain
.name
.string
) {
2221 talloc_free(domain
->name
);
2223 talloc_strdup(domain
,
2224 lsa_info
->account_domain
.name
.string
);
2227 if (lsa_info
->account_domain
.sid
) {
2228 sid_copy(&domain
->sid
, lsa_info
->account_domain
.sid
);
2234 DEBUG(5, ("set_dc_type_and_flags_connect: domain %s is %sin native mode.\n",
2235 domain
->name
, domain
->native_mode
? "" : "NOT "));
2237 DEBUG(5,("set_dc_type_and_flags_connect: domain %s is %srunning active directory.\n",
2238 domain
->name
, domain
->active_directory
? "" : "NOT "));
2240 domain
->can_do_ncacn_ip_tcp
= domain
->active_directory
;
2241 domain
->can_do_validation6
= domain
->active_directory
;
2245 TALLOC_FREE(mem_ctx
);
2247 domain
->initialized
= True
;
2250 /**********************************************************************
2251 Set the domain_flags (trust attributes, domain operating modes, etc...
2252 ***********************************************************************/
2254 static void set_dc_type_and_flags( struct winbindd_domain
*domain
)
2256 /* we always have to contact our primary domain */
2258 if ( domain
->primary
) {
2259 DEBUG(10,("set_dc_type_and_flags: setting up flags for "
2260 "primary domain\n"));
2261 set_dc_type_and_flags_connect( domain
);
2265 /* Use our DC to get the information if possible */
2267 if ( !set_dc_type_and_flags_trustinfo( domain
) ) {
2268 /* Otherwise, fallback to contacting the
2270 set_dc_type_and_flags_connect( domain
);
2278 /**********************************************************************
2279 ***********************************************************************/
2281 static NTSTATUS
cm_get_schannel_creds(struct winbindd_domain
*domain
,
2282 struct netlogon_creds_CredentialState
**ppdc
)
2284 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
2285 struct rpc_pipe_client
*netlogon_pipe
;
2287 if (lp_client_schannel() == False
) {
2288 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
2291 result
= cm_connect_netlogon(domain
, &netlogon_pipe
);
2292 if (!NT_STATUS_IS_OK(result
)) {
2296 /* Return a pointer to the struct netlogon_creds_CredentialState from the
2299 if (!domain
->conn
.netlogon_pipe
->dc
) {
2300 return NT_STATUS_INTERNAL_ERROR
; /* This shouldn't happen. */
2303 *ppdc
= domain
->conn
.netlogon_pipe
->dc
;
2304 return NT_STATUS_OK
;
2307 NTSTATUS
cm_connect_sam(struct winbindd_domain
*domain
, TALLOC_CTX
*mem_ctx
,
2308 struct rpc_pipe_client
**cli
, struct policy_handle
*sam_handle
)
2310 struct winbindd_cm_conn
*conn
;
2311 NTSTATUS status
, result
;
2312 struct netlogon_creds_CredentialState
*p_creds
;
2313 char *machine_password
= NULL
;
2314 char *machine_account
= NULL
;
2315 const char *domain_name
= NULL
;
2317 if (sid_check_is_our_sam(&domain
->sid
)) {
2318 return open_internal_samr_conn(mem_ctx
, domain
, cli
, sam_handle
);
2321 status
= init_dc_connection_rpc(domain
);
2322 if (!NT_STATUS_IS_OK(status
)) {
2326 conn
= &domain
->conn
;
2328 if (rpccli_is_connected(conn
->samr_pipe
)) {
2332 TALLOC_FREE(conn
->samr_pipe
);
2335 * No SAMR pipe yet. Attempt to get an NTLMSSP SPNEGO authenticated
2336 * sign and sealed pipe using the machine account password by
2337 * preference. If we can't - try schannel, if that fails, try
2341 if ((conn
->cli
->user_name
[0] == '\0') ||
2342 (conn
->cli
->domain
[0] == '\0') ||
2343 (conn
->cli
->password
== NULL
|| conn
->cli
->password
[0] == '\0'))
2345 status
= get_trust_creds(domain
, &machine_password
,
2346 &machine_account
, NULL
);
2347 if (!NT_STATUS_IS_OK(status
)) {
2348 DEBUG(10, ("cm_connect_sam: No no user available for "
2349 "domain %s, trying schannel\n", conn
->cli
->domain
));
2352 domain_name
= domain
->name
;
2354 machine_password
= SMB_STRDUP(conn
->cli
->password
);
2355 machine_account
= SMB_STRDUP(conn
->cli
->user_name
);
2356 domain_name
= conn
->cli
->domain
;
2359 if (!machine_password
|| !machine_account
) {
2360 status
= NT_STATUS_NO_MEMORY
;
2364 /* We have an authenticated connection. Use a NTLMSSP SPNEGO
2365 authenticated SAMR pipe with sign & seal. */
2366 status
= cli_rpc_pipe_open_spnego(conn
->cli
,
2370 DCERPC_AUTH_LEVEL_PRIVACY
,
2371 smbXcli_conn_remote_name(conn
->cli
->conn
),
2377 if (!NT_STATUS_IS_OK(status
)) {
2378 DEBUG(10,("cm_connect_sam: failed to connect to SAMR "
2379 "pipe for domain %s using NTLMSSP "
2380 "authenticated pipe: user %s\\%s. Error was "
2381 "%s\n", domain
->name
, domain_name
,
2382 machine_account
, nt_errstr(status
)));
2386 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for "
2387 "domain %s using NTLMSSP authenticated "
2388 "pipe: user %s\\%s\n", domain
->name
,
2389 domain_name
, machine_account
));
2391 status
= dcerpc_samr_Connect2(conn
->samr_pipe
->binding_handle
, mem_ctx
,
2392 conn
->samr_pipe
->desthost
,
2393 SEC_FLAG_MAXIMUM_ALLOWED
,
2394 &conn
->sam_connect_handle
,
2396 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(result
)) {
2399 if (NT_STATUS_IS_OK(status
)) {
2403 DEBUG(10,("cm_connect_sam: ntlmssp-sealed dcerpc_samr_Connect2 "
2404 "failed for domain %s, error was %s. Trying schannel\n",
2405 domain
->name
, nt_errstr(status
) ));
2406 TALLOC_FREE(conn
->samr_pipe
);
2410 /* Fall back to schannel if it's a W2K pre-SP1 box. */
2412 status
= cm_get_schannel_creds(domain
, &p_creds
);
2413 if (!NT_STATUS_IS_OK(status
)) {
2414 /* If this call fails - conn->cli can now be NULL ! */
2415 DEBUG(10, ("cm_connect_sam: Could not get schannel auth info "
2416 "for domain %s (error %s), trying anon\n",
2418 nt_errstr(status
) ));
2421 status
= cli_rpc_pipe_open_schannel_with_key
2422 (conn
->cli
, &ndr_table_samr
.syntax_id
, NCACN_NP
,
2423 DCERPC_AUTH_LEVEL_PRIVACY
,
2424 domain
->name
, &p_creds
, &conn
->samr_pipe
);
2426 if (!NT_STATUS_IS_OK(status
)) {
2427 DEBUG(10,("cm_connect_sam: failed to connect to SAMR pipe for "
2428 "domain %s using schannel. Error was %s\n",
2429 domain
->name
, nt_errstr(status
) ));
2432 DEBUG(10,("cm_connect_sam: connected to SAMR pipe for domain %s using "
2433 "schannel.\n", domain
->name
));
2435 status
= dcerpc_samr_Connect2(conn
->samr_pipe
->binding_handle
, mem_ctx
,
2436 conn
->samr_pipe
->desthost
,
2437 SEC_FLAG_MAXIMUM_ALLOWED
,
2438 &conn
->sam_connect_handle
,
2440 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(result
)) {
2443 if (NT_STATUS_IS_OK(status
)) {
2446 DEBUG(10,("cm_connect_sam: schannel-sealed dcerpc_samr_Connect2 failed "
2447 "for domain %s, error was %s. Trying anonymous\n",
2448 domain
->name
, nt_errstr(status
) ));
2449 TALLOC_FREE(conn
->samr_pipe
);
2453 /* Finally fall back to anonymous. */
2454 status
= cli_rpc_pipe_open_noauth(conn
->cli
, &ndr_table_samr
.syntax_id
,
2457 if (!NT_STATUS_IS_OK(status
)) {
2461 status
= dcerpc_samr_Connect2(conn
->samr_pipe
->binding_handle
, mem_ctx
,
2462 conn
->samr_pipe
->desthost
,
2463 SEC_FLAG_MAXIMUM_ALLOWED
,
2464 &conn
->sam_connect_handle
,
2466 if (!NT_STATUS_IS_OK(status
)) {
2467 DEBUG(10,("cm_connect_sam: rpccli_samr_Connect2 failed "
2468 "for domain %s Error was %s\n",
2469 domain
->name
, nt_errstr(status
) ));
2472 if (!NT_STATUS_IS_OK(result
)) {
2474 DEBUG(10,("cm_connect_sam: dcerpc_samr_Connect2 failed "
2475 "for domain %s Error was %s\n",
2476 domain
->name
, nt_errstr(result
)));
2481 status
= dcerpc_samr_OpenDomain(conn
->samr_pipe
->binding_handle
,
2483 &conn
->sam_connect_handle
,
2484 SEC_FLAG_MAXIMUM_ALLOWED
,
2486 &conn
->sam_domain_handle
,
2488 if (!NT_STATUS_IS_OK(status
)) {
2495 if (NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
2497 * if we got access denied, we might just have no access rights
2498 * to talk to the remote samr server server (e.g. when we are a
2499 * PDC and we are connecting a w2k8 pdc via an interdomain
2500 * trust). In that case do not invalidate the whole connection
2503 TALLOC_FREE(conn
->samr_pipe
);
2504 ZERO_STRUCT(conn
->sam_domain_handle
);
2506 } else if (!NT_STATUS_IS_OK(status
)) {
2507 invalidate_cm_connection(conn
);
2511 *cli
= conn
->samr_pipe
;
2512 *sam_handle
= conn
->sam_domain_handle
;
2513 SAFE_FREE(machine_password
);
2514 SAFE_FREE(machine_account
);
2518 /**********************************************************************
2519 open an schanneld ncacn_ip_tcp connection to LSA
2520 ***********************************************************************/
2522 NTSTATUS
cm_connect_lsa_tcp(struct winbindd_domain
*domain
,
2523 TALLOC_CTX
*mem_ctx
,
2524 struct rpc_pipe_client
**cli
)
2526 struct winbindd_cm_conn
*conn
;
2527 struct netlogon_creds_CredentialState
*creds
;
2530 DEBUG(10,("cm_connect_lsa_tcp\n"));
2532 status
= init_dc_connection_rpc(domain
);
2533 if (!NT_STATUS_IS_OK(status
)) {
2537 conn
= &domain
->conn
;
2539 if (conn
->lsa_pipe_tcp
&&
2540 conn
->lsa_pipe_tcp
->transport
->transport
== NCACN_IP_TCP
&&
2541 conn
->lsa_pipe_tcp
->auth
->auth_level
== DCERPC_AUTH_LEVEL_PRIVACY
&&
2542 rpccli_is_connected(conn
->lsa_pipe_tcp
)) {
2546 TALLOC_FREE(conn
->lsa_pipe_tcp
);
2548 status
= cm_get_schannel_creds(domain
, &creds
);
2549 if (!NT_STATUS_IS_OK(status
)) {
2553 status
= cli_rpc_pipe_open_schannel_with_key(conn
->cli
,
2554 &ndr_table_lsarpc
.syntax_id
,
2556 DCERPC_AUTH_LEVEL_PRIVACY
,
2559 &conn
->lsa_pipe_tcp
);
2560 if (!NT_STATUS_IS_OK(status
)) {
2561 DEBUG(10,("cli_rpc_pipe_open_schannel_with_key failed: %s\n",
2562 nt_errstr(status
)));
2567 if (!NT_STATUS_IS_OK(status
)) {
2568 TALLOC_FREE(conn
->lsa_pipe_tcp
);
2572 *cli
= conn
->lsa_pipe_tcp
;
2577 NTSTATUS
cm_connect_lsa(struct winbindd_domain
*domain
, TALLOC_CTX
*mem_ctx
,
2578 struct rpc_pipe_client
**cli
, struct policy_handle
*lsa_policy
)
2580 struct winbindd_cm_conn
*conn
;
2581 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
2582 struct netlogon_creds_CredentialState
*p_creds
;
2584 result
= init_dc_connection_rpc(domain
);
2585 if (!NT_STATUS_IS_OK(result
))
2588 conn
= &domain
->conn
;
2590 if (rpccli_is_connected(conn
->lsa_pipe
)) {
2594 TALLOC_FREE(conn
->lsa_pipe
);
2596 if ((conn
->cli
->user_name
[0] == '\0') ||
2597 (conn
->cli
->domain
[0] == '\0') ||
2598 (conn
->cli
->password
== NULL
|| conn
->cli
->password
[0] == '\0')) {
2599 DEBUG(10, ("cm_connect_lsa: No no user available for "
2600 "domain %s, trying schannel\n", conn
->cli
->domain
));
2604 /* We have an authenticated connection. Use a NTLMSSP SPNEGO
2605 * authenticated LSA pipe with sign & seal. */
2606 result
= cli_rpc_pipe_open_spnego
2607 (conn
->cli
, &ndr_table_lsarpc
, NCACN_NP
,
2609 DCERPC_AUTH_LEVEL_PRIVACY
,
2610 smbXcli_conn_remote_name(conn
->cli
->conn
),
2611 conn
->cli
->domain
, conn
->cli
->user_name
, conn
->cli
->password
,
2614 if (!NT_STATUS_IS_OK(result
)) {
2615 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
2616 "domain %s using NTLMSSP authenticated pipe: user "
2617 "%s\\%s. Error was %s. Trying schannel.\n",
2618 domain
->name
, conn
->cli
->domain
,
2619 conn
->cli
->user_name
, nt_errstr(result
)));
2623 DEBUG(10,("cm_connect_lsa: connected to LSA pipe for domain %s using "
2624 "NTLMSSP authenticated pipe: user %s\\%s\n",
2625 domain
->name
, conn
->cli
->domain
, conn
->cli
->user_name
));
2627 result
= rpccli_lsa_open_policy(conn
->lsa_pipe
, mem_ctx
, True
,
2628 SEC_FLAG_MAXIMUM_ALLOWED
,
2630 if (NT_STATUS_IS_OK(result
)) {
2634 DEBUG(10,("cm_connect_lsa: rpccli_lsa_open_policy failed, trying "
2637 TALLOC_FREE(conn
->lsa_pipe
);
2641 /* Fall back to schannel if it's a W2K pre-SP1 box. */
2643 result
= cm_get_schannel_creds(domain
, &p_creds
);
2644 if (!NT_STATUS_IS_OK(result
)) {
2645 /* If this call fails - conn->cli can now be NULL ! */
2646 DEBUG(10, ("cm_connect_lsa: Could not get schannel auth info "
2647 "for domain %s (error %s), trying anon\n",
2649 nt_errstr(result
) ));
2652 result
= cli_rpc_pipe_open_schannel_with_key
2653 (conn
->cli
, &ndr_table_lsarpc
.syntax_id
, NCACN_NP
,
2654 DCERPC_AUTH_LEVEL_PRIVACY
,
2655 domain
->name
, &p_creds
, &conn
->lsa_pipe
);
2657 if (!NT_STATUS_IS_OK(result
)) {
2658 DEBUG(10,("cm_connect_lsa: failed to connect to LSA pipe for "
2659 "domain %s using schannel. Error was %s\n",
2660 domain
->name
, nt_errstr(result
) ));
2663 DEBUG(10,("cm_connect_lsa: connected to LSA pipe for domain %s using "
2664 "schannel.\n", domain
->name
));
2666 result
= rpccli_lsa_open_policy(conn
->lsa_pipe
, mem_ctx
, True
,
2667 SEC_FLAG_MAXIMUM_ALLOWED
,
2669 if (NT_STATUS_IS_OK(result
)) {
2673 DEBUG(10,("cm_connect_lsa: rpccli_lsa_open_policy failed, trying "
2676 TALLOC_FREE(conn
->lsa_pipe
);
2680 result
= cli_rpc_pipe_open_noauth(conn
->cli
,
2681 &ndr_table_lsarpc
.syntax_id
,
2683 if (!NT_STATUS_IS_OK(result
)) {
2684 result
= NT_STATUS_PIPE_NOT_AVAILABLE
;
2688 result
= rpccli_lsa_open_policy(conn
->lsa_pipe
, mem_ctx
, True
,
2689 SEC_FLAG_MAXIMUM_ALLOWED
,
2692 if (!NT_STATUS_IS_OK(result
)) {
2693 invalidate_cm_connection(conn
);
2697 *cli
= conn
->lsa_pipe
;
2698 *lsa_policy
= conn
->lsa_policy
;
2702 /****************************************************************************
2703 Open a LSA connection to a DC, suiteable for LSA lookup calls.
2704 ****************************************************************************/
2706 NTSTATUS
cm_connect_lsat(struct winbindd_domain
*domain
,
2707 TALLOC_CTX
*mem_ctx
,
2708 struct rpc_pipe_client
**cli
,
2709 struct policy_handle
*lsa_policy
)
2713 if (domain
->can_do_ncacn_ip_tcp
) {
2714 status
= cm_connect_lsa_tcp(domain
, mem_ctx
, cli
);
2715 if (NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
) ||
2716 NT_STATUS_EQUAL(status
, NT_STATUS_RPC_SEC_PKG_ERROR
) ||
2717 NT_STATUS_EQUAL(status
, NT_STATUS_NETWORK_ACCESS_DENIED
)) {
2718 invalidate_cm_connection(&domain
->conn
);
2719 status
= cm_connect_lsa_tcp(domain
, mem_ctx
, cli
);
2721 if (NT_STATUS_IS_OK(status
)) {
2726 * we tried twice to connect via ncan_ip_tcp and schannel and
2727 * failed - maybe it is a trusted domain we can't connect to ?
2728 * do not try tcp next time - gd
2730 domain
->can_do_ncacn_ip_tcp
= false;
2733 status
= cm_connect_lsa(domain
, mem_ctx
, cli
, lsa_policy
);
2738 /****************************************************************************
2739 Open the netlogon pipe to this DC. Use schannel if specified in client conf.
2740 session key stored in conn->netlogon_pipe->dc->sess_key.
2741 ****************************************************************************/
2743 NTSTATUS
cm_connect_netlogon(struct winbindd_domain
*domain
,
2744 struct rpc_pipe_client
**cli
)
2746 struct winbindd_cm_conn
*conn
;
2749 uint32_t neg_flags
= NETLOGON_NEG_AUTH2_ADS_FLAGS
| NETLOGON_NEG_SUPPORTS_AES
;
2750 uint8_t mach_pwd
[16];
2751 enum netr_SchannelType sec_chan_type
;
2752 const char *account_name
;
2753 struct rpc_pipe_client
*netlogon_pipe
= NULL
;
2757 result
= init_dc_connection_rpc(domain
);
2758 if (!NT_STATUS_IS_OK(result
)) {
2762 conn
= &domain
->conn
;
2764 if (rpccli_is_connected(conn
->netlogon_pipe
)) {
2765 *cli
= conn
->netlogon_pipe
;
2766 return NT_STATUS_OK
;
2769 TALLOC_FREE(conn
->netlogon_pipe
);
2771 result
= cli_rpc_pipe_open_noauth(conn
->cli
,
2772 &ndr_table_netlogon
.syntax_id
,
2774 if (!NT_STATUS_IS_OK(result
)) {
2778 if ((!IS_DC
) && (!domain
->primary
)) {
2779 /* Clear the schannel request bit and drop down */
2780 neg_flags
&= ~NETLOGON_NEG_SCHANNEL
;
2784 if (lp_client_schannel() != False
) {
2785 neg_flags
|= NETLOGON_NEG_SCHANNEL
;
2788 if (!get_trust_pw_hash(domain
->name
, mach_pwd
, &account_name
,
2791 TALLOC_FREE(netlogon_pipe
);
2792 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
2795 result
= rpccli_netlogon_setup_creds(
2797 domain
->dcname
, /* server name. */
2798 domain
->name
, /* domain name */
2799 lp_netbios_name(), /* client name */
2800 account_name
, /* machine account */
2801 mach_pwd
, /* machine password */
2802 sec_chan_type
, /* from get_trust_pw */
2805 if (!NT_STATUS_IS_OK(result
)) {
2806 TALLOC_FREE(netlogon_pipe
);
2810 if ((lp_client_schannel() == True
) &&
2811 ((neg_flags
& NETLOGON_NEG_SCHANNEL
) == 0)) {
2812 DEBUG(3, ("Server did not offer schannel\n"));
2813 TALLOC_FREE(netlogon_pipe
);
2814 return NT_STATUS_ACCESS_DENIED
;
2818 if ((lp_client_schannel() == False
) ||
2819 ((neg_flags
& NETLOGON_NEG_SCHANNEL
) == 0)) {
2821 * NetSamLogonEx only works for schannel
2823 domain
->can_do_samlogon_ex
= False
;
2825 /* We're done - just keep the existing connection to NETLOGON
2827 conn
->netlogon_pipe
= netlogon_pipe
;
2828 *cli
= conn
->netlogon_pipe
;
2829 return NT_STATUS_OK
;
2832 /* Using the credentials from the first pipe, open a signed and sealed
2833 second netlogon pipe. The session key is stored in the schannel
2834 part of the new pipe auth struct.
2837 result
= cli_rpc_pipe_open_schannel_with_key(
2838 conn
->cli
, &ndr_table_netlogon
.syntax_id
, NCACN_NP
,
2839 DCERPC_AUTH_LEVEL_PRIVACY
, domain
->name
, &netlogon_pipe
->dc
,
2840 &conn
->netlogon_pipe
);
2842 /* We can now close the initial netlogon pipe. */
2843 TALLOC_FREE(netlogon_pipe
);
2845 if (!NT_STATUS_IS_OK(result
)) {
2846 DEBUG(3, ("Could not open schannel'ed NETLOGON pipe. Error "
2847 "was %s\n", nt_errstr(result
)));
2849 invalidate_cm_connection(conn
);
2854 * Always try netr_LogonSamLogonEx. We will fall back for NT4
2855 * which gives DCERPC_FAULT_OP_RNG_ERROR (function not
2856 * supported). We used to only try SamLogonEx for AD, but
2857 * Samba DCs can also do it. And because we don't distinguish
2858 * between Samba and NT4, always try it once.
2860 domain
->can_do_samlogon_ex
= true;
2862 *cli
= conn
->netlogon_pipe
;
2863 return NT_STATUS_OK
;
2866 void winbind_msg_ip_dropped(struct messaging_context
*msg_ctx
,
2869 struct server_id server_id
,
2872 struct winbindd_domain
*domain
;
2873 char *freeit
= NULL
;
2877 || (data
->data
== NULL
)
2878 || (data
->length
== 0)
2879 || (data
->data
[data
->length
-1] != '\0')) {
2880 DEBUG(1, ("invalid msg_ip_dropped message: not a valid "
2885 addr
= (char *)data
->data
;
2886 DEBUG(10, ("IP %s dropped\n", addr
));
2888 if (!is_ipaddress(addr
)) {
2891 * Some code sends us ip addresses with the /netmask
2894 slash
= strchr(addr
, '/');
2895 if (slash
== NULL
) {
2896 DEBUG(1, ("invalid msg_ip_dropped message: %s",
2900 freeit
= talloc_strndup(talloc_tos(), addr
, slash
-addr
);
2901 if (freeit
== NULL
) {
2902 DEBUG(1, ("talloc failed\n"));
2906 DEBUG(10, ("Stripped /netmask to IP %s\n", addr
));
2909 for (domain
= domain_list(); domain
!= NULL
; domain
= domain
->next
) {
2910 char sockaddr
[INET6_ADDRSTRLEN
];
2912 if (!cli_state_is_connected(domain
->conn
.cli
)) {
2916 print_sockaddr(sockaddr
, sizeof(sockaddr
),
2917 smbXcli_conn_local_sockaddr(domain
->conn
.cli
->conn
));
2919 if (strequal(sockaddr
, addr
)) {
2920 smbXcli_conn_disconnect(domain
->conn
.cli
->conn
, NT_STATUS_OK
);
2923 TALLOC_FREE(freeit
);