Use rpccli_samr_CreateUser2() all over the place.
[kai/samba.git] / source3 / utils / net_rpc_join.c
1 /* 
2    Samba Unix/Linux SMB client library 
3    Distributed SMB/CIFS Server Management Utility 
4    Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
5    Copyright (C) Tim Potter     2001
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 #include "includes.h"
21 #include "utils/net.h"
22
23 /* Macro for checking RPC error codes to make things more readable */
24
25 #define CHECK_RPC_ERR(rpc, msg) \
26         if (!NT_STATUS_IS_OK(result = rpc)) { \
27                 DEBUG(0, (msg ": %s\n", nt_errstr(result))); \
28                 goto done; \
29         }
30
31 #define CHECK_RPC_ERR_DEBUG(rpc, debug_args) \
32         if (!NT_STATUS_IS_OK(result = rpc)) { \
33                 DEBUG(0, debug_args); \
34                 goto done; \
35         }
36
37 static void init_lsa_String(struct lsa_String *name, const char *s)
38 {
39         name->string = s;
40 }
41
42
43 /**
44  * confirm that a domain join is still valid
45  *
46  * @return A shell status integer (0 for success)
47  *
48  **/
49 NTSTATUS net_rpc_join_ok(const char *domain, const char *server,
50                          struct sockaddr_storage *pss)
51 {
52         enum security_types sec;
53         unsigned int conn_flags = NET_FLAGS_PDC;
54         uint32 neg_flags = NETLOGON_NEG_SELECT_AUTH2_FLAGS|NETLOGON_NEG_SCHANNEL;
55         struct cli_state *cli = NULL;
56         struct rpc_pipe_client *pipe_hnd = NULL;
57         struct rpc_pipe_client *netlogon_pipe = NULL;
58         NTSTATUS ntret = NT_STATUS_UNSUCCESSFUL;
59
60         sec = (enum security_types)lp_security();
61
62         if (sec == SEC_ADS) {
63                 /* Connect to IPC$ using machine account's credentials. We don't use anonymous
64                    connection here, as it may be denied by server's local policy. */
65                 net_use_machine_account();
66
67         } else {
68                 /* some servers (e.g. WinNT) don't accept machine-authenticated
69                    smb connections */
70                 conn_flags |= NET_FLAGS_ANONYMOUS;
71         }
72
73         /* Connect to remote machine */
74         ntret = net_make_ipc_connection_ex(domain, server, pss, conn_flags, &cli);
75         if (!NT_STATUS_IS_OK(ntret)) {
76                 return ntret;
77         }
78
79         /* Setup the creds as though we're going to do schannel... */
80         netlogon_pipe = get_schannel_session_key(cli, domain, &neg_flags, &ntret);
81
82         /* We return NT_STATUS_INVALID_NETWORK_RESPONSE if the server is refusing
83            to negotiate schannel, but the creds were set up ok. That'll have to do. */
84
85         if (!netlogon_pipe) {
86                 if (NT_STATUS_EQUAL(ntret, NT_STATUS_INVALID_NETWORK_RESPONSE)) {
87                         cli_shutdown(cli);
88                         return NT_STATUS_OK;
89                 } else {
90                         DEBUG(0,("net_rpc_join_ok: failed to get schannel session "
91                                         "key from server %s for domain %s. Error was %s\n",
92                                 cli->desthost, domain, nt_errstr(ntret) ));
93                         cli_shutdown(cli);
94                         return ntret;
95                 }
96         }
97
98         /* Only do the rest of the schannel test if the client is allowed to do this. */
99         if (!lp_client_schannel()) {
100                 cli_shutdown(cli);
101                 /* We're good... */
102                 return ntret;
103         }
104
105         pipe_hnd = cli_rpc_pipe_open_schannel_with_key(cli, PI_NETLOGON,
106                                 PIPE_AUTH_LEVEL_PRIVACY,
107                                 domain, netlogon_pipe->dc, &ntret);
108
109         if (!pipe_hnd) {
110                 DEBUG(0,("net_rpc_join_ok: failed to open schannel session "
111                                 "on netlogon pipe to server %s for domain %s. Error was %s\n",
112                         cli->desthost, domain, nt_errstr(ntret) ));
113                 /*
114                  * Note: here, we have:
115                  * (pipe_hnd != NULL) if and only if NT_STATUS_IS_OK(ntret)
116                  */
117         }
118
119         cli_shutdown(cli);
120         return ntret;
121 }
122
123 /**
124  * Join a domain using the administrator username and password
125  *
126  * @param argc  Standard main() style argc
127  * @param argc  Standard main() style argv.  Initial components are already
128  *              stripped.  Currently not used.
129  * @return A shell status integer (0 for success)
130  *
131  **/
132
133 int net_rpc_join_newstyle(int argc, const char **argv) 
134 {
135
136         /* libsmb variables */
137
138         struct cli_state *cli;
139         TALLOC_CTX *mem_ctx;
140         uint32 acb_info = ACB_WSTRUST;
141         uint32 neg_flags = NETLOGON_NEG_SELECT_AUTH2_FLAGS|(lp_client_schannel() ? NETLOGON_NEG_SCHANNEL : 0);
142         uint32 sec_channel_type;
143         struct rpc_pipe_client *pipe_hnd = NULL;
144
145         /* rpc variables */
146
147         POLICY_HND lsa_pol, sam_pol, domain_pol, user_pol;
148         DOM_SID *domain_sid;
149         uint32 user_rid;
150
151         /* Password stuff */
152
153         char *clear_trust_password = NULL;
154         uchar pwbuf[516];
155         SAM_USERINFO_CTR ctr;
156         SAM_USER_INFO_24 p24;
157         SAM_USER_INFO_16 p16;
158         uchar md4_trust_password[16];
159
160         /* Misc */
161
162         NTSTATUS result;
163         int retval = 1;
164         const char *domain = NULL;
165         uint32 num_rids, *name_types, *user_rids;
166         uint32 flags = 0x3e8;
167         char *acct_name;
168         const char *const_acct_name;
169         struct lsa_String lsa_acct_name;
170         uint32 acct_flags=0;
171         uint32_t access_granted = 0;
172
173         /* check what type of join */
174         if (argc >= 0) {
175                 sec_channel_type = get_sec_channel_type(argv[0]);
176         } else {
177                 sec_channel_type = get_sec_channel_type(NULL);
178         }
179
180         switch (sec_channel_type) {
181         case SEC_CHAN_WKSTA:
182                 acb_info = ACB_WSTRUST;
183                 break;
184         case SEC_CHAN_BDC:
185                 acb_info = ACB_SVRTRUST;
186                 break;
187 #if 0
188         case SEC_CHAN_DOMAIN:
189                 acb_info = ACB_DOMTRUST;
190                 break;
191 #endif
192         }
193
194         /* Make authenticated connection to remote machine */
195
196         result = net_make_ipc_connection(NET_FLAGS_PDC, &cli);
197         if (!NT_STATUS_IS_OK(result)) {
198                 return 1;
199         }
200
201         if (!(mem_ctx = talloc_init("net_rpc_join_newstyle"))) {
202                 DEBUG(0, ("Could not initialise talloc context\n"));
203                 goto done;
204         }
205
206         /* Fetch domain sid */
207
208         pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_LSARPC, &result);
209         if (!pipe_hnd) {
210                 DEBUG(0, ("Error connecting to LSA pipe. Error was %s\n",
211                         nt_errstr(result) ));
212                 goto done;
213         }
214
215
216         CHECK_RPC_ERR(rpccli_lsa_open_policy(pipe_hnd, mem_ctx, True,
217                                           SEC_RIGHTS_MAXIMUM_ALLOWED,
218                                           &lsa_pol),
219                       "error opening lsa policy handle");
220
221         CHECK_RPC_ERR(rpccli_lsa_query_info_policy(pipe_hnd, mem_ctx, &lsa_pol,
222                                                 5, &domain, &domain_sid),
223                       "error querying info policy");
224
225         rpccli_lsa_Close(pipe_hnd, mem_ctx, &lsa_pol);
226         cli_rpc_pipe_close(pipe_hnd); /* Done with this pipe */
227
228         /* Bail out if domain didn't get set. */
229         if (!domain) {
230                 DEBUG(0, ("Could not get domain name.\n"));
231                 goto done;
232         }
233
234         /* Create domain user */
235         pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_SAMR, &result);
236         if (!pipe_hnd) {
237                 DEBUG(0, ("Error connecting to SAM pipe. Error was %s\n",
238                         nt_errstr(result) ));
239                 goto done;
240         }
241
242         CHECK_RPC_ERR(rpccli_samr_connect(pipe_hnd, mem_ctx, 
243                                        SEC_RIGHTS_MAXIMUM_ALLOWED,
244                                        &sam_pol),
245                       "could not connect to SAM database");
246
247
248         CHECK_RPC_ERR(rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
249                                              &sam_pol,
250                                              SEC_RIGHTS_MAXIMUM_ALLOWED,
251                                              domain_sid,
252                                              &domain_pol),
253                       "could not open domain");
254
255         /* Create domain user */
256         if ((acct_name = talloc_asprintf(mem_ctx, "%s$", global_myname())) == NULL) {
257                 result = NT_STATUS_NO_MEMORY;
258                 goto done;
259         }
260         strlower_m(acct_name);
261         const_acct_name = acct_name;
262
263         init_lsa_String(&lsa_acct_name, acct_name);
264
265         acct_flags = SEC_GENERIC_READ | SEC_GENERIC_WRITE | SEC_GENERIC_EXECUTE |
266                      SEC_STD_WRITE_DAC | SEC_STD_DELETE |
267                      SAMR_USER_ACCESS_SET_PASSWORD |
268                      SAMR_USER_ACCESS_GET_ATTRIBUTES |
269                      SAMR_USER_ACCESS_SET_ATTRIBUTES;
270
271         DEBUG(10, ("Creating account with flags: %d\n",acct_flags));
272
273         result = rpccli_samr_CreateUser2(pipe_hnd, mem_ctx,
274                                          &domain_pol,
275                                          &lsa_acct_name,
276                                          acb_info,
277                                          acct_flags,
278                                          &user_pol,
279                                          &access_granted,
280                                          &user_rid);
281
282         if (!NT_STATUS_IS_OK(result) && 
283             !NT_STATUS_EQUAL(result, NT_STATUS_USER_EXISTS)) {
284                 d_fprintf(stderr, "Creation of workstation account failed\n");
285
286                 /* If NT_STATUS_ACCESS_DENIED then we have a valid
287                    username/password combo but the user does not have
288                    administrator access. */
289
290                 if (NT_STATUS_V(result) == NT_STATUS_V(NT_STATUS_ACCESS_DENIED))
291                         d_fprintf(stderr, "User specified does not have administrator privileges\n");
292
293                 goto done;
294         }
295
296         /* We *must* do this.... don't ask... */
297
298         if (NT_STATUS_IS_OK(result)) {
299                 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
300         }
301
302         CHECK_RPC_ERR_DEBUG(rpccli_samr_lookup_names(pipe_hnd, mem_ctx,
303                                                   &domain_pol, flags,
304                                                   1, &const_acct_name, 
305                                                   &num_rids,
306                                                   &user_rids, &name_types),
307                             ("error looking up rid for user %s: %s\n",
308                              acct_name, nt_errstr(result)));
309
310         if (name_types[0] != SID_NAME_USER) {
311                 DEBUG(0, ("%s is not a user account (type=%d)\n", acct_name, name_types[0]));
312                 goto done;
313         }
314
315         user_rid = user_rids[0];
316                 
317         /* Open handle on user */
318
319         CHECK_RPC_ERR_DEBUG(
320                 rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
321                                      &domain_pol,
322                                      SEC_RIGHTS_MAXIMUM_ALLOWED,
323                                      user_rid,
324                                      &user_pol),
325                 ("could not re-open existing user %s: %s\n",
326                  acct_name, nt_errstr(result)));
327         
328         /* Create a random machine account password */
329
330         { 
331                 char *str;
332                 str = generate_random_str(DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH);
333                 clear_trust_password = SMB_STRDUP(str);
334                 E_md4hash(clear_trust_password, md4_trust_password);
335         }
336
337         encode_pw_buffer(pwbuf, clear_trust_password, STR_UNICODE);
338
339         /* Set password on machine account */
340
341         ZERO_STRUCT(ctr);
342         ZERO_STRUCT(p24);
343
344         init_sam_user_info24(&p24, (char *)pwbuf,24);
345
346         ctr.switch_value = 24;
347         ctr.info.id24 = &p24;
348
349         CHECK_RPC_ERR(rpccli_samr_set_userinfo(pipe_hnd, mem_ctx, &user_pol, 24, 
350                                             &cli->user_session_key, &ctr),
351                       "error setting trust account password");
352
353         /* Why do we have to try to (re-)set the ACB to be the same as what
354            we passed in the samr_create_dom_user() call?  When a NT
355            workstation is joined to a domain by an administrator the
356            acb_info is set to 0x80.  For a normal user with "Add
357            workstations to the domain" rights the acb_info is 0x84.  I'm
358            not sure whether it is supposed to make a difference or not.  NT
359            seems to cope with either value so don't bomb out if the set
360            userinfo2 level 0x10 fails.  -tpot */
361
362         ZERO_STRUCT(ctr);
363         ctr.switch_value = 16;
364         ctr.info.id16 = &p16;
365
366         init_sam_user_info16(&p16, acb_info);
367
368         /* Ignoring the return value is necessary for joining a domain
369            as a normal user with "Add workstation to domain" privilege. */
370
371         result = rpccli_samr_set_userinfo2(pipe_hnd, mem_ctx, &user_pol, 16, 
372                                         &cli->user_session_key, &ctr);
373
374         rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
375         cli_rpc_pipe_close(pipe_hnd); /* Done with this pipe */
376
377         /* Now check the whole process from top-to-bottom */
378
379         pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_NETLOGON, &result);
380         if (!pipe_hnd) {
381                 DEBUG(0,("Error connecting to NETLOGON pipe. Error was %s\n",
382                         nt_errstr(result) ));
383                 goto done;
384         }
385
386         result = rpccli_netlogon_setup_creds(pipe_hnd,
387                                         cli->desthost, /* server name */
388                                         domain,        /* domain */
389                                         global_myname(), /* client name */
390                                         global_myname(), /* machine account name */
391                                         md4_trust_password,
392                                         sec_channel_type,
393                                         &neg_flags);
394
395         if (!NT_STATUS_IS_OK(result)) {
396                 DEBUG(0, ("Error in domain join verification (credential setup failed): %s\n\n",
397                           nt_errstr(result)));
398
399                 if ( NT_STATUS_EQUAL(result, NT_STATUS_ACCESS_DENIED) &&
400                      (sec_channel_type == SEC_CHAN_BDC) ) {
401                         d_fprintf(stderr, "Please make sure that no computer account\n"
402                                  "named like this machine (%s) exists in the domain\n",
403                                  global_myname());
404                 }
405
406                 goto done;
407         }
408
409         /* We can only check the schannel connection if the client is allowed
410            to do this and the server supports it. If not, just assume success
411            (after all the rpccli_netlogon_setup_creds() succeeded, and we'll
412            do the same again (setup creds) in net_rpc_join_ok(). JRA. */
413
414         if (lp_client_schannel() && (neg_flags & NETLOGON_NEG_SCHANNEL)) {
415                 struct rpc_pipe_client *netlogon_schannel_pipe = 
416                                                 cli_rpc_pipe_open_schannel_with_key(cli,
417                                                         PI_NETLOGON,
418                                                         PIPE_AUTH_LEVEL_PRIVACY,
419                                                         domain,
420                                                         pipe_hnd->dc,
421                                                         &result);
422
423                 if (!NT_STATUS_IS_OK(result)) {
424                         DEBUG(0, ("Error in domain join verification (schannel setup failed): %s\n\n",
425                                   nt_errstr(result)));
426
427                         if ( NT_STATUS_EQUAL(result, NT_STATUS_ACCESS_DENIED) &&
428                              (sec_channel_type == SEC_CHAN_BDC) ) {
429                                 d_fprintf(stderr, "Please make sure that no computer account\n"
430                                          "named like this machine (%s) exists in the domain\n",
431                                          global_myname());
432                         }
433
434                         goto done;
435                 }
436                 cli_rpc_pipe_close(netlogon_schannel_pipe);
437         }
438
439         cli_rpc_pipe_close(pipe_hnd);
440
441         /* Now store the secret in the secrets database */
442
443         strupper_m(CONST_DISCARD(char *, domain));
444
445         if (!secrets_store_domain_sid(domain, domain_sid)) {
446                 DEBUG(0, ("error storing domain sid for %s\n", domain));
447                 goto done;
448         }
449
450         if (!secrets_store_machine_password(clear_trust_password, domain, sec_channel_type)) {
451                 DEBUG(0, ("error storing plaintext domain secrets for %s\n", domain));
452         }
453
454         /* double-check, connection from scratch */
455         result = net_rpc_join_ok(domain, cli->desthost, &cli->dest_ss);
456         retval = NT_STATUS_IS_OK(result) ? 0 : -1;
457
458 done:
459
460         /* Display success or failure */
461
462         if (domain) {
463                 if (retval != 0) {
464                         fprintf(stderr,"Unable to join domain %s.\n",domain);
465                 } else {
466                         printf("Joined domain %s.\n",domain);
467                 }
468         }
469         
470         cli_shutdown(cli);
471
472         SAFE_FREE(clear_trust_password);
473
474         return retval;
475 }
476
477 /**
478  * check that a join is OK
479  *
480  * @return A shell status integer (0 for success)
481  *
482  **/
483 int net_rpc_testjoin(int argc, const char **argv) 
484 {
485         char *domain = smb_xstrdup(opt_target_workgroup);
486         NTSTATUS nt_status;
487
488         /* Display success or failure */
489         nt_status = net_rpc_join_ok(domain, NULL, NULL);
490         if (!NT_STATUS_IS_OK(nt_status)) {
491                 fprintf(stderr,"Join to domain '%s' is not valid: %s\n",
492                         nt_errstr(nt_status), domain);
493                 free(domain);
494                 return -1;
495         }
496
497         printf("Join to '%s' is OK\n",domain);
498         free(domain);
499         return 0;
500 }