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_user_creds(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 || (strchr(my_fqdn
, '.') == NULL
)) {
362 fstr_sprintf(my_fqdn
, "%s.%s", r
->in
.machine_name
,
363 r
->out
.dns_domain_name
);
368 if (!strequal(my_fqdn
, r
->in
.machine_name
)) {
369 spn
= talloc_asprintf(mem_ctx
, "HOST/%s", my_fqdn
);
371 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
376 mods
= ads_init_mods(mem_ctx
);
378 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
381 /* fields of primary importance */
383 status
= ads_mod_str(mem_ctx
, &mods
, "dNSHostName", my_fqdn
);
384 if (!ADS_ERR_OK(status
)) {
385 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
388 status
= ads_mod_strlist(mem_ctx
, &mods
, "servicePrincipalName",
390 if (!ADS_ERR_OK(status
)) {
391 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
394 return ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
397 /****************************************************************
398 ****************************************************************/
400 static ADS_STATUS
libnet_join_set_machine_upn(TALLOC_CTX
*mem_ctx
,
401 struct libnet_JoinCtx
*r
)
406 if (!r
->in
.create_upn
) {
412 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
413 if (!ADS_ERR_OK(status
)) {
418 r
->in
.upn
= talloc_asprintf(mem_ctx
,
421 r
->out
.dns_domain_name
);
423 return ADS_ERROR(LDAP_NO_MEMORY
);
427 /* now do the mods */
429 mods
= ads_init_mods(mem_ctx
);
431 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
434 /* fields of primary importance */
436 status
= ads_mod_str(mem_ctx
, &mods
, "userPrincipalName", r
->in
.upn
);
437 if (!ADS_ERR_OK(status
)) {
438 return ADS_ERROR_LDAP(LDAP_NO_MEMORY
);
441 return ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
445 /****************************************************************
446 ****************************************************************/
448 static ADS_STATUS
libnet_join_set_os_attributes(TALLOC_CTX
*mem_ctx
,
449 struct libnet_JoinCtx
*r
)
455 if (!r
->in
.os_name
|| !r
->in
.os_version
) {
461 status
= libnet_join_find_machine_acct(mem_ctx
, r
);
462 if (!ADS_ERR_OK(status
)) {
466 /* now do the mods */
468 mods
= ads_init_mods(mem_ctx
);
470 return ADS_ERROR(LDAP_NO_MEMORY
);
473 os_sp
= talloc_asprintf(mem_ctx
, "Samba %s", samba_version_string());
475 return ADS_ERROR(LDAP_NO_MEMORY
);
478 /* fields of primary importance */
480 status
= ads_mod_str(mem_ctx
, &mods
, "operatingSystem",
482 if (!ADS_ERR_OK(status
)) {
486 status
= ads_mod_str(mem_ctx
, &mods
, "operatingSystemVersion",
488 if (!ADS_ERR_OK(status
)) {
492 status
= ads_mod_str(mem_ctx
, &mods
, "operatingSystemServicePack",
494 if (!ADS_ERR_OK(status
)) {
498 return ads_gen_mod(r
->in
.ads
, r
->out
.dn
, mods
);
501 /****************************************************************
502 ****************************************************************/
504 static bool libnet_join_create_keytab(TALLOC_CTX
*mem_ctx
,
505 struct libnet_JoinCtx
*r
)
507 if (!USE_SYSTEM_KEYTAB
) {
511 if (ads_keytab_create_default(r
->in
.ads
) != 0) {
518 /****************************************************************
519 ****************************************************************/
521 static bool libnet_join_derive_salting_principal(TALLOC_CTX
*mem_ctx
,
522 struct libnet_JoinCtx
*r
)
524 uint32_t domain_func
;
526 const char *salt
= NULL
;
527 char *std_salt
= NULL
;
529 status
= ads_domain_func_level(r
->in
.ads
, &domain_func
);
530 if (!ADS_ERR_OK(status
)) {
531 libnet_join_set_error_string(mem_ctx
, r
,
532 "failed to determine domain functional level: %s",
537 /* go ahead and setup the default salt */
539 std_salt
= kerberos_standard_des_salt();
541 libnet_join_set_error_string(mem_ctx
, r
,
542 "failed to obtain standard DES salt");
546 salt
= talloc_strdup(mem_ctx
, std_salt
);
553 /* if it's a Windows functional domain, we have to look for the UPN */
555 if (domain_func
== DS_DOMAIN_FUNCTION_2000
) {
558 upn
= ads_get_upn(r
->in
.ads
, mem_ctx
,
561 salt
= talloc_strdup(mem_ctx
, upn
);
568 return kerberos_secrets_store_des_salt(salt
);
571 /****************************************************************
572 ****************************************************************/
574 static ADS_STATUS
libnet_join_post_processing_ads(TALLOC_CTX
*mem_ctx
,
575 struct libnet_JoinCtx
*r
)
580 status
= libnet_join_connect_ads(mem_ctx
, r
);
581 if (!ADS_ERR_OK(status
)) {
586 status
= libnet_join_set_machine_spn(mem_ctx
, r
);
587 if (!ADS_ERR_OK(status
)) {
588 libnet_join_set_error_string(mem_ctx
, r
,
589 "failed to set machine spn: %s",
594 status
= libnet_join_set_os_attributes(mem_ctx
, r
);
595 if (!ADS_ERR_OK(status
)) {
596 libnet_join_set_error_string(mem_ctx
, r
,
597 "failed to set machine os attributes: %s",
602 status
= libnet_join_set_machine_upn(mem_ctx
, r
);
603 if (!ADS_ERR_OK(status
)) {
604 libnet_join_set_error_string(mem_ctx
, r
,
605 "failed to set machine upn: %s",
610 if (!libnet_join_derive_salting_principal(mem_ctx
, r
)) {
611 return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
614 if (!libnet_join_create_keytab(mem_ctx
, r
)) {
615 libnet_join_set_error_string(mem_ctx
, r
,
616 "failed to create kerberos keytab");
617 return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL
);
622 #endif /* WITH_ADS */
624 /****************************************************************
625 Store the machine password and domain SID
626 ****************************************************************/
628 static bool libnet_join_joindomain_store_secrets(TALLOC_CTX
*mem_ctx
,
629 struct libnet_JoinCtx
*r
)
631 if (!secrets_store_domain_sid(r
->out
.netbios_domain_name
,
634 DEBUG(1,("Failed to save domain sid\n"));
638 if (!secrets_store_machine_password(r
->in
.machine_password
,
639 r
->out
.netbios_domain_name
,
640 r
->in
.secure_channel_type
))
642 DEBUG(1,("Failed to save machine password\n"));
649 /****************************************************************
650 Connect dc's IPC$ share
651 ****************************************************************/
653 static NTSTATUS
libnet_join_connect_dc_ipc(const char *dc
,
657 struct cli_state
**cli
)
662 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
;
665 if (use_kerberos
&& pass
) {
666 flags
|= CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS
;
669 return cli_full_connection(cli
, NULL
,
680 /****************************************************************
681 Lookup domain dc's info
682 ****************************************************************/
684 static NTSTATUS
libnet_join_lookup_dc_rpc(TALLOC_CTX
*mem_ctx
,
685 struct libnet_JoinCtx
*r
,
686 struct cli_state
**cli
)
688 struct rpc_pipe_client
*pipe_hnd
= NULL
;
690 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
691 union lsa_PolicyInformation
*info
= NULL
;
693 status
= libnet_join_connect_dc_ipc(r
->in
.dc_name
,
695 r
->in
.admin_password
,
698 if (!NT_STATUS_IS_OK(status
)) {
702 status
= cli_rpc_pipe_open_noauth(*cli
, &ndr_table_lsarpc
.syntax_id
,
704 if (!NT_STATUS_IS_OK(status
)) {
705 DEBUG(0,("Error connecting to LSA pipe. Error was %s\n",
710 status
= rpccli_lsa_open_policy(pipe_hnd
, mem_ctx
, true,
711 SEC_RIGHTS_MAXIMUM_ALLOWED
, &lsa_pol
);
712 if (!NT_STATUS_IS_OK(status
)) {
716 status
= rpccli_lsa_QueryInfoPolicy2(pipe_hnd
, mem_ctx
,
720 if (NT_STATUS_IS_OK(status
)) {
721 r
->out
.domain_is_ad
= true;
722 r
->out
.netbios_domain_name
= info
->dns
.name
.string
;
723 r
->out
.dns_domain_name
= info
->dns
.dns_domain
.string
;
724 r
->out
.forest_name
= info
->dns
.dns_forest
.string
;
725 r
->out
.domain_sid
= sid_dup_talloc(mem_ctx
, info
->dns
.sid
);
726 NT_STATUS_HAVE_NO_MEMORY(r
->out
.domain_sid
);
729 if (!NT_STATUS_IS_OK(status
)) {
730 status
= rpccli_lsa_QueryInfoPolicy(pipe_hnd
, mem_ctx
,
732 LSA_POLICY_INFO_ACCOUNT_DOMAIN
,
734 if (!NT_STATUS_IS_OK(status
)) {
738 r
->out
.netbios_domain_name
= info
->account_domain
.name
.string
;
739 r
->out
.domain_sid
= sid_dup_talloc(mem_ctx
, info
->account_domain
.sid
);
740 NT_STATUS_HAVE_NO_MEMORY(r
->out
.domain_sid
);
743 rpccli_lsa_Close(pipe_hnd
, mem_ctx
, &lsa_pol
);
744 TALLOC_FREE(pipe_hnd
);
750 /****************************************************************
752 ****************************************************************/
754 static NTSTATUS
libnet_join_joindomain_rpc(TALLOC_CTX
*mem_ctx
,
755 struct libnet_JoinCtx
*r
,
756 struct cli_state
*cli
)
758 struct rpc_pipe_client
*pipe_hnd
= NULL
;
759 POLICY_HND sam_pol
, domain_pol
, user_pol
;
760 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
762 struct lsa_String lsa_acct_name
;
764 uint32_t acct_flags
= ACB_WSTRUST
;
765 struct samr_Ids user_rids
;
766 struct samr_Ids name_types
;
767 union samr_UserInfo user_info
;
769 struct samr_CryptPassword crypt_pwd
;
770 struct samr_CryptPasswordEx crypt_pwd_ex
;
772 ZERO_STRUCT(sam_pol
);
773 ZERO_STRUCT(domain_pol
);
774 ZERO_STRUCT(user_pol
);
776 if (!r
->in
.machine_password
) {
777 r
->in
.machine_password
= generate_random_str(mem_ctx
, DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH
);
778 NT_STATUS_HAVE_NO_MEMORY(r
->in
.machine_password
);
781 /* Open the domain */
783 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_samr
.syntax_id
,
785 if (!NT_STATUS_IS_OK(status
)) {
786 DEBUG(0,("Error connecting to SAM pipe. Error was %s\n",
791 status
= rpccli_samr_Connect2(pipe_hnd
, mem_ctx
,
793 SAMR_ACCESS_ENUM_DOMAINS
794 | SAMR_ACCESS_OPEN_DOMAIN
,
796 if (!NT_STATUS_IS_OK(status
)) {
800 status
= rpccli_samr_OpenDomain(pipe_hnd
, mem_ctx
,
802 SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1
803 | SAMR_DOMAIN_ACCESS_CREATE_USER
804 | SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT
,
807 if (!NT_STATUS_IS_OK(status
)) {
811 /* Create domain user */
813 acct_name
= talloc_asprintf(mem_ctx
, "%s$", r
->in
.machine_name
);
814 strlower_m(acct_name
);
816 init_lsa_String(&lsa_acct_name
, acct_name
);
818 if (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE
) {
819 uint32_t access_desired
=
820 SEC_GENERIC_READ
| SEC_GENERIC_WRITE
| SEC_GENERIC_EXECUTE
|
821 SEC_STD_WRITE_DAC
| SEC_STD_DELETE
|
822 SAMR_USER_ACCESS_SET_PASSWORD
|
823 SAMR_USER_ACCESS_GET_ATTRIBUTES
|
824 SAMR_USER_ACCESS_SET_ATTRIBUTES
;
825 uint32_t access_granted
= 0;
827 /* Don't try to set any acct_flags flags other than ACB_WSTRUST */
829 DEBUG(10,("Creating account with desired access mask: %d\n",
832 status
= rpccli_samr_CreateUser2(pipe_hnd
, mem_ctx
,
840 if (!NT_STATUS_IS_OK(status
) &&
841 !NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
843 DEBUG(10,("Creation of workstation account failed: %s\n",
846 /* If NT_STATUS_ACCESS_DENIED then we have a valid
847 username/password combo but the user does not have
848 administrator access. */
850 if (NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
851 libnet_join_set_error_string(mem_ctx
, r
,
852 "User specified does not have "
853 "administrator privileges");
859 if (NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
860 if (!(r
->in
.join_flags
&
861 WKSSVC_JOIN_FLAGS_DOMAIN_JOIN_IF_JOINED
)) {
866 /* We *must* do this.... don't ask... */
868 if (NT_STATUS_IS_OK(status
)) {
869 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &user_pol
);
873 status
= rpccli_samr_LookupNames(pipe_hnd
, mem_ctx
,
879 if (!NT_STATUS_IS_OK(status
)) {
883 if (name_types
.ids
[0] != SID_NAME_USER
) {
884 DEBUG(0,("%s is not a user account (type=%d)\n",
885 acct_name
, name_types
.ids
[0]));
886 status
= NT_STATUS_INVALID_WORKSTATION
;
890 user_rid
= user_rids
.ids
[0];
892 /* Open handle on user */
894 status
= rpccli_samr_OpenUser(pipe_hnd
, mem_ctx
,
896 SEC_RIGHTS_MAXIMUM_ALLOWED
,
899 if (!NT_STATUS_IS_OK(status
)) {
903 /* Fill in the additional account flags now */
905 acct_flags
|= ACB_PWNOEXP
;
906 if (r
->out
.domain_is_ad
) {
907 #if !defined(ENCTYPE_ARCFOUR_HMAC)
908 acct_flags
|= ACB_USE_DES_KEY_ONLY
;
913 /* Set account flags on machine account */
914 ZERO_STRUCT(user_info
.info16
);
915 user_info
.info16
.acct_flags
= acct_flags
;
917 status
= rpccli_samr_SetUserInfo(pipe_hnd
, mem_ctx
,
922 if (!NT_STATUS_IS_OK(status
)) {
924 rpccli_samr_DeleteUser(pipe_hnd
, mem_ctx
,
927 libnet_join_set_error_string(mem_ctx
, r
,
928 "Failed to set account flags for machine account (%s)\n",
933 /* Set password on machine account - first try level 26 */
935 init_samr_CryptPasswordEx(r
->in
.machine_password
,
936 &cli
->user_session_key
,
939 user_info
.info26
.password
= crypt_pwd_ex
;
940 user_info
.info26
.password_expired
= PASS_DONT_CHANGE_AT_NEXT_LOGON
;
942 status
= rpccli_samr_SetUserInfo2(pipe_hnd
, mem_ctx
,
947 if (NT_STATUS_EQUAL(status
, NT_STATUS(DCERPC_FAULT_INVALID_TAG
))) {
949 /* retry with level 24 */
951 init_samr_CryptPassword(r
->in
.machine_password
,
952 &cli
->user_session_key
,
955 user_info
.info24
.password
= crypt_pwd
;
956 user_info
.info24
.password_expired
= PASS_DONT_CHANGE_AT_NEXT_LOGON
;
958 status
= rpccli_samr_SetUserInfo2(pipe_hnd
, mem_ctx
,
964 if (!NT_STATUS_IS_OK(status
)) {
966 rpccli_samr_DeleteUser(pipe_hnd
, mem_ctx
,
969 libnet_join_set_error_string(mem_ctx
, r
,
970 "Failed to set password for machine account (%s)\n",
975 status
= NT_STATUS_OK
;
982 if (is_valid_policy_hnd(&sam_pol
)) {
983 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &sam_pol
);
985 if (is_valid_policy_hnd(&domain_pol
)) {
986 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &domain_pol
);
988 if (is_valid_policy_hnd(&user_pol
)) {
989 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &user_pol
);
991 TALLOC_FREE(pipe_hnd
);
996 /****************************************************************
997 ****************************************************************/
999 NTSTATUS
libnet_join_ok(const char *netbios_domain_name
,
1000 const char *machine_name
,
1001 const char *dc_name
)
1003 uint32_t neg_flags
= NETLOGON_NEG_AUTH2_ADS_FLAGS
;
1004 struct cli_state
*cli
= NULL
;
1005 struct rpc_pipe_client
*pipe_hnd
= NULL
;
1006 struct rpc_pipe_client
*netlogon_pipe
= NULL
;
1008 char *machine_password
= NULL
;
1009 char *machine_account
= NULL
;
1012 return NT_STATUS_INVALID_PARAMETER
;
1015 if (!secrets_init()) {
1016 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
1019 machine_password
= secrets_fetch_machine_password(netbios_domain_name
,
1021 if (!machine_password
) {
1022 return NT_STATUS_NO_TRUST_LSA_SECRET
;
1025 if (asprintf(&machine_account
, "%s$", machine_name
) == -1) {
1026 SAFE_FREE(machine_password
);
1027 return NT_STATUS_NO_MEMORY
;
1030 status
= cli_full_connection(&cli
, NULL
,
1039 free(machine_account
);
1040 free(machine_password
);
1042 if (!NT_STATUS_IS_OK(status
)) {
1043 status
= cli_full_connection(&cli
, NULL
,
1054 if (!NT_STATUS_IS_OK(status
)) {
1058 status
= get_schannel_session_key(cli
, netbios_domain_name
,
1059 &neg_flags
, &netlogon_pipe
);
1060 if (!NT_STATUS_IS_OK(status
)) {
1061 if (NT_STATUS_EQUAL(status
, NT_STATUS_INVALID_NETWORK_RESPONSE
)) {
1063 return NT_STATUS_OK
;
1066 DEBUG(0,("libnet_join_ok: failed to get schannel session "
1067 "key from server %s for domain %s. Error was %s\n",
1068 cli
->desthost
, netbios_domain_name
, nt_errstr(status
)));
1073 if (!lp_client_schannel()) {
1075 return NT_STATUS_OK
;
1078 status
= cli_rpc_pipe_open_schannel_with_key(
1079 cli
, &ndr_table_netlogon
.syntax_id
, PIPE_AUTH_LEVEL_PRIVACY
,
1080 netbios_domain_name
, netlogon_pipe
->dc
, &pipe_hnd
);
1084 if (!NT_STATUS_IS_OK(status
)) {
1085 DEBUG(0,("libnet_join_ok: failed to open schannel session "
1086 "on netlogon pipe to server %s for domain %s. "
1088 cli
->desthost
, netbios_domain_name
, nt_errstr(status
)));
1092 return NT_STATUS_OK
;
1095 /****************************************************************
1096 ****************************************************************/
1098 static WERROR
libnet_join_post_verify(TALLOC_CTX
*mem_ctx
,
1099 struct libnet_JoinCtx
*r
)
1103 status
= libnet_join_ok(r
->out
.netbios_domain_name
,
1106 if (!NT_STATUS_IS_OK(status
)) {
1107 libnet_join_set_error_string(mem_ctx
, r
,
1108 "failed to verify domain membership after joining: %s",
1109 get_friendly_nt_error_msg(status
));
1110 return WERR_SETUP_NOT_JOINED
;
1116 /****************************************************************
1117 ****************************************************************/
1119 static bool libnet_join_unjoindomain_remove_secrets(TALLOC_CTX
*mem_ctx
,
1120 struct libnet_UnjoinCtx
*r
)
1122 if (!secrets_delete_machine_password_ex(lp_workgroup())) {
1126 if (!secrets_delete_domain_sid(lp_workgroup())) {
1133 /****************************************************************
1134 ****************************************************************/
1136 static NTSTATUS
libnet_join_unjoindomain_rpc(TALLOC_CTX
*mem_ctx
,
1137 struct libnet_UnjoinCtx
*r
)
1139 struct cli_state
*cli
= NULL
;
1140 struct rpc_pipe_client
*pipe_hnd
= NULL
;
1141 POLICY_HND sam_pol
, domain_pol
, user_pol
;
1142 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
1145 struct lsa_String lsa_acct_name
;
1146 struct samr_Ids user_rids
;
1147 struct samr_Ids name_types
;
1148 union samr_UserInfo
*info
= NULL
;
1150 ZERO_STRUCT(sam_pol
);
1151 ZERO_STRUCT(domain_pol
);
1152 ZERO_STRUCT(user_pol
);
1154 status
= libnet_join_connect_dc_ipc(r
->in
.dc_name
,
1155 r
->in
.admin_account
,
1156 r
->in
.admin_password
,
1159 if (!NT_STATUS_IS_OK(status
)) {
1163 /* Open the domain */
1165 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_samr
.syntax_id
,
1167 if (!NT_STATUS_IS_OK(status
)) {
1168 DEBUG(0,("Error connecting to SAM pipe. Error was %s\n",
1169 nt_errstr(status
)));
1173 status
= rpccli_samr_Connect2(pipe_hnd
, mem_ctx
,
1175 SEC_RIGHTS_MAXIMUM_ALLOWED
,
1177 if (!NT_STATUS_IS_OK(status
)) {
1181 status
= rpccli_samr_OpenDomain(pipe_hnd
, mem_ctx
,
1183 SEC_RIGHTS_MAXIMUM_ALLOWED
,
1186 if (!NT_STATUS_IS_OK(status
)) {
1190 /* Create domain user */
1192 acct_name
= talloc_asprintf(mem_ctx
, "%s$", r
->in
.machine_name
);
1193 strlower_m(acct_name
);
1195 init_lsa_String(&lsa_acct_name
, acct_name
);
1197 status
= rpccli_samr_LookupNames(pipe_hnd
, mem_ctx
,
1204 if (!NT_STATUS_IS_OK(status
)) {
1208 if (name_types
.ids
[0] != SID_NAME_USER
) {
1209 DEBUG(0, ("%s is not a user account (type=%d)\n", acct_name
,
1210 name_types
.ids
[0]));
1211 status
= NT_STATUS_INVALID_WORKSTATION
;
1215 user_rid
= user_rids
.ids
[0];
1217 /* Open handle on user */
1219 status
= rpccli_samr_OpenUser(pipe_hnd
, mem_ctx
,
1221 SEC_RIGHTS_MAXIMUM_ALLOWED
,
1224 if (!NT_STATUS_IS_OK(status
)) {
1230 status
= rpccli_samr_QueryUserInfo(pipe_hnd
, mem_ctx
,
1234 if (!NT_STATUS_IS_OK(status
)) {
1235 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &user_pol
);
1239 /* now disable and setuser info */
1241 info
->info16
.acct_flags
|= ACB_DISABLED
;
1243 status
= rpccli_samr_SetUserInfo(pipe_hnd
, mem_ctx
,
1248 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &user_pol
);
1252 if (is_valid_policy_hnd(&domain_pol
)) {
1253 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &domain_pol
);
1255 if (is_valid_policy_hnd(&sam_pol
)) {
1256 rpccli_samr_Close(pipe_hnd
, mem_ctx
, &sam_pol
);
1258 TALLOC_FREE(pipe_hnd
);
1268 /****************************************************************
1269 ****************************************************************/
1271 static WERROR
do_join_modify_vals_config(struct libnet_JoinCtx
*r
)
1274 struct smbconf_ctx
*ctx
;
1276 werr
= smbconf_init_reg(r
, &ctx
, NULL
);
1277 if (!W_ERROR_IS_OK(werr
)) {
1281 if (!(r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
)) {
1283 werr
= smbconf_set_global_parameter(ctx
, "security", "user");
1284 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1286 werr
= smbconf_set_global_parameter(ctx
, "workgroup",
1289 smbconf_delete_global_parameter(ctx
, "realm");
1293 werr
= smbconf_set_global_parameter(ctx
, "security", "domain");
1294 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1296 werr
= smbconf_set_global_parameter(ctx
, "workgroup",
1297 r
->out
.netbios_domain_name
);
1298 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1300 if (r
->out
.domain_is_ad
) {
1301 werr
= smbconf_set_global_parameter(ctx
, "security", "ads");
1302 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1304 werr
= smbconf_set_global_parameter(ctx
, "realm",
1305 r
->out
.dns_domain_name
);
1306 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1310 smbconf_shutdown(ctx
);
1314 /****************************************************************
1315 ****************************************************************/
1317 static WERROR
do_unjoin_modify_vals_config(struct libnet_UnjoinCtx
*r
)
1319 WERROR werr
= WERR_OK
;
1320 struct smbconf_ctx
*ctx
;
1322 werr
= smbconf_init_reg(r
, &ctx
, NULL
);
1323 if (!W_ERROR_IS_OK(werr
)) {
1327 if (r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
1329 werr
= smbconf_set_global_parameter(ctx
, "security", "user");
1330 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1332 werr
= smbconf_delete_global_parameter(ctx
, "workgroup");
1333 W_ERROR_NOT_OK_GOTO_DONE(werr
);
1335 smbconf_delete_global_parameter(ctx
, "realm");
1339 smbconf_shutdown(ctx
);
1343 /****************************************************************
1344 ****************************************************************/
1346 static WERROR
do_JoinConfig(struct libnet_JoinCtx
*r
)
1350 if (!W_ERROR_IS_OK(r
->out
.result
)) {
1351 return r
->out
.result
;
1354 if (!r
->in
.modify_config
) {
1358 werr
= do_join_modify_vals_config(r
);
1359 if (!W_ERROR_IS_OK(werr
)) {
1363 lp_load(get_dyn_CONFIGFILE(),true,false,false,true);
1365 r
->out
.modified_config
= true;
1366 r
->out
.result
= werr
;
1371 /****************************************************************
1372 ****************************************************************/
1374 static WERROR
libnet_unjoin_config(struct libnet_UnjoinCtx
*r
)
1378 if (!W_ERROR_IS_OK(r
->out
.result
)) {
1379 return r
->out
.result
;
1382 if (!r
->in
.modify_config
) {
1386 werr
= do_unjoin_modify_vals_config(r
);
1387 if (!W_ERROR_IS_OK(werr
)) {
1391 lp_load(get_dyn_CONFIGFILE(),true,false,false,true);
1393 r
->out
.modified_config
= true;
1394 r
->out
.result
= werr
;
1399 /****************************************************************
1400 ****************************************************************/
1402 static bool libnet_parse_domain_dc(TALLOC_CTX
*mem_ctx
,
1403 const char *domain_str
,
1404 const char **domain_p
,
1407 char *domain
= NULL
;
1409 const char *p
= NULL
;
1411 if (!domain_str
|| !domain_p
|| !dc_p
) {
1415 p
= strchr_m(domain_str
, '\\');
1418 domain
= talloc_strndup(mem_ctx
, domain_str
,
1419 PTR_DIFF(p
, domain_str
));
1420 dc
= talloc_strdup(mem_ctx
, p
+1);
1425 domain
= talloc_strdup(mem_ctx
, domain_str
);
1441 /****************************************************************
1442 ****************************************************************/
1444 static WERROR
libnet_join_pre_processing(TALLOC_CTX
*mem_ctx
,
1445 struct libnet_JoinCtx
*r
)
1447 if (!r
->in
.domain_name
) {
1448 libnet_join_set_error_string(mem_ctx
, r
,
1449 "No domain name defined");
1450 return WERR_INVALID_PARAM
;
1453 if (!libnet_parse_domain_dc(mem_ctx
, r
->in
.domain_name
,
1456 libnet_join_set_error_string(mem_ctx
, r
,
1457 "Failed to parse domain name");
1458 return WERR_INVALID_PARAM
;
1462 return WERR_SETUP_DOMAIN_CONTROLLER
;
1465 if (!secrets_init()) {
1466 libnet_join_set_error_string(mem_ctx
, r
,
1467 "Unable to open secrets database");
1468 return WERR_CAN_NOT_COMPLETE
;
1474 /****************************************************************
1475 ****************************************************************/
1477 static void libnet_join_add_dom_rids_to_builtins(struct dom_sid
*domain_sid
)
1481 /* Try adding dom admins to builtin\admins. Only log failures. */
1482 status
= create_builtin_administrators(domain_sid
);
1483 if (NT_STATUS_EQUAL(status
, NT_STATUS_PROTOCOL_UNREACHABLE
)) {
1484 DEBUG(10,("Unable to auto-add domain administrators to "
1485 "BUILTIN\\Administrators during join because "
1486 "winbindd must be running."));
1487 } else if (!NT_STATUS_IS_OK(status
)) {
1488 DEBUG(5, ("Failed to auto-add domain administrators to "
1489 "BUILTIN\\Administrators during join: %s\n",
1490 nt_errstr(status
)));
1493 /* Try adding dom users to builtin\users. Only log failures. */
1494 status
= create_builtin_users(domain_sid
);
1495 if (NT_STATUS_EQUAL(status
, NT_STATUS_PROTOCOL_UNREACHABLE
)) {
1496 DEBUG(10,("Unable to auto-add domain users to BUILTIN\\users "
1497 "during join because winbindd must be running."));
1498 } else if (!NT_STATUS_IS_OK(status
)) {
1499 DEBUG(5, ("Failed to auto-add domain administrators to "
1500 "BUILTIN\\Administrators during join: %s\n",
1501 nt_errstr(status
)));
1505 /****************************************************************
1506 ****************************************************************/
1508 static WERROR
libnet_join_post_processing(TALLOC_CTX
*mem_ctx
,
1509 struct libnet_JoinCtx
*r
)
1513 if (!W_ERROR_IS_OK(r
->out
.result
)) {
1514 return r
->out
.result
;
1517 werr
= do_JoinConfig(r
);
1518 if (!W_ERROR_IS_OK(werr
)) {
1522 if (!(r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
)) {
1526 saf_join_store(r
->out
.netbios_domain_name
, r
->in
.dc_name
);
1527 if (r
->out
.dns_domain_name
) {
1528 saf_join_store(r
->out
.dns_domain_name
, r
->in
.dc_name
);
1532 if (r
->out
.domain_is_ad
) {
1533 ADS_STATUS ads_status
;
1535 ads_status
= libnet_join_post_processing_ads(mem_ctx
, r
);
1536 if (!ADS_ERR_OK(ads_status
)) {
1537 return WERR_GENERAL_FAILURE
;
1540 #endif /* WITH_ADS */
1542 libnet_join_add_dom_rids_to_builtins(r
->out
.domain_sid
);
1547 /****************************************************************
1548 ****************************************************************/
1550 static int libnet_destroy_JoinCtx(struct libnet_JoinCtx
*r
)
1552 const char *krb5_cc_env
= NULL
;
1555 ads_destroy(&r
->in
.ads
);
1558 krb5_cc_env
= getenv(KRB5_ENV_CCNAME
);
1559 if (krb5_cc_env
&& StrCaseCmp(krb5_cc_env
, "MEMORY:libnetjoin")) {
1560 unsetenv(KRB5_ENV_CCNAME
);
1566 /****************************************************************
1567 ****************************************************************/
1569 static int libnet_destroy_UnjoinCtx(struct libnet_UnjoinCtx
*r
)
1571 const char *krb5_cc_env
= NULL
;
1574 ads_destroy(&r
->in
.ads
);
1577 krb5_cc_env
= getenv(KRB5_ENV_CCNAME
);
1578 if (krb5_cc_env
&& StrCaseCmp(krb5_cc_env
, "MEMORY:libnetjoin")) {
1579 unsetenv(KRB5_ENV_CCNAME
);
1585 /****************************************************************
1586 ****************************************************************/
1588 WERROR
libnet_init_JoinCtx(TALLOC_CTX
*mem_ctx
,
1589 struct libnet_JoinCtx
**r
)
1591 struct libnet_JoinCtx
*ctx
;
1592 const char *krb5_cc_env
= NULL
;
1594 ctx
= talloc_zero(mem_ctx
, struct libnet_JoinCtx
);
1599 talloc_set_destructor(ctx
, libnet_destroy_JoinCtx
);
1601 ctx
->in
.machine_name
= talloc_strdup(mem_ctx
, global_myname());
1602 W_ERROR_HAVE_NO_MEMORY(ctx
->in
.machine_name
);
1604 krb5_cc_env
= getenv(KRB5_ENV_CCNAME
);
1605 if (!krb5_cc_env
|| (strlen(krb5_cc_env
) == 0)) {
1606 krb5_cc_env
= talloc_strdup(mem_ctx
, "MEMORY:libnetjoin");
1607 W_ERROR_HAVE_NO_MEMORY(krb5_cc_env
);
1608 setenv(KRB5_ENV_CCNAME
, krb5_cc_env
, 1);
1611 ctx
->in
.secure_channel_type
= SEC_CHAN_WKSTA
;
1618 /****************************************************************
1619 ****************************************************************/
1621 WERROR
libnet_init_UnjoinCtx(TALLOC_CTX
*mem_ctx
,
1622 struct libnet_UnjoinCtx
**r
)
1624 struct libnet_UnjoinCtx
*ctx
;
1625 const char *krb5_cc_env
= NULL
;
1627 ctx
= talloc_zero(mem_ctx
, struct libnet_UnjoinCtx
);
1632 talloc_set_destructor(ctx
, libnet_destroy_UnjoinCtx
);
1634 ctx
->in
.machine_name
= talloc_strdup(mem_ctx
, global_myname());
1635 W_ERROR_HAVE_NO_MEMORY(ctx
->in
.machine_name
);
1637 krb5_cc_env
= getenv(KRB5_ENV_CCNAME
);
1638 if (!krb5_cc_env
|| (strlen(krb5_cc_env
) == 0)) {
1639 krb5_cc_env
= talloc_strdup(mem_ctx
, "MEMORY:libnetjoin");
1640 W_ERROR_HAVE_NO_MEMORY(krb5_cc_env
);
1641 setenv(KRB5_ENV_CCNAME
, krb5_cc_env
, 1);
1649 /****************************************************************
1650 ****************************************************************/
1652 static WERROR
libnet_join_check_config(TALLOC_CTX
*mem_ctx
,
1653 struct libnet_JoinCtx
*r
)
1655 bool valid_security
= false;
1656 bool valid_workgroup
= false;
1657 bool valid_realm
= false;
1659 /* check if configuration is already set correctly */
1661 valid_workgroup
= strequal(lp_workgroup(), r
->out
.netbios_domain_name
);
1663 switch (r
->out
.domain_is_ad
) {
1665 valid_security
= (lp_security() == SEC_DOMAIN
);
1666 if (valid_workgroup
&& valid_security
) {
1667 /* nothing to be done */
1672 valid_realm
= strequal(lp_realm(), r
->out
.dns_domain_name
);
1673 switch (lp_security()) {
1676 valid_security
= true;
1679 if (valid_workgroup
&& valid_realm
&& valid_security
) {
1680 /* nothing to be done */
1686 /* check if we are supposed to manipulate configuration */
1688 if (!r
->in
.modify_config
) {
1690 char *wrong_conf
= talloc_strdup(mem_ctx
, "");
1692 if (!valid_workgroup
) {
1693 wrong_conf
= talloc_asprintf_append(wrong_conf
,
1694 "\"workgroup\" set to '%s', should be '%s'",
1695 lp_workgroup(), r
->out
.netbios_domain_name
);
1696 W_ERROR_HAVE_NO_MEMORY(wrong_conf
);
1700 wrong_conf
= talloc_asprintf_append(wrong_conf
,
1701 "\"realm\" set to '%s', should be '%s'",
1702 lp_realm(), r
->out
.dns_domain_name
);
1703 W_ERROR_HAVE_NO_MEMORY(wrong_conf
);
1706 if (!valid_security
) {
1707 const char *sec
= NULL
;
1708 switch (lp_security()) {
1709 case SEC_SHARE
: sec
= "share"; break;
1710 case SEC_USER
: sec
= "user"; break;
1711 case SEC_DOMAIN
: sec
= "domain"; break;
1712 case SEC_ADS
: sec
= "ads"; break;
1714 wrong_conf
= talloc_asprintf_append(wrong_conf
,
1715 "\"security\" set to '%s', should be %s",
1716 sec
, r
->out
.domain_is_ad
?
1717 "either 'domain' or 'ads'" : "'domain'");
1718 W_ERROR_HAVE_NO_MEMORY(wrong_conf
);
1721 libnet_join_set_error_string(mem_ctx
, r
,
1722 "Invalid configuration (%s) and configuration modification "
1723 "was not requested", wrong_conf
);
1724 return WERR_CAN_NOT_COMPLETE
;
1727 /* check if we are able to manipulate configuration */
1729 if (!lp_config_backend_is_registry()) {
1730 libnet_join_set_error_string(mem_ctx
, r
,
1731 "Configuration manipulation requested but not "
1732 "supported by backend");
1733 return WERR_NOT_SUPPORTED
;
1739 /****************************************************************
1740 ****************************************************************/
1742 static WERROR
libnet_DomainJoin(TALLOC_CTX
*mem_ctx
,
1743 struct libnet_JoinCtx
*r
)
1747 struct cli_state
*cli
= NULL
;
1749 ADS_STATUS ads_status
;
1750 #endif /* WITH_ADS */
1752 if (!r
->in
.dc_name
) {
1753 struct netr_DsRGetDCNameInfo
*info
;
1755 status
= dsgetdcname(mem_ctx
,
1760 DS_FORCE_REDISCOVERY
|
1761 DS_DIRECTORY_SERVICE_REQUIRED
|
1762 DS_WRITABLE_REQUIRED
|
1765 if (!NT_STATUS_IS_OK(status
)) {
1766 libnet_join_set_error_string(mem_ctx
, r
,
1767 "failed to find DC for domain %s",
1769 get_friendly_nt_error_msg(status
));
1770 return WERR_DOMAIN_CONTROLLER_NOT_FOUND
;
1773 dc
= strip_hostname(info
->dc_unc
);
1774 r
->in
.dc_name
= talloc_strdup(mem_ctx
, dc
);
1775 W_ERROR_HAVE_NO_MEMORY(r
->in
.dc_name
);
1778 status
= libnet_join_lookup_dc_rpc(mem_ctx
, r
, &cli
);
1779 if (!NT_STATUS_IS_OK(status
)) {
1780 libnet_join_set_error_string(mem_ctx
, r
,
1781 "failed to lookup DC info for domain '%s' over rpc: %s",
1782 r
->in
.domain_name
, get_friendly_nt_error_msg(status
));
1783 return ntstatus_to_werror(status
);
1786 werr
= libnet_join_check_config(mem_ctx
, r
);
1787 if (!W_ERROR_IS_OK(werr
)) {
1792 if (r
->out
.domain_is_ad
&& r
->in
.account_ou
) {
1794 ads_status
= libnet_join_connect_ads(mem_ctx
, r
);
1795 if (!ADS_ERR_OK(ads_status
)) {
1796 return WERR_DEFAULT_JOIN_REQUIRED
;
1799 ads_status
= libnet_join_precreate_machine_acct(mem_ctx
, r
);
1800 if (!ADS_ERR_OK(ads_status
)) {
1801 libnet_join_set_error_string(mem_ctx
, r
,
1802 "failed to precreate account in ou %s: %s",
1804 ads_errstr(ads_status
));
1805 return WERR_DEFAULT_JOIN_REQUIRED
;
1808 r
->in
.join_flags
&= ~WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE
;
1810 #endif /* WITH_ADS */
1812 status
= libnet_join_joindomain_rpc(mem_ctx
, r
, cli
);
1813 if (!NT_STATUS_IS_OK(status
)) {
1814 libnet_join_set_error_string(mem_ctx
, r
,
1815 "failed to join domain '%s' over rpc: %s",
1816 r
->in
.domain_name
, get_friendly_nt_error_msg(status
));
1817 if (NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
1818 return WERR_SETUP_ALREADY_JOINED
;
1820 werr
= ntstatus_to_werror(status
);
1824 if (!libnet_join_joindomain_store_secrets(mem_ctx
, r
)) {
1825 werr
= WERR_SETUP_NOT_JOINED
;
1839 /****************************************************************
1840 ****************************************************************/
1842 static WERROR
libnet_join_rollback(TALLOC_CTX
*mem_ctx
,
1843 struct libnet_JoinCtx
*r
)
1846 struct libnet_UnjoinCtx
*u
= NULL
;
1848 werr
= libnet_init_UnjoinCtx(mem_ctx
, &u
);
1849 if (!W_ERROR_IS_OK(werr
)) {
1853 u
->in
.debug
= r
->in
.debug
;
1854 u
->in
.dc_name
= r
->in
.dc_name
;
1855 u
->in
.domain_name
= r
->in
.domain_name
;
1856 u
->in
.admin_account
= r
->in
.admin_account
;
1857 u
->in
.admin_password
= r
->in
.admin_password
;
1858 u
->in
.modify_config
= r
->in
.modify_config
;
1859 u
->in
.unjoin_flags
= WKSSVC_JOIN_FLAGS_JOIN_TYPE
|
1860 WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE
;
1862 werr
= libnet_Unjoin(mem_ctx
, u
);
1868 /****************************************************************
1869 ****************************************************************/
1871 WERROR
libnet_Join(TALLOC_CTX
*mem_ctx
,
1872 struct libnet_JoinCtx
*r
)
1877 LIBNET_JOIN_IN_DUMP_CTX(mem_ctx
, r
);
1880 werr
= libnet_join_pre_processing(mem_ctx
, r
);
1881 if (!W_ERROR_IS_OK(werr
)) {
1885 if (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
1886 werr
= libnet_DomainJoin(mem_ctx
, r
);
1887 if (!W_ERROR_IS_OK(werr
)) {
1892 werr
= libnet_join_post_processing(mem_ctx
, r
);
1893 if (!W_ERROR_IS_OK(werr
)) {
1897 if (r
->in
.join_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
1898 werr
= libnet_join_post_verify(mem_ctx
, r
);
1899 if (!W_ERROR_IS_OK(werr
)) {
1900 libnet_join_rollback(mem_ctx
, r
);
1905 r
->out
.result
= werr
;
1908 LIBNET_JOIN_OUT_DUMP_CTX(mem_ctx
, r
);
1913 /****************************************************************
1914 ****************************************************************/
1916 static WERROR
libnet_DomainUnjoin(TALLOC_CTX
*mem_ctx
,
1917 struct libnet_UnjoinCtx
*r
)
1921 if (!r
->in
.domain_sid
) {
1923 if (!secrets_fetch_domain_sid(lp_workgroup(), &sid
)) {
1924 libnet_unjoin_set_error_string(mem_ctx
, r
,
1925 "Unable to fetch domain sid: are we joined?");
1926 return WERR_SETUP_NOT_JOINED
;
1928 r
->in
.domain_sid
= sid_dup_talloc(mem_ctx
, &sid
);
1929 W_ERROR_HAVE_NO_MEMORY(r
->in
.domain_sid
);
1932 if (!r
->in
.dc_name
) {
1933 struct netr_DsRGetDCNameInfo
*info
;
1935 status
= dsgetdcname(mem_ctx
,
1940 DS_DIRECTORY_SERVICE_REQUIRED
|
1941 DS_WRITABLE_REQUIRED
|
1944 if (!NT_STATUS_IS_OK(status
)) {
1945 libnet_unjoin_set_error_string(mem_ctx
, r
,
1946 "failed to find DC for domain %s",
1948 get_friendly_nt_error_msg(status
));
1949 return WERR_DOMAIN_CONTROLLER_NOT_FOUND
;
1952 dc
= strip_hostname(info
->dc_unc
);
1953 r
->in
.dc_name
= talloc_strdup(mem_ctx
, dc
);
1954 W_ERROR_HAVE_NO_MEMORY(r
->in
.dc_name
);
1957 status
= libnet_join_unjoindomain_rpc(mem_ctx
, r
);
1958 if (!NT_STATUS_IS_OK(status
)) {
1959 libnet_unjoin_set_error_string(mem_ctx
, r
,
1960 "failed to disable machine account via rpc: %s",
1961 get_friendly_nt_error_msg(status
));
1962 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_USER
)) {
1963 return WERR_SETUP_NOT_JOINED
;
1965 return ntstatus_to_werror(status
);
1968 r
->out
.disabled_machine_account
= true;
1971 if (r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE
) {
1972 ADS_STATUS ads_status
;
1973 libnet_unjoin_connect_ads(mem_ctx
, r
);
1974 ads_status
= libnet_unjoin_remove_machine_acct(mem_ctx
, r
);
1975 if (!ADS_ERR_OK(ads_status
)) {
1976 libnet_unjoin_set_error_string(mem_ctx
, r
,
1977 "failed to remove machine account from AD: %s",
1978 ads_errstr(ads_status
));
1980 r
->out
.deleted_machine_account
= true;
1982 r
->out
.dns_domain_name
= talloc_strdup(mem_ctx
,
1983 r
->in
.ads
->server
.realm
);
1984 W_ERROR_HAVE_NO_MEMORY(r
->out
.dns_domain_name
);
1987 #endif /* WITH_ADS */
1989 libnet_join_unjoindomain_remove_secrets(mem_ctx
, r
);
1994 /****************************************************************
1995 ****************************************************************/
1997 static WERROR
libnet_unjoin_pre_processing(TALLOC_CTX
*mem_ctx
,
1998 struct libnet_UnjoinCtx
*r
)
2000 if (!r
->in
.domain_name
) {
2001 libnet_unjoin_set_error_string(mem_ctx
, r
,
2002 "No domain name defined");
2003 return WERR_INVALID_PARAM
;
2006 if (!libnet_parse_domain_dc(mem_ctx
, r
->in
.domain_name
,
2009 libnet_unjoin_set_error_string(mem_ctx
, r
,
2010 "Failed to parse domain name");
2011 return WERR_INVALID_PARAM
;
2015 return WERR_SETUP_DOMAIN_CONTROLLER
;
2018 if (!secrets_init()) {
2019 libnet_unjoin_set_error_string(mem_ctx
, r
,
2020 "Unable to open secrets database");
2021 return WERR_CAN_NOT_COMPLETE
;
2027 /****************************************************************
2028 ****************************************************************/
2030 static WERROR
libnet_unjoin_post_processing(TALLOC_CTX
*mem_ctx
,
2031 struct libnet_UnjoinCtx
*r
)
2033 saf_delete(r
->out
.netbios_domain_name
);
2034 saf_delete(r
->out
.dns_domain_name
);
2036 return libnet_unjoin_config(r
);
2039 /****************************************************************
2040 ****************************************************************/
2042 WERROR
libnet_Unjoin(TALLOC_CTX
*mem_ctx
,
2043 struct libnet_UnjoinCtx
*r
)
2048 LIBNET_UNJOIN_IN_DUMP_CTX(mem_ctx
, r
);
2051 werr
= libnet_unjoin_pre_processing(mem_ctx
, r
);
2052 if (!W_ERROR_IS_OK(werr
)) {
2056 if (r
->in
.unjoin_flags
& WKSSVC_JOIN_FLAGS_JOIN_TYPE
) {
2057 werr
= libnet_DomainUnjoin(mem_ctx
, r
);
2058 if (!W_ERROR_IS_OK(werr
)) {
2059 libnet_unjoin_config(r
);
2064 werr
= libnet_unjoin_post_processing(mem_ctx
, r
);
2065 if (!W_ERROR_IS_OK(werr
)) {
2070 r
->out
.result
= werr
;
2073 LIBNET_UNJOIN_OUT_DUMP_CTX(mem_ctx
, r
);