Refactoring: Change calling conventions for cli_rpc_pipe_open_noauth
[nivanova/samba-autobuild/.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    Copyright (C) 2008 Guenther Deschner
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21 #include "includes.h"
22 #include "utils/net.h"
23
24 /* Macro for checking RPC error codes to make things more readable */
25
26 #define CHECK_RPC_ERR(rpc, msg) \
27         if (!NT_STATUS_IS_OK(result = rpc)) { \
28                 DEBUG(0, (msg ": %s\n", nt_errstr(result))); \
29                 goto done; \
30         }
31
32 #define CHECK_RPC_ERR_DEBUG(rpc, debug_args) \
33         if (!NT_STATUS_IS_OK(result = rpc)) { \
34                 DEBUG(0, debug_args); \
35                 goto done; \
36         }
37
38 /**
39  * confirm that a domain join is still valid
40  *
41  * @return A shell status integer (0 for success)
42  *
43  **/
44 NTSTATUS net_rpc_join_ok(struct net_context *c, const char *domain,
45                          const char *server, struct sockaddr_storage *pss)
46 {
47         enum security_types sec;
48         unsigned int conn_flags = NET_FLAGS_PDC;
49         uint32_t neg_flags = NETLOGON_NEG_AUTH2_ADS_FLAGS;
50         struct cli_state *cli = NULL;
51         struct rpc_pipe_client *pipe_hnd = NULL;
52         struct rpc_pipe_client *netlogon_pipe = NULL;
53         NTSTATUS ntret = NT_STATUS_UNSUCCESSFUL;
54
55         sec = (enum security_types)lp_security();
56
57         if (sec == SEC_ADS) {
58                 /* Connect to IPC$ using machine account's credentials. We don't use anonymous
59                    connection here, as it may be denied by server's local policy. */
60                 net_use_machine_account(c);
61
62         } else {
63                 /* some servers (e.g. WinNT) don't accept machine-authenticated
64                    smb connections */
65                 conn_flags |= NET_FLAGS_ANONYMOUS;
66         }
67
68         /* Connect to remote machine */
69         ntret = net_make_ipc_connection_ex(c, domain, server, pss, conn_flags,
70                                            &cli);
71         if (!NT_STATUS_IS_OK(ntret)) {
72                 return ntret;
73         }
74
75         /* Setup the creds as though we're going to do schannel... */
76         netlogon_pipe = get_schannel_session_key(cli, domain, &neg_flags, &ntret);
77
78         /* We return NT_STATUS_INVALID_NETWORK_RESPONSE if the server is refusing
79            to negotiate schannel, but the creds were set up ok. That'll have to do. */
80
81         if (!netlogon_pipe) {
82                 if (NT_STATUS_EQUAL(ntret, NT_STATUS_INVALID_NETWORK_RESPONSE)) {
83                         cli_shutdown(cli);
84                         return NT_STATUS_OK;
85                 } else {
86                         DEBUG(0,("net_rpc_join_ok: failed to get schannel session "
87                                         "key from server %s for domain %s. Error was %s\n",
88                                 cli->desthost, domain, nt_errstr(ntret) ));
89                         cli_shutdown(cli);
90                         return ntret;
91                 }
92         }
93
94         /* Only do the rest of the schannel test if the client is allowed to do this. */
95         if (!lp_client_schannel()) {
96                 cli_shutdown(cli);
97                 /* We're good... */
98                 return ntret;
99         }
100
101         pipe_hnd = cli_rpc_pipe_open_schannel_with_key(cli, PI_NETLOGON,
102                                 PIPE_AUTH_LEVEL_PRIVACY,
103                                 domain, netlogon_pipe->dc, &ntret);
104
105         if (!pipe_hnd) {
106                 DEBUG(0,("net_rpc_join_ok: failed to open schannel session "
107                                 "on netlogon pipe to server %s for domain %s. Error was %s\n",
108                         cli->desthost, domain, nt_errstr(ntret) ));
109                 /*
110                  * Note: here, we have:
111                  * (pipe_hnd != NULL) if and only if NT_STATUS_IS_OK(ntret)
112                  */
113         }
114
115         cli_shutdown(cli);
116         return ntret;
117 }
118
119 /**
120  * Join a domain using the administrator username and password
121  *
122  * @param argc  Standard main() style argc
123  * @param argc  Standard main() style argv.  Initial components are already
124  *              stripped.  Currently not used.
125  * @return A shell status integer (0 for success)
126  *
127  **/
128
129 int net_rpc_join_newstyle(struct net_context *c, int argc, const char **argv)
130 {
131
132         /* libsmb variables */
133
134         struct cli_state *cli;
135         TALLOC_CTX *mem_ctx;
136         uint32 acb_info = ACB_WSTRUST;
137         uint32_t neg_flags = NETLOGON_NEG_AUTH2_ADS_FLAGS;
138         uint32 sec_channel_type;
139         struct rpc_pipe_client *pipe_hnd = NULL;
140
141         /* rpc variables */
142
143         POLICY_HND lsa_pol, sam_pol, domain_pol, user_pol;
144         DOM_SID *domain_sid;
145         uint32 user_rid;
146
147         /* Password stuff */
148
149         char *clear_trust_password = NULL;
150         uchar pwbuf[516];
151         uchar md4_trust_password[16];
152         union samr_UserInfo set_info;
153
154         /* Misc */
155
156         NTSTATUS result;
157         int retval = 1;
158         const char *domain = NULL;
159         char *acct_name;
160         struct lsa_String lsa_acct_name;
161         uint32 acct_flags=0;
162         uint32_t access_granted = 0;
163         union lsa_PolicyInformation *info = NULL;
164         struct samr_Ids user_rids;
165         struct samr_Ids name_types;
166
167         /* check what type of join */
168         if (argc >= 0) {
169                 sec_channel_type = get_sec_channel_type(argv[0]);
170         } else {
171                 sec_channel_type = get_sec_channel_type(NULL);
172         }
173
174         switch (sec_channel_type) {
175         case SEC_CHAN_WKSTA:
176                 acb_info = ACB_WSTRUST;
177                 break;
178         case SEC_CHAN_BDC:
179                 acb_info = ACB_SVRTRUST;
180                 break;
181 #if 0
182         case SEC_CHAN_DOMAIN:
183                 acb_info = ACB_DOMTRUST;
184                 break;
185 #endif
186         }
187
188         /* Make authenticated connection to remote machine */
189
190         result = net_make_ipc_connection(c, NET_FLAGS_PDC, &cli);
191         if (!NT_STATUS_IS_OK(result)) {
192                 return 1;
193         }
194
195         if (!(mem_ctx = talloc_init("net_rpc_join_newstyle"))) {
196                 DEBUG(0, ("Could not initialise talloc context\n"));
197                 goto done;
198         }
199
200         /* Fetch domain sid */
201
202         result = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
203                                           &pipe_hnd);
204         if (!NT_STATUS_IS_OK(result)) {
205                 DEBUG(0, ("Error connecting to LSA pipe. Error was %s\n",
206                         nt_errstr(result) ));
207                 goto done;
208         }
209
210
211         CHECK_RPC_ERR(rpccli_lsa_open_policy(pipe_hnd, mem_ctx, true,
212                                           SEC_RIGHTS_MAXIMUM_ALLOWED,
213                                           &lsa_pol),
214                       "error opening lsa policy handle");
215
216         CHECK_RPC_ERR(rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
217                                                  &lsa_pol,
218                                                  LSA_POLICY_INFO_ACCOUNT_DOMAIN,
219                                                  &info),
220                       "error querying info policy");
221
222         domain = info->account_domain.name.string;
223         domain_sid = info->account_domain.sid;
224
225         rpccli_lsa_Close(pipe_hnd, mem_ctx, &lsa_pol);
226         TALLOC_FREE(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         result = cli_rpc_pipe_open_noauth(cli, &ndr_table_samr.syntax_id,
236                                           &pipe_hnd);
237         if (!NT_STATUS_IS_OK(result)) {
238                 DEBUG(0, ("Error connecting to SAM pipe. Error was %s\n",
239                         nt_errstr(result) ));
240                 goto done;
241         }
242
243         CHECK_RPC_ERR(rpccli_samr_Connect2(pipe_hnd, mem_ctx,
244                                            pipe_hnd->desthost,
245                                            SEC_RIGHTS_MAXIMUM_ALLOWED,
246                                            &sam_pol),
247                       "could not connect to SAM database");
248
249
250         CHECK_RPC_ERR(rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
251                                              &sam_pol,
252                                              SEC_RIGHTS_MAXIMUM_ALLOWED,
253                                              domain_sid,
254                                              &domain_pol),
255                       "could not open domain");
256
257         /* Create domain user */
258         if ((acct_name = talloc_asprintf(mem_ctx, "%s$", global_myname())) == NULL) {
259                 result = NT_STATUS_NO_MEMORY;
260                 goto done;
261         }
262         strlower_m(acct_name);
263
264         init_lsa_String(&lsa_acct_name, acct_name);
265
266         acct_flags = SEC_GENERIC_READ | SEC_GENERIC_WRITE | SEC_GENERIC_EXECUTE |
267                      SEC_STD_WRITE_DAC | SEC_STD_DELETE |
268                      SAMR_USER_ACCESS_SET_PASSWORD |
269                      SAMR_USER_ACCESS_GET_ATTRIBUTES |
270                      SAMR_USER_ACCESS_SET_ATTRIBUTES;
271
272         DEBUG(10, ("Creating account with flags: %d\n",acct_flags));
273
274         result = rpccli_samr_CreateUser2(pipe_hnd, mem_ctx,
275                                          &domain_pol,
276                                          &lsa_acct_name,
277                                          acb_info,
278                                          acct_flags,
279                                          &user_pol,
280                                          &access_granted,
281                                          &user_rid);
282
283         if (!NT_STATUS_IS_OK(result) && 
284             !NT_STATUS_EQUAL(result, NT_STATUS_USER_EXISTS)) {
285                 d_fprintf(stderr, "Creation of workstation account failed\n");
286
287                 /* If NT_STATUS_ACCESS_DENIED then we have a valid
288                    username/password combo but the user does not have
289                    administrator access. */
290
291                 if (NT_STATUS_V(result) == NT_STATUS_V(NT_STATUS_ACCESS_DENIED))
292                         d_fprintf(stderr, "User specified does not have administrator privileges\n");
293
294                 goto done;
295         }
296
297         /* We *must* do this.... don't ask... */
298
299         if (NT_STATUS_IS_OK(result)) {
300                 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
301         }
302
303         CHECK_RPC_ERR_DEBUG(rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
304                                                     &domain_pol,
305                                                     1,
306                                                     &lsa_acct_name,
307                                                     &user_rids,
308                                                     &name_types),
309                             ("error looking up rid for user %s: %s\n",
310                              acct_name, nt_errstr(result)));
311
312         if (name_types.ids[0] != SID_NAME_USER) {
313                 DEBUG(0, ("%s is not a user account (type=%d)\n", acct_name, name_types.ids[0]));
314                 goto done;
315         }
316
317         user_rid = user_rids.ids[0];
318
319         /* Open handle on user */
320
321         CHECK_RPC_ERR_DEBUG(
322                 rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
323                                      &domain_pol,
324                                      SEC_RIGHTS_MAXIMUM_ALLOWED,
325                                      user_rid,
326                                      &user_pol),
327                 ("could not re-open existing user %s: %s\n",
328                  acct_name, nt_errstr(result)));
329         
330         /* Create a random machine account password */
331
332         { 
333                 char *str;
334                 str = generate_random_str(DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH);
335                 clear_trust_password = SMB_STRDUP(str);
336                 E_md4hash(clear_trust_password, md4_trust_password);
337         }
338
339         encode_pw_buffer(pwbuf, clear_trust_password, STR_UNICODE);
340
341         /* Set password on machine account */
342
343         init_samr_user_info24(&set_info.info24, pwbuf, 24);
344
345         SamOEMhashBlob(set_info.info24.password.data, 516,
346                        &cli->user_session_key);
347
348         CHECK_RPC_ERR(rpccli_samr_SetUserInfo2(pipe_hnd, mem_ctx,
349                                                &user_pol,
350                                                24,
351                                                &set_info),
352                       "error setting trust account password");
353
354         /* Why do we have to try to (re-)set the ACB to be the same as what
355            we passed in the samr_create_dom_user() call?  When a NT
356            workstation is joined to a domain by an administrator the
357            acb_info is set to 0x80.  For a normal user with "Add
358            workstations to the domain" rights the acb_info is 0x84.  I'm
359            not sure whether it is supposed to make a difference or not.  NT
360            seems to cope with either value so don't bomb out if the set
361            userinfo2 level 0x10 fails.  -tpot */
362
363         set_info.info16.acct_flags = acb_info;
364
365         /* Ignoring the return value is necessary for joining a domain
366            as a normal user with "Add workstation to domain" privilege. */
367
368         result = rpccli_samr_SetUserInfo(pipe_hnd, mem_ctx,
369                                          &user_pol,
370                                          16,
371                                          &set_info);
372
373         rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
374         TALLOC_FREE(pipe_hnd); /* Done with this pipe */
375
376         /* Now check the whole process from top-to-bottom */
377
378         result = cli_rpc_pipe_open_noauth(cli, &ndr_table_netlogon.syntax_id,
379                                           &pipe_hnd);
380         if (!NT_STATUS_IS_OK(result)) {
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                 TALLOC_FREE(netlogon_schannel_pipe);
437         }
438
439         TALLOC_FREE(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(c, 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(struct net_context *c, int argc, const char **argv)
484 {
485         char *domain = smb_xstrdup(c->opt_target_workgroup);
486         NTSTATUS nt_status;
487
488         if (c->display_usage) {
489                 d_printf("Usage\n"
490                          "net rpc testjoin\n"
491                          "    Test if a join is OK\n");
492                 return 0;
493         }
494
495         /* Display success or failure */
496         nt_status = net_rpc_join_ok(c, domain, NULL, NULL);
497         if (!NT_STATUS_IS_OK(nt_status)) {
498                 fprintf(stderr,"Join to domain '%s' is not valid: %s\n",
499                         domain, nt_errstr(nt_status));
500                 free(domain);
501                 return -1;
502         }
503
504         printf("Join to '%s' is OK\n",domain);
505         free(domain);
506         return 0;
507 }