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