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"
44 /****************************************************************
45 ****************************************************************/
47 #define LIBNET_JOIN_DUMP_CTX(ctx, r, f) \
50 str = NDR_PRINT_FUNCTION_STRING(ctx, libnet_JoinCtx, f, r); \
51 DEBUG(1,("libnet_Join:\n%s", str)); \
55 #define LIBNET_JOIN_IN_DUMP_CTX(ctx, r) \
56 LIBNET_JOIN_DUMP_CTX(ctx, r, NDR_IN | NDR_SET_VALUES)
57 #define LIBNET_JOIN_OUT_DUMP_CTX(ctx, r) \
58 LIBNET_JOIN_DUMP_CTX(ctx, r, NDR_OUT)
60 #define LIBNET_UNJOIN_DUMP_CTX(ctx, r, f) \
63 str = NDR_PRINT_FUNCTION_STRING(ctx, libnet_UnjoinCtx, f, r); \
64 DEBUG(1,("libnet_Unjoin:\n%s", str)); \
68 #define LIBNET_UNJOIN_IN_DUMP_CTX(ctx, r) \
69 LIBNET_UNJOIN_DUMP_CTX(ctx, r, NDR_IN | NDR_SET_VALUES)
70 #define LIBNET_UNJOIN_OUT_DUMP_CTX(ctx, r) \
71 LIBNET_UNJOIN_DUMP_CTX(ctx, r, NDR_OUT)
73 /****************************************************************
74 ****************************************************************/
76 static void libnet_join_set_error_string(TALLOC_CTX
*mem_ctx
,
77 struct libnet_JoinCtx
*r
,
78 const char *format
, ...)
82 if (r
->out
.error_string
) {
86 va_start(args
, format
);
87 r
->out
.error_string
= talloc_vasprintf(mem_ctx
, format
, args
);
91 /****************************************************************
92 ****************************************************************/
94 static void libnet_unjoin_set_error_string(TALLOC_CTX
*mem_ctx
,
95 struct libnet_UnjoinCtx
*r
,
96 const char *format
, ...)
100 if (r
->out
.error_string
) {
104 va_start(args
, format
);
105 r
->out
.error_string
= talloc_vasprintf(mem_ctx
, format
, args
);
111 /****************************************************************
112 ****************************************************************/
114 static ADS_STATUS
libnet_connect_ads(const char *dns_domain_name
,
115 const char *netbios_domain_name
,
117 const char *user_name
,
118 const char *password
,
122 ADS_STRUCT
*my_ads
= NULL
;
125 my_ads
= ads_init(dns_domain_name
,
129 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
133 SAFE_FREE(my_ads
->auth
.user_name
);
134 my_ads
->auth
.user_name
= SMB_STRDUP(user_name
);
135 if ((cp
= strchr_m(my_ads
->auth
.user_name
, '@'))!=0) {
137 SAFE_FREE(my_ads
->auth
.realm
);
138 my_ads
->auth
.realm
= smb_xstrdup(cp
);
139 if (!strupper_m(my_ads
->auth
.realm
)) {
140 ads_destroy(&my_ads
);
141 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
147 SAFE_FREE(my_ads
->auth
.password
);
148 my_ads
->auth
.password
= SMB_STRDUP(password
);
151 status
= ads_connect_user_creds(my_ads
);
152 if (!ADS_ERR_OK(status
)) {
153 ads_destroy(&my_ads
);
161 /****************************************************************
162 ****************************************************************/
164 static ADS_STATUS
libnet_join_connect_ads(TALLOC_CTX
*mem_ctx
,
165 struct libnet_JoinCtx
*r
)
169 status
= libnet_connect_ads(r
->out
.dns_domain_name
,
170 r
->out
.netbios_domain_name
,
173 r
->in
.admin_password
,
175 if (!ADS_ERR_OK(status
)) {
176 libnet_join_set_error_string(mem_ctx
, r
,
177 "failed to connect to AD: %s",
182 if (!r
->out
.netbios_domain_name
) {
183 r
->out
.netbios_domain_name
= talloc_strdup(mem_ctx
,
184 r
->in
.ads
->server
.workgroup
);
185 ADS_ERROR_HAVE_NO_MEMORY(r
->out
.netbios_domain_name
);
188 if (!r
->out
.dns_domain_name
) {
189 r
->out
.dns_domain_name
= talloc_strdup(mem_ctx
,
190 r
->in
.ads
->config
.realm
);
191 ADS_ERROR_HAVE_NO_MEMORY(r
->out
.dns_domain_name
);
194 r
->out
.domain_is_ad
= true;
199 /****************************************************************
200 ****************************************************************/
202 static ADS_STATUS
libnet_unjoin_connect_ads(TALLOC_CTX
*mem_ctx
,
203 struct libnet_UnjoinCtx
*r
)
207 status
= libnet_connect_ads(r
->in
.domain_name
,
211 r
->in
.admin_password
,
213 if (!ADS_ERR_OK(status
)) {
214 libnet_unjoin_set_error_string(mem_ctx
, r
,
215 "failed to connect to AD: %s",
222 /****************************************************************
223 join a domain using ADS (LDAP mods)
224 ****************************************************************/
226 static ADS_STATUS
libnet_join_precreate_machine_acct(TALLOC_CTX
*mem_ctx
,
227 struct libnet_JoinCtx
*r
)
230 LDAPMessage
*res
= NULL
;
231 const char *attrs
[] = { "dn", NULL
};
234 status
= ads_check_ou_dn(mem_ctx
, r
->in
.ads
, &r
->in
.account_ou
);
235 if (!ADS_ERR_OK(status
)) {
239 status
= ads_search_dn(r
->in
.ads
, &res
, r
->in
.account_ou
, attrs
);
240 if (!ADS_ERR_OK(status
)) {
244 if (ads_count_replies(r
->in
.ads
, res
) != 1) {
245 ads_msgfree(r
->in
.ads
, res
);
246 return ADS_ERROR_LDAP(LDAP_NO_SUCH_OBJECT
);
249 ads_msgfree(r
->in
.ads
, res
);
251 /* Attempt to create the machine account and bail if this fails.
252 Assume that the admin wants exactly what they requested */
254 status
= ads_create_machine_acct(r
->in
.ads
,
258 if (ADS_ERR_OK(status
)) {
259 DEBUG(1,("machine account creation created\n"));
261 } else if ((status
.error_type
== ENUM_ADS_ERROR_LDAP
) &&
262 (status
.err
.rc
== LDAP_ALREADY_EXISTS
)) {
263 status
= ADS_SUCCESS
;
266 if (!ADS_ERR_OK(status
)) {
267 DEBUG(1,("machine account creation failed\n"));
271 status
= ads_move_machine_acct(r
->in
.ads
,
275 if (!ADS_ERR_OK(status
)) {
276 DEBUG(1,("failure to locate/move pre-existing "
277 "machine account\n"));
281 DEBUG(1,("The machine account %s the specified OU.\n",
282 moved
? "was moved into" : "already exists in"));
287 /****************************************************************
288 ****************************************************************/
290 static ADS_STATUS
libnet_unjoin_remove_machine_acct(TALLOC_CTX
*mem_ctx
,
291 struct libnet_UnjoinCtx
*r
)
296 status
= libnet_unjoin_connect_ads(mem_ctx
, r
);
297 if (!ADS_ERR_OK(status
)) {
298 libnet_unjoin_set_error_string(mem_ctx
, r
,
299 "failed to connect to AD: %s",
305 status
= ads_leave_realm(r
->in
.ads
, r
->in
.machine_name
);
306 if (!ADS_ERR_OK(status
)) {
307 libnet_unjoin_set_error_string(mem_ctx
, r
,
308 "failed to leave realm: %s",
316 /****************************************************************
317 ****************************************************************/
319 static ADS_STATUS
libnet_join_find_machine_acct(TALLOC_CTX
*mem_ctx
,
320 struct libnet_JoinCtx
*r
)
323 LDAPMessage
*res
= NULL
;
326 if (!r
->in
.machine_name
) {
327 return ADS_ERROR(LDAP_NO_MEMORY
);
330 status
= ads_find_machine_acct(r
->in
.ads
,
333 if (!ADS_ERR_OK(status
)) {
337 if (ads_count_replies(r
->in
.ads
, res
) != 1) {
338 status
= ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
342 dn
= ads_get_dn(r
->in
.ads
, mem_ctx
, res
);
344 status
= ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
348 r
->out
.dn
= talloc_strdup(mem_ctx
, dn
);
350 status
= ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
355 ads_msgfree(r
->in
.ads
, res
);
361 /****************************************************************
362 Set a machines dNSHostName and servicePrincipalName attributes
363 ****************************************************************/
365 static ADS_STATUS
libnet_join_set_machine_spn(TALLOC_CTX
*mem_ctx
,
366 struct libnet_JoinCtx
*r
)
371 const char *spn_array
[3] = {NULL
, NULL
, NULL
};
376 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
377 if (!ADS_ERR_OK(status
)) {
381 /* Windows only creates HOST/shortname & HOST/fqdn. */
383 spn
= talloc_asprintf(mem_ctx
, "HOST/%s", r
->in
.machine_name
);
385 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
387 if (!strupper_m(spn
)) {
388 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
392 if (!name_to_fqdn(my_fqdn
, r
->in
.machine_name
)
393 || (strchr(my_fqdn
, '.') == NULL
)) {
394 fstr_sprintf(my_fqdn
, "%s.%s", r
->in
.machine_name
,
395 r
->out
.dns_domain_name
);
398 if (!strlower_m(my_fqdn
)) {
399 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
402 if (!strequal(my_fqdn
, r
->in
.machine_name
)) {
403 spn
= talloc_asprintf(mem_ctx
, "HOST/%s", my_fqdn
);
405 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
410 mods
= ads_init_mods(mem_ctx
);
412 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
415 /* fields of primary importance */
417 status
= ads_mod_str(mem_ctx
, &mods
, "dNSHostName", my_fqdn
);
418 if (!ADS_ERR_OK(status
)) {
419 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
422 status
= ads_mod_strlist(mem_ctx
, &mods
, "servicePrincipalName",
424 if (!ADS_ERR_OK(status
)) {
425 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
428 return ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
431 /****************************************************************
432 ****************************************************************/
434 static ADS_STATUS
libnet_join_set_machine_upn(TALLOC_CTX
*mem_ctx
,
435 struct libnet_JoinCtx
*r
)
440 if (!r
->in
.create_upn
) {
446 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
447 if (!ADS_ERR_OK(status
)) {
452 r
->in
.upn
= talloc_asprintf(mem_ctx
,
455 r
->out
.dns_domain_name
);
457 return ADS_ERROR(LDAP_NO_MEMORY
);
461 /* now do the mods */
463 mods
= ads_init_mods(mem_ctx
);
465 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
468 /* fields of primary importance */
470 status
= ads_mod_str(mem_ctx
, &mods
, "userPrincipalName", r
->in
.upn
);
471 if (!ADS_ERR_OK(status
)) {
472 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
475 return ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
479 /****************************************************************
480 ****************************************************************/
482 static ADS_STATUS
libnet_join_set_os_attributes(TALLOC_CTX
*mem_ctx
,
483 struct libnet_JoinCtx
*r
)
489 if (!r
->in
.os_name
|| !r
->in
.os_version
) {
495 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
496 if (!ADS_ERR_OK(status
)) {
500 /* now do the mods */
502 mods
= ads_init_mods(mem_ctx
);
504 return ADS_ERROR(LDAP_NO_MEMORY
);
507 os_sp
= talloc_asprintf(mem_ctx
, "Samba %s", samba_version_string());
509 return ADS_ERROR(LDAP_NO_MEMORY
);
512 /* fields of primary importance */
514 status
= ads_mod_str(mem_ctx
, &mods
, "operatingSystem",
516 if (!ADS_ERR_OK(status
)) {
520 status
= ads_mod_str(mem_ctx
, &mods
, "operatingSystemVersion",
522 if (!ADS_ERR_OK(status
)) {
526 status
= ads_mod_str(mem_ctx
, &mods
, "operatingSystemServicePack",
528 if (!ADS_ERR_OK(status
)) {
532 return ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
535 /****************************************************************
536 ****************************************************************/
538 static bool libnet_join_create_keytab(TALLOC_CTX
*mem_ctx
,
539 struct libnet_JoinCtx
*r
)
541 if (!USE_SYSTEM_KEYTAB
) {
545 if (ads_keytab_create_default(r
->in
.ads
) != 0) {
552 /****************************************************************
553 ****************************************************************/
555 static bool libnet_join_derive_salting_principal(TALLOC_CTX
*mem_ctx
,
556 struct libnet_JoinCtx
*r
)
558 uint32_t domain_func
;
560 const char *salt
= NULL
;
561 char *std_salt
= NULL
;
563 status
= ads_domain_func_level(r
->in
.ads
, &domain_func
);
564 if (!ADS_ERR_OK(status
)) {
565 libnet_join_set_error_string(mem_ctx
, r
,
566 "failed to determine domain functional level: %s",
571 /* go ahead and setup the default salt */
573 std_salt
= kerberos_standard_des_salt();
575 libnet_join_set_error_string(mem_ctx
, r
,
576 "failed to obtain standard DES salt");
580 salt
= talloc_strdup(mem_ctx
, std_salt
);
587 /* if it's a Windows functional domain, we have to look for the UPN */
589 if (domain_func
== DS_DOMAIN_FUNCTION_2000
) {
592 upn
= ads_get_upn(r
->in
.ads
, mem_ctx
,
595 salt
= talloc_strdup(mem_ctx
, upn
);
602 return kerberos_secrets_store_des_salt(salt
);
605 /****************************************************************
606 ****************************************************************/
608 static ADS_STATUS
libnet_join_post_processing_ads(TALLOC_CTX
*mem_ctx
,
609 struct libnet_JoinCtx
*r
)
614 status
= libnet_join_connect_ads(mem_ctx
, r
);
615 if (!ADS_ERR_OK(status
)) {
620 status
= libnet_join_set_machine_spn(mem_ctx
, r
);
621 if (!ADS_ERR_OK(status
)) {
622 libnet_join_set_error_string(mem_ctx
, r
,
623 "failed to set machine spn: %s",
628 status
= libnet_join_set_os_attributes(mem_ctx
, r
);
629 if (!ADS_ERR_OK(status
)) {
630 libnet_join_set_error_string(mem_ctx
, r
,
631 "failed to set machine os attributes: %s",
636 status
= libnet_join_set_machine_upn(mem_ctx
, r
);
637 if (!ADS_ERR_OK(status
)) {
638 libnet_join_set_error_string(mem_ctx
, r
,
639 "failed to set machine upn: %s",
644 if (!libnet_join_derive_salting_principal(mem_ctx
, r
)) {
645 return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
648 if (!libnet_join_create_keytab(mem_ctx
, r
)) {
649 libnet_join_set_error_string(mem_ctx
, r
,
650 "failed to create kerberos keytab");
651 return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
656 #endif /* HAVE_ADS */
658 /****************************************************************
659 Store the machine password and domain SID
660 ****************************************************************/
662 static bool libnet_join_joindomain_store_secrets(TALLOC_CTX
*mem_ctx
,
663 struct libnet_JoinCtx
*r
)
665 if (!secrets_store_domain_sid(r
->out
.netbios_domain_name
,
668 DEBUG(1,("Failed to save domain sid\n"));
672 if (!secrets_store_machine_password(r
->in
.machine_password
,
673 r
->out
.netbios_domain_name
,
674 r
->in
.secure_channel_type
))
676 DEBUG(1,("Failed to save machine password\n"));
683 /****************************************************************
684 Connect dc's IPC$ share
685 ****************************************************************/
687 static NTSTATUS
libnet_join_connect_dc_ipc(const char *dc
,
691 struct cli_state
**cli
)
696 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
;
699 if (use_kerberos
&& pass
) {
700 flags
|= CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS
;
703 return cli_full_connection(cli
, NULL
,
711 SMB_SIGNING_DEFAULT
);
714 /****************************************************************
715 Lookup domain dc's info
716 ****************************************************************/
718 static NTSTATUS
libnet_join_lookup_dc_rpc(TALLOC_CTX
*mem_ctx
,
719 struct libnet_JoinCtx
*r
,
720 struct cli_state
**cli
)
722 struct rpc_pipe_client
*pipe_hnd
= NULL
;
723 struct policy_handle lsa_pol
;
724 NTSTATUS status
, result
;
725 union lsa_PolicyInformation
*info
= NULL
;
726 struct dcerpc_binding_handle
*b
;
728 status
= libnet_join_connect_dc_ipc(r
->in
.dc_name
,
730 r
->in
.admin_password
,
733 if (!NT_STATUS_IS_OK(status
)) {
737 status
= cli_rpc_pipe_open_noauth(*cli
, &ndr_table_lsarpc
.syntax_id
,
739 if (!NT_STATUS_IS_OK(status
)) {
740 DEBUG(0,("Error connecting to LSA pipe. Error was %s\n",
745 b
= pipe_hnd
->binding_handle
;
747 status
= rpccli_lsa_open_policy(pipe_hnd
, mem_ctx
, true,
748 SEC_FLAG_MAXIMUM_ALLOWED
, &lsa_pol
);
749 if (!NT_STATUS_IS_OK(status
)) {
753 status
= dcerpc_lsa_QueryInfoPolicy2(b
, mem_ctx
,
758 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(result
)) {
759 r
->out
.domain_is_ad
= true;
760 r
->out
.netbios_domain_name
= info
->dns
.name
.string
;
761 r
->out
.dns_domain_name
= info
->dns
.dns_domain
.string
;
762 r
->out
.forest_name
= info
->dns
.dns_forest
.string
;
763 r
->out
.domain_sid
= dom_sid_dup(mem_ctx
, info
->dns
.sid
);
764 NT_STATUS_HAVE_NO_MEMORY(r
->out
.domain_sid
);
767 if (!NT_STATUS_IS_OK(status
)) {
768 status
= dcerpc_lsa_QueryInfoPolicy(b
, mem_ctx
,
770 LSA_POLICY_INFO_ACCOUNT_DOMAIN
,
773 if (!NT_STATUS_IS_OK(status
)) {
776 if (!NT_STATUS_IS_OK(result
)) {
781 r
->out
.netbios_domain_name
= info
->account_domain
.name
.string
;
782 r
->out
.domain_sid
= dom_sid_dup(mem_ctx
, info
->account_domain
.sid
);
783 NT_STATUS_HAVE_NO_MEMORY(r
->out
.domain_sid
);
786 dcerpc_lsa_Close(b
, mem_ctx
, &lsa_pol
, &result
);
787 TALLOC_FREE(pipe_hnd
);
793 /****************************************************************
794 Do the domain join unsecure
795 ****************************************************************/
797 static NTSTATUS
libnet_join_joindomain_rpc_unsecure(TALLOC_CTX
*mem_ctx
,
798 struct libnet_JoinCtx
*r
,
799 struct cli_state
*cli
)
801 struct rpc_pipe_client
*pipe_hnd
= NULL
;
802 unsigned char orig_trust_passwd_hash
[16];
803 unsigned char new_trust_passwd_hash
[16];
804 fstring trust_passwd
;
807 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_netlogon
.syntax_id
,
809 if (!NT_STATUS_IS_OK(status
)) {
813 if (!r
->in
.machine_password
) {
814 r
->in
.machine_password
= generate_random_password(mem_ctx
,
815 DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH
,
816 DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH
);
817 NT_STATUS_HAVE_NO_MEMORY(r
->in
.machine_password
);
820 E_md4hash(r
->in
.machine_password
, new_trust_passwd_hash
);
822 /* according to WKSSVC_JOIN_FLAGS_MACHINE_PWD_PASSED */
823 fstrcpy(trust_passwd
, r
->in
.admin_password
);
824 if (!strlower_m(trust_passwd
)) {
825 return NT_STATUS_INVALID_PARAMETER
;
829 * Machine names can be 15 characters, but the max length on
830 * a password is 14. --jerry
833 trust_passwd
[14] = '\0';
835 E_md4hash(trust_passwd
, orig_trust_passwd_hash
);
837 status
= rpccli_netlogon_set_trust_password(pipe_hnd
, mem_ctx
,
839 orig_trust_passwd_hash
,
840 r
->in
.machine_password
,
841 new_trust_passwd_hash
,
842 r
->in
.secure_channel_type
);
847 /****************************************************************
849 ****************************************************************/
851 static NTSTATUS
libnet_join_joindomain_rpc(TALLOC_CTX
*mem_ctx
,
852 struct libnet_JoinCtx
*r
,
853 struct cli_state
*cli
)
855 struct rpc_pipe_client
*pipe_hnd
= NULL
;
856 struct policy_handle sam_pol
, domain_pol
, user_pol
;
857 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
, result
;
859 struct lsa_String lsa_acct_name
;
861 uint32_t acct_flags
= ACB_WSTRUST
;
862 struct samr_Ids user_rids
;
863 struct samr_Ids name_types
;
864 union samr_UserInfo user_info
;
865 struct dcerpc_binding_handle
*b
= NULL
;
867 DATA_BLOB session_key
= data_blob_null
;
868 struct samr_CryptPassword crypt_pwd
;
869 struct samr_CryptPasswordEx crypt_pwd_ex
;
871 ZERO_STRUCT(sam_pol
);
872 ZERO_STRUCT(domain_pol
);
873 ZERO_STRUCT(user_pol
);
875 switch (r
->in
.secure_channel_type
) {
877 acct_flags
= ACB_WSTRUST
;
880 acct_flags
= ACB_SVRTRUST
;
883 return NT_STATUS_INVALID_PARAMETER
;
886 if (!r
->in
.machine_password
) {
887 r
->in
.machine_password
= generate_random_password(mem_ctx
,
888 DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH
,
889 DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH
);
890 NT_STATUS_HAVE_NO_MEMORY(r
->in
.machine_password
);
893 /* Open the domain */
895 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_samr
.syntax_id
,
897 if (!NT_STATUS_IS_OK(status
)) {
898 DEBUG(0,("Error connecting to SAM pipe. Error was %s\n",
903 b
= pipe_hnd
->binding_handle
;
905 status
= cli_get_session_key(mem_ctx
, pipe_hnd
, &session_key
);
906 if (!NT_STATUS_IS_OK(status
)) {
907 DEBUG(0,("Error getting session_key of SAM pipe. Error was %s\n",
912 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
914 SAMR_ACCESS_ENUM_DOMAINS
915 | SAMR_ACCESS_LOOKUP_DOMAIN
,
918 if (!NT_STATUS_IS_OK(status
)) {
921 if (!NT_STATUS_IS_OK(result
)) {
926 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
928 SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1
929 | SAMR_DOMAIN_ACCESS_CREATE_USER
930 | SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT
,
934 if (!NT_STATUS_IS_OK(status
)) {
937 if (!NT_STATUS_IS_OK(result
)) {
942 /* Create domain user */
944 acct_name
= talloc_asprintf(mem_ctx
, "%s$", r
->in
.machine_name
);
945 if (!strlower_m(acct_name
)) {
946 status
= NT_STATUS_INVALID_PARAMETER
;
950 init_lsa_String(&lsa_acct_name
, acct_name
);
952 if (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE
) {
953 uint32_t access_desired
=
954 SEC_GENERIC_READ
| SEC_GENERIC_WRITE
| SEC_GENERIC_EXECUTE
|
955 SEC_STD_WRITE_DAC
| SEC_STD_DELETE
|
956 SAMR_USER_ACCESS_SET_PASSWORD
|
957 SAMR_USER_ACCESS_GET_ATTRIBUTES
|
958 SAMR_USER_ACCESS_SET_ATTRIBUTES
;
959 uint32_t access_granted
= 0;
961 DEBUG(10,("Creating account with desired access mask: %d\n",
964 status
= dcerpc_samr_CreateUser2(b
, mem_ctx
,
973 if (!NT_STATUS_IS_OK(status
)) {
978 if (!NT_STATUS_IS_OK(status
) &&
979 !NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
981 DEBUG(10,("Creation of workstation account failed: %s\n",
984 /* If NT_STATUS_ACCESS_DENIED then we have a valid
985 username/password combo but the user does not have
986 administrator access. */
988 if (NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
989 libnet_join_set_error_string(mem_ctx
, r
,
990 "User specified does not have "
991 "administrator privileges");
997 if (NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
998 if (!(r
->in
.join_flags
&
999 WKSSVC_JOIN_FLAGS_DOMAIN_JOIN_IF_JOINED
)) {
1004 /* We *must* do this.... don't ask... */
1006 if (NT_STATUS_IS_OK(status
)) {
1007 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1011 status
= dcerpc_samr_LookupNames(b
, mem_ctx
,
1018 if (!NT_STATUS_IS_OK(status
)) {
1021 if (!NT_STATUS_IS_OK(result
)) {
1025 if (user_rids
.count
!= 1) {
1026 status
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
1029 if (name_types
.count
!= 1) {
1030 status
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
1034 if (name_types
.ids
[0] != SID_NAME_USER
) {
1035 DEBUG(0,("%s is not a user account (type=%d)\n",
1036 acct_name
, name_types
.ids
[0]));
1037 status
= NT_STATUS_INVALID_WORKSTATION
;
1041 user_rid
= user_rids
.ids
[0];
1043 /* Open handle on user */
1045 status
= dcerpc_samr_OpenUser(b
, mem_ctx
,
1047 SEC_FLAG_MAXIMUM_ALLOWED
,
1051 if (!NT_STATUS_IS_OK(status
)) {
1054 if (!NT_STATUS_IS_OK(result
)) {
1059 /* Fill in the additional account flags now */
1061 acct_flags
|= ACB_PWNOEXP
;
1063 /* Set account flags on machine account */
1064 ZERO_STRUCT(user_info
.info16
);
1065 user_info
.info16
.acct_flags
= acct_flags
;
1067 status
= dcerpc_samr_SetUserInfo(b
, mem_ctx
,
1072 if (!NT_STATUS_IS_OK(status
)) {
1073 dcerpc_samr_DeleteUser(b
, mem_ctx
,
1077 libnet_join_set_error_string(mem_ctx
, r
,
1078 "Failed to set account flags for machine account (%s)\n",
1083 if (!NT_STATUS_IS_OK(result
)) {
1086 dcerpc_samr_DeleteUser(b
, mem_ctx
,
1090 libnet_join_set_error_string(mem_ctx
, r
,
1091 "Failed to set account flags for machine account (%s)\n",
1096 /* Set password on machine account - first try level 26 */
1098 init_samr_CryptPasswordEx(r
->in
.machine_password
,
1102 user_info
.info26
.password
= crypt_pwd_ex
;
1103 user_info
.info26
.password_expired
= PASS_DONT_CHANGE_AT_NEXT_LOGON
;
1105 status
= dcerpc_samr_SetUserInfo2(b
, mem_ctx
,
1111 if (NT_STATUS_EQUAL(status
, NT_STATUS_RPC_ENUM_VALUE_OUT_OF_RANGE
)) {
1113 /* retry with level 24 */
1115 init_samr_CryptPassword(r
->in
.machine_password
,
1119 user_info
.info24
.password
= crypt_pwd
;
1120 user_info
.info24
.password_expired
= PASS_DONT_CHANGE_AT_NEXT_LOGON
;
1122 status
= dcerpc_samr_SetUserInfo2(b
, mem_ctx
,
1129 if (!NT_STATUS_IS_OK(status
)) {
1131 dcerpc_samr_DeleteUser(b
, mem_ctx
,
1135 libnet_join_set_error_string(mem_ctx
, r
,
1136 "Failed to set password for machine account (%s)\n",
1140 if (!NT_STATUS_IS_OK(result
)) {
1143 dcerpc_samr_DeleteUser(b
, mem_ctx
,
1147 libnet_join_set_error_string(mem_ctx
, r
,
1148 "Failed to set password for machine account (%s)\n",
1153 status
= NT_STATUS_OK
;
1160 data_blob_clear_free(&session_key
);
1162 if (is_valid_policy_hnd(&sam_pol
)) {
1163 dcerpc_samr_Close(b
, mem_ctx
, &sam_pol
, &result
);
1165 if (is_valid_policy_hnd(&domain_pol
)) {
1166 dcerpc_samr_Close(b
, mem_ctx
, &domain_pol
, &result
);
1168 if (is_valid_policy_hnd(&user_pol
)) {
1169 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1171 TALLOC_FREE(pipe_hnd
);
1176 /****************************************************************
1177 ****************************************************************/
1179 NTSTATUS
libnet_join_ok(const char *netbios_domain_name
,
1180 const char *machine_name
,
1181 const char *dc_name
,
1182 const bool use_kerberos
)
1184 uint32_t neg_flags
= NETLOGON_NEG_AUTH2_ADS_FLAGS
;
1185 struct cli_state
*cli
= NULL
;
1186 struct rpc_pipe_client
*pipe_hnd
= NULL
;
1187 struct rpc_pipe_client
*netlogon_pipe
= NULL
;
1189 char *machine_password
= NULL
;
1190 char *machine_account
= NULL
;
1194 return NT_STATUS_INVALID_PARAMETER
;
1197 if (!secrets_init()) {
1198 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
1201 machine_password
= secrets_fetch_machine_password(netbios_domain_name
,
1203 if (!machine_password
) {
1204 return NT_STATUS_NO_TRUST_LSA_SECRET
;
1207 if (asprintf(&machine_account
, "%s$", machine_name
) == -1) {
1208 SAFE_FREE(machine_password
);
1209 return NT_STATUS_NO_MEMORY
;
1213 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
;
1216 status
= cli_full_connection(&cli
, NULL
,
1224 SMB_SIGNING_DEFAULT
);
1225 free(machine_account
);
1226 free(machine_password
);
1228 if (!NT_STATUS_IS_OK(status
)) {
1229 status
= cli_full_connection(&cli
, NULL
,
1237 SMB_SIGNING_DEFAULT
);
1240 if (!NT_STATUS_IS_OK(status
)) {
1244 status
= get_schannel_session_key(cli
, netbios_domain_name
,
1245 &neg_flags
, &netlogon_pipe
);
1246 if (!NT_STATUS_IS_OK(status
)) {
1247 if (NT_STATUS_EQUAL(status
, NT_STATUS_INVALID_NETWORK_RESPONSE
)) {
1249 return NT_STATUS_OK
;
1252 DEBUG(0,("libnet_join_ok: failed to get schannel session "
1253 "key from server %s for domain %s. Error was %s\n",
1254 smbXcli_conn_remote_name(cli
->conn
),
1255 netbios_domain_name
, nt_errstr(status
)));
1260 if (!lp_client_schannel()) {
1262 return NT_STATUS_OK
;
1265 status
= cli_rpc_pipe_open_schannel_with_key(
1266 cli
, &ndr_table_netlogon
.syntax_id
, NCACN_NP
,
1267 DCERPC_AUTH_LEVEL_PRIVACY
,
1268 netbios_domain_name
, &netlogon_pipe
->dc
, &pipe_hnd
);
1272 if (!NT_STATUS_IS_OK(status
)) {
1273 DEBUG(0,("libnet_join_ok: failed to open schannel session "
1274 "on netlogon pipe to server %s for domain %s. "
1276 smbXcli_conn_remote_name(cli
->conn
),
1277 netbios_domain_name
, nt_errstr(status
)));
1281 return NT_STATUS_OK
;
1284 /****************************************************************
1285 ****************************************************************/
1287 static WERROR
libnet_join_post_verify(TALLOC_CTX
*mem_ctx
,
1288 struct libnet_JoinCtx
*r
)
1292 status
= libnet_join_ok(r
->out
.netbios_domain_name
,
1295 r
->in
.use_kerberos
);
1296 if (!NT_STATUS_IS_OK(status
)) {
1297 libnet_join_set_error_string(mem_ctx
, r
,
1298 "failed to verify domain membership after joining: %s",
1299 get_friendly_nt_error_msg(status
));
1300 return WERR_SETUP_NOT_JOINED
;
1306 /****************************************************************
1307 ****************************************************************/
1309 static bool libnet_join_unjoindomain_remove_secrets(TALLOC_CTX
*mem_ctx
,
1310 struct libnet_UnjoinCtx
*r
)
1312 if (!secrets_delete_machine_password_ex(lp_workgroup())) {
1316 if (!secrets_delete_domain_sid(lp_workgroup())) {
1323 /****************************************************************
1324 ****************************************************************/
1326 static NTSTATUS
libnet_join_unjoindomain_rpc(TALLOC_CTX
*mem_ctx
,
1327 struct libnet_UnjoinCtx
*r
)
1329 struct cli_state
*cli
= NULL
;
1330 struct rpc_pipe_client
*pipe_hnd
= NULL
;
1331 struct policy_handle sam_pol
, domain_pol
, user_pol
;
1332 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
, result
;
1335 struct lsa_String lsa_acct_name
;
1336 struct samr_Ids user_rids
;
1337 struct samr_Ids name_types
;
1338 union samr_UserInfo
*info
= NULL
;
1339 struct dcerpc_binding_handle
*b
= NULL
;
1341 ZERO_STRUCT(sam_pol
);
1342 ZERO_STRUCT(domain_pol
);
1343 ZERO_STRUCT(user_pol
);
1345 status
= libnet_join_connect_dc_ipc(r
->in
.dc_name
,
1346 r
->in
.admin_account
,
1347 r
->in
.admin_password
,
1350 if (!NT_STATUS_IS_OK(status
)) {
1354 /* Open the domain */
1356 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_samr
.syntax_id
,
1358 if (!NT_STATUS_IS_OK(status
)) {
1359 DEBUG(0,("Error connecting to SAM pipe. Error was %s\n",
1360 nt_errstr(status
)));
1364 b
= pipe_hnd
->binding_handle
;
1366 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
1368 SEC_FLAG_MAXIMUM_ALLOWED
,
1371 if (!NT_STATUS_IS_OK(status
)) {
1374 if (!NT_STATUS_IS_OK(result
)) {
1379 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
1381 SEC_FLAG_MAXIMUM_ALLOWED
,
1385 if (!NT_STATUS_IS_OK(status
)) {
1388 if (!NT_STATUS_IS_OK(result
)) {
1393 /* Create domain user */
1395 acct_name
= talloc_asprintf(mem_ctx
, "%s$", r
->in
.machine_name
);
1396 if (!strlower_m(acct_name
)) {
1397 status
= NT_STATUS_INVALID_PARAMETER
;
1401 init_lsa_String(&lsa_acct_name
, acct_name
);
1403 status
= dcerpc_samr_LookupNames(b
, mem_ctx
,
1411 if (!NT_STATUS_IS_OK(status
)) {
1414 if (!NT_STATUS_IS_OK(result
)) {
1418 if (user_rids
.count
!= 1) {
1419 status
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
1422 if (name_types
.count
!= 1) {
1423 status
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
1427 if (name_types
.ids
[0] != SID_NAME_USER
) {
1428 DEBUG(0, ("%s is not a user account (type=%d)\n", acct_name
,
1429 name_types
.ids
[0]));
1430 status
= NT_STATUS_INVALID_WORKSTATION
;
1434 user_rid
= user_rids
.ids
[0];
1436 /* Open handle on user */
1438 status
= dcerpc_samr_OpenUser(b
, mem_ctx
,
1440 SEC_FLAG_MAXIMUM_ALLOWED
,
1444 if (!NT_STATUS_IS_OK(status
)) {
1447 if (!NT_STATUS_IS_OK(result
)) {
1454 status
= dcerpc_samr_QueryUserInfo(b
, mem_ctx
,
1459 if (!NT_STATUS_IS_OK(status
)) {
1460 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1463 if (!NT_STATUS_IS_OK(result
)) {
1465 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1469 /* now disable and setuser info */
1471 info
->info16
.acct_flags
|= ACB_DISABLED
;
1473 status
= dcerpc_samr_SetUserInfo(b
, mem_ctx
,
1478 if (!NT_STATUS_IS_OK(status
)) {
1479 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1482 if (!NT_STATUS_IS_OK(result
)) {
1484 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1488 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1491 if (pipe_hnd
&& b
) {
1492 if (is_valid_policy_hnd(&domain_pol
)) {
1493 dcerpc_samr_Close(b
, mem_ctx
, &domain_pol
, &result
);
1495 if (is_valid_policy_hnd(&sam_pol
)) {
1496 dcerpc_samr_Close(b
, mem_ctx
, &sam_pol
, &result
);
1498 TALLOC_FREE(pipe_hnd
);
1508 /****************************************************************
1509 ****************************************************************/
1511 static WERROR
do_join_modify_vals_config(struct libnet_JoinCtx
*r
)
1513 WERROR werr
= WERR_OK
;
1515 struct smbconf_ctx
*ctx
;
1517 err
= smbconf_init_reg(r
, &ctx
, NULL
);
1518 if (!SBC_ERROR_IS_OK(err
)) {
1519 werr
= WERR_NO_SUCH_SERVICE
;
1523 if (!(r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
)) {
1525 err
= smbconf_set_global_parameter(ctx
, "security", "user");
1526 if (!SBC_ERROR_IS_OK(err
)) {
1527 werr
= WERR_NO_SUCH_SERVICE
;
1531 err
= smbconf_set_global_parameter(ctx
, "workgroup",
1533 if (!SBC_ERROR_IS_OK(err
)) {
1534 werr
= WERR_NO_SUCH_SERVICE
;
1538 smbconf_delete_global_parameter(ctx
, "realm");
1542 err
= smbconf_set_global_parameter(ctx
, "security", "domain");
1543 if (!SBC_ERROR_IS_OK(err
)) {
1544 werr
= WERR_NO_SUCH_SERVICE
;
1548 err
= smbconf_set_global_parameter(ctx
, "workgroup",
1549 r
->out
.netbios_domain_name
);
1550 if (!SBC_ERROR_IS_OK(err
)) {
1551 werr
= WERR_NO_SUCH_SERVICE
;
1555 if (r
->out
.domain_is_ad
) {
1556 err
= smbconf_set_global_parameter(ctx
, "security", "ads");
1557 if (!SBC_ERROR_IS_OK(err
)) {
1558 werr
= WERR_NO_SUCH_SERVICE
;
1562 err
= smbconf_set_global_parameter(ctx
, "realm",
1563 r
->out
.dns_domain_name
);
1564 if (!SBC_ERROR_IS_OK(err
)) {
1565 werr
= WERR_NO_SUCH_SERVICE
;
1571 smbconf_shutdown(ctx
);
1575 /****************************************************************
1576 ****************************************************************/
1578 static WERROR
do_unjoin_modify_vals_config(struct libnet_UnjoinCtx
*r
)
1580 WERROR werr
= WERR_OK
;
1582 struct smbconf_ctx
*ctx
;
1584 err
= smbconf_init_reg(r
, &ctx
, NULL
);
1585 if (!SBC_ERROR_IS_OK(err
)) {
1586 werr
= WERR_NO_SUCH_SERVICE
;
1590 if (r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
1592 err
= smbconf_set_global_parameter(ctx
, "security", "user");
1593 if (!SBC_ERROR_IS_OK(err
)) {
1594 werr
= WERR_NO_SUCH_SERVICE
;
1598 err
= smbconf_delete_global_parameter(ctx
, "workgroup");
1599 if (!SBC_ERROR_IS_OK(err
)) {
1600 werr
= WERR_NO_SUCH_SERVICE
;
1604 smbconf_delete_global_parameter(ctx
, "realm");
1608 smbconf_shutdown(ctx
);
1612 /****************************************************************
1613 ****************************************************************/
1615 static WERROR
do_JoinConfig(struct libnet_JoinCtx
*r
)
1619 if (!W_ERROR_IS_OK(r
->out
.result
)) {
1620 return r
->out
.result
;
1623 if (!r
->in
.modify_config
) {
1627 werr
= do_join_modify_vals_config(r
);
1628 if (!W_ERROR_IS_OK(werr
)) {
1632 lp_load_global(get_dyn_CONFIGFILE());
1634 r
->out
.modified_config
= true;
1635 r
->out
.result
= werr
;
1640 /****************************************************************
1641 ****************************************************************/
1643 static WERROR
libnet_unjoin_config(struct libnet_UnjoinCtx
*r
)
1647 if (!W_ERROR_IS_OK(r
->out
.result
)) {
1648 return r
->out
.result
;
1651 if (!r
->in
.modify_config
) {
1655 werr
= do_unjoin_modify_vals_config(r
);
1656 if (!W_ERROR_IS_OK(werr
)) {
1660 lp_load_global(get_dyn_CONFIGFILE());
1662 r
->out
.modified_config
= true;
1663 r
->out
.result
= werr
;
1668 /****************************************************************
1669 ****************************************************************/
1671 static bool libnet_parse_domain_dc(TALLOC_CTX
*mem_ctx
,
1672 const char *domain_str
,
1673 const char **domain_p
,
1676 char *domain
= NULL
;
1678 const char *p
= NULL
;
1680 if (!domain_str
|| !domain_p
|| !dc_p
) {
1684 p
= strchr_m(domain_str
, '\\');
1687 domain
= talloc_strndup(mem_ctx
, domain_str
,
1688 PTR_DIFF(p
, domain_str
));
1689 dc
= talloc_strdup(mem_ctx
, p
+1);
1694 domain
= talloc_strdup(mem_ctx
, domain_str
);
1710 /****************************************************************
1711 ****************************************************************/
1713 static WERROR
libnet_join_pre_processing(TALLOC_CTX
*mem_ctx
,
1714 struct libnet_JoinCtx
*r
)
1716 if (!r
->in
.domain_name
) {
1717 libnet_join_set_error_string(mem_ctx
, r
,
1718 "No domain name defined");
1719 return WERR_INVALID_PARAM
;
1722 if (!libnet_parse_domain_dc(mem_ctx
, r
->in
.domain_name
,
1725 libnet_join_set_error_string(mem_ctx
, r
,
1726 "Failed to parse domain name");
1727 return WERR_INVALID_PARAM
;
1731 return WERR_SETUP_DOMAIN_CONTROLLER
;
1734 if (!secrets_init()) {
1735 libnet_join_set_error_string(mem_ctx
, r
,
1736 "Unable to open secrets database");
1737 return WERR_CAN_NOT_COMPLETE
;
1743 /****************************************************************
1744 ****************************************************************/
1746 static void libnet_join_add_dom_rids_to_builtins(struct dom_sid
*domain_sid
)
1750 /* Try adding dom admins to builtin\admins. Only log failures. */
1751 status
= create_builtin_administrators(domain_sid
);
1752 if (NT_STATUS_EQUAL(status
, NT_STATUS_PROTOCOL_UNREACHABLE
)) {
1753 DEBUG(10,("Unable to auto-add domain administrators to "
1754 "BUILTIN\\Administrators during join because "
1755 "winbindd must be running.\n"));
1756 } else if (!NT_STATUS_IS_OK(status
)) {
1757 DEBUG(5, ("Failed to auto-add domain administrators to "
1758 "BUILTIN\\Administrators during join: %s\n",
1759 nt_errstr(status
)));
1762 /* Try adding dom users to builtin\users. Only log failures. */
1763 status
= create_builtin_users(domain_sid
);
1764 if (NT_STATUS_EQUAL(status
, NT_STATUS_PROTOCOL_UNREACHABLE
)) {
1765 DEBUG(10,("Unable to auto-add domain users to BUILTIN\\users "
1766 "during join because winbindd must be running.\n"));
1767 } else if (!NT_STATUS_IS_OK(status
)) {
1768 DEBUG(5, ("Failed to auto-add domain administrators to "
1769 "BUILTIN\\Administrators during join: %s\n",
1770 nt_errstr(status
)));
1774 /****************************************************************
1775 ****************************************************************/
1777 static WERROR
libnet_join_post_processing(TALLOC_CTX
*mem_ctx
,
1778 struct libnet_JoinCtx
*r
)
1782 if (!W_ERROR_IS_OK(r
->out
.result
)) {
1783 return r
->out
.result
;
1786 werr
= do_JoinConfig(r
);
1787 if (!W_ERROR_IS_OK(werr
)) {
1791 if (!(r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
)) {
1795 saf_join_store(r
->out
.netbios_domain_name
, r
->in
.dc_name
);
1796 if (r
->out
.dns_domain_name
) {
1797 saf_join_store(r
->out
.dns_domain_name
, r
->in
.dc_name
);
1801 if (r
->out
.domain_is_ad
&&
1802 !(r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_UNSECURE
)) {
1803 ADS_STATUS ads_status
;
1805 ads_status
= libnet_join_post_processing_ads(mem_ctx
, r
);
1806 if (!ADS_ERR_OK(ads_status
)) {
1807 return WERR_GENERAL_FAILURE
;
1810 #endif /* HAVE_ADS */
1812 libnet_join_add_dom_rids_to_builtins(r
->out
.domain_sid
);
1817 /****************************************************************
1818 ****************************************************************/
1820 static int libnet_destroy_JoinCtx(struct libnet_JoinCtx
*r
)
1823 ads_destroy(&r
->in
.ads
);
1829 /****************************************************************
1830 ****************************************************************/
1832 static int libnet_destroy_UnjoinCtx(struct libnet_UnjoinCtx
*r
)
1835 ads_destroy(&r
->in
.ads
);
1841 /****************************************************************
1842 ****************************************************************/
1844 WERROR
libnet_init_JoinCtx(TALLOC_CTX
*mem_ctx
,
1845 struct libnet_JoinCtx
**r
)
1847 struct libnet_JoinCtx
*ctx
;
1849 ctx
= talloc_zero(mem_ctx
, struct libnet_JoinCtx
);
1854 talloc_set_destructor(ctx
, libnet_destroy_JoinCtx
);
1856 ctx
->in
.machine_name
= talloc_strdup(mem_ctx
, lp_netbios_name());
1857 W_ERROR_HAVE_NO_MEMORY(ctx
->in
.machine_name
);
1859 ctx
->in
.secure_channel_type
= SEC_CHAN_WKSTA
;
1866 /****************************************************************
1867 ****************************************************************/
1869 WERROR
libnet_init_UnjoinCtx(TALLOC_CTX
*mem_ctx
,
1870 struct libnet_UnjoinCtx
**r
)
1872 struct libnet_UnjoinCtx
*ctx
;
1874 ctx
= talloc_zero(mem_ctx
, struct libnet_UnjoinCtx
);
1879 talloc_set_destructor(ctx
, libnet_destroy_UnjoinCtx
);
1881 ctx
->in
.machine_name
= talloc_strdup(mem_ctx
, lp_netbios_name());
1882 W_ERROR_HAVE_NO_MEMORY(ctx
->in
.machine_name
);
1889 /****************************************************************
1890 ****************************************************************/
1892 static WERROR
libnet_join_check_config(TALLOC_CTX
*mem_ctx
,
1893 struct libnet_JoinCtx
*r
)
1895 bool valid_security
= false;
1896 bool valid_workgroup
= false;
1897 bool valid_realm
= false;
1899 /* check if configuration is already set correctly */
1901 valid_workgroup
= strequal(lp_workgroup(), r
->out
.netbios_domain_name
);
1903 switch (r
->out
.domain_is_ad
) {
1905 valid_security
= (lp_security() == SEC_DOMAIN
);
1906 if (valid_workgroup
&& valid_security
) {
1907 /* nothing to be done */
1912 valid_realm
= strequal(lp_realm(), r
->out
.dns_domain_name
);
1913 switch (lp_security()) {
1916 valid_security
= true;
1919 if (valid_workgroup
&& valid_realm
&& valid_security
) {
1920 /* nothing to be done */
1926 /* check if we are supposed to manipulate configuration */
1928 if (!r
->in
.modify_config
) {
1930 char *wrong_conf
= talloc_strdup(mem_ctx
, "");
1932 if (!valid_workgroup
) {
1933 wrong_conf
= talloc_asprintf_append(wrong_conf
,
1934 "\"workgroup\" set to '%s', should be '%s'",
1935 lp_workgroup(), r
->out
.netbios_domain_name
);
1936 W_ERROR_HAVE_NO_MEMORY(wrong_conf
);
1940 wrong_conf
= talloc_asprintf_append(wrong_conf
,
1941 "\"realm\" set to '%s', should be '%s'",
1942 lp_realm(), r
->out
.dns_domain_name
);
1943 W_ERROR_HAVE_NO_MEMORY(wrong_conf
);
1946 if (!valid_security
) {
1947 const char *sec
= NULL
;
1948 switch (lp_security()) {
1949 case SEC_USER
: sec
= "user"; break;
1950 case SEC_DOMAIN
: sec
= "domain"; break;
1951 case SEC_ADS
: sec
= "ads"; break;
1953 wrong_conf
= talloc_asprintf_append(wrong_conf
,
1954 "\"security\" set to '%s', should be %s",
1955 sec
, r
->out
.domain_is_ad
?
1956 "either 'domain' or 'ads'" : "'domain'");
1957 W_ERROR_HAVE_NO_MEMORY(wrong_conf
);
1960 libnet_join_set_error_string(mem_ctx
, r
,
1961 "Invalid configuration (%s) and configuration modification "
1962 "was not requested", wrong_conf
);
1963 return WERR_CAN_NOT_COMPLETE
;
1966 /* check if we are able to manipulate configuration */
1968 if (!lp_config_backend_is_registry()) {
1969 libnet_join_set_error_string(mem_ctx
, r
,
1970 "Configuration manipulation requested but not "
1971 "supported by backend");
1972 return WERR_NOT_SUPPORTED
;
1978 /****************************************************************
1979 ****************************************************************/
1981 static WERROR
libnet_DomainJoin(TALLOC_CTX
*mem_ctx
,
1982 struct libnet_JoinCtx
*r
)
1986 struct cli_state
*cli
= NULL
;
1988 ADS_STATUS ads_status
;
1989 #endif /* HAVE_ADS */
1991 if (!r
->in
.dc_name
) {
1992 struct netr_DsRGetDCNameInfo
*info
;
1994 status
= dsgetdcname(mem_ctx
,
1999 DS_FORCE_REDISCOVERY
|
2000 DS_DIRECTORY_SERVICE_REQUIRED
|
2001 DS_WRITABLE_REQUIRED
|
2004 if (!NT_STATUS_IS_OK(status
)) {
2005 libnet_join_set_error_string(mem_ctx
, r
,
2006 "failed to find DC for domain %s",
2008 get_friendly_nt_error_msg(status
));
2009 return WERR_DCNOTFOUND
;
2012 dc
= strip_hostname(info
->dc_unc
);
2013 r
->in
.dc_name
= talloc_strdup(mem_ctx
, dc
);
2014 W_ERROR_HAVE_NO_MEMORY(r
->in
.dc_name
);
2017 status
= libnet_join_lookup_dc_rpc(mem_ctx
, r
, &cli
);
2018 if (!NT_STATUS_IS_OK(status
)) {
2019 libnet_join_set_error_string(mem_ctx
, r
,
2020 "failed to lookup DC info for domain '%s' over rpc: %s",
2021 r
->in
.domain_name
, get_friendly_nt_error_msg(status
));
2022 return ntstatus_to_werror(status
);
2025 werr
= libnet_join_check_config(mem_ctx
, r
);
2026 if (!W_ERROR_IS_OK(werr
)) {
2032 create_local_private_krb5_conf_for_domain(
2033 r
->out
.dns_domain_name
, r
->out
.netbios_domain_name
,
2034 NULL
, smbXcli_conn_remote_sockaddr(cli
->conn
),
2035 smbXcli_conn_remote_name(cli
->conn
));
2037 if (r
->out
.domain_is_ad
&& r
->in
.account_ou
&&
2038 !(r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_UNSECURE
)) {
2040 ads_status
= libnet_join_connect_ads(mem_ctx
, r
);
2041 if (!ADS_ERR_OK(ads_status
)) {
2042 return WERR_DEFAULT_JOIN_REQUIRED
;
2045 ads_status
= libnet_join_precreate_machine_acct(mem_ctx
, r
);
2046 if (!ADS_ERR_OK(ads_status
)) {
2047 libnet_join_set_error_string(mem_ctx
, r
,
2048 "failed to precreate account in ou %s: %s",
2050 ads_errstr(ads_status
));
2051 return WERR_DEFAULT_JOIN_REQUIRED
;
2054 r
->in
.join_flags
&= ~WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE
;
2056 #endif /* HAVE_ADS */
2058 if ((r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_UNSECURE
) &&
2059 (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_MACHINE_PWD_PASSED
)) {
2060 status
= libnet_join_joindomain_rpc_unsecure(mem_ctx
, r
, cli
);
2062 status
= libnet_join_joindomain_rpc(mem_ctx
, r
, cli
);
2064 if (!NT_STATUS_IS_OK(status
)) {
2065 libnet_join_set_error_string(mem_ctx
, r
,
2066 "failed to join domain '%s' over rpc: %s",
2067 r
->in
.domain_name
, get_friendly_nt_error_msg(status
));
2068 if (NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
2069 return WERR_SETUP_ALREADY_JOINED
;
2071 werr
= ntstatus_to_werror(status
);
2075 if (!libnet_join_joindomain_store_secrets(mem_ctx
, r
)) {
2076 werr
= WERR_SETUP_NOT_JOINED
;
2090 /****************************************************************
2091 ****************************************************************/
2093 static WERROR
libnet_join_rollback(TALLOC_CTX
*mem_ctx
,
2094 struct libnet_JoinCtx
*r
)
2097 struct libnet_UnjoinCtx
*u
= NULL
;
2099 werr
= libnet_init_UnjoinCtx(mem_ctx
, &u
);
2100 if (!W_ERROR_IS_OK(werr
)) {
2104 u
->in
.debug
= r
->in
.debug
;
2105 u
->in
.dc_name
= r
->in
.dc_name
;
2106 u
->in
.domain_name
= r
->in
.domain_name
;
2107 u
->in
.admin_account
= r
->in
.admin_account
;
2108 u
->in
.admin_password
= r
->in
.admin_password
;
2109 u
->in
.modify_config
= r
->in
.modify_config
;
2110 u
->in
.use_kerberos
= r
->in
.use_kerberos
;
2111 u
->in
.unjoin_flags
= WKSSVC_JOIN_FLAGS_JOIN_TYPE
|
2112 WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE
;
2114 werr
= libnet_Unjoin(mem_ctx
, u
);
2120 /****************************************************************
2121 ****************************************************************/
2123 WERROR
libnet_Join(TALLOC_CTX
*mem_ctx
,
2124 struct libnet_JoinCtx
*r
)
2129 LIBNET_JOIN_IN_DUMP_CTX(mem_ctx
, r
);
2132 ZERO_STRUCT(r
->out
);
2134 werr
= libnet_join_pre_processing(mem_ctx
, r
);
2135 if (!W_ERROR_IS_OK(werr
)) {
2139 if (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
2140 werr
= libnet_DomainJoin(mem_ctx
, r
);
2141 if (!W_ERROR_IS_OK(werr
)) {
2146 werr
= libnet_join_post_processing(mem_ctx
, r
);
2147 if (!W_ERROR_IS_OK(werr
)) {
2151 if (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
2152 werr
= libnet_join_post_verify(mem_ctx
, r
);
2153 if (!W_ERROR_IS_OK(werr
)) {
2154 libnet_join_rollback(mem_ctx
, r
);
2159 r
->out
.result
= werr
;
2162 LIBNET_JOIN_OUT_DUMP_CTX(mem_ctx
, r
);
2167 /****************************************************************
2168 ****************************************************************/
2170 static WERROR
libnet_DomainUnjoin(TALLOC_CTX
*mem_ctx
,
2171 struct libnet_UnjoinCtx
*r
)
2175 if (!r
->in
.domain_sid
) {
2177 if (!secrets_fetch_domain_sid(lp_workgroup(), &sid
)) {
2178 libnet_unjoin_set_error_string(mem_ctx
, r
,
2179 "Unable to fetch domain sid: are we joined?");
2180 return WERR_SETUP_NOT_JOINED
;
2182 r
->in
.domain_sid
= dom_sid_dup(mem_ctx
, &sid
);
2183 W_ERROR_HAVE_NO_MEMORY(r
->in
.domain_sid
);
2186 if (!(r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE
) &&
2187 !r
->in
.delete_machine_account
) {
2188 libnet_join_unjoindomain_remove_secrets(mem_ctx
, r
);
2192 if (!r
->in
.dc_name
) {
2193 struct netr_DsRGetDCNameInfo
*info
;
2195 status
= dsgetdcname(mem_ctx
,
2200 DS_DIRECTORY_SERVICE_REQUIRED
|
2201 DS_WRITABLE_REQUIRED
|
2204 if (!NT_STATUS_IS_OK(status
)) {
2205 libnet_unjoin_set_error_string(mem_ctx
, r
,
2206 "failed to find DC for domain %s",
2208 get_friendly_nt_error_msg(status
));
2209 return WERR_DCNOTFOUND
;
2212 dc
= strip_hostname(info
->dc_unc
);
2213 r
->in
.dc_name
= talloc_strdup(mem_ctx
, dc
);
2214 W_ERROR_HAVE_NO_MEMORY(r
->in
.dc_name
);
2218 /* for net ads leave, try to delete the account. If it works,
2219 no sense in disabling. If it fails, we can still try to
2222 if (r
->in
.delete_machine_account
) {
2223 ADS_STATUS ads_status
;
2224 ads_status
= libnet_unjoin_connect_ads(mem_ctx
, r
);
2225 if (ADS_ERR_OK(ads_status
)) {
2227 r
->out
.dns_domain_name
=
2228 talloc_strdup(mem_ctx
,
2229 r
->in
.ads
->server
.realm
);
2231 libnet_unjoin_remove_machine_acct(mem_ctx
, r
);
2233 if (!ADS_ERR_OK(ads_status
)) {
2234 libnet_unjoin_set_error_string(mem_ctx
, r
,
2235 "failed to remove machine account from AD: %s",
2236 ads_errstr(ads_status
));
2238 r
->out
.deleted_machine_account
= true;
2239 W_ERROR_HAVE_NO_MEMORY(r
->out
.dns_domain_name
);
2240 libnet_join_unjoindomain_remove_secrets(mem_ctx
, r
);
2244 #endif /* HAVE_ADS */
2246 /* The WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE flag really means
2248 if (r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE
) {
2249 status
= libnet_join_unjoindomain_rpc(mem_ctx
, r
);
2250 if (!NT_STATUS_IS_OK(status
)) {
2251 libnet_unjoin_set_error_string(mem_ctx
, r
,
2252 "failed to disable machine account via rpc: %s",
2253 get_friendly_nt_error_msg(status
));
2254 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_USER
)) {
2255 return WERR_SETUP_NOT_JOINED
;
2257 return ntstatus_to_werror(status
);
2260 r
->out
.disabled_machine_account
= true;
2263 /* If disable succeeded or was not requested at all, we
2264 should be getting rid of our end of things */
2266 libnet_join_unjoindomain_remove_secrets(mem_ctx
, r
);
2271 /****************************************************************
2272 ****************************************************************/
2274 static WERROR
libnet_unjoin_pre_processing(TALLOC_CTX
*mem_ctx
,
2275 struct libnet_UnjoinCtx
*r
)
2277 if (!r
->in
.domain_name
) {
2278 libnet_unjoin_set_error_string(mem_ctx
, r
,
2279 "No domain name defined");
2280 return WERR_INVALID_PARAM
;
2283 if (!libnet_parse_domain_dc(mem_ctx
, r
->in
.domain_name
,
2286 libnet_unjoin_set_error_string(mem_ctx
, r
,
2287 "Failed to parse domain name");
2288 return WERR_INVALID_PARAM
;
2292 return WERR_SETUP_DOMAIN_CONTROLLER
;
2295 if (!secrets_init()) {
2296 libnet_unjoin_set_error_string(mem_ctx
, r
,
2297 "Unable to open secrets database");
2298 return WERR_CAN_NOT_COMPLETE
;
2304 /****************************************************************
2305 ****************************************************************/
2307 static WERROR
libnet_unjoin_post_processing(TALLOC_CTX
*mem_ctx
,
2308 struct libnet_UnjoinCtx
*r
)
2310 saf_delete(r
->out
.netbios_domain_name
);
2311 saf_delete(r
->out
.dns_domain_name
);
2313 return libnet_unjoin_config(r
);
2316 /****************************************************************
2317 ****************************************************************/
2319 WERROR
libnet_Unjoin(TALLOC_CTX
*mem_ctx
,
2320 struct libnet_UnjoinCtx
*r
)
2325 LIBNET_UNJOIN_IN_DUMP_CTX(mem_ctx
, r
);
2328 werr
= libnet_unjoin_pre_processing(mem_ctx
, r
);
2329 if (!W_ERROR_IS_OK(werr
)) {
2333 if (r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
2334 werr
= libnet_DomainUnjoin(mem_ctx
, r
);
2335 if (!W_ERROR_IS_OK(werr
)) {
2336 libnet_unjoin_config(r
);
2341 werr
= libnet_unjoin_post_processing(mem_ctx
, r
);
2342 if (!W_ERROR_IS_OK(werr
)) {
2347 r
->out
.result
= werr
;
2350 LIBNET_UNJOIN_OUT_DUMP_CTX(mem_ctx
, r
);