2 * Unix SMB/CIFS implementation.
4 * Copyright (C) Gerald (Jerry) Carter 2006
5 * Copyright (C) Guenther Deschner 2007-2008
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
23 #include "librpc/gen_ndr/ndr_libnet_join.h"
24 #include "libnet/libnet_join.h"
25 #include "libcli/auth/libcli_auth.h"
26 #include "../librpc/gen_ndr/ndr_samr_c.h"
27 #include "rpc_client/init_samr.h"
28 #include "../librpc/gen_ndr/ndr_lsa_c.h"
29 #include "rpc_client/cli_lsarpc.h"
30 #include "../librpc/gen_ndr/ndr_netlogon.h"
31 #include "rpc_client/cli_netlogon.h"
32 #include "lib/smbconf/smbconf.h"
33 #include "lib/smbconf/smbconf_reg.h"
34 #include "../libds/common/flags.h"
36 #include "rpc_client/init_lsa.h"
37 #include "rpc_client/cli_pipe.h"
38 #include "../libcli/security/security.h"
40 #include "libsmb/libsmb.h"
41 #include "../libcli/smb/smbXcli_base.h"
42 #include "lib/param/loadparm.h"
43 #include "libcli/auth/netlogon_creds_cli.h"
44 #include "auth/credentials/credentials.h"
47 /****************************************************************
48 ****************************************************************/
50 #define LIBNET_JOIN_DUMP_CTX(ctx, r, f) \
53 str = NDR_PRINT_FUNCTION_STRING(ctx, libnet_JoinCtx, f, r); \
54 DEBUG(1,("libnet_Join:\n%s", str)); \
58 #define LIBNET_JOIN_IN_DUMP_CTX(ctx, r) \
59 LIBNET_JOIN_DUMP_CTX(ctx, r, NDR_IN | NDR_SET_VALUES)
60 #define LIBNET_JOIN_OUT_DUMP_CTX(ctx, r) \
61 LIBNET_JOIN_DUMP_CTX(ctx, r, NDR_OUT)
63 #define LIBNET_UNJOIN_DUMP_CTX(ctx, r, f) \
66 str = NDR_PRINT_FUNCTION_STRING(ctx, libnet_UnjoinCtx, f, r); \
67 DEBUG(1,("libnet_Unjoin:\n%s", str)); \
71 #define LIBNET_UNJOIN_IN_DUMP_CTX(ctx, r) \
72 LIBNET_UNJOIN_DUMP_CTX(ctx, r, NDR_IN | NDR_SET_VALUES)
73 #define LIBNET_UNJOIN_OUT_DUMP_CTX(ctx, r) \
74 LIBNET_UNJOIN_DUMP_CTX(ctx, r, NDR_OUT)
76 /****************************************************************
77 ****************************************************************/
79 static void libnet_join_set_error_string(TALLOC_CTX
*mem_ctx
,
80 struct libnet_JoinCtx
*r
,
81 const char *format
, ...)
82 PRINTF_ATTRIBUTE(3,4);
84 static void libnet_join_set_error_string(TALLOC_CTX
*mem_ctx
,
85 struct libnet_JoinCtx
*r
,
86 const char *format
, ...)
90 if (r
->out
.error_string
) {
94 va_start(args
, format
);
95 r
->out
.error_string
= talloc_vasprintf(mem_ctx
, format
, args
);
99 /****************************************************************
100 ****************************************************************/
102 static void libnet_unjoin_set_error_string(TALLOC_CTX
*mem_ctx
,
103 struct libnet_UnjoinCtx
*r
,
104 const char *format
, ...)
105 PRINTF_ATTRIBUTE(3,4);
107 static void libnet_unjoin_set_error_string(TALLOC_CTX
*mem_ctx
,
108 struct libnet_UnjoinCtx
*r
,
109 const char *format
, ...)
113 if (r
->out
.error_string
) {
117 va_start(args
, format
);
118 r
->out
.error_string
= talloc_vasprintf(mem_ctx
, format
, args
);
124 /****************************************************************
125 ****************************************************************/
127 static ADS_STATUS
libnet_connect_ads(const char *dns_domain_name
,
128 const char *netbios_domain_name
,
130 const char *user_name
,
131 const char *password
,
136 ADS_STRUCT
*my_ads
= NULL
;
139 my_ads
= ads_init(dns_domain_name
,
143 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
147 SAFE_FREE(my_ads
->auth
.user_name
);
148 my_ads
->auth
.user_name
= SMB_STRDUP(user_name
);
149 if ((cp
= strchr_m(my_ads
->auth
.user_name
, '@'))!=0) {
151 SAFE_FREE(my_ads
->auth
.realm
);
152 my_ads
->auth
.realm
= smb_xstrdup(cp
);
153 if (!strupper_m(my_ads
->auth
.realm
)) {
154 ads_destroy(&my_ads
);
155 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
161 SAFE_FREE(my_ads
->auth
.password
);
162 my_ads
->auth
.password
= SMB_STRDUP(password
);
165 if (ccname
!= NULL
) {
166 SAFE_FREE(my_ads
->auth
.ccache_name
);
167 my_ads
->auth
.ccache_name
= SMB_STRDUP(ccname
);
168 setenv(KRB5_ENV_CCNAME
, my_ads
->auth
.ccache_name
, 1);
171 status
= ads_connect_user_creds(my_ads
);
172 if (!ADS_ERR_OK(status
)) {
173 ads_destroy(&my_ads
);
181 /****************************************************************
182 ****************************************************************/
184 static ADS_STATUS
libnet_join_connect_ads(TALLOC_CTX
*mem_ctx
,
185 struct libnet_JoinCtx
*r
,
186 bool use_machine_creds
)
189 const char *username
;
190 const char *password
;
191 const char *ccname
= NULL
;
193 if (use_machine_creds
) {
194 if (r
->in
.machine_name
== NULL
||
195 r
->in
.machine_password
== NULL
) {
196 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
198 username
= talloc_asprintf(mem_ctx
, "%s$",
200 if (username
== NULL
) {
201 return ADS_ERROR(LDAP_NO_MEMORY
);
203 password
= r
->in
.machine_password
;
204 ccname
= "MEMORY:libnet_join_machine_creds";
206 username
= r
->in
.admin_account
;
207 password
= r
->in
.admin_password
;
210 * when r->in.use_kerberos is set to allow "net ads join -k" we
211 * may not override the provided credential cache - gd
214 if (!r
->in
.use_kerberos
) {
215 ccname
= "MEMORY:libnet_join_user_creds";
219 status
= libnet_connect_ads(r
->out
.dns_domain_name
,
220 r
->out
.netbios_domain_name
,
226 if (!ADS_ERR_OK(status
)) {
227 libnet_join_set_error_string(mem_ctx
, r
,
228 "failed to connect to AD: %s",
233 if (!r
->out
.netbios_domain_name
) {
234 r
->out
.netbios_domain_name
= talloc_strdup(mem_ctx
,
235 r
->in
.ads
->server
.workgroup
);
236 ADS_ERROR_HAVE_NO_MEMORY(r
->out
.netbios_domain_name
);
239 if (!r
->out
.dns_domain_name
) {
240 r
->out
.dns_domain_name
= talloc_strdup(mem_ctx
,
241 r
->in
.ads
->config
.realm
);
242 ADS_ERROR_HAVE_NO_MEMORY(r
->out
.dns_domain_name
);
245 r
->out
.domain_is_ad
= true;
250 /****************************************************************
251 ****************************************************************/
253 static ADS_STATUS
libnet_join_connect_ads_user(TALLOC_CTX
*mem_ctx
,
254 struct libnet_JoinCtx
*r
)
256 return libnet_join_connect_ads(mem_ctx
, r
, false);
259 /****************************************************************
260 ****************************************************************/
262 static ADS_STATUS
libnet_join_connect_ads_machine(TALLOC_CTX
*mem_ctx
,
263 struct libnet_JoinCtx
*r
)
265 return libnet_join_connect_ads(mem_ctx
, r
, true);
268 /****************************************************************
269 ****************************************************************/
271 static ADS_STATUS
libnet_unjoin_connect_ads(TALLOC_CTX
*mem_ctx
,
272 struct libnet_UnjoinCtx
*r
)
276 status
= libnet_connect_ads(r
->in
.domain_name
,
280 r
->in
.admin_password
,
283 if (!ADS_ERR_OK(status
)) {
284 libnet_unjoin_set_error_string(mem_ctx
, r
,
285 "failed to connect to AD: %s",
292 /****************************************************************
293 join a domain using ADS (LDAP mods)
294 ****************************************************************/
296 static ADS_STATUS
libnet_join_precreate_machine_acct(TALLOC_CTX
*mem_ctx
,
297 struct libnet_JoinCtx
*r
)
300 LDAPMessage
*res
= NULL
;
301 const char *attrs
[] = { "dn", NULL
};
304 status
= ads_check_ou_dn(mem_ctx
, r
->in
.ads
, &r
->in
.account_ou
);
305 if (!ADS_ERR_OK(status
)) {
309 status
= ads_search_dn(r
->in
.ads
, &res
, r
->in
.account_ou
, attrs
);
310 if (!ADS_ERR_OK(status
)) {
314 if (ads_count_replies(r
->in
.ads
, res
) != 1) {
315 ads_msgfree(r
->in
.ads
, res
);
316 return ADS_ERROR_LDAP(LDAP_NO_SUCH_OBJECT
);
319 ads_msgfree(r
->in
.ads
, res
);
321 /* Attempt to create the machine account and bail if this fails.
322 Assume that the admin wants exactly what they requested */
324 status
= ads_create_machine_acct(r
->in
.ads
,
327 r
->in
.desired_encryption_types
);
329 if (ADS_ERR_OK(status
)) {
330 DEBUG(1,("machine account creation created\n"));
332 } else if ((status
.error_type
== ENUM_ADS_ERROR_LDAP
) &&
333 (status
.err
.rc
== LDAP_ALREADY_EXISTS
)) {
334 status
= ADS_SUCCESS
;
337 if (!ADS_ERR_OK(status
)) {
338 DEBUG(1,("machine account creation failed\n"));
342 status
= ads_move_machine_acct(r
->in
.ads
,
346 if (!ADS_ERR_OK(status
)) {
347 DEBUG(1,("failure to locate/move pre-existing "
348 "machine account\n"));
352 DEBUG(1,("The machine account %s the specified OU.\n",
353 moved
? "was moved into" : "already exists in"));
358 /****************************************************************
359 ****************************************************************/
361 static ADS_STATUS
libnet_unjoin_remove_machine_acct(TALLOC_CTX
*mem_ctx
,
362 struct libnet_UnjoinCtx
*r
)
367 status
= libnet_unjoin_connect_ads(mem_ctx
, r
);
368 if (!ADS_ERR_OK(status
)) {
369 libnet_unjoin_set_error_string(mem_ctx
, r
,
370 "failed to connect to AD: %s",
376 status
= ads_leave_realm(r
->in
.ads
, r
->in
.machine_name
);
377 if (!ADS_ERR_OK(status
)) {
378 libnet_unjoin_set_error_string(mem_ctx
, r
,
379 "failed to leave realm: %s",
387 /****************************************************************
388 ****************************************************************/
390 static ADS_STATUS
libnet_join_find_machine_acct(TALLOC_CTX
*mem_ctx
,
391 struct libnet_JoinCtx
*r
)
394 LDAPMessage
*res
= NULL
;
397 if (!r
->in
.machine_name
) {
398 return ADS_ERROR(LDAP_NO_MEMORY
);
401 status
= ads_find_machine_acct(r
->in
.ads
,
404 if (!ADS_ERR_OK(status
)) {
408 if (ads_count_replies(r
->in
.ads
, res
) != 1) {
409 status
= ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
413 dn
= ads_get_dn(r
->in
.ads
, mem_ctx
, res
);
415 status
= ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
419 r
->out
.dn
= talloc_strdup(mem_ctx
, dn
);
421 status
= ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
425 if (!ads_pull_uint32(r
->in
.ads
, res
, "msDS-SupportedEncryptionTypes",
426 &r
->out
.set_encryption_types
)) {
427 r
->out
.set_encryption_types
= 0;
431 ads_msgfree(r
->in
.ads
, res
);
437 static ADS_STATUS
libnet_join_get_machine_spns(TALLOC_CTX
*mem_ctx
,
438 struct libnet_JoinCtx
*r
,
444 if (r
->in
.machine_name
== NULL
) {
445 return ADS_ERROR_SYSTEM(EINVAL
);
448 status
= ads_get_service_principal_names(mem_ctx
,
457 /****************************************************************
458 Set a machines dNSHostName and servicePrincipalName attributes
459 ****************************************************************/
461 static ADS_STATUS
libnet_join_set_machine_spn(TALLOC_CTX
*mem_ctx
,
462 struct libnet_JoinCtx
*r
)
467 const char **spn_array
= NULL
;
471 const char **netbios_aliases
= NULL
;
475 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
476 if (!ADS_ERR_OK(status
)) {
480 status
= libnet_join_get_machine_spns(mem_ctx
,
482 discard_const_p(char **, &spn_array
),
484 if (!ADS_ERR_OK(status
)) {
485 DEBUG(5, ("Retrieving the servicePrincipalNames failed.\n"));
488 /* Windows only creates HOST/shortname & HOST/fqdn. */
490 spn
= talloc_asprintf(mem_ctx
, "HOST/%s", r
->in
.machine_name
);
492 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
494 if (!strupper_m(spn
)) {
495 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
498 ok
= ads_element_in_array(spn_array
, num_spns
, spn
);
500 ok
= add_string_to_array(spn_array
, spn
,
501 &spn_array
, &num_spns
);
503 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
507 if (!name_to_fqdn(my_fqdn
, r
->in
.machine_name
)
508 || (strchr(my_fqdn
, '.') == NULL
)) {
509 fstr_sprintf(my_fqdn
, "%s.%s", r
->in
.machine_name
,
510 r
->out
.dns_domain_name
);
513 if (!strlower_m(my_fqdn
)) {
514 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
517 if (!strequal(my_fqdn
, r
->in
.machine_name
)) {
518 spn
= talloc_asprintf(mem_ctx
, "HOST/%s", my_fqdn
);
520 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
523 ok
= ads_element_in_array(spn_array
, num_spns
, spn
);
525 ok
= add_string_to_array(spn_array
, spn
,
526 &spn_array
, &num_spns
);
528 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
533 netbios_aliases
= lp_netbios_aliases();
534 if (netbios_aliases
!= NULL
) {
535 for (; *netbios_aliases
!= NULL
; netbios_aliases
++) {
537 * Add HOST/NETBIOSNAME
539 spn
= talloc_asprintf(mem_ctx
, "HOST/%s", *netbios_aliases
);
542 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
544 if (!strupper_m(spn
)) {
546 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
549 ok
= ads_element_in_array(spn_array
, num_spns
, spn
);
554 ok
= add_string_to_array(spn_array
, spn
,
555 &spn_array
, &num_spns
);
558 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
563 * Add HOST/netbiosname.domainname
565 if (r
->out
.dns_domain_name
== NULL
) {
568 fstr_sprintf(my_fqdn
, "%s.%s",
570 r
->out
.dns_domain_name
);
572 spn
= talloc_asprintf(mem_ctx
, "HOST/%s", my_fqdn
);
574 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
577 ok
= ads_element_in_array(spn_array
, num_spns
, spn
);
582 ok
= add_string_to_array(spn_array
, spn
,
583 &spn_array
, &num_spns
);
586 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
592 /* make sure to NULL terminate the array */
593 spn_array
= talloc_realloc(mem_ctx
, spn_array
, const char *, num_spns
+ 1);
594 if (spn_array
== NULL
) {
595 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
597 spn_array
[num_spns
] = NULL
;
599 mods
= ads_init_mods(mem_ctx
);
601 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
604 /* fields of primary importance */
606 status
= ads_mod_str(mem_ctx
, &mods
, "dNSHostName", my_fqdn
);
607 if (!ADS_ERR_OK(status
)) {
608 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
611 status
= ads_mod_strlist(mem_ctx
, &mods
, "servicePrincipalName",
613 if (!ADS_ERR_OK(status
)) {
614 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
617 return ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
620 /****************************************************************
621 ****************************************************************/
623 static ADS_STATUS
libnet_join_set_machine_upn(TALLOC_CTX
*mem_ctx
,
624 struct libnet_JoinCtx
*r
)
629 if (!r
->in
.create_upn
) {
635 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
636 if (!ADS_ERR_OK(status
)) {
641 const char *realm
= r
->out
.dns_domain_name
;
643 /* in case we are about to generate a keytab during the join
644 * make sure the default upn we create is usable with kinit -k.
647 if (USE_KERBEROS_KEYTAB
) {
648 realm
= talloc_strdup_upper(mem_ctx
,
649 r
->out
.dns_domain_name
);
653 return ADS_ERROR(LDAP_NO_MEMORY
);
656 r
->in
.upn
= talloc_asprintf(mem_ctx
,
661 return ADS_ERROR(LDAP_NO_MEMORY
);
665 /* now do the mods */
667 mods
= ads_init_mods(mem_ctx
);
669 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
672 /* fields of primary importance */
674 status
= ads_mod_str(mem_ctx
, &mods
, "userPrincipalName", r
->in
.upn
);
675 if (!ADS_ERR_OK(status
)) {
676 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
679 return ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
683 /****************************************************************
684 ****************************************************************/
686 static ADS_STATUS
libnet_join_set_os_attributes(TALLOC_CTX
*mem_ctx
,
687 struct libnet_JoinCtx
*r
)
693 if (!r
->in
.os_name
|| !r
->in
.os_version
) {
699 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
700 if (!ADS_ERR_OK(status
)) {
704 /* now do the mods */
706 mods
= ads_init_mods(mem_ctx
);
708 return ADS_ERROR(LDAP_NO_MEMORY
);
711 if (r
->in
.os_servicepack
) {
713 * if blank string then leave os_sp equal to NULL to force
714 * attribute delete (LDAP_MOD_DELETE)
716 if (!strequal(r
->in
.os_servicepack
,"")) {
717 os_sp
= talloc_strdup(mem_ctx
, r
->in
.os_servicepack
);
720 os_sp
= talloc_asprintf(mem_ctx
, "Samba %s",
721 samba_version_string());
723 if (!os_sp
&& !strequal(r
->in
.os_servicepack
,"")) {
724 return ADS_ERROR(LDAP_NO_MEMORY
);
727 /* fields of primary importance */
729 status
= ads_mod_str(mem_ctx
, &mods
, "operatingSystem",
731 if (!ADS_ERR_OK(status
)) {
735 status
= ads_mod_str(mem_ctx
, &mods
, "operatingSystemVersion",
737 if (!ADS_ERR_OK(status
)) {
741 status
= ads_mod_str(mem_ctx
, &mods
, "operatingSystemServicePack",
743 if (!ADS_ERR_OK(status
)) {
747 return ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
750 /****************************************************************
751 ****************************************************************/
753 static ADS_STATUS
libnet_join_set_etypes(TALLOC_CTX
*mem_ctx
,
754 struct libnet_JoinCtx
*r
)
758 const char *etype_list_str
;
760 etype_list_str
= talloc_asprintf(mem_ctx
, "%d",
761 r
->in
.desired_encryption_types
);
762 if (!etype_list_str
) {
763 return ADS_ERROR(LDAP_NO_MEMORY
);
768 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
769 if (!ADS_ERR_OK(status
)) {
773 if (r
->in
.desired_encryption_types
== r
->out
.set_encryption_types
) {
777 /* now do the mods */
779 mods
= ads_init_mods(mem_ctx
);
781 return ADS_ERROR(LDAP_NO_MEMORY
);
784 status
= ads_mod_str(mem_ctx
, &mods
, "msDS-SupportedEncryptionTypes",
786 if (!ADS_ERR_OK(status
)) {
790 status
= ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
791 if (!ADS_ERR_OK(status
)) {
795 r
->out
.set_encryption_types
= r
->in
.desired_encryption_types
;
800 /****************************************************************
801 ****************************************************************/
803 static bool libnet_join_create_keytab(TALLOC_CTX
*mem_ctx
,
804 struct libnet_JoinCtx
*r
)
806 if (!USE_SYSTEM_KEYTAB
) {
810 if (ads_keytab_create_default(r
->in
.ads
) != 0) {
817 /****************************************************************
818 ****************************************************************/
820 static bool libnet_join_derive_salting_principal(TALLOC_CTX
*mem_ctx
,
821 struct libnet_JoinCtx
*r
)
823 uint32_t domain_func
;
825 const char *salt
= NULL
;
826 char *std_salt
= NULL
;
828 status
= ads_domain_func_level(r
->in
.ads
, &domain_func
);
829 if (!ADS_ERR_OK(status
)) {
830 libnet_join_set_error_string(mem_ctx
, r
,
831 "failed to determine domain functional level: %s",
836 /* go ahead and setup the default salt */
838 std_salt
= kerberos_standard_des_salt();
840 libnet_join_set_error_string(mem_ctx
, r
,
841 "failed to obtain standard DES salt");
845 salt
= talloc_strdup(mem_ctx
, std_salt
);
852 /* if it's a Windows functional domain, we have to look for the UPN */
854 if (domain_func
== DS_DOMAIN_FUNCTION_2000
) {
857 upn
= ads_get_upn(r
->in
.ads
, mem_ctx
,
860 salt
= talloc_strdup(mem_ctx
, upn
);
867 r
->out
.krb5_salt
= salt
;
871 /****************************************************************
872 ****************************************************************/
874 static ADS_STATUS
libnet_join_post_processing_ads_modify(TALLOC_CTX
*mem_ctx
,
875 struct libnet_JoinCtx
*r
)
878 bool need_etype_update
= false;
881 status
= libnet_join_connect_ads_user(mem_ctx
, r
);
882 if (!ADS_ERR_OK(status
)) {
887 status
= libnet_join_set_machine_spn(mem_ctx
, r
);
888 if (!ADS_ERR_OK(status
)) {
889 libnet_join_set_error_string(mem_ctx
, r
,
890 "Failed to set machine spn: %s\n"
891 "Do you have sufficient permissions to create machine "
897 status
= libnet_join_set_os_attributes(mem_ctx
, r
);
898 if (!ADS_ERR_OK(status
)) {
899 libnet_join_set_error_string(mem_ctx
, r
,
900 "failed to set machine os attributes: %s",
905 status
= libnet_join_set_machine_upn(mem_ctx
, r
);
906 if (!ADS_ERR_OK(status
)) {
907 libnet_join_set_error_string(mem_ctx
, r
,
908 "failed to set machine upn: %s",
913 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
914 if (!ADS_ERR_OK(status
)) {
918 if (r
->in
.desired_encryption_types
!= r
->out
.set_encryption_types
) {
919 uint32_t func_level
= 0;
921 status
= ads_domain_func_level(r
->in
.ads
, &func_level
);
922 if (!ADS_ERR_OK(status
)) {
923 libnet_join_set_error_string(mem_ctx
, r
,
924 "failed to query domain controller functional level: %s",
929 if (func_level
>= DS_DOMAIN_FUNCTION_2008
) {
930 need_etype_update
= true;
934 if (need_etype_update
) {
936 * We need to reconnect as machine account in order
937 * to update msDS-SupportedEncryptionTypes reliable
940 if (r
->in
.ads
->auth
.ccache_name
!= NULL
) {
941 ads_kdestroy(r
->in
.ads
->auth
.ccache_name
);
944 ads_destroy(&r
->in
.ads
);
946 status
= libnet_join_connect_ads_machine(mem_ctx
, r
);
947 if (!ADS_ERR_OK(status
)) {
948 libnet_join_set_error_string(mem_ctx
, r
,
949 "Failed to connect as machine account: %s",
954 status
= libnet_join_set_etypes(mem_ctx
, r
);
955 if (!ADS_ERR_OK(status
)) {
956 libnet_join_set_error_string(mem_ctx
, r
,
957 "failed to set machine kerberos encryption types: %s",
963 if (!libnet_join_derive_salting_principal(mem_ctx
, r
)) {
964 return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
970 static ADS_STATUS
libnet_join_post_processing_ads_sync(TALLOC_CTX
*mem_ctx
,
971 struct libnet_JoinCtx
*r
)
973 if (!libnet_join_create_keytab(mem_ctx
, r
)) {
974 libnet_join_set_error_string(mem_ctx
, r
,
975 "failed to create kerberos keytab");
976 return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
981 #endif /* HAVE_ADS */
983 /****************************************************************
984 Store the machine password and domain SID
985 ****************************************************************/
987 static bool libnet_join_joindomain_store_secrets(TALLOC_CTX
*mem_ctx
,
988 struct libnet_JoinCtx
*r
)
992 status
= secrets_store_JoinCtx(r
);
993 if (!NT_STATUS_IS_OK(status
)) {
994 DBG_ERR("secrets_store_JoinCtx() failed %s\n",
1002 /****************************************************************
1003 Connect dc's IPC$ share
1004 ****************************************************************/
1006 static NTSTATUS
libnet_join_connect_dc_ipc(const char *dc
,
1011 struct cli_state
**cli
)
1016 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
;
1019 if (use_kerberos
&& pass
) {
1020 flags
|= CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS
;
1023 return cli_full_connection(cli
, NULL
,
1031 SMB_SIGNING_IPC_DEFAULT
);
1034 /****************************************************************
1035 Lookup domain dc's info
1036 ****************************************************************/
1038 static NTSTATUS
libnet_join_lookup_dc_rpc(TALLOC_CTX
*mem_ctx
,
1039 struct libnet_JoinCtx
*r
,
1040 struct cli_state
**cli
)
1042 struct rpc_pipe_client
*pipe_hnd
= NULL
;
1043 struct policy_handle lsa_pol
;
1044 NTSTATUS status
, result
;
1045 union lsa_PolicyInformation
*info
= NULL
;
1046 struct dcerpc_binding_handle
*b
;
1048 status
= libnet_join_connect_dc_ipc(r
->in
.dc_name
,
1049 r
->in
.admin_account
,
1051 r
->in
.admin_password
,
1054 if (!NT_STATUS_IS_OK(status
)) {
1058 status
= cli_rpc_pipe_open_noauth(*cli
, &ndr_table_lsarpc
,
1060 if (!NT_STATUS_IS_OK(status
)) {
1061 DEBUG(0,("Error connecting to LSA pipe. Error was %s\n",
1062 nt_errstr(status
)));
1066 b
= pipe_hnd
->binding_handle
;
1068 status
= rpccli_lsa_open_policy(pipe_hnd
, mem_ctx
, true,
1069 SEC_FLAG_MAXIMUM_ALLOWED
, &lsa_pol
);
1070 if (!NT_STATUS_IS_OK(status
)) {
1074 status
= dcerpc_lsa_QueryInfoPolicy2(b
, mem_ctx
,
1076 LSA_POLICY_INFO_DNS
,
1079 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(result
)) {
1080 r
->out
.domain_is_ad
= true;
1081 r
->out
.netbios_domain_name
= info
->dns
.name
.string
;
1082 r
->out
.dns_domain_name
= info
->dns
.dns_domain
.string
;
1083 r
->out
.forest_name
= info
->dns
.dns_forest
.string
;
1084 r
->out
.domain_guid
= info
->dns
.domain_guid
;
1085 r
->out
.domain_sid
= dom_sid_dup(mem_ctx
, info
->dns
.sid
);
1086 NT_STATUS_HAVE_NO_MEMORY(r
->out
.domain_sid
);
1089 if (!NT_STATUS_IS_OK(status
)) {
1090 status
= dcerpc_lsa_QueryInfoPolicy(b
, mem_ctx
,
1092 LSA_POLICY_INFO_ACCOUNT_DOMAIN
,
1095 if (!NT_STATUS_IS_OK(status
)) {
1098 if (!NT_STATUS_IS_OK(result
)) {
1103 r
->out
.netbios_domain_name
= info
->account_domain
.name
.string
;
1104 r
->out
.domain_sid
= dom_sid_dup(mem_ctx
, info
->account_domain
.sid
);
1105 NT_STATUS_HAVE_NO_MEMORY(r
->out
.domain_sid
);
1108 dcerpc_lsa_Close(b
, mem_ctx
, &lsa_pol
, &result
);
1109 TALLOC_FREE(pipe_hnd
);
1115 /****************************************************************
1116 Do the domain join unsecure
1117 ****************************************************************/
1119 static NTSTATUS
libnet_join_joindomain_rpc_unsecure(TALLOC_CTX
*mem_ctx
,
1120 struct libnet_JoinCtx
*r
,
1121 struct cli_state
*cli
)
1123 TALLOC_CTX
*frame
= talloc_stackframe();
1124 struct rpc_pipe_client
*netlogon_pipe
= NULL
;
1125 struct netlogon_creds_cli_context
*netlogon_creds
= NULL
;
1126 struct samr_Password current_nt_hash
;
1129 DATA_BLOB new_trust_blob
= data_blob_null
;
1132 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_netlogon
,
1134 if (!NT_STATUS_IS_OK(status
)) {
1139 if (!r
->in
.machine_password
) {
1140 int security
= r
->in
.ads
? SEC_ADS
: SEC_DOMAIN
;
1142 r
->in
.machine_password
= trust_pw_new_value(mem_ctx
,
1143 r
->in
.secure_channel_type
,
1145 if (r
->in
.machine_password
== NULL
) {
1147 return NT_STATUS_NO_MEMORY
;
1151 /* according to WKSSVC_JOIN_FLAGS_MACHINE_PWD_PASSED */
1152 E_md4hash(r
->in
.admin_password
, current_nt_hash
.hash
);
1154 status
= rpccli_create_netlogon_creds(netlogon_pipe
->desthost
,
1156 r
->out
.account_name
,
1157 r
->in
.secure_channel_type
,
1161 if (!NT_STATUS_IS_OK(status
)) {
1166 status
= rpccli_setup_netlogon_creds(cli
, NCACN_NP
,
1168 true, /* force_reauth */
1170 NULL
); /* previous_nt_hash */
1171 if (!NT_STATUS_IS_OK(status
)) {
1176 len
= strlen(r
->in
.machine_password
);
1177 ok
= convert_string_talloc(frame
, CH_UNIX
, CH_UTF16
,
1178 r
->in
.machine_password
, len
,
1179 (void **)&new_trust_blob
.data
,
1180 &new_trust_blob
.length
);
1182 status
= NT_STATUS_UNMAPPABLE_CHARACTER
;
1183 if (errno
== ENOMEM
) {
1184 status
= NT_STATUS_NO_MEMORY
;
1190 status
= netlogon_creds_cli_ServerPasswordSet(netlogon_creds
,
1191 netlogon_pipe
->binding_handle
,
1193 NULL
); /* new_version */
1194 if (!NT_STATUS_IS_OK(status
)) {
1200 return NT_STATUS_OK
;
1203 /****************************************************************
1205 ****************************************************************/
1207 static NTSTATUS
libnet_join_joindomain_rpc(TALLOC_CTX
*mem_ctx
,
1208 struct libnet_JoinCtx
*r
,
1209 struct cli_state
*cli
)
1211 struct rpc_pipe_client
*pipe_hnd
= NULL
;
1212 struct policy_handle sam_pol
, domain_pol
, user_pol
;
1213 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
, result
;
1215 struct lsa_String lsa_acct_name
;
1217 uint32_t acct_flags
= ACB_WSTRUST
;
1218 struct samr_Ids user_rids
;
1219 struct samr_Ids name_types
;
1220 union samr_UserInfo user_info
;
1221 struct dcerpc_binding_handle
*b
= NULL
;
1222 unsigned int old_timeout
= 0;
1224 DATA_BLOB session_key
= data_blob_null
;
1225 struct samr_CryptPassword crypt_pwd
;
1226 struct samr_CryptPasswordEx crypt_pwd_ex
;
1228 ZERO_STRUCT(sam_pol
);
1229 ZERO_STRUCT(domain_pol
);
1230 ZERO_STRUCT(user_pol
);
1232 switch (r
->in
.secure_channel_type
) {
1233 case SEC_CHAN_WKSTA
:
1234 acct_flags
= ACB_WSTRUST
;
1237 acct_flags
= ACB_SVRTRUST
;
1240 return NT_STATUS_INVALID_PARAMETER
;
1243 if (!r
->in
.machine_password
) {
1244 int security
= r
->in
.ads
? SEC_ADS
: SEC_DOMAIN
;
1246 r
->in
.machine_password
= trust_pw_new_value(mem_ctx
,
1247 r
->in
.secure_channel_type
,
1249 NT_STATUS_HAVE_NO_MEMORY(r
->in
.machine_password
);
1252 /* Open the domain */
1254 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_samr
,
1256 if (!NT_STATUS_IS_OK(status
)) {
1257 DEBUG(0,("Error connecting to SAM pipe. Error was %s\n",
1258 nt_errstr(status
)));
1262 b
= pipe_hnd
->binding_handle
;
1264 status
= cli_get_session_key(mem_ctx
, pipe_hnd
, &session_key
);
1265 if (!NT_STATUS_IS_OK(status
)) {
1266 DEBUG(0,("Error getting session_key of SAM pipe. Error was %s\n",
1267 nt_errstr(status
)));
1271 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
1273 SAMR_ACCESS_ENUM_DOMAINS
1274 | SAMR_ACCESS_LOOKUP_DOMAIN
,
1277 if (!NT_STATUS_IS_OK(status
)) {
1280 if (!NT_STATUS_IS_OK(result
)) {
1285 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
1287 SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1
1288 | SAMR_DOMAIN_ACCESS_CREATE_USER
1289 | SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT
,
1293 if (!NT_STATUS_IS_OK(status
)) {
1296 if (!NT_STATUS_IS_OK(result
)) {
1301 /* Create domain user */
1303 acct_name
= talloc_asprintf(mem_ctx
, "%s$", r
->in
.machine_name
);
1304 if (!strlower_m(acct_name
)) {
1305 status
= NT_STATUS_INVALID_PARAMETER
;
1309 init_lsa_String(&lsa_acct_name
, acct_name
);
1311 if (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE
) {
1312 uint32_t access_desired
=
1313 SEC_GENERIC_READ
| SEC_GENERIC_WRITE
| SEC_GENERIC_EXECUTE
|
1314 SEC_STD_WRITE_DAC
| SEC_STD_DELETE
|
1315 SAMR_USER_ACCESS_SET_PASSWORD
|
1316 SAMR_USER_ACCESS_GET_ATTRIBUTES
|
1317 SAMR_USER_ACCESS_SET_ATTRIBUTES
;
1318 uint32_t access_granted
= 0;
1320 DEBUG(10,("Creating account with desired access mask: %d\n",
1323 status
= dcerpc_samr_CreateUser2(b
, mem_ctx
,
1332 if (!NT_STATUS_IS_OK(status
)) {
1337 if (!NT_STATUS_IS_OK(status
) &&
1338 !NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
1340 DEBUG(10,("Creation of workstation account failed: %s\n",
1341 nt_errstr(status
)));
1343 /* If NT_STATUS_ACCESS_DENIED then we have a valid
1344 username/password combo but the user does not have
1345 administrator access. */
1347 if (NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
1348 libnet_join_set_error_string(mem_ctx
, r
,
1349 "User specified does not have "
1350 "administrator privileges");
1356 if (NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
1357 if (!(r
->in
.join_flags
&
1358 WKSSVC_JOIN_FLAGS_DOMAIN_JOIN_IF_JOINED
)) {
1363 /* We *must* do this.... don't ask... */
1365 if (NT_STATUS_IS_OK(status
)) {
1366 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1370 status
= dcerpc_samr_LookupNames(b
, mem_ctx
,
1377 if (!NT_STATUS_IS_OK(status
)) {
1380 if (!NT_STATUS_IS_OK(result
)) {
1384 if (user_rids
.count
!= 1) {
1385 status
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
1388 if (name_types
.count
!= 1) {
1389 status
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
1393 if (name_types
.ids
[0] != SID_NAME_USER
) {
1394 DEBUG(0,("%s is not a user account (type=%d)\n",
1395 acct_name
, name_types
.ids
[0]));
1396 status
= NT_STATUS_INVALID_WORKSTATION
;
1400 user_rid
= user_rids
.ids
[0];
1402 /* Open handle on user */
1404 status
= dcerpc_samr_OpenUser(b
, mem_ctx
,
1406 SEC_FLAG_MAXIMUM_ALLOWED
,
1410 if (!NT_STATUS_IS_OK(status
)) {
1413 if (!NT_STATUS_IS_OK(result
)) {
1418 /* Fill in the additional account flags now */
1420 acct_flags
|= ACB_PWNOEXP
;
1422 /* Set account flags on machine account */
1423 ZERO_STRUCT(user_info
.info16
);
1424 user_info
.info16
.acct_flags
= acct_flags
;
1426 status
= dcerpc_samr_SetUserInfo2(b
, mem_ctx
,
1428 UserControlInformation
,
1431 if (!NT_STATUS_IS_OK(status
)) {
1432 dcerpc_samr_DeleteUser(b
, mem_ctx
,
1436 libnet_join_set_error_string(mem_ctx
, r
,
1437 "Failed to set account flags for machine account (%s)\n",
1442 if (!NT_STATUS_IS_OK(result
)) {
1445 dcerpc_samr_DeleteUser(b
, mem_ctx
,
1449 libnet_join_set_error_string(mem_ctx
, r
,
1450 "Failed to set account flags for machine account (%s)\n",
1455 /* Set password on machine account - first try level 26 */
1458 * increase the timeout as password filter modules on the DC
1459 * might delay the operation for a significant amount of time
1461 old_timeout
= rpccli_set_timeout(pipe_hnd
, 600000);
1463 init_samr_CryptPasswordEx(r
->in
.machine_password
,
1467 user_info
.info26
.password
= crypt_pwd_ex
;
1468 user_info
.info26
.password_expired
= PASS_DONT_CHANGE_AT_NEXT_LOGON
;
1470 status
= dcerpc_samr_SetUserInfo2(b
, mem_ctx
,
1472 UserInternal5InformationNew
,
1476 if (NT_STATUS_EQUAL(status
, NT_STATUS_RPC_ENUM_VALUE_OUT_OF_RANGE
)) {
1478 /* retry with level 24 */
1480 init_samr_CryptPassword(r
->in
.machine_password
,
1484 user_info
.info24
.password
= crypt_pwd
;
1485 user_info
.info24
.password_expired
= PASS_DONT_CHANGE_AT_NEXT_LOGON
;
1487 status
= dcerpc_samr_SetUserInfo2(b
, mem_ctx
,
1489 UserInternal5Information
,
1494 old_timeout
= rpccli_set_timeout(pipe_hnd
, old_timeout
);
1496 if (!NT_STATUS_IS_OK(status
)) {
1498 dcerpc_samr_DeleteUser(b
, mem_ctx
,
1502 libnet_join_set_error_string(mem_ctx
, r
,
1503 "Failed to set password for machine account (%s)\n",
1507 if (!NT_STATUS_IS_OK(result
)) {
1510 dcerpc_samr_DeleteUser(b
, mem_ctx
,
1514 libnet_join_set_error_string(mem_ctx
, r
,
1515 "Failed to set password for machine account (%s)\n",
1520 status
= NT_STATUS_OK
;
1527 data_blob_clear_free(&session_key
);
1529 if (is_valid_policy_hnd(&sam_pol
)) {
1530 dcerpc_samr_Close(b
, mem_ctx
, &sam_pol
, &result
);
1532 if (is_valid_policy_hnd(&domain_pol
)) {
1533 dcerpc_samr_Close(b
, mem_ctx
, &domain_pol
, &result
);
1535 if (is_valid_policy_hnd(&user_pol
)) {
1536 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1538 TALLOC_FREE(pipe_hnd
);
1543 /****************************************************************
1544 ****************************************************************/
1546 NTSTATUS
libnet_join_ok(struct messaging_context
*msg_ctx
,
1547 const char *netbios_domain_name
,
1548 const char *dc_name
,
1549 const bool use_kerberos
)
1551 TALLOC_CTX
*frame
= talloc_stackframe();
1552 struct cli_state
*cli
= NULL
;
1553 struct rpc_pipe_client
*netlogon_pipe
= NULL
;
1554 struct cli_credentials
*cli_creds
= NULL
;
1555 struct netlogon_creds_cli_context
*netlogon_creds
= NULL
;
1556 struct netlogon_creds_CredentialState
*creds
= NULL
;
1557 uint32_t netlogon_flags
= 0;
1563 return NT_STATUS_INVALID_PARAMETER
;
1566 if (!secrets_init()) {
1568 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
1571 status
= pdb_get_trust_credentials(netbios_domain_name
, NULL
,
1573 if (!NT_STATUS_IS_OK(status
)) {
1578 /* we don't want any old password */
1579 cli_credentials_set_old_password(cli_creds
, NULL
, CRED_SPECIFIED
);
1582 cli_credentials_set_kerberos_state(cli_creds
,
1583 CRED_MUST_USE_KERBEROS
);
1586 status
= cli_full_connection_creds(&cli
, NULL
,
1592 SMB_SIGNING_IPC_DEFAULT
);
1594 if (!NT_STATUS_IS_OK(status
)) {
1595 status
= cli_full_connection(&cli
, NULL
,
1603 SMB_SIGNING_IPC_DEFAULT
);
1606 if (!NT_STATUS_IS_OK(status
)) {
1611 status
= rpccli_create_netlogon_creds_with_creds(cli_creds
,
1616 if (!NT_STATUS_IS_OK(status
)) {
1622 status
= rpccli_setup_netlogon_creds_with_creds(cli
, NCACN_NP
,
1624 true, /* force_reauth */
1626 if (!NT_STATUS_IS_OK(status
)) {
1627 DEBUG(0,("connect_to_domain_password_server: "
1628 "unable to open the domain client session to "
1629 "machine %s. Flags[0x%08X] Error was : %s.\n",
1630 dc_name
, (unsigned)netlogon_flags
,
1631 nt_errstr(status
)));
1637 status
= netlogon_creds_cli_get(netlogon_creds
,
1640 if (!NT_STATUS_IS_OK(status
)) {
1645 netlogon_flags
= creds
->negotiate_flags
;
1648 if (!(netlogon_flags
& NETLOGON_NEG_AUTHENTICATED_RPC
)) {
1651 return NT_STATUS_OK
;
1654 status
= cli_rpc_pipe_open_schannel_with_creds(
1655 cli
, &ndr_table_netlogon
, NCACN_NP
,
1657 netlogon_creds
, &netlogon_pipe
);
1659 TALLOC_FREE(netlogon_pipe
);
1661 if (!NT_STATUS_IS_OK(status
)) {
1662 DEBUG(0,("libnet_join_ok: failed to open schannel session "
1663 "on netlogon pipe to server %s for domain %s. "
1665 smbXcli_conn_remote_name(cli
->conn
),
1666 netbios_domain_name
, nt_errstr(status
)));
1674 return NT_STATUS_OK
;
1677 /****************************************************************
1678 ****************************************************************/
1680 static WERROR
libnet_join_post_verify(TALLOC_CTX
*mem_ctx
,
1681 struct libnet_JoinCtx
*r
)
1685 status
= libnet_join_ok(r
->in
.msg_ctx
,
1686 r
->out
.netbios_domain_name
,
1688 r
->in
.use_kerberos
);
1689 if (!NT_STATUS_IS_OK(status
)) {
1690 libnet_join_set_error_string(mem_ctx
, r
,
1691 "failed to verify domain membership after joining: %s",
1692 get_friendly_nt_error_msg(status
));
1693 return WERR_NERR_SETUPNOTJOINED
;
1699 /****************************************************************
1700 ****************************************************************/
1702 static bool libnet_join_unjoindomain_remove_secrets(TALLOC_CTX
*mem_ctx
,
1703 struct libnet_UnjoinCtx
*r
)
1706 * TODO: use values from 'struct libnet_UnjoinCtx' ?
1708 return secrets_delete_machine_password_ex(lp_workgroup(), lp_realm());
1711 /****************************************************************
1712 ****************************************************************/
1714 static NTSTATUS
libnet_join_unjoindomain_rpc(TALLOC_CTX
*mem_ctx
,
1715 struct libnet_UnjoinCtx
*r
)
1717 struct cli_state
*cli
= NULL
;
1718 struct rpc_pipe_client
*pipe_hnd
= NULL
;
1719 struct policy_handle sam_pol
, domain_pol
, user_pol
;
1720 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
, result
;
1723 struct lsa_String lsa_acct_name
;
1724 struct samr_Ids user_rids
;
1725 struct samr_Ids name_types
;
1726 union samr_UserInfo
*info
= NULL
;
1727 struct dcerpc_binding_handle
*b
= NULL
;
1729 ZERO_STRUCT(sam_pol
);
1730 ZERO_STRUCT(domain_pol
);
1731 ZERO_STRUCT(user_pol
);
1733 status
= libnet_join_connect_dc_ipc(r
->in
.dc_name
,
1734 r
->in
.admin_account
,
1736 r
->in
.admin_password
,
1739 if (!NT_STATUS_IS_OK(status
)) {
1743 /* Open the domain */
1745 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_samr
,
1747 if (!NT_STATUS_IS_OK(status
)) {
1748 DEBUG(0,("Error connecting to SAM pipe. Error was %s\n",
1749 nt_errstr(status
)));
1753 b
= pipe_hnd
->binding_handle
;
1755 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
1757 SEC_FLAG_MAXIMUM_ALLOWED
,
1760 if (!NT_STATUS_IS_OK(status
)) {
1763 if (!NT_STATUS_IS_OK(result
)) {
1768 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
1770 SEC_FLAG_MAXIMUM_ALLOWED
,
1774 if (!NT_STATUS_IS_OK(status
)) {
1777 if (!NT_STATUS_IS_OK(result
)) {
1782 /* Create domain user */
1784 acct_name
= talloc_asprintf(mem_ctx
, "%s$", r
->in
.machine_name
);
1785 if (!strlower_m(acct_name
)) {
1786 status
= NT_STATUS_INVALID_PARAMETER
;
1790 init_lsa_String(&lsa_acct_name
, acct_name
);
1792 status
= dcerpc_samr_LookupNames(b
, mem_ctx
,
1800 if (!NT_STATUS_IS_OK(status
)) {
1803 if (!NT_STATUS_IS_OK(result
)) {
1807 if (user_rids
.count
!= 1) {
1808 status
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
1811 if (name_types
.count
!= 1) {
1812 status
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
1816 if (name_types
.ids
[0] != SID_NAME_USER
) {
1817 DEBUG(0, ("%s is not a user account (type=%d)\n", acct_name
,
1818 name_types
.ids
[0]));
1819 status
= NT_STATUS_INVALID_WORKSTATION
;
1823 user_rid
= user_rids
.ids
[0];
1825 /* Open handle on user */
1827 status
= dcerpc_samr_OpenUser(b
, mem_ctx
,
1829 SEC_FLAG_MAXIMUM_ALLOWED
,
1833 if (!NT_STATUS_IS_OK(status
)) {
1836 if (!NT_STATUS_IS_OK(result
)) {
1843 status
= dcerpc_samr_QueryUserInfo(b
, mem_ctx
,
1848 if (!NT_STATUS_IS_OK(status
)) {
1849 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1852 if (!NT_STATUS_IS_OK(result
)) {
1854 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1858 /* now disable and setuser info */
1860 info
->info16
.acct_flags
|= ACB_DISABLED
;
1862 status
= dcerpc_samr_SetUserInfo(b
, mem_ctx
,
1867 if (!NT_STATUS_IS_OK(status
)) {
1868 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1871 if (!NT_STATUS_IS_OK(result
)) {
1873 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1877 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1880 if (pipe_hnd
&& b
) {
1881 if (is_valid_policy_hnd(&domain_pol
)) {
1882 dcerpc_samr_Close(b
, mem_ctx
, &domain_pol
, &result
);
1884 if (is_valid_policy_hnd(&sam_pol
)) {
1885 dcerpc_samr_Close(b
, mem_ctx
, &sam_pol
, &result
);
1887 TALLOC_FREE(pipe_hnd
);
1897 /****************************************************************
1898 ****************************************************************/
1900 static WERROR
do_join_modify_vals_config(struct libnet_JoinCtx
*r
)
1902 WERROR werr
= WERR_OK
;
1904 struct smbconf_ctx
*ctx
;
1906 err
= smbconf_init_reg(r
, &ctx
, NULL
);
1907 if (!SBC_ERROR_IS_OK(err
)) {
1908 werr
= WERR_SERVICE_DOES_NOT_EXIST
;
1912 if (!(r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
)) {
1914 err
= smbconf_set_global_parameter(ctx
, "security", "user");
1915 if (!SBC_ERROR_IS_OK(err
)) {
1916 werr
= WERR_SERVICE_DOES_NOT_EXIST
;
1920 err
= smbconf_set_global_parameter(ctx
, "workgroup",
1922 if (!SBC_ERROR_IS_OK(err
)) {
1923 werr
= WERR_SERVICE_DOES_NOT_EXIST
;
1927 smbconf_delete_global_parameter(ctx
, "realm");
1931 err
= smbconf_set_global_parameter(ctx
, "security", "domain");
1932 if (!SBC_ERROR_IS_OK(err
)) {
1933 werr
= WERR_SERVICE_DOES_NOT_EXIST
;
1937 err
= smbconf_set_global_parameter(ctx
, "workgroup",
1938 r
->out
.netbios_domain_name
);
1939 if (!SBC_ERROR_IS_OK(err
)) {
1940 werr
= WERR_SERVICE_DOES_NOT_EXIST
;
1944 if (r
->out
.domain_is_ad
) {
1945 err
= smbconf_set_global_parameter(ctx
, "security", "ads");
1946 if (!SBC_ERROR_IS_OK(err
)) {
1947 werr
= WERR_SERVICE_DOES_NOT_EXIST
;
1951 err
= smbconf_set_global_parameter(ctx
, "realm",
1952 r
->out
.dns_domain_name
);
1953 if (!SBC_ERROR_IS_OK(err
)) {
1954 werr
= WERR_SERVICE_DOES_NOT_EXIST
;
1960 smbconf_shutdown(ctx
);
1964 /****************************************************************
1965 ****************************************************************/
1967 static WERROR
do_unjoin_modify_vals_config(struct libnet_UnjoinCtx
*r
)
1969 WERROR werr
= WERR_OK
;
1971 struct smbconf_ctx
*ctx
;
1973 err
= smbconf_init_reg(r
, &ctx
, NULL
);
1974 if (!SBC_ERROR_IS_OK(err
)) {
1975 werr
= WERR_SERVICE_DOES_NOT_EXIST
;
1979 if (r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
1981 err
= smbconf_set_global_parameter(ctx
, "security", "user");
1982 if (!SBC_ERROR_IS_OK(err
)) {
1983 werr
= WERR_SERVICE_DOES_NOT_EXIST
;
1987 err
= smbconf_delete_global_parameter(ctx
, "workgroup");
1988 if (!SBC_ERROR_IS_OK(err
)) {
1989 werr
= WERR_SERVICE_DOES_NOT_EXIST
;
1993 smbconf_delete_global_parameter(ctx
, "realm");
1997 smbconf_shutdown(ctx
);
2001 /****************************************************************
2002 ****************************************************************/
2004 static WERROR
do_JoinConfig(struct libnet_JoinCtx
*r
)
2008 if (!W_ERROR_IS_OK(r
->out
.result
)) {
2009 return r
->out
.result
;
2012 if (!r
->in
.modify_config
) {
2016 werr
= do_join_modify_vals_config(r
);
2017 if (!W_ERROR_IS_OK(werr
)) {
2021 lp_load_global(get_dyn_CONFIGFILE());
2023 r
->out
.modified_config
= true;
2024 r
->out
.result
= werr
;
2029 /****************************************************************
2030 ****************************************************************/
2032 static WERROR
libnet_unjoin_config(struct libnet_UnjoinCtx
*r
)
2036 if (!W_ERROR_IS_OK(r
->out
.result
)) {
2037 return r
->out
.result
;
2040 if (!r
->in
.modify_config
) {
2044 werr
= do_unjoin_modify_vals_config(r
);
2045 if (!W_ERROR_IS_OK(werr
)) {
2049 lp_load_global(get_dyn_CONFIGFILE());
2051 r
->out
.modified_config
= true;
2052 r
->out
.result
= werr
;
2057 /****************************************************************
2058 ****************************************************************/
2060 static bool libnet_parse_domain_dc(TALLOC_CTX
*mem_ctx
,
2061 const char *domain_str
,
2062 const char **domain_p
,
2065 char *domain
= NULL
;
2067 const char *p
= NULL
;
2069 if (!domain_str
|| !domain_p
|| !dc_p
) {
2073 p
= strchr_m(domain_str
, '\\');
2076 domain
= talloc_strndup(mem_ctx
, domain_str
,
2077 PTR_DIFF(p
, domain_str
));
2078 dc
= talloc_strdup(mem_ctx
, p
+1);
2083 domain
= talloc_strdup(mem_ctx
, domain_str
);
2099 /****************************************************************
2100 ****************************************************************/
2102 static WERROR
libnet_join_pre_processing(TALLOC_CTX
*mem_ctx
,
2103 struct libnet_JoinCtx
*r
)
2105 if (!r
->in
.domain_name
) {
2106 libnet_join_set_error_string(mem_ctx
, r
,
2107 "No domain name defined");
2108 return WERR_INVALID_PARAMETER
;
2111 if (strlen(r
->in
.machine_name
) > 15) {
2112 libnet_join_set_error_string(mem_ctx
, r
,
2113 "Our netbios name can be at most 15 chars long, "
2114 "\"%s\" is %u chars long\n",
2116 (unsigned int)strlen(r
->in
.machine_name
));
2117 return WERR_INVALID_PARAMETER
;
2120 r
->out
.account_name
= talloc_asprintf(mem_ctx
, "%s$",
2121 r
->in
.machine_name
);
2122 if (r
->out
.account_name
== NULL
) {
2123 libnet_join_set_error_string(mem_ctx
, r
,
2124 "Unable to construct r->out.account_name");
2125 return WERR_NOT_ENOUGH_MEMORY
;
2128 if (!libnet_parse_domain_dc(mem_ctx
, r
->in
.domain_name
,
2131 libnet_join_set_error_string(mem_ctx
, r
,
2132 "Failed to parse domain name");
2133 return WERR_INVALID_PARAMETER
;
2136 if (!r
->in
.admin_domain
) {
2137 char *admin_domain
= NULL
;
2138 char *admin_account
= NULL
;
2141 ok
= split_domain_user(mem_ctx
,
2142 r
->in
.admin_account
,
2146 return WERR_NOT_ENOUGH_MEMORY
;
2149 if (admin_domain
!= NULL
) {
2150 r
->in
.admin_domain
= admin_domain
;
2152 r
->in
.admin_domain
= r
->in
.domain_name
;
2154 r
->in
.admin_account
= admin_account
;
2157 if (!secrets_init()) {
2158 libnet_join_set_error_string(mem_ctx
, r
,
2159 "Unable to open secrets database");
2160 return WERR_CAN_NOT_COMPLETE
;
2166 /****************************************************************
2167 ****************************************************************/
2169 static void libnet_join_add_dom_rids_to_builtins(struct dom_sid
*domain_sid
)
2173 /* Try adding dom admins to builtin\admins. Only log failures. */
2174 status
= create_builtin_administrators(domain_sid
);
2175 if (NT_STATUS_EQUAL(status
, NT_STATUS_PROTOCOL_UNREACHABLE
)) {
2176 DEBUG(10,("Unable to auto-add domain administrators to "
2177 "BUILTIN\\Administrators during join because "
2178 "winbindd must be running.\n"));
2179 } else if (!NT_STATUS_IS_OK(status
)) {
2180 DEBUG(5, ("Failed to auto-add domain administrators to "
2181 "BUILTIN\\Administrators during join: %s\n",
2182 nt_errstr(status
)));
2185 /* Try adding dom users to builtin\users. Only log failures. */
2186 status
= create_builtin_users(domain_sid
);
2187 if (NT_STATUS_EQUAL(status
, NT_STATUS_PROTOCOL_UNREACHABLE
)) {
2188 DEBUG(10,("Unable to auto-add domain users to BUILTIN\\users "
2189 "during join because winbindd must be running.\n"));
2190 } else if (!NT_STATUS_IS_OK(status
)) {
2191 DEBUG(5, ("Failed to auto-add domain administrators to "
2192 "BUILTIN\\Administrators during join: %s\n",
2193 nt_errstr(status
)));
2197 /****************************************************************
2198 ****************************************************************/
2200 static WERROR
libnet_join_post_processing(TALLOC_CTX
*mem_ctx
,
2201 struct libnet_JoinCtx
*r
)
2205 if (!W_ERROR_IS_OK(r
->out
.result
)) {
2206 return r
->out
.result
;
2209 if (!(r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
)) {
2210 werr
= do_JoinConfig(r
);
2211 if (!W_ERROR_IS_OK(werr
)) {
2219 if (r
->out
.domain_is_ad
&&
2220 !(r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_UNSECURE
)) {
2221 ADS_STATUS ads_status
;
2223 ads_status
= libnet_join_post_processing_ads_modify(mem_ctx
, r
);
2224 if (!ADS_ERR_OK(ads_status
)) {
2225 return WERR_GEN_FAILURE
;
2228 #endif /* HAVE_ADS */
2230 saf_join_store(r
->out
.netbios_domain_name
, r
->in
.dc_name
);
2231 if (r
->out
.dns_domain_name
) {
2232 saf_join_store(r
->out
.dns_domain_name
, r
->in
.dc_name
);
2235 if (!libnet_join_joindomain_store_secrets(mem_ctx
, r
)) {
2236 return WERR_NERR_SETUPNOTJOINED
;
2239 werr
= do_JoinConfig(r
);
2240 if (!W_ERROR_IS_OK(werr
)) {
2245 if (r
->out
.domain_is_ad
&&
2246 !(r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_UNSECURE
)) {
2247 ADS_STATUS ads_status
;
2249 ads_status
= libnet_join_post_processing_ads_sync(mem_ctx
, r
);
2250 if (!ADS_ERR_OK(ads_status
)) {
2251 return WERR_GEN_FAILURE
;
2254 #endif /* HAVE_ADS */
2256 libnet_join_add_dom_rids_to_builtins(r
->out
.domain_sid
);
2261 /****************************************************************
2262 ****************************************************************/
2264 static int libnet_destroy_JoinCtx(struct libnet_JoinCtx
*r
)
2267 ads_destroy(&r
->in
.ads
);
2273 /****************************************************************
2274 ****************************************************************/
2276 static int libnet_destroy_UnjoinCtx(struct libnet_UnjoinCtx
*r
)
2279 ads_destroy(&r
->in
.ads
);
2285 /****************************************************************
2286 ****************************************************************/
2288 WERROR
libnet_init_JoinCtx(TALLOC_CTX
*mem_ctx
,
2289 struct libnet_JoinCtx
**r
)
2291 struct libnet_JoinCtx
*ctx
;
2293 ctx
= talloc_zero(mem_ctx
, struct libnet_JoinCtx
);
2295 return WERR_NOT_ENOUGH_MEMORY
;
2298 talloc_set_destructor(ctx
, libnet_destroy_JoinCtx
);
2300 ctx
->in
.machine_name
= talloc_strdup(mem_ctx
, lp_netbios_name());
2301 W_ERROR_HAVE_NO_MEMORY(ctx
->in
.machine_name
);
2303 ctx
->in
.secure_channel_type
= SEC_CHAN_WKSTA
;
2305 ctx
->in
.desired_encryption_types
= ENC_CRC32
|
2308 #ifdef HAVE_ENCTYPE_AES128_CTS_HMAC_SHA1_96
2309 ctx
->in
.desired_encryption_types
|= ENC_HMAC_SHA1_96_AES128
;
2311 #ifdef HAVE_ENCTYPE_AES256_CTS_HMAC_SHA1_96
2312 ctx
->in
.desired_encryption_types
|= ENC_HMAC_SHA1_96_AES256
;
2320 /****************************************************************
2321 ****************************************************************/
2323 WERROR
libnet_init_UnjoinCtx(TALLOC_CTX
*mem_ctx
,
2324 struct libnet_UnjoinCtx
**r
)
2326 struct libnet_UnjoinCtx
*ctx
;
2328 ctx
= talloc_zero(mem_ctx
, struct libnet_UnjoinCtx
);
2330 return WERR_NOT_ENOUGH_MEMORY
;
2333 talloc_set_destructor(ctx
, libnet_destroy_UnjoinCtx
);
2335 ctx
->in
.machine_name
= talloc_strdup(mem_ctx
, lp_netbios_name());
2336 W_ERROR_HAVE_NO_MEMORY(ctx
->in
.machine_name
);
2343 /****************************************************************
2344 ****************************************************************/
2346 static WERROR
libnet_join_check_config(TALLOC_CTX
*mem_ctx
,
2347 struct libnet_JoinCtx
*r
)
2349 bool valid_security
= false;
2350 bool valid_workgroup
= false;
2351 bool valid_realm
= false;
2352 bool ignored_realm
= false;
2354 /* check if configuration is already set correctly */
2356 valid_workgroup
= strequal(lp_workgroup(), r
->out
.netbios_domain_name
);
2358 switch (r
->out
.domain_is_ad
) {
2360 valid_security
= (lp_security() == SEC_DOMAIN
)
2361 || (lp_server_role() == ROLE_DOMAIN_PDC
)
2362 || (lp_server_role() == ROLE_DOMAIN_BDC
);
2363 if (valid_workgroup
&& valid_security
) {
2364 /* nothing to be done */
2369 valid_realm
= strequal(lp_realm(), r
->out
.dns_domain_name
);
2370 switch (lp_security()) {
2372 if (!valid_realm
&& lp_winbind_rpc_only()) {
2374 ignored_realm
= true;
2378 valid_security
= true;
2381 if (valid_workgroup
&& valid_realm
&& valid_security
) {
2382 if (ignored_realm
&& !r
->in
.modify_config
)
2384 libnet_join_set_error_string(mem_ctx
, r
,
2385 "Warning: ignoring realm when "
2386 "joining AD domain with "
2387 "'security=domain' and "
2388 "'winbind rpc only = yes'. "
2389 "(realm set to '%s', "
2390 "should be '%s').", lp_realm(),
2391 r
->out
.dns_domain_name
);
2393 /* nothing to be done */
2399 /* check if we are supposed to manipulate configuration */
2401 if (!r
->in
.modify_config
) {
2403 char *wrong_conf
= talloc_strdup(mem_ctx
, "");
2405 if (!valid_workgroup
) {
2406 wrong_conf
= talloc_asprintf_append(wrong_conf
,
2407 "\"workgroup\" set to '%s', should be '%s'",
2408 lp_workgroup(), r
->out
.netbios_domain_name
);
2409 W_ERROR_HAVE_NO_MEMORY(wrong_conf
);
2413 wrong_conf
= talloc_asprintf_append(wrong_conf
,
2414 "\"realm\" set to '%s', should be '%s'",
2415 lp_realm(), r
->out
.dns_domain_name
);
2416 W_ERROR_HAVE_NO_MEMORY(wrong_conf
);
2419 if (!valid_security
) {
2420 const char *sec
= NULL
;
2421 switch (lp_security()) {
2422 case SEC_USER
: sec
= "user"; break;
2423 case SEC_DOMAIN
: sec
= "domain"; break;
2424 case SEC_ADS
: sec
= "ads"; break;
2426 wrong_conf
= talloc_asprintf_append(wrong_conf
,
2427 "\"security\" set to '%s', should be %s",
2428 sec
, r
->out
.domain_is_ad
?
2429 "either 'domain' or 'ads'" : "'domain'");
2430 W_ERROR_HAVE_NO_MEMORY(wrong_conf
);
2433 libnet_join_set_error_string(mem_ctx
, r
,
2434 "Invalid configuration (%s) and configuration modification "
2435 "was not requested", wrong_conf
);
2436 return WERR_CAN_NOT_COMPLETE
;
2439 /* check if we are able to manipulate configuration */
2441 if (!lp_config_backend_is_registry()) {
2442 libnet_join_set_error_string(mem_ctx
, r
,
2443 "Configuration manipulation requested but not "
2444 "supported by backend");
2445 return WERR_NOT_SUPPORTED
;
2451 /****************************************************************
2452 ****************************************************************/
2454 static WERROR
libnet_DomainJoin(TALLOC_CTX
*mem_ctx
,
2455 struct libnet_JoinCtx
*r
)
2459 struct cli_state
*cli
= NULL
;
2461 ADS_STATUS ads_status
;
2462 #endif /* HAVE_ADS */
2463 const char *pre_connect_realm
= NULL
;
2464 const char *numeric_dcip
= NULL
;
2465 const char *sitename
= NULL
;
2467 /* Before contacting a DC, we can securely know
2468 * the realm only if the user specifies it.
2470 if (r
->in
.use_kerberos
&&
2471 r
->in
.domain_name_type
== JoinDomNameTypeDNS
) {
2472 pre_connect_realm
= r
->in
.domain_name
;
2475 if (!r
->in
.dc_name
) {
2476 struct netr_DsRGetDCNameInfo
*info
;
2478 uint32_t name_type_flags
= 0;
2479 if (r
->in
.domain_name_type
== JoinDomNameTypeDNS
) {
2480 name_type_flags
= DS_IS_DNS_NAME
;
2481 } else if (r
->in
.domain_name_type
== JoinDomNameTypeNBT
) {
2482 name_type_flags
= DS_IS_FLAT_NAME
;
2484 status
= dsgetdcname(mem_ctx
,
2489 DS_FORCE_REDISCOVERY
|
2490 DS_DIRECTORY_SERVICE_REQUIRED
|
2491 DS_WRITABLE_REQUIRED
|
2492 DS_RETURN_DNS_NAME
|
2495 if (!NT_STATUS_IS_OK(status
)) {
2496 libnet_join_set_error_string(mem_ctx
, r
,
2497 "failed to find DC for domain %s - %s",
2499 get_friendly_nt_error_msg(status
));
2500 return WERR_NERR_DCNOTFOUND
;
2503 dc
= strip_hostname(info
->dc_unc
);
2504 r
->in
.dc_name
= talloc_strdup(mem_ctx
, dc
);
2505 W_ERROR_HAVE_NO_MEMORY(r
->in
.dc_name
);
2507 if (info
->dc_address
== NULL
|| info
->dc_address
[0] != '\\' ||
2508 info
->dc_address
[1] != '\\') {
2509 DBG_ERR("ill-formed DC address '%s'\n",
2511 return WERR_NERR_DCNOTFOUND
;
2514 numeric_dcip
= info
->dc_address
+ 2;
2515 sitename
= info
->dc_site_name
;
2516 /* info goes out of scope but the memory stays
2517 allocated on the talloc context */
2520 if (pre_connect_realm
!= NULL
) {
2521 struct sockaddr_storage ss
= {0};
2523 if (numeric_dcip
!= NULL
) {
2524 if (!interpret_string_addr(&ss
, numeric_dcip
,
2527 "cannot parse IP address '%s' of DC '%s'\n",
2528 numeric_dcip
, r
->in
.dc_name
);
2529 return WERR_NERR_DCNOTFOUND
;
2532 if (!interpret_string_addr(&ss
, r
->in
.dc_name
, 0)) {
2534 "cannot resolve IP address of DC '%s'\n",
2536 return WERR_NERR_DCNOTFOUND
;
2540 /* The domain parameter is only used as modifier
2541 * to krb5.conf file name. .JOIN is is not a valid
2542 * NetBIOS name so it cannot clash with another domain
2545 create_local_private_krb5_conf_for_domain(
2546 pre_connect_realm
, ".JOIN", sitename
, &ss
);
2549 status
= libnet_join_lookup_dc_rpc(mem_ctx
, r
, &cli
);
2550 if (!NT_STATUS_IS_OK(status
)) {
2551 libnet_join_set_error_string(mem_ctx
, r
,
2552 "failed to lookup DC info for domain '%s' over rpc: %s",
2553 r
->in
.domain_name
, get_friendly_nt_error_msg(status
));
2554 return ntstatus_to_werror(status
);
2557 werr
= libnet_join_check_config(mem_ctx
, r
);
2558 if (!W_ERROR_IS_OK(werr
)) {
2564 if (r
->out
.domain_is_ad
) {
2565 create_local_private_krb5_conf_for_domain(
2566 r
->out
.dns_domain_name
, r
->out
.netbios_domain_name
,
2567 sitename
, smbXcli_conn_remote_sockaddr(cli
->conn
));
2570 if (r
->out
.domain_is_ad
&&
2571 !(r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_UNSECURE
)) {
2573 const char *initial_account_ou
= r
->in
.account_ou
;
2576 * we want to create the msDS-SupportedEncryptionTypes attribute
2577 * as early as possible so always try an LDAP create as the user
2578 * first. We copy r->in.account_ou because it may be changed
2579 * during the machine pre-creation.
2582 ads_status
= libnet_join_connect_ads_user(mem_ctx
, r
);
2583 if (!ADS_ERR_OK(ads_status
)) {
2584 return WERR_NERR_DEFAULTJOINREQUIRED
;
2587 ads_status
= libnet_join_precreate_machine_acct(mem_ctx
, r
);
2588 if (ADS_ERR_OK(ads_status
)) {
2591 * LDAP object create succeeded, now go to the rpc
2592 * password set routines
2595 r
->in
.join_flags
&= ~WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE
;
2599 if (initial_account_ou
!= NULL
) {
2600 libnet_join_set_error_string(mem_ctx
, r
,
2601 "failed to precreate account in ou %s: %s",
2603 ads_errstr(ads_status
));
2604 return WERR_NERR_DEFAULTJOINREQUIRED
;
2607 DEBUG(5, ("failed to precreate account in ou %s: %s",
2608 r
->in
.account_ou
, ads_errstr(ads_status
)));
2610 #endif /* HAVE_ADS */
2613 if ((r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_UNSECURE
) &&
2614 (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_MACHINE_PWD_PASSED
)) {
2615 status
= libnet_join_joindomain_rpc_unsecure(mem_ctx
, r
, cli
);
2617 status
= libnet_join_joindomain_rpc(mem_ctx
, r
, cli
);
2619 if (!NT_STATUS_IS_OK(status
)) {
2620 libnet_join_set_error_string(mem_ctx
, r
,
2621 "failed to join domain '%s' over rpc: %s",
2622 r
->in
.domain_name
, get_friendly_nt_error_msg(status
));
2623 if (NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
2624 return WERR_NERR_SETUPALREADYJOINED
;
2626 werr
= ntstatus_to_werror(status
);
2640 /****************************************************************
2641 ****************************************************************/
2643 static WERROR
libnet_join_rollback(TALLOC_CTX
*mem_ctx
,
2644 struct libnet_JoinCtx
*r
)
2647 struct libnet_UnjoinCtx
*u
= NULL
;
2649 werr
= libnet_init_UnjoinCtx(mem_ctx
, &u
);
2650 if (!W_ERROR_IS_OK(werr
)) {
2654 u
->in
.debug
= r
->in
.debug
;
2655 u
->in
.dc_name
= r
->in
.dc_name
;
2656 u
->in
.domain_name
= r
->in
.domain_name
;
2657 u
->in
.admin_account
= r
->in
.admin_account
;
2658 u
->in
.admin_password
= r
->in
.admin_password
;
2659 u
->in
.modify_config
= r
->in
.modify_config
;
2660 u
->in
.use_kerberos
= r
->in
.use_kerberos
;
2661 u
->in
.unjoin_flags
= WKSSVC_JOIN_FLAGS_JOIN_TYPE
|
2662 WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE
;
2664 werr
= libnet_Unjoin(mem_ctx
, u
);
2670 /****************************************************************
2671 ****************************************************************/
2673 WERROR
libnet_Join(TALLOC_CTX
*mem_ctx
,
2674 struct libnet_JoinCtx
*r
)
2679 LIBNET_JOIN_IN_DUMP_CTX(mem_ctx
, r
);
2682 ZERO_STRUCT(r
->out
);
2684 werr
= libnet_join_pre_processing(mem_ctx
, r
);
2685 if (!W_ERROR_IS_OK(werr
)) {
2689 if (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
2690 werr
= libnet_DomainJoin(mem_ctx
, r
);
2691 if (!W_ERROR_IS_OK(werr
)) {
2696 werr
= libnet_join_post_processing(mem_ctx
, r
);
2697 if (!W_ERROR_IS_OK(werr
)) {
2701 if (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
2702 werr
= libnet_join_post_verify(mem_ctx
, r
);
2703 if (!W_ERROR_IS_OK(werr
)) {
2704 libnet_join_rollback(mem_ctx
, r
);
2709 r
->out
.result
= werr
;
2712 LIBNET_JOIN_OUT_DUMP_CTX(mem_ctx
, r
);
2717 /****************************************************************
2718 ****************************************************************/
2720 static WERROR
libnet_DomainUnjoin(TALLOC_CTX
*mem_ctx
,
2721 struct libnet_UnjoinCtx
*r
)
2725 if (!r
->in
.domain_sid
) {
2727 if (!secrets_fetch_domain_sid(lp_workgroup(), &sid
)) {
2728 libnet_unjoin_set_error_string(mem_ctx
, r
,
2729 "Unable to fetch domain sid: are we joined?");
2730 return WERR_NERR_SETUPNOTJOINED
;
2732 r
->in
.domain_sid
= dom_sid_dup(mem_ctx
, &sid
);
2733 W_ERROR_HAVE_NO_MEMORY(r
->in
.domain_sid
);
2736 if (!(r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE
) &&
2737 !r
->in
.delete_machine_account
) {
2738 libnet_join_unjoindomain_remove_secrets(mem_ctx
, r
);
2742 if (!r
->in
.dc_name
) {
2743 struct netr_DsRGetDCNameInfo
*info
;
2745 status
= dsgetdcname(mem_ctx
,
2750 DS_DIRECTORY_SERVICE_REQUIRED
|
2751 DS_WRITABLE_REQUIRED
|
2754 if (!NT_STATUS_IS_OK(status
)) {
2755 libnet_unjoin_set_error_string(mem_ctx
, r
,
2756 "failed to find DC for domain %s - %s",
2758 get_friendly_nt_error_msg(status
));
2759 return WERR_NERR_DCNOTFOUND
;
2762 dc
= strip_hostname(info
->dc_unc
);
2763 r
->in
.dc_name
= talloc_strdup(mem_ctx
, dc
);
2764 W_ERROR_HAVE_NO_MEMORY(r
->in
.dc_name
);
2768 /* for net ads leave, try to delete the account. If it works,
2769 no sense in disabling. If it fails, we can still try to
2772 if (r
->in
.delete_machine_account
) {
2773 ADS_STATUS ads_status
;
2774 ads_status
= libnet_unjoin_connect_ads(mem_ctx
, r
);
2775 if (ADS_ERR_OK(ads_status
)) {
2777 r
->out
.dns_domain_name
=
2778 talloc_strdup(mem_ctx
,
2779 r
->in
.ads
->server
.realm
);
2781 libnet_unjoin_remove_machine_acct(mem_ctx
, r
);
2783 if (!ADS_ERR_OK(ads_status
)) {
2784 libnet_unjoin_set_error_string(mem_ctx
, r
,
2785 "failed to remove machine account from AD: %s",
2786 ads_errstr(ads_status
));
2788 r
->out
.deleted_machine_account
= true;
2789 W_ERROR_HAVE_NO_MEMORY(r
->out
.dns_domain_name
);
2790 libnet_join_unjoindomain_remove_secrets(mem_ctx
, r
);
2794 #endif /* HAVE_ADS */
2796 /* The WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE flag really means
2798 if (r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE
) {
2799 status
= libnet_join_unjoindomain_rpc(mem_ctx
, r
);
2800 if (!NT_STATUS_IS_OK(status
)) {
2801 libnet_unjoin_set_error_string(mem_ctx
, r
,
2802 "failed to disable machine account via rpc: %s",
2803 get_friendly_nt_error_msg(status
));
2804 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_USER
)) {
2805 return WERR_NERR_SETUPNOTJOINED
;
2807 return ntstatus_to_werror(status
);
2810 r
->out
.disabled_machine_account
= true;
2813 /* If disable succeeded or was not requested at all, we
2814 should be getting rid of our end of things */
2816 libnet_join_unjoindomain_remove_secrets(mem_ctx
, r
);
2821 /****************************************************************
2822 ****************************************************************/
2824 static WERROR
libnet_unjoin_pre_processing(TALLOC_CTX
*mem_ctx
,
2825 struct libnet_UnjoinCtx
*r
)
2827 if (!r
->in
.domain_name
) {
2828 libnet_unjoin_set_error_string(mem_ctx
, r
,
2829 "No domain name defined");
2830 return WERR_INVALID_PARAMETER
;
2833 if (!libnet_parse_domain_dc(mem_ctx
, r
->in
.domain_name
,
2836 libnet_unjoin_set_error_string(mem_ctx
, r
,
2837 "Failed to parse domain name");
2838 return WERR_INVALID_PARAMETER
;
2842 return WERR_NERR_SETUPDOMAINCONTROLLER
;
2845 if (!r
->in
.admin_domain
) {
2846 char *admin_domain
= NULL
;
2847 char *admin_account
= NULL
;
2850 ok
= split_domain_user(mem_ctx
,
2851 r
->in
.admin_account
,
2855 return WERR_NOT_ENOUGH_MEMORY
;
2858 if (admin_domain
!= NULL
) {
2859 r
->in
.admin_domain
= admin_domain
;
2861 r
->in
.admin_domain
= r
->in
.domain_name
;
2863 r
->in
.admin_account
= admin_account
;
2866 if (!secrets_init()) {
2867 libnet_unjoin_set_error_string(mem_ctx
, r
,
2868 "Unable to open secrets database");
2869 return WERR_CAN_NOT_COMPLETE
;
2875 /****************************************************************
2876 ****************************************************************/
2878 static WERROR
libnet_unjoin_post_processing(TALLOC_CTX
*mem_ctx
,
2879 struct libnet_UnjoinCtx
*r
)
2881 saf_delete(r
->out
.netbios_domain_name
);
2882 saf_delete(r
->out
.dns_domain_name
);
2884 return libnet_unjoin_config(r
);
2887 /****************************************************************
2888 ****************************************************************/
2890 WERROR
libnet_Unjoin(TALLOC_CTX
*mem_ctx
,
2891 struct libnet_UnjoinCtx
*r
)
2896 LIBNET_UNJOIN_IN_DUMP_CTX(mem_ctx
, r
);
2899 werr
= libnet_unjoin_pre_processing(mem_ctx
, r
);
2900 if (!W_ERROR_IS_OK(werr
)) {
2904 if (r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
2905 werr
= libnet_DomainUnjoin(mem_ctx
, r
);
2906 if (!W_ERROR_IS_OK(werr
)) {
2907 libnet_unjoin_config(r
);
2912 werr
= libnet_unjoin_post_processing(mem_ctx
, r
);
2913 if (!W_ERROR_IS_OK(werr
)) {
2918 r
->out
.result
= werr
;
2921 LIBNET_UNJOIN_OUT_DUMP_CTX(mem_ctx
, r
);