Use rpccli_samr_OpenUser() all over the place.
[samba.git] / source3 / libnet / libnet_join.c
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  libnet Join Support
4  *  Copyright (C) Gerald (Jerry) Carter 2006
5  *  Copyright (C) Guenther Deschner 2007-2008
6  *
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.
11  *
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.
16  *
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/>.
19  */
20
21 #include "includes.h"
22 #include "libnet/libnet.h"
23
24 /****************************************************************
25 ****************************************************************/
26
27 #define LIBNET_JOIN_DUMP_CTX(ctx, r, f) \
28         do { \
29                 char *str = NULL; \
30                 str = NDR_PRINT_FUNCTION_STRING(ctx, libnet_JoinCtx, f, r); \
31                 DEBUG(1,("libnet_Join:\n%s", str)); \
32                 talloc_free(str); \
33         } while (0)
34
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)
39
40 #define LIBNET_UNJOIN_DUMP_CTX(ctx, r, f) \
41         do { \
42                 char *str = NULL; \
43                 str = NDR_PRINT_FUNCTION_STRING(ctx, libnet_UnjoinCtx, f, r); \
44                 DEBUG(1,("libnet_Unjoin:\n%s", str)); \
45                 talloc_free(str); \
46         } while (0)
47
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)
52
53 /****************************************************************
54 ****************************************************************/
55
56 static void libnet_join_set_error_string(TALLOC_CTX *mem_ctx,
57                                          struct libnet_JoinCtx *r,
58                                          const char *format, ...)
59 {
60         va_list args;
61
62         if (r->out.error_string) {
63                 return;
64         }
65
66         va_start(args, format);
67         r->out.error_string = talloc_vasprintf(mem_ctx, format, args);
68         va_end(args);
69 }
70
71 /****************************************************************
72 ****************************************************************/
73
74 static void libnet_unjoin_set_error_string(TALLOC_CTX *mem_ctx,
75                                            struct libnet_UnjoinCtx *r,
76                                            const char *format, ...)
77 {
78         va_list args;
79
80         if (r->out.error_string) {
81                 return;
82         }
83
84         va_start(args, format);
85         r->out.error_string = talloc_vasprintf(mem_ctx, format, args);
86         va_end(args);
87 }
88
89 #ifdef WITH_ADS
90
91 /****************************************************************
92 ****************************************************************/
93
94 static ADS_STATUS libnet_connect_ads(const char *dns_domain_name,
95                                      const char *netbios_domain_name,
96                                      const char *dc_name,
97                                      const char *user_name,
98                                      const char *password,
99                                      ADS_STRUCT **ads)
100 {
101         ADS_STATUS status;
102         ADS_STRUCT *my_ads = NULL;
103
104         my_ads = ads_init(dns_domain_name,
105                           netbios_domain_name,
106                           dc_name);
107         if (!my_ads) {
108                 return ADS_ERROR_LDAP(LDAP_NO_MEMORY);
109         }
110
111         if (user_name) {
112                 SAFE_FREE(my_ads->auth.user_name);
113                 my_ads->auth.user_name = SMB_STRDUP(user_name);
114         }
115
116         if (password) {
117                 SAFE_FREE(my_ads->auth.password);
118                 my_ads->auth.password = SMB_STRDUP(password);
119         }
120
121         status = ads_connect(my_ads);
122         if (!ADS_ERR_OK(status)) {
123                 ads_destroy(&my_ads);
124                 return status;
125         }
126
127         *ads = my_ads;
128         return ADS_SUCCESS;
129 }
130
131 /****************************************************************
132 ****************************************************************/
133
134 static ADS_STATUS libnet_join_connect_ads(TALLOC_CTX *mem_ctx,
135                                           struct libnet_JoinCtx *r)
136 {
137         ADS_STATUS status;
138
139         status = libnet_connect_ads(r->in.domain_name,
140                                     r->in.domain_name,
141                                     r->in.dc_name,
142                                     r->in.admin_account,
143                                     r->in.admin_password,
144                                     &r->in.ads);
145         if (!ADS_ERR_OK(status)) {
146                 libnet_join_set_error_string(mem_ctx, r,
147                         "failed to connect to AD: %s",
148                         ads_errstr(status));
149         }
150
151         return status;
152 }
153
154 /****************************************************************
155 ****************************************************************/
156
157 static ADS_STATUS libnet_unjoin_connect_ads(TALLOC_CTX *mem_ctx,
158                                             struct libnet_UnjoinCtx *r)
159 {
160         ADS_STATUS status;
161
162         status = libnet_connect_ads(r->in.domain_name,
163                                     r->in.domain_name,
164                                     r->in.dc_name,
165                                     r->in.admin_account,
166                                     r->in.admin_password,
167                                     &r->in.ads);
168         if (!ADS_ERR_OK(status)) {
169                 libnet_unjoin_set_error_string(mem_ctx, r,
170                         "failed to connect to AD: %s",
171                         ads_errstr(status));
172         }
173
174         return status;
175 }
176
177 /****************************************************************
178 ****************************************************************/
179
180 static ADS_STATUS libnet_join_precreate_machine_acct(TALLOC_CTX *mem_ctx,
181                                                      struct libnet_JoinCtx *r)
182 {
183         ADS_STATUS status;
184         LDAPMessage *res = NULL;
185         const char *attrs[] = { "dn", NULL };
186
187         status = ads_search_dn(r->in.ads, &res, r->in.account_ou, attrs);
188         if (!ADS_ERR_OK(status)) {
189                 return status;
190         }
191
192         if (ads_count_replies(r->in.ads, res) != 1) {
193                 ads_msgfree(r->in.ads, res);
194                 return ADS_ERROR_LDAP(LDAP_NO_SUCH_OBJECT);
195         }
196
197         status = ads_create_machine_acct(r->in.ads,
198                                          r->in.machine_name,
199                                          r->in.account_ou);
200         ads_msgfree(r->in.ads, res);
201
202         if ((status.error_type == ENUM_ADS_ERROR_LDAP) &&
203             (status.err.rc == LDAP_ALREADY_EXISTS)) {
204                 status = ADS_SUCCESS;
205         }
206
207         return status;
208 }
209
210 /****************************************************************
211 ****************************************************************/
212
213 static ADS_STATUS libnet_unjoin_remove_machine_acct(TALLOC_CTX *mem_ctx,
214                                                     struct libnet_UnjoinCtx *r)
215 {
216         ADS_STATUS status;
217
218         if (!r->in.ads) {
219                 status = libnet_unjoin_connect_ads(mem_ctx, r);
220                 if (!ADS_ERR_OK(status)) {
221                         return status;
222                 }
223         }
224
225         status = ads_leave_realm(r->in.ads, r->in.machine_name);
226         if (!ADS_ERR_OK(status)) {
227                 libnet_unjoin_set_error_string(mem_ctx, r,
228                         "failed to leave realm: %s",
229                         ads_errstr(status));
230                 return status;
231         }
232
233         return ADS_SUCCESS;
234 }
235
236 /****************************************************************
237 ****************************************************************/
238
239 static ADS_STATUS libnet_join_find_machine_acct(TALLOC_CTX *mem_ctx,
240                                                 struct libnet_JoinCtx *r)
241 {
242         ADS_STATUS status;
243         LDAPMessage *res = NULL;
244         char *dn = NULL;
245
246         if (!r->in.machine_name) {
247                 return ADS_ERROR(LDAP_NO_MEMORY);
248         }
249
250         status = ads_find_machine_acct(r->in.ads,
251                                        &res,
252                                        r->in.machine_name);
253         if (!ADS_ERR_OK(status)) {
254                 return status;
255         }
256
257         if (ads_count_replies(r->in.ads, res) != 1) {
258                 status = ADS_ERROR_LDAP(LDAP_NO_MEMORY);
259                 goto done;
260         }
261
262         dn = ads_get_dn(r->in.ads, res);
263         if (!dn) {
264                 status = ADS_ERROR_LDAP(LDAP_NO_MEMORY);
265                 goto done;
266         }
267
268         r->out.dn = talloc_strdup(mem_ctx, dn);
269         if (!r->out.dn) {
270                 status = ADS_ERROR_LDAP(LDAP_NO_MEMORY);
271                 goto done;
272         }
273
274  done:
275         ads_msgfree(r->in.ads, res);
276         ads_memfree(r->in.ads, dn);
277
278         return status;
279 }
280
281 /****************************************************************
282 ****************************************************************/
283
284 static ADS_STATUS libnet_join_set_machine_spn(TALLOC_CTX *mem_ctx,
285                                               struct libnet_JoinCtx *r)
286 {
287         ADS_STATUS status;
288         ADS_MODLIST mods;
289         fstring my_fqdn;
290         const char *spn_array[3] = {NULL, NULL, NULL};
291         char *spn = NULL;
292
293         if (!r->in.ads) {
294                 status = libnet_join_connect_ads(mem_ctx, r);
295                 if (!ADS_ERR_OK(status)) {
296                         return status;
297                 }
298         }
299
300         status = libnet_join_find_machine_acct(mem_ctx, r);
301         if (!ADS_ERR_OK(status)) {
302                 return status;
303         }
304
305         spn = talloc_asprintf(mem_ctx, "HOST/%s", r->in.machine_name);
306         if (!spn) {
307                 return ADS_ERROR_LDAP(LDAP_NO_MEMORY);
308         }
309         strupper_m(spn);
310         spn_array[0] = spn;
311
312         if (name_to_fqdn(my_fqdn, r->in.machine_name) &&
313             !strequal(my_fqdn, r->in.machine_name)) {
314
315                 strlower_m(my_fqdn);
316                 spn = talloc_asprintf(mem_ctx, "HOST/%s", my_fqdn);
317                 if (!spn) {
318                         return ADS_ERROR_LDAP(LDAP_NO_MEMORY);
319                 }
320                 spn_array[1] = spn;
321         }
322
323         mods = ads_init_mods(mem_ctx);
324         if (!mods) {
325                 return ADS_ERROR_LDAP(LDAP_NO_MEMORY);
326         }
327
328         status = ads_mod_str(mem_ctx, &mods, "dNSHostName", my_fqdn);
329         if (!ADS_ERR_OK(status)) {
330                 return ADS_ERROR_LDAP(LDAP_NO_MEMORY);
331         }
332
333         status = ads_mod_strlist(mem_ctx, &mods, "servicePrincipalName",
334                                  spn_array);
335         if (!ADS_ERR_OK(status)) {
336                 return ADS_ERROR_LDAP(LDAP_NO_MEMORY);
337         }
338
339         return ads_gen_mod(r->in.ads, r->out.dn, mods);
340 }
341
342 /****************************************************************
343 ****************************************************************/
344
345 static ADS_STATUS libnet_join_set_machine_upn(TALLOC_CTX *mem_ctx,
346                                               struct libnet_JoinCtx *r)
347 {
348         ADS_STATUS status;
349         ADS_MODLIST mods;
350
351         if (!r->in.create_upn) {
352                 return ADS_SUCCESS;
353         }
354
355         if (!r->in.ads) {
356                 status = libnet_join_connect_ads(mem_ctx, r);
357                 if (!ADS_ERR_OK(status)) {
358                         return status;
359                 }
360         }
361
362         status = libnet_join_find_machine_acct(mem_ctx, r);
363         if (!ADS_ERR_OK(status)) {
364                 return status;
365         }
366
367         if (!r->in.upn) {
368                 r->in.upn = talloc_asprintf(mem_ctx,
369                                             "host/%s@%s",
370                                             r->in.machine_name,
371                                             r->out.dns_domain_name);
372                 if (!r->in.upn) {
373                         return ADS_ERROR(LDAP_NO_MEMORY);
374                 }
375         }
376
377         mods = ads_init_mods(mem_ctx);
378         if (!mods) {
379                 return ADS_ERROR_LDAP(LDAP_NO_MEMORY);
380         }
381
382         status = ads_mod_str(mem_ctx, &mods, "userPrincipalName", r->in.upn);
383         if (!ADS_ERR_OK(status)) {
384                 return ADS_ERROR_LDAP(LDAP_NO_MEMORY);
385         }
386
387         return ads_gen_mod(r->in.ads, r->out.dn, mods);
388 }
389
390
391 /****************************************************************
392 ****************************************************************/
393
394 static ADS_STATUS libnet_join_set_os_attributes(TALLOC_CTX *mem_ctx,
395                                                 struct libnet_JoinCtx *r)
396 {
397         ADS_STATUS status;
398         ADS_MODLIST mods;
399         char *os_sp = NULL;
400
401         if (!r->in.os_name || !r->in.os_version ) {
402                 return ADS_SUCCESS;
403         }
404
405         if (!r->in.ads) {
406                 status = libnet_join_connect_ads(mem_ctx, r);
407                 if (!ADS_ERR_OK(status)) {
408                         return status;
409                 }
410         }
411
412         status = libnet_join_find_machine_acct(mem_ctx, r);
413         if (!ADS_ERR_OK(status)) {
414                 return status;
415         }
416
417         mods = ads_init_mods(mem_ctx);
418         if (!mods) {
419                 return ADS_ERROR(LDAP_NO_MEMORY);
420         }
421
422         os_sp = talloc_asprintf(mem_ctx, "Samba %s", SAMBA_VERSION_STRING);
423         if (!os_sp) {
424                 return ADS_ERROR(LDAP_NO_MEMORY);
425         }
426
427         status = ads_mod_str(mem_ctx, &mods, "operatingSystem",
428                              r->in.os_name);
429         if (!ADS_ERR_OK(status)) {
430                 return status;
431         }
432
433         status = ads_mod_str(mem_ctx, &mods, "operatingSystemVersion",
434                              r->in.os_version);
435         if (!ADS_ERR_OK(status)) {
436                 return status;
437         }
438
439         status = ads_mod_str(mem_ctx, &mods, "operatingSystemServicePack",
440                              os_sp);
441         if (!ADS_ERR_OK(status)) {
442                 return status;
443         }
444
445         return ads_gen_mod(r->in.ads, r->out.dn, mods);
446 }
447
448 /****************************************************************
449 ****************************************************************/
450
451 static bool libnet_join_create_keytab(TALLOC_CTX *mem_ctx,
452                                       struct libnet_JoinCtx *r)
453 {
454         if (!lp_use_kerberos_keytab()) {
455                 return true;
456         }
457
458         if (!ads_keytab_create_default(r->in.ads)) {
459                 return false;
460         }
461
462         return true;
463 }
464
465 /****************************************************************
466 ****************************************************************/
467
468 static bool libnet_join_derive_salting_principal(TALLOC_CTX *mem_ctx,
469                                                  struct libnet_JoinCtx *r)
470 {
471         uint32_t domain_func;
472         ADS_STATUS status;
473         const char *salt = NULL;
474         char *std_salt = NULL;
475
476         status = ads_domain_func_level(r->in.ads, &domain_func);
477         if (!ADS_ERR_OK(status)) {
478                 libnet_join_set_error_string(mem_ctx, r,
479                         "failed to determine domain functional level: %s",
480                         ads_errstr(status));
481                 return false;
482         }
483
484         std_salt = kerberos_standard_des_salt();
485         if (!std_salt) {
486                 libnet_join_set_error_string(mem_ctx, r,
487                         "failed to obtain standard DES salt");
488                 return false;
489         }
490
491         salt = talloc_strdup(mem_ctx, std_salt);
492         if (!salt) {
493                 return false;
494         }
495
496         SAFE_FREE(std_salt);
497
498         if (domain_func == DS_DOMAIN_FUNCTION_2000) {
499                 char *upn;
500
501                 upn = ads_get_upn(r->in.ads, mem_ctx,
502                                   r->in.machine_name);
503                 if (upn) {
504                         salt = talloc_strdup(mem_ctx, upn);
505                         if (!salt) {
506                                 return false;
507                         }
508                 }
509         }
510
511         return kerberos_secrets_store_des_salt(salt);
512 }
513
514 /****************************************************************
515 ****************************************************************/
516
517 static ADS_STATUS libnet_join_post_processing_ads(TALLOC_CTX *mem_ctx,
518                                                   struct libnet_JoinCtx *r)
519 {
520         ADS_STATUS status;
521
522         status = libnet_join_set_machine_spn(mem_ctx, r);
523         if (!ADS_ERR_OK(status)) {
524                 libnet_join_set_error_string(mem_ctx, r,
525                         "failed to set machine spn: %s",
526                         ads_errstr(status));
527                 return status;
528         }
529
530         status = libnet_join_set_os_attributes(mem_ctx, r);
531         if (!ADS_ERR_OK(status)) {
532                 libnet_join_set_error_string(mem_ctx, r,
533                         "failed to set machine os attributes: %s",
534                         ads_errstr(status));
535                 return status;
536         }
537
538         status = libnet_join_set_machine_upn(mem_ctx, r);
539         if (!ADS_ERR_OK(status)) {
540                 libnet_join_set_error_string(mem_ctx, r,
541                         "failed to set machine upn: %s",
542                         ads_errstr(status));
543                 return status;
544         }
545
546         if (!libnet_join_derive_salting_principal(mem_ctx, r)) {
547                 return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL);
548         }
549
550         if (!libnet_join_create_keytab(mem_ctx, r)) {
551                 libnet_join_set_error_string(mem_ctx, r,
552                         "failed to create kerberos keytab");
553                 return ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL);
554         }
555
556         return ADS_SUCCESS;
557 }
558 #endif /* WITH_ADS */
559
560 /****************************************************************
561 ****************************************************************/
562
563 static bool libnet_join_joindomain_store_secrets(TALLOC_CTX *mem_ctx,
564                                                  struct libnet_JoinCtx *r)
565 {
566         if (!secrets_store_domain_sid(r->out.netbios_domain_name,
567                                       r->out.domain_sid))
568         {
569                 return false;
570         }
571
572         if (!secrets_store_machine_password(r->in.machine_password,
573                                             r->out.netbios_domain_name,
574                                             SEC_CHAN_WKSTA))
575         {
576                 return false;
577         }
578
579         return true;
580 }
581
582 /****************************************************************
583 ****************************************************************/
584
585 static NTSTATUS libnet_join_joindomain_rpc(TALLOC_CTX *mem_ctx,
586                                            struct libnet_JoinCtx *r)
587 {
588         struct cli_state *cli = NULL;
589         struct rpc_pipe_client *pipe_hnd = NULL;
590         POLICY_HND sam_pol, domain_pol, user_pol, lsa_pol;
591         NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
592         char *acct_name;
593         const char *const_acct_name;
594         uint32 user_rid;
595         uint32 num_rids, *name_types, *user_rids;
596         uint32 flags = 0x3e8;
597         uint32 acb_info = ACB_WSTRUST;
598         uint32 fields_present;
599         uchar pwbuf[532];
600         SAM_USERINFO_CTR ctr;
601         SAM_USER_INFO_25 p25;
602         const int infolevel = 25;
603         struct MD5Context md5ctx;
604         uchar md5buffer[16];
605         DATA_BLOB digested_session_key;
606         uchar md4_trust_password[16];
607
608         if (!r->in.machine_password) {
609                 r->in.machine_password = talloc_strdup(mem_ctx, generate_random_str(DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH));
610                 NT_STATUS_HAVE_NO_MEMORY(r->in.machine_password);
611         }
612
613         status = cli_full_connection(&cli, NULL,
614                                      r->in.dc_name,
615                                      NULL, 0,
616                                      "IPC$", "IPC",
617                                      r->in.admin_account,
618                                      NULL,
619                                      r->in.admin_password,
620                                      0,
621                                      Undefined, NULL);
622
623         if (!NT_STATUS_IS_OK(status)) {
624                 goto done;
625         }
626
627         pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_LSARPC, &status);
628         if (!pipe_hnd) {
629                 goto done;
630         }
631
632         status = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, True,
633                                         SEC_RIGHTS_MAXIMUM_ALLOWED, &lsa_pol);
634         if (!NT_STATUS_IS_OK(status)) {
635                 goto done;
636         }
637
638         status = rpccli_lsa_query_info_policy2(pipe_hnd, mem_ctx, &lsa_pol,
639                                                12,
640                                                &r->out.netbios_domain_name,
641                                                &r->out.dns_domain_name,
642                                                NULL,
643                                                NULL,
644                                                &r->out.domain_sid);
645
646         if (NT_STATUS_IS_OK(status)) {
647                 r->out.domain_is_ad = true;
648         }
649
650         if (!NT_STATUS_IS_OK(status)) {
651                 status = rpccli_lsa_query_info_policy(pipe_hnd, mem_ctx, &lsa_pol,
652                                                       5,
653                                                       &r->out.netbios_domain_name,
654                                                       &r->out.domain_sid);
655                 if (!NT_STATUS_IS_OK(status)) {
656                         goto done;
657                 }
658         }
659
660         rpccli_lsa_Close(pipe_hnd, mem_ctx, &lsa_pol);
661         cli_rpc_pipe_close(pipe_hnd);
662
663         pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_SAMR, &status);
664         if (!pipe_hnd) {
665                 goto done;
666         }
667
668         status = rpccli_samr_connect(pipe_hnd, mem_ctx,
669                                      SEC_RIGHTS_MAXIMUM_ALLOWED, &sam_pol);
670         if (!NT_STATUS_IS_OK(status)) {
671                 goto done;
672         }
673
674         status = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
675                                         &sam_pol,
676                                         SEC_RIGHTS_MAXIMUM_ALLOWED,
677                                         r->out.domain_sid,
678                                         &domain_pol);
679         if (!NT_STATUS_IS_OK(status)) {
680                 goto done;
681         }
682
683         acct_name = talloc_asprintf(mem_ctx, "%s$", r->in.machine_name);
684         strlower_m(acct_name);
685         const_acct_name = acct_name;
686
687         if (r->in.join_flags & WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE) {
688                 uint32_t acct_flags =
689                         SEC_GENERIC_READ | SEC_GENERIC_WRITE | SEC_GENERIC_EXECUTE |
690                         SEC_STD_WRITE_DAC | SEC_STD_DELETE |
691                         SAMR_USER_ACCESS_SET_PASSWORD |
692                         SAMR_USER_ACCESS_GET_ATTRIBUTES |
693                         SAMR_USER_ACCESS_SET_ATTRIBUTES;
694
695                 status = rpccli_samr_create_dom_user(pipe_hnd, mem_ctx,
696                                                      &domain_pol,
697                                                      acct_name, ACB_WSTRUST,
698                                                      acct_flags, &user_pol,
699                                                      &user_rid);
700                 if (NT_STATUS_EQUAL(status, NT_STATUS_USER_EXISTS)) {
701                         if (!(r->in.join_flags &
702                               WKSSVC_JOIN_FLAGS_DOMAIN_JOIN_IF_JOINED)) {
703                                 goto done;
704                         }
705                 }
706
707                 if (NT_STATUS_IS_OK(status)) {
708                         rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
709                 }
710         }
711
712         status = rpccli_samr_lookup_names(pipe_hnd, mem_ctx,
713                                           &domain_pol, flags, 1,
714                                           &const_acct_name,
715                                           &num_rids, &user_rids, &name_types);
716         if (!NT_STATUS_IS_OK(status)) {
717                 goto done;
718         }
719
720         if (name_types[0] != SID_NAME_USER) {
721                 status = NT_STATUS_INVALID_WORKSTATION;
722                 goto done;
723         }
724
725         user_rid = user_rids[0];
726
727         status = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
728                                       &domain_pol,
729                                       SEC_RIGHTS_MAXIMUM_ALLOWED,
730                                       user_rid,
731                                       &user_pol);
732         if (!NT_STATUS_IS_OK(status)) {
733                 goto done;
734         }
735
736         E_md4hash(r->in.machine_password, md4_trust_password);
737         encode_pw_buffer(pwbuf, r->in.machine_password, STR_UNICODE);
738
739         generate_random_buffer((uint8*)md5buffer, sizeof(md5buffer));
740         digested_session_key = data_blob_talloc(mem_ctx, 0, 16);
741
742         MD5Init(&md5ctx);
743         MD5Update(&md5ctx, md5buffer, sizeof(md5buffer));
744         MD5Update(&md5ctx, cli->user_session_key.data,
745                   cli->user_session_key.length);
746         MD5Final(digested_session_key.data, &md5ctx);
747
748         SamOEMhashBlob(pwbuf, sizeof(pwbuf), &digested_session_key);
749         memcpy(&pwbuf[516], md5buffer, sizeof(md5buffer));
750
751         acb_info |= ACB_PWNOEXP;
752         if (r->out.domain_is_ad) {
753 #if !defined(ENCTYPE_ARCFOUR_HMAC)
754                 acb_info |= ACB_USE_DES_KEY_ONLY;
755 #endif
756                 ;;
757         }
758
759         ZERO_STRUCT(ctr);
760         ZERO_STRUCT(p25);
761
762         fields_present = ACCT_NT_PWD_SET | ACCT_LM_PWD_SET | ACCT_FLAGS;
763         init_sam_user_info25P(&p25, fields_present, acb_info, (char *)pwbuf);
764
765         ctr.switch_value = infolevel;
766         ctr.info.id25    = &p25;
767
768         status = rpccli_samr_set_userinfo2(pipe_hnd, mem_ctx, &user_pol,
769                                            infolevel, &cli->user_session_key,
770                                            &ctr);
771         if (!NT_STATUS_IS_OK(status)) {
772                 goto done;
773         }
774
775         rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
776         cli_rpc_pipe_close(pipe_hnd);
777
778         status = NT_STATUS_OK;
779  done:
780         if (cli) {
781                 cli_shutdown(cli);
782         }
783
784         return status;
785 }
786
787 /****************************************************************
788 ****************************************************************/
789
790 static bool libnet_join_unjoindomain_remove_secrets(TALLOC_CTX *mem_ctx,
791                                                     struct libnet_UnjoinCtx *r)
792 {
793         if (!secrets_delete_machine_password_ex(lp_workgroup())) {
794                 return false;
795         }
796
797         if (!secrets_delete_domain_sid(lp_workgroup())) {
798                 return false;
799         }
800
801         return true;
802 }
803
804 /****************************************************************
805 ****************************************************************/
806
807 static NTSTATUS libnet_join_unjoindomain_rpc(TALLOC_CTX *mem_ctx,
808                                              struct libnet_UnjoinCtx *r)
809 {
810         struct cli_state *cli = NULL;
811         struct rpc_pipe_client *pipe_hnd = NULL;
812         POLICY_HND sam_pol, domain_pol, user_pol;
813         NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
814         char *acct_name;
815         uint32 flags = 0x3e8;
816         const char *const_acct_name;
817         uint32 user_rid;
818         uint32 num_rids, *name_types, *user_rids;
819         SAM_USERINFO_CTR ctr, *qctr = NULL;
820         SAM_USER_INFO_16 p16;
821
822         status = cli_full_connection(&cli, NULL,
823                                      r->in.dc_name,
824                                      NULL, 0,
825                                      "IPC$", "IPC",
826                                      r->in.admin_account,
827                                      NULL,
828                                      r->in.admin_password,
829                                      0, Undefined, NULL);
830
831         if (!NT_STATUS_IS_OK(status)) {
832                 goto done;
833         }
834
835         pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_SAMR, &status);
836         if (!pipe_hnd) {
837                 goto done;
838         }
839
840         status = rpccli_samr_connect(pipe_hnd, mem_ctx,
841                                      SEC_RIGHTS_MAXIMUM_ALLOWED, &sam_pol);
842         if (!NT_STATUS_IS_OK(status)) {
843                 goto done;
844         }
845
846         status = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
847                                         &sam_pol,
848                                         SEC_RIGHTS_MAXIMUM_ALLOWED,
849                                         r->in.domain_sid,
850                                         &domain_pol);
851         if (!NT_STATUS_IS_OK(status)) {
852                 goto done;
853         }
854
855         acct_name = talloc_asprintf(mem_ctx, "%s$", r->in.machine_name);
856         strlower_m(acct_name);
857         const_acct_name = acct_name;
858
859         status = rpccli_samr_lookup_names(pipe_hnd, mem_ctx,
860                                           &domain_pol, flags, 1,
861                                           &const_acct_name,
862                                           &num_rids, &user_rids, &name_types);
863         if (!NT_STATUS_IS_OK(status)) {
864                 goto done;
865         }
866
867         if (name_types[0] != SID_NAME_USER) {
868                 status = NT_STATUS_INVALID_WORKSTATION;
869                 goto done;
870         }
871
872         user_rid = user_rids[0];
873
874         status = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
875                                       &domain_pol,
876                                       SEC_RIGHTS_MAXIMUM_ALLOWED,
877                                       user_rid,
878                                       &user_pol);
879         if (!NT_STATUS_IS_OK(status)) {
880                 goto done;
881         }
882
883         status = rpccli_samr_query_userinfo(pipe_hnd, mem_ctx,
884                                             &user_pol, 16, &qctr);
885         if (!NT_STATUS_IS_OK(status)) {
886                 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
887                 goto done;
888         }
889
890         ZERO_STRUCT(ctr);
891         ctr.switch_value = 16;
892         ctr.info.id16 = &p16;
893
894         p16.acb_info = qctr->info.id16->acb_info | ACB_DISABLED;
895
896         status = rpccli_samr_set_userinfo2(pipe_hnd, mem_ctx, &user_pol, 16,
897                                            &cli->user_session_key, &ctr);
898
899         rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
900
901 done:
902         if (pipe_hnd) {
903                 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
904                 rpccli_samr_Close(pipe_hnd, mem_ctx, &sam_pol);
905                 cli_rpc_pipe_close(pipe_hnd);
906         }
907
908         if (cli) {
909                 cli_shutdown(cli);
910         }
911
912         return status;
913 }
914
915 /****************************************************************
916 ****************************************************************/
917
918 static WERROR do_join_modify_vals_config(struct libnet_JoinCtx *r)
919 {
920         WERROR werr;
921         struct libnet_conf_ctx *ctx;
922
923         werr = libnet_conf_open(r, &ctx);
924         if (!W_ERROR_IS_OK(werr)) {
925                 goto done;
926         }
927
928         if (!(r->in.join_flags & WKSSVC_JOIN_FLAGS_JOIN_TYPE)) {
929
930                 werr = libnet_conf_set_global_parameter(ctx, "security", "user");
931                 if (!W_ERROR_IS_OK(werr)) {
932                         goto done;
933                 }
934
935                 werr = libnet_conf_set_global_parameter(ctx, "workgroup",
936                                                         r->in.domain_name);
937                 goto done;
938         }
939
940         werr = libnet_conf_set_global_parameter(ctx, "security", "domain");
941         if (!W_ERROR_IS_OK(werr)) {
942                 goto done;
943         }
944
945         werr = libnet_conf_set_global_parameter(ctx, "workgroup",
946                                                 r->out.netbios_domain_name);
947         if (!W_ERROR_IS_OK(werr)) {
948                 goto done;
949         }
950
951         if (r->out.domain_is_ad) {
952                 werr = libnet_conf_set_global_parameter(ctx, "security", "ads");
953                 if (!W_ERROR_IS_OK(werr)) {
954                         goto done;
955                 }
956
957                 werr = libnet_conf_set_global_parameter(ctx, "realm",
958                                                         r->out.dns_domain_name);
959         }
960
961 done:
962         libnet_conf_close(ctx);
963         return werr;
964 }
965
966 /****************************************************************
967 ****************************************************************/
968
969 static WERROR do_unjoin_modify_vals_config(struct libnet_UnjoinCtx *r)
970 {
971         WERROR werr = WERR_OK;
972         struct libnet_conf_ctx *ctx;
973
974         werr = libnet_conf_open(r, &ctx);
975         if (!W_ERROR_IS_OK(werr)) {
976                 goto done;
977         }
978
979         if (r->in.unjoin_flags & WKSSVC_JOIN_FLAGS_JOIN_TYPE) {
980
981                 werr = libnet_conf_set_global_parameter(ctx, "security", "user");
982                 if (!W_ERROR_IS_OK(werr)) {
983                         goto done;
984                 }
985         }
986
987         libnet_conf_delete_global_parameter(ctx, "realm");
988
989 done:
990         libnet_conf_close(ctx);
991         return werr;
992 }
993
994 /****************************************************************
995 ****************************************************************/
996
997 static WERROR do_JoinConfig(struct libnet_JoinCtx *r)
998 {
999         WERROR werr;
1000
1001         if (!W_ERROR_IS_OK(r->out.result)) {
1002                 return r->out.result;
1003         }
1004
1005         if (!r->in.modify_config) {
1006                 return WERR_OK;
1007         }
1008
1009         werr = do_join_modify_vals_config(r);
1010         if (!W_ERROR_IS_OK(werr)) {
1011                 return werr;
1012         }
1013
1014         r->out.modified_config = true;
1015         r->out.result = werr;
1016
1017         return werr;
1018 }
1019
1020 /****************************************************************
1021 ****************************************************************/
1022
1023 static WERROR do_UnjoinConfig(struct libnet_UnjoinCtx *r)
1024 {
1025         WERROR werr;
1026
1027         if (!W_ERROR_IS_OK(r->out.result)) {
1028                 return r->out.result;
1029         }
1030
1031         if (!r->in.modify_config) {
1032                 return WERR_OK;
1033         }
1034
1035         werr = do_unjoin_modify_vals_config(r);
1036         if (!W_ERROR_IS_OK(werr)) {
1037                 return werr;
1038         }
1039
1040         r->out.modified_config = true;
1041         r->out.result = werr;
1042
1043         return werr;
1044 }
1045
1046 /****************************************************************
1047 ****************************************************************/
1048
1049 static WERROR libnet_join_pre_processing(TALLOC_CTX *mem_ctx,
1050                                          struct libnet_JoinCtx *r)
1051 {
1052
1053         if (!r->in.domain_name) {
1054                 return WERR_INVALID_PARAM;
1055         }
1056
1057         if (r->in.modify_config && !lp_config_backend_is_registry()) {
1058                 return WERR_NOT_SUPPORTED;
1059         }
1060
1061         if (IS_DC) {
1062                 return WERR_SETUP_DOMAIN_CONTROLLER;
1063         }
1064
1065         if (!secrets_init()) {
1066                 libnet_join_set_error_string(mem_ctx, r,
1067                         "Unable to open secrets database");
1068                 return WERR_CAN_NOT_COMPLETE;
1069         }
1070
1071         return WERR_OK;
1072 }
1073
1074 /****************************************************************
1075 ****************************************************************/
1076
1077 static WERROR libnet_join_post_processing(TALLOC_CTX *mem_ctx,
1078                                           struct libnet_JoinCtx *r)
1079 {
1080         WERROR werr;
1081
1082         if (!W_ERROR_IS_OK(r->out.result)) {
1083                 return r->out.result;
1084         }
1085
1086         werr = do_JoinConfig(r);
1087         if (!W_ERROR_IS_OK(werr)) {
1088                 return werr;
1089         }
1090
1091         if (r->in.join_flags & WKSSVC_JOIN_FLAGS_JOIN_TYPE) {
1092                 saf_store(r->in.domain_name, r->in.dc_name);
1093         }
1094
1095         return WERR_OK;
1096 }
1097
1098 /****************************************************************
1099 ****************************************************************/
1100
1101 static int libnet_destroy_JoinCtx(struct libnet_JoinCtx *r)
1102 {
1103         if (r->in.ads) {
1104                 ads_destroy(&r->in.ads);
1105         }
1106
1107         return 0;
1108 }
1109
1110 /****************************************************************
1111 ****************************************************************/
1112
1113 static int libnet_destroy_UnjoinCtx(struct libnet_UnjoinCtx *r)
1114 {
1115         if (r->in.ads) {
1116                 ads_destroy(&r->in.ads);
1117         }
1118
1119         return 0;
1120 }
1121
1122 /****************************************************************
1123 ****************************************************************/
1124
1125 WERROR libnet_init_JoinCtx(TALLOC_CTX *mem_ctx,
1126                            struct libnet_JoinCtx **r)
1127 {
1128         struct libnet_JoinCtx *ctx;
1129
1130         ctx = talloc_zero(mem_ctx, struct libnet_JoinCtx);
1131         if (!ctx) {
1132                 return WERR_NOMEM;
1133         }
1134
1135         talloc_set_destructor(ctx, libnet_destroy_JoinCtx);
1136
1137         ctx->in.machine_name = talloc_strdup(mem_ctx, global_myname());
1138         W_ERROR_HAVE_NO_MEMORY(ctx->in.machine_name);
1139
1140         *r = ctx;
1141
1142         return WERR_OK;
1143 }
1144
1145 /****************************************************************
1146 ****************************************************************/
1147
1148 WERROR libnet_init_UnjoinCtx(TALLOC_CTX *mem_ctx,
1149                              struct libnet_UnjoinCtx **r)
1150 {
1151         struct libnet_UnjoinCtx *ctx;
1152
1153         ctx = talloc_zero(mem_ctx, struct libnet_UnjoinCtx);
1154         if (!ctx) {
1155                 return WERR_NOMEM;
1156         }
1157
1158         talloc_set_destructor(ctx, libnet_destroy_UnjoinCtx);
1159
1160         ctx->in.machine_name = talloc_strdup(mem_ctx, global_myname());
1161         W_ERROR_HAVE_NO_MEMORY(ctx->in.machine_name);
1162
1163         *r = ctx;
1164
1165         return WERR_OK;
1166 }
1167
1168 /****************************************************************
1169 ****************************************************************/
1170
1171 static WERROR libnet_DomainJoin(TALLOC_CTX *mem_ctx,
1172                                 struct libnet_JoinCtx *r)
1173 {
1174         NTSTATUS status;
1175 #ifdef WITH_ADS
1176         ADS_STATUS ads_status;
1177 #endif /* WITH_ADS */
1178
1179         if (!r->in.dc_name) {
1180                 struct DS_DOMAIN_CONTROLLER_INFO *info;
1181                 status = dsgetdcname(mem_ctx,
1182                                      r->in.domain_name,
1183                                      NULL,
1184                                      NULL,
1185                                      DS_DIRECTORY_SERVICE_REQUIRED |
1186                                      DS_WRITABLE_REQUIRED |
1187                                      DS_RETURN_DNS_NAME,
1188                                      &info);
1189                 if (!NT_STATUS_IS_OK(status)) {
1190                         libnet_join_set_error_string(mem_ctx, r,
1191                                 "failed to find DC for domain %s",
1192                                 r->in.domain_name,
1193                                 get_friendly_nt_error_msg(status));
1194                         return WERR_DOMAIN_CONTROLLER_NOT_FOUND;
1195                 }
1196
1197                 r->in.dc_name = talloc_strdup(mem_ctx,
1198                                               info->domain_controller_name);
1199                 W_ERROR_HAVE_NO_MEMORY(r->in.dc_name);
1200         }
1201
1202 #ifdef WITH_ADS
1203         if (r->in.account_ou) {
1204
1205                 ads_status = libnet_join_connect_ads(mem_ctx, r);
1206                 if (!ADS_ERR_OK(ads_status)) {
1207                         return WERR_DEFAULT_JOIN_REQUIRED;
1208                 }
1209
1210                 ads_status = libnet_join_precreate_machine_acct(mem_ctx, r);
1211                 if (!ADS_ERR_OK(ads_status)) {
1212                         libnet_join_set_error_string(mem_ctx, r,
1213                                 "failed to precreate account in ou %s: %s",
1214                                 r->in.account_ou,
1215                                 ads_errstr(ads_status));
1216                         return WERR_DEFAULT_JOIN_REQUIRED;
1217                 }
1218
1219                 r->in.join_flags &= ~WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE;
1220         }
1221 #endif /* WITH_ADS */
1222
1223         status = libnet_join_joindomain_rpc(mem_ctx, r);
1224         if (!NT_STATUS_IS_OK(status)) {
1225                 libnet_join_set_error_string(mem_ctx, r,
1226                         "failed to join domain over rpc: %s",
1227                         get_friendly_nt_error_msg(status));
1228                 if (NT_STATUS_EQUAL(status, NT_STATUS_USER_EXISTS)) {
1229                         return WERR_SETUP_ALREADY_JOINED;
1230                 }
1231                 return ntstatus_to_werror(status);
1232         }
1233
1234         if (!libnet_join_joindomain_store_secrets(mem_ctx, r)) {
1235                 return WERR_SETUP_NOT_JOINED;
1236         }
1237
1238 #ifdef WITH_ADS
1239         if (r->out.domain_is_ad) {
1240                 ads_status  = libnet_join_post_processing_ads(mem_ctx, r);
1241                 if (!ADS_ERR_OK(ads_status)) {
1242                         return WERR_GENERAL_FAILURE;
1243                 }
1244         }
1245 #endif /* WITH_ADS */
1246
1247         return WERR_OK;
1248 }
1249
1250 /****************************************************************
1251 ****************************************************************/
1252
1253 WERROR libnet_Join(TALLOC_CTX *mem_ctx,
1254                    struct libnet_JoinCtx *r)
1255 {
1256         WERROR werr;
1257
1258         if (r->in.debug) {
1259                 LIBNET_JOIN_IN_DUMP_CTX(mem_ctx, r);
1260         }
1261
1262         werr = libnet_join_pre_processing(mem_ctx, r);
1263         if (!W_ERROR_IS_OK(werr)) {
1264                 goto done;
1265         }
1266
1267         if (r->in.join_flags & WKSSVC_JOIN_FLAGS_JOIN_TYPE) {
1268                 werr = libnet_DomainJoin(mem_ctx, r);
1269                 if (!W_ERROR_IS_OK(werr)) {
1270                         goto done;
1271                 }
1272         }
1273
1274         werr = libnet_join_post_processing(mem_ctx, r);
1275         if (!W_ERROR_IS_OK(werr)) {
1276                 goto done;
1277         }
1278  done:
1279         r->out.result = werr;
1280
1281         if (r->in.debug) {
1282                 LIBNET_JOIN_OUT_DUMP_CTX(mem_ctx, r);
1283         }
1284         return werr;
1285 }
1286
1287 /****************************************************************
1288 ****************************************************************/
1289
1290 static WERROR libnet_DomainUnjoin(TALLOC_CTX *mem_ctx,
1291                                   struct libnet_UnjoinCtx *r)
1292 {
1293         NTSTATUS status;
1294
1295         if (!r->in.domain_sid) {
1296                 struct dom_sid sid;
1297                 if (!secrets_fetch_domain_sid(lp_workgroup(), &sid)) {
1298                         libnet_unjoin_set_error_string(mem_ctx, r,
1299                                 "Unable to fetch domain sid: are we joined?");
1300                         return WERR_SETUP_NOT_JOINED;
1301                 }
1302                 r->in.domain_sid = sid_dup_talloc(mem_ctx, &sid);
1303                 W_ERROR_HAVE_NO_MEMORY(r->in.domain_sid);
1304         }
1305
1306         if (!r->in.dc_name) {
1307                 struct DS_DOMAIN_CONTROLLER_INFO *info;
1308                 status = dsgetdcname(mem_ctx,
1309                                      r->in.domain_name,
1310                                      NULL,
1311                                      NULL,
1312                                      DS_DIRECTORY_SERVICE_REQUIRED |
1313                                      DS_WRITABLE_REQUIRED |
1314                                      DS_RETURN_DNS_NAME,
1315                                      &info);
1316                 if (!NT_STATUS_IS_OK(status)) {
1317                         libnet_unjoin_set_error_string(mem_ctx, r,
1318                                 "failed to find DC for domain %s",
1319                                 r->in.domain_name,
1320                                 get_friendly_nt_error_msg(status));
1321                         return WERR_DOMAIN_CONTROLLER_NOT_FOUND;
1322                 }
1323
1324                 r->in.dc_name = talloc_strdup(mem_ctx,
1325                                               info->domain_controller_name);
1326                 W_ERROR_HAVE_NO_MEMORY(r->in.dc_name);
1327         }
1328
1329         status = libnet_join_unjoindomain_rpc(mem_ctx, r);
1330         if (!NT_STATUS_IS_OK(status)) {
1331                 libnet_unjoin_set_error_string(mem_ctx, r,
1332                         "failed to disable machine account via rpc: %s",
1333                         get_friendly_nt_error_msg(status));
1334                 if (NT_STATUS_EQUAL(status, NT_STATUS_NO_SUCH_USER)) {
1335                         return WERR_SETUP_NOT_JOINED;
1336                 }
1337                 return ntstatus_to_werror(status);
1338         }
1339
1340 #ifdef WITH_ADS
1341         if (r->in.unjoin_flags & WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE) {
1342                 ADS_STATUS ads_status;
1343                 libnet_unjoin_connect_ads(mem_ctx, r);
1344                 ads_status = libnet_unjoin_remove_machine_acct(mem_ctx, r);
1345                 if (!ADS_ERR_OK(ads_status)) {
1346                         libnet_unjoin_set_error_string(mem_ctx, r,
1347                                 "failed to remove machine account from AD: %s",
1348                                 ads_errstr(ads_status));
1349                 }
1350         }
1351 #endif /* WITH_ADS */
1352
1353         libnet_join_unjoindomain_remove_secrets(mem_ctx, r);
1354
1355         return WERR_OK;
1356 }
1357
1358 /****************************************************************
1359 ****************************************************************/
1360
1361 static WERROR libnet_unjoin_pre_processing(TALLOC_CTX *mem_ctx,
1362                                            struct libnet_UnjoinCtx *r)
1363 {
1364         if (r->in.modify_config && !lp_config_backend_is_registry()) {
1365                 return WERR_NOT_SUPPORTED;
1366         }
1367
1368         if (!secrets_init()) {
1369                 libnet_unjoin_set_error_string(mem_ctx, r,
1370                         "Unable to open secrets database");
1371                 return WERR_CAN_NOT_COMPLETE;
1372         }
1373
1374         return WERR_OK;
1375 }
1376
1377
1378 /****************************************************************
1379 ****************************************************************/
1380
1381 WERROR libnet_Unjoin(TALLOC_CTX *mem_ctx,
1382                      struct libnet_UnjoinCtx *r)
1383 {
1384         WERROR werr;
1385
1386         if (r->in.debug) {
1387                 LIBNET_UNJOIN_IN_DUMP_CTX(mem_ctx, r);
1388         }
1389
1390         werr = libnet_unjoin_pre_processing(mem_ctx, r);
1391         if (!W_ERROR_IS_OK(werr)) {
1392                 goto done;
1393         }
1394
1395         if (r->in.unjoin_flags & WKSSVC_JOIN_FLAGS_JOIN_TYPE) {
1396                 werr = libnet_DomainUnjoin(mem_ctx, r);
1397                 if (!W_ERROR_IS_OK(werr)) {
1398                         goto done;
1399                 }
1400         }
1401
1402         werr = do_UnjoinConfig(r);
1403         if (!W_ERROR_IS_OK(werr)) {
1404                 goto done;
1405         }
1406
1407  done:
1408         r->out.result = werr;
1409
1410         if (r->in.debug) {
1411                 LIBNET_UNJOIN_OUT_DUMP_CTX(mem_ctx, r);
1412         }
1413
1414         return werr;
1415 }