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/>.
22 #include "libnet/libnet.h"
24 /****************************************************************
25 ****************************************************************/
27 #define LIBNET_JOIN_DUMP_CTX(ctx, r, f) \
30 str = NDR_PRINT_FUNCTION_STRING(ctx, libnet_JoinCtx, f, r); \
31 DEBUG(1,("libnet_Join:\n%s", str)); \
35 #define LIBNET_JOIN_IN_DUMP_CTX(ctx, r) \
36 LIBNET_JOIN_DUMP_CTX(ctx, r, NDR_IN | NDR_SET_VALUES)
37 #define LIBNET_JOIN_OUT_DUMP_CTX(ctx, r) \
38 LIBNET_JOIN_DUMP_CTX(ctx, r, NDR_OUT)
40 #define LIBNET_UNJOIN_DUMP_CTX(ctx, r, f) \
43 str = NDR_PRINT_FUNCTION_STRING(ctx, libnet_UnjoinCtx, f, r); \
44 DEBUG(1,("libnet_Unjoin:\n%s", str)); \
48 #define LIBNET_UNJOIN_IN_DUMP_CTX(ctx, r) \
49 LIBNET_UNJOIN_DUMP_CTX(ctx, r, NDR_IN | NDR_SET_VALUES)
50 #define LIBNET_UNJOIN_OUT_DUMP_CTX(ctx, r) \
51 LIBNET_UNJOIN_DUMP_CTX(ctx, r, NDR_OUT)
53 #define W_ERROR_NOT_OK_GOTO_DONE(x) do { \
54 if (!W_ERROR_IS_OK(x)) {\
59 /****************************************************************
60 ****************************************************************/
62 static void libnet_join_set_error_string(TALLOC_CTX
*mem_ctx
,
63 struct libnet_JoinCtx
*r
,
64 const char *format
, ...)
68 if (r
->out
.error_string
) {
72 va_start(args
, format
);
73 r
->out
.error_string
= talloc_vasprintf(mem_ctx
, format
, args
);
77 /****************************************************************
78 ****************************************************************/
80 static void libnet_unjoin_set_error_string(TALLOC_CTX
*mem_ctx
,
81 struct libnet_UnjoinCtx
*r
,
82 const char *format
, ...)
86 if (r
->out
.error_string
) {
90 va_start(args
, format
);
91 r
->out
.error_string
= talloc_vasprintf(mem_ctx
, format
, args
);
97 /****************************************************************
98 ****************************************************************/
100 static ADS_STATUS
libnet_connect_ads(const char *dns_domain_name
,
101 const char *netbios_domain_name
,
103 const char *user_name
,
104 const char *password
,
108 ADS_STRUCT
*my_ads
= NULL
;
110 my_ads
= ads_init(dns_domain_name
,
114 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
118 SAFE_FREE(my_ads
->auth
.user_name
);
119 my_ads
->auth
.user_name
= SMB_STRDUP(user_name
);
123 SAFE_FREE(my_ads
->auth
.password
);
124 my_ads
->auth
.password
= SMB_STRDUP(password
);
127 status
= ads_connect(my_ads
);
128 if (!ADS_ERR_OK(status
)) {
129 ads_destroy(&my_ads
);
137 /****************************************************************
138 ****************************************************************/
140 static ADS_STATUS
libnet_join_connect_ads(TALLOC_CTX
*mem_ctx
,
141 struct libnet_JoinCtx
*r
)
145 status
= libnet_connect_ads(r
->out
.dns_domain_name
,
146 r
->out
.netbios_domain_name
,
149 r
->in
.admin_password
,
151 if (!ADS_ERR_OK(status
)) {
152 libnet_join_set_error_string(mem_ctx
, r
,
153 "failed to connect to AD: %s",
158 if (!r
->out
.netbios_domain_name
) {
159 r
->out
.netbios_domain_name
= talloc_strdup(mem_ctx
,
160 r
->in
.ads
->server
.workgroup
);
161 ADS_ERROR_HAVE_NO_MEMORY(r
->out
.netbios_domain_name
);
164 if (!r
->out
.dns_domain_name
) {
165 r
->out
.dns_domain_name
= talloc_strdup(mem_ctx
,
166 r
->in
.ads
->config
.realm
);
167 ADS_ERROR_HAVE_NO_MEMORY(r
->out
.dns_domain_name
);
170 r
->out
.domain_is_ad
= true;
175 /****************************************************************
176 ****************************************************************/
178 static ADS_STATUS
libnet_unjoin_connect_ads(TALLOC_CTX
*mem_ctx
,
179 struct libnet_UnjoinCtx
*r
)
183 status
= libnet_connect_ads(r
->in
.domain_name
,
187 r
->in
.admin_password
,
189 if (!ADS_ERR_OK(status
)) {
190 libnet_unjoin_set_error_string(mem_ctx
, r
,
191 "failed to connect to AD: %s",
198 /****************************************************************
199 join a domain using ADS (LDAP mods)
200 ****************************************************************/
202 static ADS_STATUS
libnet_join_precreate_machine_acct(TALLOC_CTX
*mem_ctx
,
203 struct libnet_JoinCtx
*r
)
206 LDAPMessage
*res
= NULL
;
207 const char *attrs
[] = { "dn", NULL
};
210 status
= ads_check_ou_dn(mem_ctx
, r
->in
.ads
, &r
->in
.account_ou
);
211 if (!ADS_ERR_OK(status
)) {
215 status
= ads_search_dn(r
->in
.ads
, &res
, r
->in
.account_ou
, attrs
);
216 if (!ADS_ERR_OK(status
)) {
220 if (ads_count_replies(r
->in
.ads
, res
) != 1) {
221 ads_msgfree(r
->in
.ads
, res
);
222 return ADS_ERROR_LDAP(LDAP_NO_SUCH_OBJECT
);
225 ads_msgfree(r
->in
.ads
, res
);
227 /* Attempt to create the machine account and bail if this fails.
228 Assume that the admin wants exactly what they requested */
230 status
= ads_create_machine_acct(r
->in
.ads
,
234 if (ADS_ERR_OK(status
)) {
235 DEBUG(1,("machine account creation created\n"));
237 } else if ((status
.error_type
== ENUM_ADS_ERROR_LDAP
) &&
238 (status
.err
.rc
== LDAP_ALREADY_EXISTS
)) {
239 status
= ADS_SUCCESS
;
242 if (!ADS_ERR_OK(status
)) {
243 DEBUG(1,("machine account creation failed\n"));
247 status
= ads_move_machine_acct(r
->in
.ads
,
251 if (!ADS_ERR_OK(status
)) {
252 DEBUG(1,("failure to locate/move pre-existing "
253 "machine account\n"));
257 DEBUG(1,("The machine account %s the specified OU.\n",
258 moved
? "was moved into" : "already exists in"));
263 /****************************************************************
264 ****************************************************************/
266 static ADS_STATUS
libnet_unjoin_remove_machine_acct(TALLOC_CTX
*mem_ctx
,
267 struct libnet_UnjoinCtx
*r
)
272 return libnet_unjoin_connect_ads(mem_ctx
, r
);
275 status
= ads_leave_realm(r
->in
.ads
, r
->in
.machine_name
);
276 if (!ADS_ERR_OK(status
)) {
277 libnet_unjoin_set_error_string(mem_ctx
, r
,
278 "failed to leave realm: %s",
286 /****************************************************************
287 ****************************************************************/
289 static ADS_STATUS
libnet_join_find_machine_acct(TALLOC_CTX
*mem_ctx
,
290 struct libnet_JoinCtx
*r
)
293 LDAPMessage
*res
= NULL
;
296 if (!r
->in
.machine_name
) {
297 return ADS_ERROR(LDAP_NO_MEMORY
);
300 status
= ads_find_machine_acct(r
->in
.ads
,
303 if (!ADS_ERR_OK(status
)) {
307 if (ads_count_replies(r
->in
.ads
, res
) != 1) {
308 status
= ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
312 dn
= ads_get_dn(r
->in
.ads
, res
);
314 status
= ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
318 r
->out
.dn
= talloc_strdup(mem_ctx
, dn
);
320 status
= ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
325 ads_msgfree(r
->in
.ads
, res
);
326 ads_memfree(r
->in
.ads
, dn
);
331 /****************************************************************
332 Set a machines dNSHostName and servicePrincipalName attributes
333 ****************************************************************/
335 static ADS_STATUS
libnet_join_set_machine_spn(TALLOC_CTX
*mem_ctx
,
336 struct libnet_JoinCtx
*r
)
341 const char *spn_array
[3] = {NULL
, NULL
, NULL
};
346 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
347 if (!ADS_ERR_OK(status
)) {
351 /* Windows only creates HOST/shortname & HOST/fqdn. */
353 spn
= talloc_asprintf(mem_ctx
, "HOST/%s", r
->in
.machine_name
);
355 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
360 if (name_to_fqdn(my_fqdn
, r
->in
.machine_name
) &&
361 !strequal(my_fqdn
, r
->in
.machine_name
)) {
364 spn
= talloc_asprintf(mem_ctx
, "HOST/%s", my_fqdn
);
366 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
371 mods
= ads_init_mods(mem_ctx
);
373 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
376 /* fields of primary importance */
378 status
= ads_mod_str(mem_ctx
, &mods
, "dNSHostName", my_fqdn
);
379 if (!ADS_ERR_OK(status
)) {
380 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
383 status
= ads_mod_strlist(mem_ctx
, &mods
, "servicePrincipalName",
385 if (!ADS_ERR_OK(status
)) {
386 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
389 return ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
392 /****************************************************************
393 ****************************************************************/
395 static ADS_STATUS
libnet_join_set_machine_upn(TALLOC_CTX
*mem_ctx
,
396 struct libnet_JoinCtx
*r
)
401 if (!r
->in
.create_upn
) {
407 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
408 if (!ADS_ERR_OK(status
)) {
413 r
->in
.upn
= talloc_asprintf(mem_ctx
,
416 r
->out
.dns_domain_name
);
418 return ADS_ERROR(LDAP_NO_MEMORY
);
422 /* now do the mods */
424 mods
= ads_init_mods(mem_ctx
);
426 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
429 /* fields of primary importance */
431 status
= ads_mod_str(mem_ctx
, &mods
, "userPrincipalName", r
->in
.upn
);
432 if (!ADS_ERR_OK(status
)) {
433 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
436 return ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
440 /****************************************************************
441 ****************************************************************/
443 static ADS_STATUS
libnet_join_set_os_attributes(TALLOC_CTX
*mem_ctx
,
444 struct libnet_JoinCtx
*r
)
450 if (!r
->in
.os_name
|| !r
->in
.os_version
) {
456 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
457 if (!ADS_ERR_OK(status
)) {
461 /* now do the mods */
463 mods
= ads_init_mods(mem_ctx
);
465 return ADS_ERROR(LDAP_NO_MEMORY
);
468 os_sp
= talloc_asprintf(mem_ctx
, "Samba %s", SAMBA_VERSION_STRING
);
470 return ADS_ERROR(LDAP_NO_MEMORY
);
473 /* fields of primary importance */
475 status
= ads_mod_str(mem_ctx
, &mods
, "operatingSystem",
477 if (!ADS_ERR_OK(status
)) {
481 status
= ads_mod_str(mem_ctx
, &mods
, "operatingSystemVersion",
483 if (!ADS_ERR_OK(status
)) {
487 status
= ads_mod_str(mem_ctx
, &mods
, "operatingSystemServicePack",
489 if (!ADS_ERR_OK(status
)) {
493 return ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
496 /****************************************************************
497 ****************************************************************/
499 static bool libnet_join_create_keytab(TALLOC_CTX
*mem_ctx
,
500 struct libnet_JoinCtx
*r
)
502 if (!lp_use_kerberos_keytab()) {
506 if (!ads_keytab_create_default(r
->in
.ads
)) {
513 /****************************************************************
514 ****************************************************************/
516 static bool libnet_join_derive_salting_principal(TALLOC_CTX
*mem_ctx
,
517 struct libnet_JoinCtx
*r
)
519 uint32_t domain_func
;
521 const char *salt
= NULL
;
522 char *std_salt
= NULL
;
524 status
= ads_domain_func_level(r
->in
.ads
, &domain_func
);
525 if (!ADS_ERR_OK(status
)) {
526 libnet_join_set_error_string(mem_ctx
, r
,
527 "failed to determine domain functional level: %s",
532 /* go ahead and setup the default salt */
534 std_salt
= kerberos_standard_des_salt();
536 libnet_join_set_error_string(mem_ctx
, r
,
537 "failed to obtain standard DES salt");
541 salt
= talloc_strdup(mem_ctx
, std_salt
);
548 /* if it's a Windows functional domain, we have to look for the UPN */
550 if (domain_func
== DS_DOMAIN_FUNCTION_2000
) {
553 upn
= ads_get_upn(r
->in
.ads
, mem_ctx
,
556 salt
= talloc_strdup(mem_ctx
, upn
);
563 return kerberos_secrets_store_des_salt(salt
);
566 /****************************************************************
567 ****************************************************************/
569 static ADS_STATUS
libnet_join_post_processing_ads(TALLOC_CTX
*mem_ctx
,
570 struct libnet_JoinCtx
*r
)
575 status
= libnet_join_connect_ads(mem_ctx
, r
);
576 if (!ADS_ERR_OK(status
)) {
581 status
= libnet_join_set_machine_spn(mem_ctx
, r
);
582 if (!ADS_ERR_OK(status
)) {
583 libnet_join_set_error_string(mem_ctx
, r
,
584 "failed to set machine spn: %s",
589 status
= libnet_join_set_os_attributes(mem_ctx
, r
);
590 if (!ADS_ERR_OK(status
)) {
591 libnet_join_set_error_string(mem_ctx
, r
,
592 "failed to set machine os attributes: %s",
597 status
= libnet_join_set_machine_upn(mem_ctx
, r
);
598 if (!ADS_ERR_OK(status
)) {
599 libnet_join_set_error_string(mem_ctx
, r
,
600 "failed to set machine upn: %s",
605 if (!libnet_join_derive_salting_principal(mem_ctx
, r
)) {
606 return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
609 if (!libnet_join_create_keytab(mem_ctx
, r
)) {
610 libnet_join_set_error_string(mem_ctx
, r
,
611 "failed to create kerberos keytab");
612 return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
617 #endif /* WITH_ADS */
619 /****************************************************************
620 Store the machine password and domain SID
621 ****************************************************************/
623 static bool libnet_join_joindomain_store_secrets(TALLOC_CTX
*mem_ctx
,
624 struct libnet_JoinCtx
*r
)
626 if (!secrets_store_domain_sid(r
->out
.netbios_domain_name
,
629 DEBUG(1,("Failed to save domain sid\n"));
633 if (!secrets_store_machine_password(r
->in
.machine_password
,
634 r
->out
.netbios_domain_name
,
635 r
->in
.secure_channel_type
))
637 DEBUG(1,("Failed to save machine password\n"));
644 /****************************************************************
645 Lookup domain dc's info
646 ****************************************************************/
648 static NTSTATUS
libnet_join_lookup_dc_rpc(TALLOC_CTX
*mem_ctx
,
649 struct libnet_JoinCtx
*r
,
650 struct cli_state
**cli
)
652 struct rpc_pipe_client
*pipe_hnd
= NULL
;
654 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
655 union lsa_PolicyInformation
*info
= NULL
;
657 status
= cli_full_connection(cli
, NULL
,
663 r
->in
.admin_password
,
667 if (!NT_STATUS_IS_OK(status
)) {
671 pipe_hnd
= cli_rpc_pipe_open_noauth(*cli
, PI_LSARPC
, &status
);
673 DEBUG(0,("Error connecting to LSA pipe. Error was %s\n",
678 status
= rpccli_lsa_open_policy(pipe_hnd
, mem_ctx
, true,
679 SEC_RIGHTS_MAXIMUM_ALLOWED
, &lsa_pol
);
680 if (!NT_STATUS_IS_OK(status
)) {
684 status
= rpccli_lsa_QueryInfoPolicy2(pipe_hnd
, mem_ctx
,
688 if (NT_STATUS_IS_OK(status
)) {
689 r
->out
.domain_is_ad
= true;
690 r
->out
.netbios_domain_name
= info
->dns
.name
.string
;
691 r
->out
.dns_domain_name
= info
->dns
.dns_domain
.string
;
692 r
->out
.domain_sid
= info
->dns
.sid
;
695 if (!NT_STATUS_IS_OK(status
)) {
696 status
= rpccli_lsa_QueryInfoPolicy(pipe_hnd
, mem_ctx
,
698 LSA_POLICY_INFO_ACCOUNT_DOMAIN
,
700 if (!NT_STATUS_IS_OK(status
)) {
704 r
->out
.netbios_domain_name
= info
->account_domain
.name
.string
;
705 r
->out
.domain_sid
= info
->account_domain
.sid
;
708 rpccli_lsa_Close(pipe_hnd
, mem_ctx
, &lsa_pol
);
709 cli_rpc_pipe_close(pipe_hnd
);
715 /****************************************************************
717 ****************************************************************/
719 static NTSTATUS
libnet_join_joindomain_rpc(TALLOC_CTX
*mem_ctx
,
720 struct libnet_JoinCtx
*r
,
721 struct cli_state
*cli
)
723 struct rpc_pipe_client
*pipe_hnd
= NULL
;
724 POLICY_HND sam_pol
, domain_pol
, user_pol
;
725 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
727 struct lsa_String lsa_acct_name
;
729 uint32_t acct_flags
= ACB_WSTRUST
;
731 struct MD5Context md5ctx
;
733 DATA_BLOB digested_session_key
;
734 uchar md4_trust_password
[16];
735 struct samr_Ids user_rids
;
736 struct samr_Ids name_types
;
737 union samr_UserInfo user_info
;
739 ZERO_STRUCT(sam_pol
);
740 ZERO_STRUCT(domain_pol
);
741 ZERO_STRUCT(user_pol
);
743 if (!r
->in
.machine_password
) {
744 r
->in
.machine_password
= talloc_strdup(mem_ctx
, generate_random_str(DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH
));
745 NT_STATUS_HAVE_NO_MEMORY(r
->in
.machine_password
);
748 /* Open the domain */
750 pipe_hnd
= cli_rpc_pipe_open_noauth(cli
, PI_SAMR
, &status
);
752 DEBUG(0,("Error connecting to SAM pipe. Error was %s\n",
757 status
= rpccli_samr_Connect2(pipe_hnd
, mem_ctx
,
758 pipe_hnd
->cli
->desthost
,
759 SEC_RIGHTS_MAXIMUM_ALLOWED
,
761 if (!NT_STATUS_IS_OK(status
)) {
765 status
= rpccli_samr_OpenDomain(pipe_hnd
, mem_ctx
,
767 SEC_RIGHTS_MAXIMUM_ALLOWED
,
770 if (!NT_STATUS_IS_OK(status
)) {
774 /* Create domain user */
776 acct_name
= talloc_asprintf(mem_ctx
, "%s$", r
->in
.machine_name
);
777 strlower_m(acct_name
);
779 init_lsa_String(&lsa_acct_name
, acct_name
);
781 if (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE
) {
782 uint32_t access_desired
=
783 SEC_GENERIC_READ
| SEC_GENERIC_WRITE
| SEC_GENERIC_EXECUTE
|
784 SEC_STD_WRITE_DAC
| SEC_STD_DELETE
|
785 SAMR_USER_ACCESS_SET_PASSWORD
|
786 SAMR_USER_ACCESS_GET_ATTRIBUTES
|
787 SAMR_USER_ACCESS_SET_ATTRIBUTES
;
788 uint32_t access_granted
= 0;
790 /* Don't try to set any acct_flags flags other than ACB_WSTRUST */
792 DEBUG(10,("Creating account with desired access mask: %d\n",
795 status
= rpccli_samr_CreateUser2(pipe_hnd
, mem_ctx
,
803 if (!NT_STATUS_IS_OK(status
) &&
804 !NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
806 DEBUG(10,("Creation of workstation account failed: %s\n",
809 /* If NT_STATUS_ACCESS_DENIED then we have a valid
810 username/password combo but the user does not have
811 administrator access. */
813 if (NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
814 libnet_join_set_error_string(mem_ctx
, r
,
815 "User specified does not have "
816 "administrator privileges");
822 if (NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
823 if (!(r
->in
.join_flags
&
824 WKSSVC_JOIN_FLAGS_DOMAIN_JOIN_IF_JOINED
)) {
829 /* We *must* do this.... don't ask... */
831 if (NT_STATUS_IS_OK(status
)) {
832 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &user_pol
);
836 status
= rpccli_samr_LookupNames(pipe_hnd
, mem_ctx
,
842 if (!NT_STATUS_IS_OK(status
)) {
846 if (name_types
.ids
[0] != SID_NAME_USER
) {
847 DEBUG(0,("%s is not a user account (type=%d)\n",
848 acct_name
, name_types
.ids
[0]));
849 status
= NT_STATUS_INVALID_WORKSTATION
;
853 user_rid
= user_rids
.ids
[0];
855 /* Open handle on user */
857 status
= rpccli_samr_OpenUser(pipe_hnd
, mem_ctx
,
859 SEC_RIGHTS_MAXIMUM_ALLOWED
,
862 if (!NT_STATUS_IS_OK(status
)) {
866 /* Create a random machine account password and generate the hash */
868 E_md4hash(r
->in
.machine_password
, md4_trust_password
);
869 encode_pw_buffer(pwbuf
, r
->in
.machine_password
, STR_UNICODE
);
871 generate_random_buffer((uint8_t*)md5buffer
, sizeof(md5buffer
));
872 digested_session_key
= data_blob_talloc(mem_ctx
, 0, 16);
875 MD5Update(&md5ctx
, md5buffer
, sizeof(md5buffer
));
876 MD5Update(&md5ctx
, cli
->user_session_key
.data
,
877 cli
->user_session_key
.length
);
878 MD5Final(digested_session_key
.data
, &md5ctx
);
880 SamOEMhashBlob(pwbuf
, sizeof(pwbuf
), &digested_session_key
);
881 memcpy(&pwbuf
[516], md5buffer
, sizeof(md5buffer
));
883 /* Fill in the additional account flags now */
885 acct_flags
|= ACB_PWNOEXP
;
886 if (r
->out
.domain_is_ad
) {
887 #if !defined(ENCTYPE_ARCFOUR_HMAC)
888 acct_flags
|= ACB_USE_DES_KEY_ONLY
;
893 /* Set password and account flags on machine account */
895 ZERO_STRUCT(user_info
.info25
);
897 user_info
.info25
.info
.fields_present
= ACCT_NT_PWD_SET
|
899 SAMR_FIELD_ACCT_FLAGS
;
901 user_info
.info25
.info
.acct_flags
= acct_flags
;
902 memcpy(&user_info
.info25
.password
.data
, pwbuf
, sizeof(pwbuf
));
904 status
= rpccli_samr_SetUserInfo(pipe_hnd
, mem_ctx
,
909 if (NT_STATUS_EQUAL(status
, NT_STATUS(DCERPC_FAULT_INVALID_TAG
))) {
913 encode_pw_buffer(pwbuf2
, r
->in
.machine_password
, STR_UNICODE
);
915 /* retry with level 24 */
916 init_samr_user_info24(&user_info
.info24
, pwbuf2
, 24);
918 SamOEMhashBlob(user_info
.info24
.password
.data
, 516,
919 &cli
->user_session_key
);
921 status
= rpccli_samr_SetUserInfo2(pipe_hnd
, mem_ctx
,
927 if (!NT_STATUS_IS_OK(status
)) {
929 rpccli_samr_DeleteUser(pipe_hnd
, mem_ctx
,
932 libnet_join_set_error_string(mem_ctx
, r
,
933 "Failed to set password for machine account (%s)\n",
938 status
= NT_STATUS_OK
;
945 if (is_valid_policy_hnd(&sam_pol
)) {
946 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &sam_pol
);
948 if (is_valid_policy_hnd(&domain_pol
)) {
949 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &domain_pol
);
951 if (is_valid_policy_hnd(&user_pol
)) {
952 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &user_pol
);
954 cli_rpc_pipe_close(pipe_hnd
);
959 /****************************************************************
960 ****************************************************************/
962 NTSTATUS
libnet_join_ok(const char *netbios_domain_name
,
963 const char *machine_name
,
966 uint32_t neg_flags
= NETLOGON_NEG_AUTH2_ADS_FLAGS
;
967 struct cli_state
*cli
= NULL
;
968 struct rpc_pipe_client
*pipe_hnd
= NULL
;
969 struct rpc_pipe_client
*netlogon_pipe
= NULL
;
971 char *machine_password
= NULL
;
972 char *machine_account
= NULL
;
975 return NT_STATUS_INVALID_PARAMETER
;
978 if (!secrets_init()) {
979 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
982 machine_password
= secrets_fetch_machine_password(netbios_domain_name
,
984 if (!machine_password
) {
985 return NT_STATUS_NO_TRUST_LSA_SECRET
;
988 asprintf(&machine_account
, "%s$", machine_name
);
989 if (!machine_account
) {
990 SAFE_FREE(machine_password
);
991 return NT_STATUS_NO_MEMORY
;
994 status
= cli_full_connection(&cli
, NULL
,
1003 free(machine_account
);
1004 free(machine_password
);
1006 if (!NT_STATUS_IS_OK(status
)) {
1007 status
= cli_full_connection(&cli
, NULL
,
1018 if (!NT_STATUS_IS_OK(status
)) {
1022 netlogon_pipe
= get_schannel_session_key(cli
,
1023 netbios_domain_name
,
1024 &neg_flags
, &status
);
1025 if (!netlogon_pipe
) {
1026 if (NT_STATUS_EQUAL(status
, NT_STATUS_INVALID_NETWORK_RESPONSE
)) {
1028 return NT_STATUS_OK
;
1031 DEBUG(0,("libnet_join_ok: failed to get schannel session "
1032 "key from server %s for domain %s. Error was %s\n",
1033 cli
->desthost
, netbios_domain_name
, nt_errstr(status
)));
1038 if (!lp_client_schannel()) {
1040 return NT_STATUS_OK
;
1043 pipe_hnd
= cli_rpc_pipe_open_schannel_with_key(cli
, PI_NETLOGON
,
1044 PIPE_AUTH_LEVEL_PRIVACY
,
1045 netbios_domain_name
,
1052 DEBUG(0,("libnet_join_ok: failed to open schannel session "
1053 "on netlogon pipe to server %s for domain %s. "
1055 cli
->desthost
, netbios_domain_name
, nt_errstr(status
)));
1059 return NT_STATUS_OK
;
1062 /****************************************************************
1063 ****************************************************************/
1065 static WERROR
libnet_join_post_verify(TALLOC_CTX
*mem_ctx
,
1066 struct libnet_JoinCtx
*r
)
1070 status
= libnet_join_ok(r
->out
.netbios_domain_name
,
1073 if (!NT_STATUS_IS_OK(status
)) {
1074 libnet_join_set_error_string(mem_ctx
, r
,
1075 "failed to verify domain membership after joining: %s",
1076 get_friendly_nt_error_msg(status
));
1077 return WERR_SETUP_NOT_JOINED
;
1083 /****************************************************************
1084 ****************************************************************/
1086 static bool libnet_join_unjoindomain_remove_secrets(TALLOC_CTX
*mem_ctx
,
1087 struct libnet_UnjoinCtx
*r
)
1089 if (!secrets_delete_machine_password_ex(lp_workgroup())) {
1093 if (!secrets_delete_domain_sid(lp_workgroup())) {
1100 /****************************************************************
1101 ****************************************************************/
1103 static NTSTATUS
libnet_join_unjoindomain_rpc(TALLOC_CTX
*mem_ctx
,
1104 struct libnet_UnjoinCtx
*r
)
1106 struct cli_state
*cli
= NULL
;
1107 struct rpc_pipe_client
*pipe_hnd
= NULL
;
1108 POLICY_HND sam_pol
, domain_pol
, user_pol
;
1109 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
1112 struct lsa_String lsa_acct_name
;
1113 struct samr_Ids user_rids
;
1114 struct samr_Ids name_types
;
1115 union samr_UserInfo
*info
= NULL
;
1117 ZERO_STRUCT(sam_pol
);
1118 ZERO_STRUCT(domain_pol
);
1119 ZERO_STRUCT(user_pol
);
1121 status
= cli_full_connection(&cli
, NULL
,
1125 r
->in
.admin_account
,
1127 r
->in
.admin_password
,
1128 0, Undefined
, NULL
);
1130 if (!NT_STATUS_IS_OK(status
)) {
1134 /* Open the domain */
1136 pipe_hnd
= cli_rpc_pipe_open_noauth(cli
, PI_SAMR
, &status
);
1138 DEBUG(0,("Error connecting to SAM pipe. Error was %s\n",
1139 nt_errstr(status
)));
1143 status
= rpccli_samr_Connect2(pipe_hnd
, mem_ctx
,
1144 pipe_hnd
->cli
->desthost
,
1145 SEC_RIGHTS_MAXIMUM_ALLOWED
,
1147 if (!NT_STATUS_IS_OK(status
)) {
1151 status
= rpccli_samr_OpenDomain(pipe_hnd
, mem_ctx
,
1153 SEC_RIGHTS_MAXIMUM_ALLOWED
,
1156 if (!NT_STATUS_IS_OK(status
)) {
1160 /* Create domain user */
1162 acct_name
= talloc_asprintf(mem_ctx
, "%s$", r
->in
.machine_name
);
1163 strlower_m(acct_name
);
1165 init_lsa_String(&lsa_acct_name
, acct_name
);
1167 status
= rpccli_samr_LookupNames(pipe_hnd
, mem_ctx
,
1174 if (!NT_STATUS_IS_OK(status
)) {
1178 if (name_types
.ids
[0] != SID_NAME_USER
) {
1179 DEBUG(0, ("%s is not a user account (type=%d)\n", acct_name
,
1180 name_types
.ids
[0]));
1181 status
= NT_STATUS_INVALID_WORKSTATION
;
1185 user_rid
= user_rids
.ids
[0];
1187 /* Open handle on user */
1189 status
= rpccli_samr_OpenUser(pipe_hnd
, mem_ctx
,
1191 SEC_RIGHTS_MAXIMUM_ALLOWED
,
1194 if (!NT_STATUS_IS_OK(status
)) {
1200 status
= rpccli_samr_QueryUserInfo(pipe_hnd
, mem_ctx
,
1204 if (!NT_STATUS_IS_OK(status
)) {
1205 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &user_pol
);
1209 /* now disable and setuser info */
1211 info
->info16
.acct_flags
|= ACB_DISABLED
;
1213 status
= rpccli_samr_SetUserInfo(pipe_hnd
, mem_ctx
,
1218 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &user_pol
);
1222 if (is_valid_policy_hnd(&domain_pol
)) {
1223 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &domain_pol
);
1225 if (is_valid_policy_hnd(&sam_pol
)) {
1226 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &sam_pol
);
1228 cli_rpc_pipe_close(pipe_hnd
);
1238 /****************************************************************
1239 ****************************************************************/
1241 static WERROR
do_join_modify_vals_config(struct libnet_JoinCtx
*r
)
1244 struct smbconf_ctx
*ctx
;
1246 werr
= smbconf_init_reg(r
, &ctx
, NULL
);
1247 if (!W_ERROR_IS_OK(werr
)) {
1251 if (!(r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
)) {
1253 werr
= smbconf_set_global_parameter(ctx
, "security", "user");
1254 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1256 werr
= smbconf_set_global_parameter(ctx
, "workgroup",
1259 smbconf_delete_global_parameter(ctx
, "realm");
1263 werr
= smbconf_set_global_parameter(ctx
, "security", "domain");
1264 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1266 werr
= smbconf_set_global_parameter(ctx
, "workgroup",
1267 r
->out
.netbios_domain_name
);
1268 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1270 if (r
->out
.domain_is_ad
) {
1271 werr
= smbconf_set_global_parameter(ctx
, "security", "ads");
1272 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1274 werr
= smbconf_set_global_parameter(ctx
, "realm",
1275 r
->out
.dns_domain_name
);
1276 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1280 smbconf_shutdown(ctx
);
1284 /****************************************************************
1285 ****************************************************************/
1287 static WERROR
do_unjoin_modify_vals_config(struct libnet_UnjoinCtx
*r
)
1289 WERROR werr
= WERR_OK
;
1290 struct smbconf_ctx
*ctx
;
1292 werr
= smbconf_init_reg(r
, &ctx
, NULL
);
1293 if (!W_ERROR_IS_OK(werr
)) {
1297 if (r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
1299 werr
= smbconf_set_global_parameter(ctx
, "security", "user");
1300 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1302 werr
= smbconf_delete_global_parameter(ctx
, "workgroup");
1303 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1305 smbconf_delete_global_parameter(ctx
, "realm");
1309 smbconf_shutdown(ctx
);
1313 /****************************************************************
1314 ****************************************************************/
1316 static WERROR
do_JoinConfig(struct libnet_JoinCtx
*r
)
1320 if (!W_ERROR_IS_OK(r
->out
.result
)) {
1321 return r
->out
.result
;
1324 if (!r
->in
.modify_config
) {
1328 werr
= do_join_modify_vals_config(r
);
1329 if (!W_ERROR_IS_OK(werr
)) {
1333 r
->out
.modified_config
= true;
1334 r
->out
.result
= werr
;
1339 /****************************************************************
1340 ****************************************************************/
1342 static WERROR
libnet_unjoin_config(struct libnet_UnjoinCtx
*r
)
1346 if (!W_ERROR_IS_OK(r
->out
.result
)) {
1347 return r
->out
.result
;
1350 if (!r
->in
.modify_config
) {
1354 werr
= do_unjoin_modify_vals_config(r
);
1355 if (!W_ERROR_IS_OK(werr
)) {
1359 r
->out
.modified_config
= true;
1360 r
->out
.result
= werr
;
1365 /****************************************************************
1366 ****************************************************************/
1368 static bool libnet_parse_domain_dc(TALLOC_CTX
*mem_ctx
,
1369 const char *domain_str
,
1370 const char **domain_p
,
1373 char *domain
= NULL
;
1375 const char *p
= NULL
;
1377 if (!domain_str
|| !domain_p
|| !dc_p
) {
1381 p
= strchr_m(domain_str
, '\\');
1384 domain
= talloc_strndup(mem_ctx
, domain_str
,
1385 PTR_DIFF(p
, domain_str
));
1386 dc
= talloc_strdup(mem_ctx
, p
+1);
1391 domain
= talloc_strdup(mem_ctx
, domain_str
);
1407 /****************************************************************
1408 ****************************************************************/
1410 static WERROR
libnet_join_pre_processing(TALLOC_CTX
*mem_ctx
,
1411 struct libnet_JoinCtx
*r
)
1413 if (!r
->in
.domain_name
) {
1414 libnet_join_set_error_string(mem_ctx
, r
,
1415 "No domain name defined");
1416 return WERR_INVALID_PARAM
;
1419 if (!libnet_parse_domain_dc(mem_ctx
, r
->in
.domain_name
,
1422 libnet_join_set_error_string(mem_ctx
, r
,
1423 "Failed to parse domain name");
1424 return WERR_INVALID_PARAM
;
1428 return WERR_SETUP_DOMAIN_CONTROLLER
;
1431 if (!secrets_init()) {
1432 libnet_join_set_error_string(mem_ctx
, r
,
1433 "Unable to open secrets database");
1434 return WERR_CAN_NOT_COMPLETE
;
1440 /****************************************************************
1441 ****************************************************************/
1443 static WERROR
libnet_join_post_processing(TALLOC_CTX
*mem_ctx
,
1444 struct libnet_JoinCtx
*r
)
1448 if (!W_ERROR_IS_OK(r
->out
.result
)) {
1449 return r
->out
.result
;
1452 werr
= do_JoinConfig(r
);
1453 if (!W_ERROR_IS_OK(werr
)) {
1457 if (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
1458 saf_store(r
->in
.domain_name
, r
->in
.dc_name
);
1464 /****************************************************************
1465 ****************************************************************/
1467 static int libnet_destroy_JoinCtx(struct libnet_JoinCtx
*r
)
1469 const char *krb5_cc_env
= NULL
;
1472 ads_destroy(&r
->in
.ads
);
1475 krb5_cc_env
= getenv(KRB5_ENV_CCNAME
);
1476 if (krb5_cc_env
&& StrCaseCmp(krb5_cc_env
, "MEMORY:libnetjoin")) {
1477 unsetenv(KRB5_ENV_CCNAME
);
1483 /****************************************************************
1484 ****************************************************************/
1486 static int libnet_destroy_UnjoinCtx(struct libnet_UnjoinCtx
*r
)
1488 const char *krb5_cc_env
= NULL
;
1491 ads_destroy(&r
->in
.ads
);
1494 krb5_cc_env
= getenv(KRB5_ENV_CCNAME
);
1495 if (krb5_cc_env
&& StrCaseCmp(krb5_cc_env
, "MEMORY:libnetjoin")) {
1496 unsetenv(KRB5_ENV_CCNAME
);
1502 /****************************************************************
1503 ****************************************************************/
1505 WERROR
libnet_init_JoinCtx(TALLOC_CTX
*mem_ctx
,
1506 struct libnet_JoinCtx
**r
)
1508 struct libnet_JoinCtx
*ctx
;
1509 const char *krb5_cc_env
= NULL
;
1511 ctx
= talloc_zero(mem_ctx
, struct libnet_JoinCtx
);
1516 talloc_set_destructor(ctx
, libnet_destroy_JoinCtx
);
1518 ctx
->in
.machine_name
= talloc_strdup(mem_ctx
, global_myname());
1519 W_ERROR_HAVE_NO_MEMORY(ctx
->in
.machine_name
);
1521 krb5_cc_env
= getenv(KRB5_ENV_CCNAME
);
1522 if (!krb5_cc_env
|| (strlen(krb5_cc_env
) == 0)) {
1523 krb5_cc_env
= talloc_strdup(mem_ctx
, "MEMORY:libnetjoin");
1524 W_ERROR_HAVE_NO_MEMORY(krb5_cc_env
);
1525 setenv(KRB5_ENV_CCNAME
, krb5_cc_env
, 1);
1528 ctx
->in
.secure_channel_type
= SEC_CHAN_WKSTA
;
1535 /****************************************************************
1536 ****************************************************************/
1538 WERROR
libnet_init_UnjoinCtx(TALLOC_CTX
*mem_ctx
,
1539 struct libnet_UnjoinCtx
**r
)
1541 struct libnet_UnjoinCtx
*ctx
;
1542 const char *krb5_cc_env
= NULL
;
1544 ctx
= talloc_zero(mem_ctx
, struct libnet_UnjoinCtx
);
1549 talloc_set_destructor(ctx
, libnet_destroy_UnjoinCtx
);
1551 ctx
->in
.machine_name
= talloc_strdup(mem_ctx
, global_myname());
1552 W_ERROR_HAVE_NO_MEMORY(ctx
->in
.machine_name
);
1554 krb5_cc_env
= getenv(KRB5_ENV_CCNAME
);
1555 if (!krb5_cc_env
|| (strlen(krb5_cc_env
) == 0)) {
1556 krb5_cc_env
= talloc_strdup(mem_ctx
, "MEMORY:libnetjoin");
1557 W_ERROR_HAVE_NO_MEMORY(krb5_cc_env
);
1558 setenv(KRB5_ENV_CCNAME
, krb5_cc_env
, 1);
1566 /****************************************************************
1567 ****************************************************************/
1569 static WERROR
libnet_join_check_config(TALLOC_CTX
*mem_ctx
,
1570 struct libnet_JoinCtx
*r
)
1572 /* check if configuration is already set correctly */
1574 switch (r
->out
.domain_is_ad
) {
1576 if ((strequal(lp_workgroup(),
1577 r
->out
.netbios_domain_name
)) &&
1578 (lp_security() == SEC_DOMAIN
)) {
1579 /* nothing to be done */
1584 if ((strequal(lp_workgroup(),
1585 r
->out
.netbios_domain_name
)) &&
1586 (strequal(lp_realm(),
1587 r
->out
.dns_domain_name
)) &&
1588 ((lp_security() == SEC_ADS
) ||
1589 (lp_security() == SEC_DOMAIN
))) {
1590 /* nothing to be done */
1596 /* check if we are supposed to manipulate configuration */
1598 if (!r
->in
.modify_config
) {
1599 libnet_join_set_error_string(mem_ctx
, r
,
1600 "Invalid configuration and configuration modification "
1601 "was not requested");
1602 return WERR_CAN_NOT_COMPLETE
;
1605 /* check if we are able to manipulate configuration */
1607 if (!lp_config_backend_is_registry()) {
1608 libnet_join_set_error_string(mem_ctx
, r
,
1609 "Configuration manipulation requested but not "
1610 "supported by backend");
1611 return WERR_NOT_SUPPORTED
;
1617 /****************************************************************
1618 ****************************************************************/
1620 static WERROR
libnet_DomainJoin(TALLOC_CTX
*mem_ctx
,
1621 struct libnet_JoinCtx
*r
)
1625 struct cli_state
*cli
= NULL
;
1627 ADS_STATUS ads_status
;
1628 #endif /* WITH_ADS */
1630 if (!r
->in
.dc_name
) {
1631 struct netr_DsRGetDCNameInfo
*info
;
1633 status
= dsgetdcname(mem_ctx
,
1638 DS_DIRECTORY_SERVICE_REQUIRED
|
1639 DS_WRITABLE_REQUIRED
|
1642 if (!NT_STATUS_IS_OK(status
)) {
1643 libnet_join_set_error_string(mem_ctx
, r
,
1644 "failed to find DC for domain %s",
1646 get_friendly_nt_error_msg(status
));
1647 return WERR_DOMAIN_CONTROLLER_NOT_FOUND
;
1650 dc
= strip_hostname(info
->dc_unc
);
1651 r
->in
.dc_name
= talloc_strdup(mem_ctx
, dc
);
1652 W_ERROR_HAVE_NO_MEMORY(r
->in
.dc_name
);
1655 status
= libnet_join_lookup_dc_rpc(mem_ctx
, r
, &cli
);
1656 if (!NT_STATUS_IS_OK(status
)) {
1657 libnet_join_set_error_string(mem_ctx
, r
,
1658 "failed to lookup DC info for domain '%s' over rpc: %s",
1659 r
->in
.domain_name
, get_friendly_nt_error_msg(status
));
1660 return ntstatus_to_werror(status
);
1663 werr
= libnet_join_check_config(mem_ctx
, r
);
1664 if (!W_ERROR_IS_OK(werr
)) {
1669 if (r
->out
.domain_is_ad
&& r
->in
.account_ou
) {
1671 ads_status
= libnet_join_connect_ads(mem_ctx
, r
);
1672 if (!ADS_ERR_OK(ads_status
)) {
1673 return WERR_DEFAULT_JOIN_REQUIRED
;
1676 ads_status
= libnet_join_precreate_machine_acct(mem_ctx
, r
);
1677 if (!ADS_ERR_OK(ads_status
)) {
1678 libnet_join_set_error_string(mem_ctx
, r
,
1679 "failed to precreate account in ou %s: %s",
1681 ads_errstr(ads_status
));
1682 return WERR_DEFAULT_JOIN_REQUIRED
;
1685 r
->in
.join_flags
&= ~WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE
;
1687 #endif /* WITH_ADS */
1689 status
= libnet_join_joindomain_rpc(mem_ctx
, r
, cli
);
1690 if (!NT_STATUS_IS_OK(status
)) {
1691 libnet_join_set_error_string(mem_ctx
, r
,
1692 "failed to join domain '%s' over rpc: %s",
1693 r
->in
.domain_name
, get_friendly_nt_error_msg(status
));
1694 if (NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
1695 return WERR_SETUP_ALREADY_JOINED
;
1697 werr
= ntstatus_to_werror(status
);
1701 if (!libnet_join_joindomain_store_secrets(mem_ctx
, r
)) {
1702 werr
= WERR_SETUP_NOT_JOINED
;
1707 if (r
->out
.domain_is_ad
) {
1708 ads_status
= libnet_join_post_processing_ads(mem_ctx
, r
);
1709 if (!ADS_ERR_OK(ads_status
)) {
1710 werr
= WERR_GENERAL_FAILURE
;
1714 #endif /* WITH_ADS */
1726 /****************************************************************
1727 ****************************************************************/
1729 WERROR
libnet_Join(TALLOC_CTX
*mem_ctx
,
1730 struct libnet_JoinCtx
*r
)
1735 LIBNET_JOIN_IN_DUMP_CTX(mem_ctx
, r
);
1738 werr
= libnet_join_pre_processing(mem_ctx
, r
);
1739 if (!W_ERROR_IS_OK(werr
)) {
1743 if (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
1744 werr
= libnet_DomainJoin(mem_ctx
, r
);
1745 if (!W_ERROR_IS_OK(werr
)) {
1749 werr
= libnet_join_post_verify(mem_ctx
, r
);
1750 if (!W_ERROR_IS_OK(werr
)) {
1755 werr
= libnet_join_post_processing(mem_ctx
, r
);
1756 if (!W_ERROR_IS_OK(werr
)) {
1760 r
->out
.result
= werr
;
1763 LIBNET_JOIN_OUT_DUMP_CTX(mem_ctx
, r
);
1768 /****************************************************************
1769 ****************************************************************/
1771 static WERROR
libnet_DomainUnjoin(TALLOC_CTX
*mem_ctx
,
1772 struct libnet_UnjoinCtx
*r
)
1776 if (!r
->in
.domain_sid
) {
1778 if (!secrets_fetch_domain_sid(lp_workgroup(), &sid
)) {
1779 libnet_unjoin_set_error_string(mem_ctx
, r
,
1780 "Unable to fetch domain sid: are we joined?");
1781 return WERR_SETUP_NOT_JOINED
;
1783 r
->in
.domain_sid
= sid_dup_talloc(mem_ctx
, &sid
);
1784 W_ERROR_HAVE_NO_MEMORY(r
->in
.domain_sid
);
1787 if (!r
->in
.dc_name
) {
1788 struct netr_DsRGetDCNameInfo
*info
;
1790 status
= dsgetdcname(mem_ctx
,
1795 DS_DIRECTORY_SERVICE_REQUIRED
|
1796 DS_WRITABLE_REQUIRED
|
1799 if (!NT_STATUS_IS_OK(status
)) {
1800 libnet_unjoin_set_error_string(mem_ctx
, r
,
1801 "failed to find DC for domain %s",
1803 get_friendly_nt_error_msg(status
));
1804 return WERR_DOMAIN_CONTROLLER_NOT_FOUND
;
1807 dc
= strip_hostname(info
->dc_unc
);
1808 r
->in
.dc_name
= talloc_strdup(mem_ctx
, dc
);
1809 W_ERROR_HAVE_NO_MEMORY(r
->in
.dc_name
);
1812 status
= libnet_join_unjoindomain_rpc(mem_ctx
, r
);
1813 if (!NT_STATUS_IS_OK(status
)) {
1814 libnet_unjoin_set_error_string(mem_ctx
, r
,
1815 "failed to disable machine account via rpc: %s",
1816 get_friendly_nt_error_msg(status
));
1817 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_USER
)) {
1818 return WERR_SETUP_NOT_JOINED
;
1820 return ntstatus_to_werror(status
);
1823 r
->out
.disabled_machine_account
= true;
1826 if (r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE
) {
1827 ADS_STATUS ads_status
;
1828 libnet_unjoin_connect_ads(mem_ctx
, r
);
1829 ads_status
= libnet_unjoin_remove_machine_acct(mem_ctx
, r
);
1830 if (!ADS_ERR_OK(ads_status
)) {
1831 libnet_unjoin_set_error_string(mem_ctx
, r
,
1832 "failed to remove machine account from AD: %s",
1833 ads_errstr(ads_status
));
1835 r
->out
.deleted_machine_account
= true;
1837 r
->out
.dns_domain_name
= talloc_strdup(mem_ctx
,
1838 r
->in
.ads
->server
.realm
);
1839 W_ERROR_HAVE_NO_MEMORY(r
->out
.dns_domain_name
);
1842 #endif /* WITH_ADS */
1844 libnet_join_unjoindomain_remove_secrets(mem_ctx
, r
);
1849 /****************************************************************
1850 ****************************************************************/
1852 static WERROR
libnet_unjoin_pre_processing(TALLOC_CTX
*mem_ctx
,
1853 struct libnet_UnjoinCtx
*r
)
1855 if (!r
->in
.domain_name
) {
1856 libnet_unjoin_set_error_string(mem_ctx
, r
,
1857 "No domain name defined");
1858 return WERR_INVALID_PARAM
;
1861 if (!libnet_parse_domain_dc(mem_ctx
, r
->in
.domain_name
,
1864 libnet_unjoin_set_error_string(mem_ctx
, r
,
1865 "Failed to parse domain name");
1866 return WERR_INVALID_PARAM
;
1870 return WERR_SETUP_DOMAIN_CONTROLLER
;
1873 if (!secrets_init()) {
1874 libnet_unjoin_set_error_string(mem_ctx
, r
,
1875 "Unable to open secrets database");
1876 return WERR_CAN_NOT_COMPLETE
;
1882 /****************************************************************
1883 ****************************************************************/
1885 static WERROR
libnet_unjoin_post_processing(TALLOC_CTX
*mem_ctx
,
1886 struct libnet_UnjoinCtx
*r
)
1888 saf_delete(r
->out
.netbios_domain_name
);
1889 saf_delete(r
->out
.dns_domain_name
);
1891 return libnet_unjoin_config(r
);
1894 /****************************************************************
1895 ****************************************************************/
1897 WERROR
libnet_Unjoin(TALLOC_CTX
*mem_ctx
,
1898 struct libnet_UnjoinCtx
*r
)
1903 LIBNET_UNJOIN_IN_DUMP_CTX(mem_ctx
, r
);
1906 werr
= libnet_unjoin_pre_processing(mem_ctx
, r
);
1907 if (!W_ERROR_IS_OK(werr
)) {
1911 if (r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
1912 werr
= libnet_DomainUnjoin(mem_ctx
, r
);
1913 if (!W_ERROR_IS_OK(werr
)) {
1914 libnet_unjoin_config(r
);
1919 werr
= libnet_unjoin_post_processing(mem_ctx
, r
);
1920 if (!W_ERROR_IS_OK(werr
)) {
1925 r
->out
.result
= werr
;
1928 LIBNET_UNJOIN_OUT_DUMP_CTX(mem_ctx
, r
);