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 (!lp_use_kerberos_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 SEC_RIGHTS_MAXIMUM_ALLOWED,
795 if (!NT_STATUS_IS_OK(status)) {
799 status = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
801 SEC_RIGHTS_MAXIMUM_ALLOWED,
804 if (!NT_STATUS_IS_OK(status)) {
808 /* Create domain user */
810 acct_name = talloc_asprintf(mem_ctx, "%s$", r->in.machine_name);
811 strlower_m(acct_name);
813 init_lsa_String(&lsa_acct_name, acct_name);
815 if (r->in.join_flags & WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE) {
816 uint32_t access_desired =
817 SEC_GENERIC_READ | SEC_GENERIC_WRITE | SEC_GENERIC_EXECUTE |
818 SEC_STD_WRITE_DAC | SEC_STD_DELETE |
819 SAMR_USER_ACCESS_SET_PASSWORD |
820 SAMR_USER_ACCESS_GET_ATTRIBUTES |
821 SAMR_USER_ACCESS_SET_ATTRIBUTES;
822 uint32_t access_granted = 0;
824 /* Don't try to set any acct_flags flags other than ACB_WSTRUST */
826 DEBUG(10,("Creating account with desired access mask: %d\n",
829 status = rpccli_samr_CreateUser2(pipe_hnd, mem_ctx,
837 if (!NT_STATUS_IS_OK(status) &&
838 !NT_STATUS_EQUAL(status, NT_STATUS_USER_EXISTS)) {
840 DEBUG(10,("Creation of workstation account failed: %s\n",
843 /* If NT_STATUS_ACCESS_DENIED then we have a valid
844 username/password combo but the user does not have
845 administrator access. */
847 if (NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
848 libnet_join_set_error_string(mem_ctx, r,
849 "User specified does not have "
850 "administrator privileges");
856 if (NT_STATUS_EQUAL(status, NT_STATUS_USER_EXISTS)) {
857 if (!(r->in.join_flags &
858 WKSSVC_JOIN_FLAGS_DOMAIN_JOIN_IF_JOINED)) {
863 /* We *must* do this.... don't ask... */
865 if (NT_STATUS_IS_OK(status)) {
866 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
870 status = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
876 if (!NT_STATUS_IS_OK(status)) {
880 if (name_types.ids[0] != SID_NAME_USER) {
881 DEBUG(0,("%s is not a user account (type=%d)\n",
882 acct_name, name_types.ids[0]));
883 status = NT_STATUS_INVALID_WORKSTATION;
887 user_rid = user_rids.ids[0];
889 /* Open handle on user */
891 status = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
893 SEC_RIGHTS_MAXIMUM_ALLOWED,
896 if (!NT_STATUS_IS_OK(status)) {
900 init_samr_CryptPasswordEx(r->in.machine_password,
901 &cli->user_session_key,
904 /* Fill in the additional account flags now */
906 acct_flags |= ACB_PWNOEXP;
907 if (r->out.domain_is_ad) {
908 #if !defined(ENCTYPE_ARCFOUR_HMAC)
909 acct_flags |= ACB_USE_DES_KEY_ONLY;
914 /* Set password and account flags on machine account */
916 ZERO_STRUCT(user_info.info25);
918 user_info.info25.info.fields_present = ACCT_NT_PWD_SET |
920 SAMR_FIELD_ACCT_FLAGS;
922 user_info.info25.info.acct_flags = acct_flags;
923 memcpy(&user_info.info25.password.data, crypt_pwd_ex.data,
924 sizeof(crypt_pwd_ex.data));
926 status = rpccli_samr_SetUserInfo(pipe_hnd, mem_ctx,
931 if (NT_STATUS_EQUAL(status, NT_STATUS(DCERPC_FAULT_INVALID_TAG))) {
933 /* retry with level 24 */
935 init_samr_CryptPassword(r->in.machine_password,
936 &cli->user_session_key,
939 init_samr_user_info24(&user_info.info24, &crypt_pwd,
940 PASS_DONT_CHANGE_AT_NEXT_LOGON);
942 status = rpccli_samr_SetUserInfo2(pipe_hnd, mem_ctx,
948 if (!NT_STATUS_IS_OK(status)) {
950 rpccli_samr_DeleteUser(pipe_hnd, mem_ctx,
953 libnet_join_set_error_string(mem_ctx, r,
954 "Failed to set password for machine account (%s)\n",
959 status = NT_STATUS_OK;
966 if (is_valid_policy_hnd(&sam_pol)) {
967 rpccli_samr_Close(pipe_hnd, mem_ctx, &sam_pol);
969 if (is_valid_policy_hnd(&domain_pol)) {
970 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
972 if (is_valid_policy_hnd(&user_pol)) {
973 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
975 TALLOC_FREE(pipe_hnd);
980 /****************************************************************
981 ****************************************************************/
983 NTSTATUS libnet_join_ok(const char *netbios_domain_name,
984 const char *machine_name,
987 uint32_t neg_flags = NETLOGON_NEG_AUTH2_ADS_FLAGS;
988 struct cli_state *cli = NULL;
989 struct rpc_pipe_client *pipe_hnd = NULL;
990 struct rpc_pipe_client *netlogon_pipe = NULL;
992 char *machine_password = NULL;
993 char *machine_account = NULL;
996 return NT_STATUS_INVALID_PARAMETER;
999 if (!secrets_init()) {
1000 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
1003 machine_password = secrets_fetch_machine_password(netbios_domain_name,
1005 if (!machine_password) {
1006 return NT_STATUS_NO_TRUST_LSA_SECRET;
1009 asprintf(&machine_account, "%s$", machine_name);
1010 if (!machine_account) {
1011 SAFE_FREE(machine_password);
1012 return NT_STATUS_NO_MEMORY;
1015 status = cli_full_connection(&cli, NULL,
1024 free(machine_account);
1025 free(machine_password);
1027 if (!NT_STATUS_IS_OK(status)) {
1028 status = cli_full_connection(&cli, NULL,
1039 if (!NT_STATUS_IS_OK(status)) {
1043 status = get_schannel_session_key(cli, netbios_domain_name,
1044 &neg_flags, &netlogon_pipe);
1045 if (!NT_STATUS_IS_OK(status)) {
1046 if (NT_STATUS_EQUAL(status, NT_STATUS_INVALID_NETWORK_RESPONSE)) {
1048 return NT_STATUS_OK;
1051 DEBUG(0,("libnet_join_ok: failed to get schannel session "
1052 "key from server %s for domain %s. Error was %s\n",
1053 cli->desthost, netbios_domain_name, nt_errstr(status)));
1058 if (!lp_client_schannel()) {
1060 return NT_STATUS_OK;
1063 status = cli_rpc_pipe_open_schannel_with_key(
1064 cli, &ndr_table_netlogon.syntax_id, PIPE_AUTH_LEVEL_PRIVACY,
1065 netbios_domain_name, netlogon_pipe->dc, &pipe_hnd);
1069 if (!NT_STATUS_IS_OK(status)) {
1070 DEBUG(0,("libnet_join_ok: failed to open schannel session "
1071 "on netlogon pipe to server %s for domain %s. "
1073 cli->desthost, netbios_domain_name, nt_errstr(status)));
1077 return NT_STATUS_OK;
1080 /****************************************************************
1081 ****************************************************************/
1083 static WERROR libnet_join_post_verify(TALLOC_CTX *mem_ctx,
1084 struct libnet_JoinCtx *r)
1088 status = libnet_join_ok(r->out.netbios_domain_name,
1091 if (!NT_STATUS_IS_OK(status)) {
1092 libnet_join_set_error_string(mem_ctx, r,
1093 "failed to verify domain membership after joining: %s",
1094 get_friendly_nt_error_msg(status));
1095 return WERR_SETUP_NOT_JOINED;
1101 /****************************************************************
1102 ****************************************************************/
1104 static bool libnet_join_unjoindomain_remove_secrets(TALLOC_CTX *mem_ctx,
1105 struct libnet_UnjoinCtx *r)
1107 if (!secrets_delete_machine_password_ex(lp_workgroup())) {
1111 if (!secrets_delete_domain_sid(lp_workgroup())) {
1118 /****************************************************************
1119 ****************************************************************/
1121 static NTSTATUS libnet_join_unjoindomain_rpc(TALLOC_CTX *mem_ctx,
1122 struct libnet_UnjoinCtx *r)
1124 struct cli_state *cli = NULL;
1125 struct rpc_pipe_client *pipe_hnd = NULL;
1126 POLICY_HND sam_pol, domain_pol, user_pol;
1127 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
1130 struct lsa_String lsa_acct_name;
1131 struct samr_Ids user_rids;
1132 struct samr_Ids name_types;
1133 union samr_UserInfo *info = NULL;
1135 ZERO_STRUCT(sam_pol);
1136 ZERO_STRUCT(domain_pol);
1137 ZERO_STRUCT(user_pol);
1139 status = libnet_join_connect_dc_ipc(r->in.dc_name,
1140 r->in.admin_account,
1141 r->in.admin_password,
1144 if (!NT_STATUS_IS_OK(status)) {
1148 /* Open the domain */
1150 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_samr.syntax_id,
1152 if (!NT_STATUS_IS_OK(status)) {
1153 DEBUG(0,("Error connecting to SAM pipe. Error was %s\n",
1154 nt_errstr(status)));
1158 status = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1160 SEC_RIGHTS_MAXIMUM_ALLOWED,
1162 if (!NT_STATUS_IS_OK(status)) {
1166 status = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1168 SEC_RIGHTS_MAXIMUM_ALLOWED,
1171 if (!NT_STATUS_IS_OK(status)) {
1175 /* Create domain user */
1177 acct_name = talloc_asprintf(mem_ctx, "%s$", r->in.machine_name);
1178 strlower_m(acct_name);
1180 init_lsa_String(&lsa_acct_name, acct_name);
1182 status = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
1189 if (!NT_STATUS_IS_OK(status)) {
1193 if (name_types.ids[0] != SID_NAME_USER) {
1194 DEBUG(0, ("%s is not a user account (type=%d)\n", acct_name,
1195 name_types.ids[0]));
1196 status = NT_STATUS_INVALID_WORKSTATION;
1200 user_rid = user_rids.ids[0];
1202 /* Open handle on user */
1204 status = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
1206 SEC_RIGHTS_MAXIMUM_ALLOWED,
1209 if (!NT_STATUS_IS_OK(status)) {
1215 status = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1219 if (!NT_STATUS_IS_OK(status)) {
1220 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
1224 /* now disable and setuser info */
1226 info->info16.acct_flags |= ACB_DISABLED;
1228 status = rpccli_samr_SetUserInfo(pipe_hnd, mem_ctx,
1233 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
1237 if (is_valid_policy_hnd(&domain_pol)) {
1238 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
1240 if (is_valid_policy_hnd(&sam_pol)) {
1241 rpccli_samr_Close(pipe_hnd, mem_ctx, &sam_pol);
1243 TALLOC_FREE(pipe_hnd);
1253 /****************************************************************
1254 ****************************************************************/
1256 static WERROR do_join_modify_vals_config(struct libnet_JoinCtx *r)
1259 struct smbconf_ctx *ctx;
1261 werr = smbconf_init_reg(r, &ctx, NULL);
1262 if (!W_ERROR_IS_OK(werr)) {
1266 if (!(r->in.join_flags & WKSSVC_JOIN_FLAGS_JOIN_TYPE)) {
1268 werr = smbconf_set_global_parameter(ctx, "security", "user");
1269 W_ERROR_NOT_OK_GOTO_DONE(werr);
1271 werr = smbconf_set_global_parameter(ctx, "workgroup",
1274 smbconf_delete_global_parameter(ctx, "realm");
1278 werr = smbconf_set_global_parameter(ctx, "security", "domain");
1279 W_ERROR_NOT_OK_GOTO_DONE(werr);
1281 werr = smbconf_set_global_parameter(ctx, "workgroup",
1282 r->out.netbios_domain_name);
1283 W_ERROR_NOT_OK_GOTO_DONE(werr);
1285 if (r->out.domain_is_ad) {
1286 werr = smbconf_set_global_parameter(ctx, "security", "ads");
1287 W_ERROR_NOT_OK_GOTO_DONE(werr);
1289 werr = smbconf_set_global_parameter(ctx, "realm",
1290 r->out.dns_domain_name);
1291 W_ERROR_NOT_OK_GOTO_DONE(werr);
1295 smbconf_shutdown(ctx);
1299 /****************************************************************
1300 ****************************************************************/
1302 static WERROR do_unjoin_modify_vals_config(struct libnet_UnjoinCtx *r)
1304 WERROR werr = WERR_OK;
1305 struct smbconf_ctx *ctx;
1307 werr = smbconf_init_reg(r, &ctx, NULL);
1308 if (!W_ERROR_IS_OK(werr)) {
1312 if (r->in.unjoin_flags & WKSSVC_JOIN_FLAGS_JOIN_TYPE) {
1314 werr = smbconf_set_global_parameter(ctx, "security", "user");
1315 W_ERROR_NOT_OK_GOTO_DONE(werr);
1317 werr = smbconf_delete_global_parameter(ctx, "workgroup");
1318 W_ERROR_NOT_OK_GOTO_DONE(werr);
1320 smbconf_delete_global_parameter(ctx, "realm");
1324 smbconf_shutdown(ctx);
1328 /****************************************************************
1329 ****************************************************************/
1331 static WERROR do_JoinConfig(struct libnet_JoinCtx *r)
1335 if (!W_ERROR_IS_OK(r->out.result)) {
1336 return r->out.result;
1339 if (!r->in.modify_config) {
1343 werr = do_join_modify_vals_config(r);
1344 if (!W_ERROR_IS_OK(werr)) {
1348 lp_load(get_dyn_CONFIGFILE(),true,false,false,true);
1350 r->out.modified_config = true;
1351 r->out.result = werr;
1356 /****************************************************************
1357 ****************************************************************/
1359 static WERROR libnet_unjoin_config(struct libnet_UnjoinCtx *r)
1363 if (!W_ERROR_IS_OK(r->out.result)) {
1364 return r->out.result;
1367 if (!r->in.modify_config) {
1371 werr = do_unjoin_modify_vals_config(r);
1372 if (!W_ERROR_IS_OK(werr)) {
1376 lp_load(get_dyn_CONFIGFILE(),true,false,false,true);
1378 r->out.modified_config = true;
1379 r->out.result = werr;
1384 /****************************************************************
1385 ****************************************************************/
1387 static bool libnet_parse_domain_dc(TALLOC_CTX *mem_ctx,
1388 const char *domain_str,
1389 const char **domain_p,
1392 char *domain = NULL;
1394 const char *p = NULL;
1396 if (!domain_str || !domain_p || !dc_p) {
1400 p = strchr_m(domain_str, '\\');
1403 domain = talloc_strndup(mem_ctx, domain_str,
1404 PTR_DIFF(p, domain_str));
1405 dc = talloc_strdup(mem_ctx, p+1);
1410 domain = talloc_strdup(mem_ctx, domain_str);
1426 /****************************************************************
1427 ****************************************************************/
1429 static WERROR libnet_join_pre_processing(TALLOC_CTX *mem_ctx,
1430 struct libnet_JoinCtx *r)
1432 if (!r->in.domain_name) {
1433 libnet_join_set_error_string(mem_ctx, r,
1434 "No domain name defined");
1435 return WERR_INVALID_PARAM;
1438 if (!libnet_parse_domain_dc(mem_ctx, r->in.domain_name,
1441 libnet_join_set_error_string(mem_ctx, r,
1442 "Failed to parse domain name");
1443 return WERR_INVALID_PARAM;
1447 return WERR_SETUP_DOMAIN_CONTROLLER;
1450 if (!secrets_init()) {
1451 libnet_join_set_error_string(mem_ctx, r,
1452 "Unable to open secrets database");
1453 return WERR_CAN_NOT_COMPLETE;
1459 /****************************************************************
1460 ****************************************************************/
1462 static void libnet_join_add_dom_rids_to_builtins(struct dom_sid *domain_sid)
1466 /* Try adding dom admins to builtin\admins. Only log failures. */
1467 status = create_builtin_administrators(domain_sid);
1468 if (NT_STATUS_EQUAL(status, NT_STATUS_PROTOCOL_UNREACHABLE)) {
1469 DEBUG(10,("Unable to auto-add domain administrators to "
1470 "BUILTIN\\Administrators during join because "
1471 "winbindd must be running."));
1472 } else if (!NT_STATUS_IS_OK(status)) {
1473 DEBUG(5, ("Failed to auto-add domain administrators to "
1474 "BUILTIN\\Administrators during join: %s\n",
1475 nt_errstr(status)));
1478 /* Try adding dom users to builtin\users. Only log failures. */
1479 status = create_builtin_users(domain_sid);
1480 if (NT_STATUS_EQUAL(status, NT_STATUS_PROTOCOL_UNREACHABLE)) {
1481 DEBUG(10,("Unable to auto-add domain users to BUILTIN\\users "
1482 "during join because winbindd must be running."));
1483 } else if (!NT_STATUS_IS_OK(status)) {
1484 DEBUG(5, ("Failed to auto-add domain administrators to "
1485 "BUILTIN\\Administrators during join: %s\n",
1486 nt_errstr(status)));
1490 /****************************************************************
1491 ****************************************************************/
1493 static WERROR libnet_join_post_processing(TALLOC_CTX *mem_ctx,
1494 struct libnet_JoinCtx *r)
1498 if (!W_ERROR_IS_OK(r->out.result)) {
1499 return r->out.result;
1502 werr = do_JoinConfig(r);
1503 if (!W_ERROR_IS_OK(werr)) {
1507 if (!(r->in.join_flags & WKSSVC_JOIN_FLAGS_JOIN_TYPE)) {
1511 saf_store(r->in.domain_name, r->in.dc_name);
1514 if (r->out.domain_is_ad) {
1515 ADS_STATUS ads_status;
1517 ads_status = libnet_join_post_processing_ads(mem_ctx, r);
1518 if (!ADS_ERR_OK(ads_status)) {
1519 return WERR_GENERAL_FAILURE;
1522 #endif /* WITH_ADS */
1524 libnet_join_add_dom_rids_to_builtins(r->out.domain_sid);
1529 /****************************************************************
1530 ****************************************************************/
1532 static int libnet_destroy_JoinCtx(struct libnet_JoinCtx *r)
1534 const char *krb5_cc_env = NULL;
1537 ads_destroy(&r->in.ads);
1540 krb5_cc_env = getenv(KRB5_ENV_CCNAME);
1541 if (krb5_cc_env && StrCaseCmp(krb5_cc_env, "MEMORY:libnetjoin")) {
1542 unsetenv(KRB5_ENV_CCNAME);
1548 /****************************************************************
1549 ****************************************************************/
1551 static int libnet_destroy_UnjoinCtx(struct libnet_UnjoinCtx *r)
1553 const char *krb5_cc_env = NULL;
1556 ads_destroy(&r->in.ads);
1559 krb5_cc_env = getenv(KRB5_ENV_CCNAME);
1560 if (krb5_cc_env && StrCaseCmp(krb5_cc_env, "MEMORY:libnetjoin")) {
1561 unsetenv(KRB5_ENV_CCNAME);
1567 /****************************************************************
1568 ****************************************************************/
1570 WERROR libnet_init_JoinCtx(TALLOC_CTX *mem_ctx,
1571 struct libnet_JoinCtx **r)
1573 struct libnet_JoinCtx *ctx;
1574 const char *krb5_cc_env = NULL;
1576 ctx = talloc_zero(mem_ctx, struct libnet_JoinCtx);
1581 talloc_set_destructor(ctx, libnet_destroy_JoinCtx);
1583 ctx->in.machine_name = talloc_strdup(mem_ctx, global_myname());
1584 W_ERROR_HAVE_NO_MEMORY(ctx->in.machine_name);
1586 krb5_cc_env = getenv(KRB5_ENV_CCNAME);
1587 if (!krb5_cc_env || (strlen(krb5_cc_env) == 0)) {
1588 krb5_cc_env = talloc_strdup(mem_ctx, "MEMORY:libnetjoin");
1589 W_ERROR_HAVE_NO_MEMORY(krb5_cc_env);
1590 setenv(KRB5_ENV_CCNAME, krb5_cc_env, 1);
1593 ctx->in.secure_channel_type = SEC_CHAN_WKSTA;
1600 /****************************************************************
1601 ****************************************************************/
1603 WERROR libnet_init_UnjoinCtx(TALLOC_CTX *mem_ctx,
1604 struct libnet_UnjoinCtx **r)
1606 struct libnet_UnjoinCtx *ctx;
1607 const char *krb5_cc_env = NULL;
1609 ctx = talloc_zero(mem_ctx, struct libnet_UnjoinCtx);
1614 talloc_set_destructor(ctx, libnet_destroy_UnjoinCtx);
1616 ctx->in.machine_name = talloc_strdup(mem_ctx, global_myname());
1617 W_ERROR_HAVE_NO_MEMORY(ctx->in.machine_name);
1619 krb5_cc_env = getenv(KRB5_ENV_CCNAME);
1620 if (!krb5_cc_env || (strlen(krb5_cc_env) == 0)) {
1621 krb5_cc_env = talloc_strdup(mem_ctx, "MEMORY:libnetjoin");
1622 W_ERROR_HAVE_NO_MEMORY(krb5_cc_env);
1623 setenv(KRB5_ENV_CCNAME, krb5_cc_env, 1);
1631 /****************************************************************
1632 ****************************************************************/
1634 static WERROR libnet_join_check_config(TALLOC_CTX *mem_ctx,
1635 struct libnet_JoinCtx *r)
1637 bool valid_security = false;
1638 bool valid_workgroup = false;
1639 bool valid_realm = false;
1641 /* check if configuration is already set correctly */
1643 valid_workgroup = strequal(lp_workgroup(), r->out.netbios_domain_name);
1645 switch (r->out.domain_is_ad) {
1647 valid_security = (lp_security() == SEC_DOMAIN);
1648 if (valid_workgroup && valid_security) {
1649 /* nothing to be done */
1654 valid_realm = strequal(lp_realm(), r->out.dns_domain_name);
1655 switch (lp_security()) {
1658 valid_security = true;
1661 if (valid_workgroup && valid_realm && valid_security) {
1662 /* nothing to be done */
1668 /* check if we are supposed to manipulate configuration */
1670 if (!r->in.modify_config) {
1672 char *wrong_conf = talloc_strdup(mem_ctx, "");
1674 if (!valid_workgroup) {
1675 wrong_conf = talloc_asprintf_append(wrong_conf,
1676 "\"workgroup\" set to '%s', should be '%s'",
1677 lp_workgroup(), r->out.netbios_domain_name);
1678 W_ERROR_HAVE_NO_MEMORY(wrong_conf);
1682 wrong_conf = talloc_asprintf_append(wrong_conf,
1683 "\"realm\" set to '%s', should be '%s'",
1684 lp_realm(), r->out.dns_domain_name);
1685 W_ERROR_HAVE_NO_MEMORY(wrong_conf);
1688 if (!valid_security) {
1689 const char *sec = NULL;
1690 switch (lp_security()) {
1691 case SEC_SHARE: sec = "share"; break;
1692 case SEC_USER: sec = "user"; break;
1693 case SEC_DOMAIN: sec = "domain"; break;
1694 case SEC_ADS: sec = "ads"; break;
1696 wrong_conf = talloc_asprintf_append(wrong_conf,
1697 "\"security\" set to '%s', should be %s",
1698 sec, r->out.domain_is_ad ?
1699 "either 'domain' or 'ads'" : "'domain'");
1700 W_ERROR_HAVE_NO_MEMORY(wrong_conf);
1703 libnet_join_set_error_string(mem_ctx, r,
1704 "Invalid configuration (%s) and configuration modification "
1705 "was not requested", wrong_conf);
1706 return WERR_CAN_NOT_COMPLETE;
1709 /* check if we are able to manipulate configuration */
1711 if (!lp_config_backend_is_registry()) {
1712 libnet_join_set_error_string(mem_ctx, r,
1713 "Configuration manipulation requested but not "
1714 "supported by backend");
1715 return WERR_NOT_SUPPORTED;
1721 /****************************************************************
1722 ****************************************************************/
1724 static WERROR libnet_DomainJoin(TALLOC_CTX *mem_ctx,
1725 struct libnet_JoinCtx *r)
1729 struct cli_state *cli = NULL;
1731 ADS_STATUS ads_status;
1732 #endif /* WITH_ADS */
1734 if (!r->in.dc_name) {
1735 struct netr_DsRGetDCNameInfo *info;
1737 status = dsgetdcname(mem_ctx,
1742 DS_DIRECTORY_SERVICE_REQUIRED |
1743 DS_WRITABLE_REQUIRED |
1746 if (!NT_STATUS_IS_OK(status)) {
1747 libnet_join_set_error_string(mem_ctx, r,
1748 "failed to find DC for domain %s",
1750 get_friendly_nt_error_msg(status));
1751 return WERR_DOMAIN_CONTROLLER_NOT_FOUND;
1754 dc = strip_hostname(info->dc_unc);
1755 r->in.dc_name = talloc_strdup(mem_ctx, dc);
1756 W_ERROR_HAVE_NO_MEMORY(r->in.dc_name);
1759 status = libnet_join_lookup_dc_rpc(mem_ctx, r, &cli);
1760 if (!NT_STATUS_IS_OK(status)) {
1761 libnet_join_set_error_string(mem_ctx, r,
1762 "failed to lookup DC info for domain '%s' over rpc: %s",
1763 r->in.domain_name, get_friendly_nt_error_msg(status));
1764 return ntstatus_to_werror(status);
1767 werr = libnet_join_check_config(mem_ctx, r);
1768 if (!W_ERROR_IS_OK(werr)) {
1773 if (r->out.domain_is_ad && r->in.account_ou) {
1775 ads_status = libnet_join_connect_ads(mem_ctx, r);
1776 if (!ADS_ERR_OK(ads_status)) {
1777 return WERR_DEFAULT_JOIN_REQUIRED;
1780 ads_status = libnet_join_precreate_machine_acct(mem_ctx, r);
1781 if (!ADS_ERR_OK(ads_status)) {
1782 libnet_join_set_error_string(mem_ctx, r,
1783 "failed to precreate account in ou %s: %s",
1785 ads_errstr(ads_status));
1786 return WERR_DEFAULT_JOIN_REQUIRED;
1789 r->in.join_flags &= ~WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE;
1791 #endif /* WITH_ADS */
1793 status = libnet_join_joindomain_rpc(mem_ctx, r, cli);
1794 if (!NT_STATUS_IS_OK(status)) {
1795 libnet_join_set_error_string(mem_ctx, r,
1796 "failed to join domain '%s' over rpc: %s",
1797 r->in.domain_name, get_friendly_nt_error_msg(status));
1798 if (NT_STATUS_EQUAL(status, NT_STATUS_USER_EXISTS)) {
1799 return WERR_SETUP_ALREADY_JOINED;
1801 werr = ntstatus_to_werror(status);
1805 if (!libnet_join_joindomain_store_secrets(mem_ctx, r)) {
1806 werr = WERR_SETUP_NOT_JOINED;
1820 /****************************************************************
1821 ****************************************************************/
1823 static WERROR libnet_join_rollback(TALLOC_CTX *mem_ctx,
1824 struct libnet_JoinCtx *r)
1827 struct libnet_UnjoinCtx *u = NULL;
1829 werr = libnet_init_UnjoinCtx(mem_ctx, &u);
1830 if (!W_ERROR_IS_OK(werr)) {
1834 u->in.debug = r->in.debug;
1835 u->in.dc_name = r->in.dc_name;
1836 u->in.domain_name = r->in.domain_name;
1837 u->in.admin_account = r->in.admin_account;
1838 u->in.admin_password = r->in.admin_password;
1839 u->in.modify_config = r->in.modify_config;
1840 u->in.unjoin_flags = WKSSVC_JOIN_FLAGS_JOIN_TYPE |
1841 WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE;
1843 werr = libnet_Unjoin(mem_ctx, u);
1849 /****************************************************************
1850 ****************************************************************/
1852 WERROR libnet_Join(TALLOC_CTX *mem_ctx,
1853 struct libnet_JoinCtx *r)
1858 LIBNET_JOIN_IN_DUMP_CTX(mem_ctx, r);
1861 werr = libnet_join_pre_processing(mem_ctx, r);
1862 if (!W_ERROR_IS_OK(werr)) {
1866 if (r->in.join_flags & WKSSVC_JOIN_FLAGS_JOIN_TYPE) {
1867 werr = libnet_DomainJoin(mem_ctx, r);
1868 if (!W_ERROR_IS_OK(werr)) {
1873 werr = libnet_join_post_processing(mem_ctx, r);
1874 if (!W_ERROR_IS_OK(werr)) {
1878 if (r->in.join_flags & WKSSVC_JOIN_FLAGS_JOIN_TYPE) {
1879 werr = libnet_join_post_verify(mem_ctx, r);
1880 if (!W_ERROR_IS_OK(werr)) {
1881 libnet_join_rollback(mem_ctx, r);
1886 r->out.result = werr;
1889 LIBNET_JOIN_OUT_DUMP_CTX(mem_ctx, r);
1894 /****************************************************************
1895 ****************************************************************/
1897 static WERROR libnet_DomainUnjoin(TALLOC_CTX *mem_ctx,
1898 struct libnet_UnjoinCtx *r)
1902 if (!r->in.domain_sid) {
1904 if (!secrets_fetch_domain_sid(lp_workgroup(), &sid)) {
1905 libnet_unjoin_set_error_string(mem_ctx, r,
1906 "Unable to fetch domain sid: are we joined?");
1907 return WERR_SETUP_NOT_JOINED;
1909 r->in.domain_sid = sid_dup_talloc(mem_ctx, &sid);
1910 W_ERROR_HAVE_NO_MEMORY(r->in.domain_sid);
1913 if (!r->in.dc_name) {
1914 struct netr_DsRGetDCNameInfo *info;
1916 status = dsgetdcname(mem_ctx,
1921 DS_DIRECTORY_SERVICE_REQUIRED |
1922 DS_WRITABLE_REQUIRED |
1925 if (!NT_STATUS_IS_OK(status)) {
1926 libnet_unjoin_set_error_string(mem_ctx, r,
1927 "failed to find DC for domain %s",
1929 get_friendly_nt_error_msg(status));
1930 return WERR_DOMAIN_CONTROLLER_NOT_FOUND;
1933 dc = strip_hostname(info->dc_unc);
1934 r->in.dc_name = talloc_strdup(mem_ctx, dc);
1935 W_ERROR_HAVE_NO_MEMORY(r->in.dc_name);
1938 status = libnet_join_unjoindomain_rpc(mem_ctx, r);
1939 if (!NT_STATUS_IS_OK(status)) {
1940 libnet_unjoin_set_error_string(mem_ctx, r,
1941 "failed to disable machine account via rpc: %s",
1942 get_friendly_nt_error_msg(status));
1943 if (NT_STATUS_EQUAL(status, NT_STATUS_NO_SUCH_USER)) {
1944 return WERR_SETUP_NOT_JOINED;
1946 return ntstatus_to_werror(status);
1949 r->out.disabled_machine_account = true;
1952 if (r->in.unjoin_flags & WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE) {
1953 ADS_STATUS ads_status;
1954 libnet_unjoin_connect_ads(mem_ctx, r);
1955 ads_status = libnet_unjoin_remove_machine_acct(mem_ctx, r);
1956 if (!ADS_ERR_OK(ads_status)) {
1957 libnet_unjoin_set_error_string(mem_ctx, r,
1958 "failed to remove machine account from AD: %s",
1959 ads_errstr(ads_status));
1961 r->out.deleted_machine_account = true;
1963 r->out.dns_domain_name = talloc_strdup(mem_ctx,
1964 r->in.ads->server.realm);
1965 W_ERROR_HAVE_NO_MEMORY(r->out.dns_domain_name);
1968 #endif /* WITH_ADS */
1970 libnet_join_unjoindomain_remove_secrets(mem_ctx, r);
1975 /****************************************************************
1976 ****************************************************************/
1978 static WERROR libnet_unjoin_pre_processing(TALLOC_CTX *mem_ctx,
1979 struct libnet_UnjoinCtx *r)
1981 if (!r->in.domain_name) {
1982 libnet_unjoin_set_error_string(mem_ctx, r,
1983 "No domain name defined");
1984 return WERR_INVALID_PARAM;
1987 if (!libnet_parse_domain_dc(mem_ctx, r->in.domain_name,
1990 libnet_unjoin_set_error_string(mem_ctx, r,
1991 "Failed to parse domain name");
1992 return WERR_INVALID_PARAM;
1996 return WERR_SETUP_DOMAIN_CONTROLLER;
1999 if (!secrets_init()) {
2000 libnet_unjoin_set_error_string(mem_ctx, r,
2001 "Unable to open secrets database");
2002 return WERR_CAN_NOT_COMPLETE;
2008 /****************************************************************
2009 ****************************************************************/
2011 static WERROR libnet_unjoin_post_processing(TALLOC_CTX *mem_ctx,
2012 struct libnet_UnjoinCtx *r)
2014 saf_delete(r->out.netbios_domain_name);
2015 saf_delete(r->out.dns_domain_name);
2017 return libnet_unjoin_config(r);
2020 /****************************************************************
2021 ****************************************************************/
2023 WERROR libnet_Unjoin(TALLOC_CTX *mem_ctx,
2024 struct libnet_UnjoinCtx *r)
2029 LIBNET_UNJOIN_IN_DUMP_CTX(mem_ctx, r);
2032 werr = libnet_unjoin_pre_processing(mem_ctx, r);
2033 if (!W_ERROR_IS_OK(werr)) {
2037 if (r->in.unjoin_flags & WKSSVC_JOIN_FLAGS_JOIN_TYPE) {
2038 werr = libnet_DomainUnjoin(mem_ctx, r);
2039 if (!W_ERROR_IS_OK(werr)) {
2040 libnet_unjoin_config(r);
2045 werr = libnet_unjoin_post_processing(mem_ctx, r);
2046 if (!W_ERROR_IS_OK(werr)) {
2051 r->out.result = werr;
2054 LIBNET_UNJOIN_OUT_DUMP_CTX(mem_ctx, r);