(merge from 3.0)
[kai/samba-autobuild/.git] / source / utils / net_rpc.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) 2002 Jim McDonough (jmcd@us.ibm.com)
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 2 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, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
20  
21 #include "includes.h"
22 #include "../utils/net.h"
23
24 /**
25  * @file net_rpc.c
26  *
27  * @brief RPC based subcommands for the 'net' utility.
28  *
29  * This file should contain much of the functionality that used to
30  * be found in rpcclient, execpt that the commands should change 
31  * less often, and the fucntionality should be sane (the user is not 
32  * expected to know a rid/sid before they conduct an operation etc.)
33  *
34  * @todo Perhaps eventually these should be split out into a number
35  * of files, as this could get quite big.
36  **/
37
38
39 /* A function of this type is passed to the 'run_rpc_command' wrapper */
40 typedef NTSTATUS (*rpc_command_fn)(const DOM_SID *, const char *, 
41                                    struct cli_state *, TALLOC_CTX *, int, const char **);
42
43 /**
44  * Many of the RPC functions need the domain sid.  This function gets
45  *  it at the start of every run 
46  *
47  * @param cli A cli_state already connected to the remote machine
48  *
49  * @return The Domain SID of the remote machine.
50  **/
51
52 static DOM_SID *net_get_remote_domain_sid(struct cli_state *cli, TALLOC_CTX *mem_ctx, char **domain_name)
53 {
54         DOM_SID *domain_sid;
55         POLICY_HND pol;
56         NTSTATUS result = NT_STATUS_OK;
57         uint32 info_class = 5;
58         
59         if (!cli_nt_session_open (cli, PI_LSARPC)) {
60                 fprintf(stderr, "could not initialise lsa pipe\n");
61                 goto error;
62         }
63         
64         result = cli_lsa_open_policy(cli, mem_ctx, False, 
65                                      SEC_RIGHTS_MAXIMUM_ALLOWED,
66                                      &pol);
67         if (!NT_STATUS_IS_OK(result)) {
68                 goto error;
69         }
70
71         result = cli_lsa_query_info_policy(cli, mem_ctx, &pol, info_class, 
72                                            domain_name, &domain_sid);
73         if (!NT_STATUS_IS_OK(result)) {
74  error:
75                 fprintf(stderr, "could not obtain sid for domain %s\n", cli->domain);
76
77                 if (!NT_STATUS_IS_OK(result)) {
78                         fprintf(stderr, "error: %s\n", nt_errstr(result));
79                 }
80
81                 exit(1);
82         }
83
84         cli_lsa_close(cli, mem_ctx, &pol);
85         cli_nt_session_close(cli);
86
87         return domain_sid;
88 }
89
90 /**
91  * Run a single RPC command, from start to finish.
92  *
93  * @param pipe_name the pipe to connect to (usually a PIPE_ constant)
94  * @param conn_flag a NET_FLAG_ combination.  Passed to 
95  *                   net_make_ipc_connection.
96  * @param argc  Standard main() style argc
97  * @param argc  Standard main() style argv.  Initial components are already
98  *              stripped
99  * @return A shell status integer (0 for success)
100  */
101
102 static int run_rpc_command(struct cli_state *cli_arg, const int pipe_idx, int conn_flags,
103                            rpc_command_fn fn,
104                            int argc, const char **argv) 
105 {
106         struct cli_state *cli = NULL;
107         TALLOC_CTX *mem_ctx;
108         NTSTATUS nt_status;
109         DOM_SID *domain_sid;
110         char *domain_name;
111
112         /* make use of cli_state handed over as an argument, if possible */
113         if (!cli_arg)
114                 cli = net_make_ipc_connection(conn_flags);
115         else
116                 cli = cli_arg;
117
118         if (!cli) {
119                 return -1;
120         }
121
122         /* Create mem_ctx */
123         
124         if (!(mem_ctx = talloc_init("run_rpc_command"))) {
125                 DEBUG(0, ("talloc_init() failed\n"));
126                 cli_shutdown(cli);
127                 return -1;
128         }
129         
130         domain_sid = net_get_remote_domain_sid(cli, mem_ctx, &domain_name);
131
132         if (!(conn_flags & NET_FLAGS_NO_PIPE)) {
133                 if (!cli_nt_session_open(cli, pipe_idx)) {
134                         DEBUG(0, ("Could not initialise pipe\n"));
135                 }
136         }
137         
138         nt_status = fn(domain_sid, domain_name, cli, mem_ctx, argc, argv);
139         
140         if (!NT_STATUS_IS_OK(nt_status)) {
141                 DEBUG(1, ("rpc command function failed! (%s)\n", nt_errstr(nt_status)));
142         } else {
143                 DEBUG(5, ("rpc command function succedded\n"));
144         }
145                 
146         if (!(conn_flags & NET_FLAGS_NO_PIPE)) {
147                 if (cli->nt_pipe_fnum)
148                         cli_nt_session_close(cli);
149         }
150
151         /* close the connection only if it was opened here */
152         if (!cli_arg)
153                 cli_shutdown(cli);
154         
155         talloc_destroy(mem_ctx);
156
157         return (!NT_STATUS_IS_OK(nt_status));
158 }
159
160
161 /****************************************************************************/
162
163
164 /** 
165  * Force a change of the trust acccount password.
166  *
167  * All parameters are provided by the run_rpc_command function, except for
168  * argc, argv which are passes through. 
169  *
170  * @param domain_sid The domain sid aquired from the remote server
171  * @param cli A cli_state connected to the server.
172  * @param mem_ctx Talloc context, destoyed on compleation of the function.
173  * @param argc  Standard main() style argc
174  * @param argc  Standard main() style argv.  Initial components are already
175  *              stripped
176  *
177  * @return Normal NTSTATUS return.
178  **/
179
180 static NTSTATUS rpc_changetrustpw_internals(const DOM_SID *domain_sid, const char *domain_name, 
181                                             struct cli_state *cli, TALLOC_CTX *mem_ctx, 
182                                             int argc, const char **argv) {
183         
184         return trust_pw_find_change_and_store_it(cli, mem_ctx, opt_target_workgroup);
185 }
186
187 /** 
188  * Force a change of the trust acccount password.
189  *
190  * @param argc  Standard main() style argc
191  * @param argc  Standard main() style argv.  Initial components are already
192  *              stripped
193  *
194  * @return A shell status integer (0 for success)
195  **/
196
197 int net_rpc_changetrustpw(int argc, const char **argv) 
198 {
199         return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC, 
200                                rpc_changetrustpw_internals,
201                                argc, argv);
202 }
203
204
205 /****************************************************************************/
206
207
208 /** 
209  * Join a domain, the old way.
210  *
211  * This uses 'machinename' as the inital password, and changes it. 
212  *
213  * The password should be created with 'server manager' or equiv first.
214  *
215  * All parameters are provided by the run_rpc_command function, except for
216  * argc, argv which are passes through. 
217  *
218  * @param domain_sid The domain sid aquired from the remote server
219  * @param cli A cli_state connected to the server.
220  * @param mem_ctx Talloc context, destoyed on compleation of the function.
221  * @param argc  Standard main() style argc
222  * @param argc  Standard main() style argv.  Initial components are already
223  *              stripped
224  *
225  * @return Normal NTSTATUS return.
226  **/
227
228 static NTSTATUS rpc_oldjoin_internals(const DOM_SID *domain_sid, const char *domain_name, 
229                                       struct cli_state *cli, 
230                                       TALLOC_CTX *mem_ctx, 
231                                       int argc, const char **argv) {
232         
233         fstring trust_passwd;
234         unsigned char orig_trust_passwd_hash[16];
235         NTSTATUS result;
236         uint32 sec_channel_type;
237
238         /* 
239            check what type of join - if the user want's to join as
240            a BDC, the server must agree that we are a BDC.
241         */
242         if (argc >= 0) {
243                 sec_channel_type = get_sec_channel_type(argv[0]);
244         } else {
245                 sec_channel_type = get_sec_channel_type(NULL);
246         }
247         
248         fstrcpy(trust_passwd, global_myname());
249         strlower_m(trust_passwd);
250
251         /*
252          * Machine names can be 15 characters, but the max length on
253          * a password is 14.  --jerry
254          */
255
256         trust_passwd[14] = '\0';
257
258         E_md4hash(trust_passwd, orig_trust_passwd_hash);
259
260         result = trust_pw_change_and_store_it(cli, mem_ctx, opt_target_workgroup,
261                                               orig_trust_passwd_hash,
262                                               sec_channel_type);
263
264         if (NT_STATUS_IS_OK(result))
265                 printf("Joined domain %s.\n",opt_target_workgroup);
266
267
268         if (!secrets_store_domain_sid(opt_target_workgroup, domain_sid)) {
269                 DEBUG(0, ("error storing domain sid for %s\n", opt_target_workgroup));
270                 result = NT_STATUS_UNSUCCESSFUL;
271         }
272
273         return result;
274 }
275
276 /** 
277  * Join a domain, the old way.
278  *
279  * @param argc  Standard main() style argc
280  * @param argc  Standard main() style argv.  Initial components are already
281  *              stripped
282  *
283  * @return A shell status integer (0 for success)
284  **/
285
286 static int net_rpc_perform_oldjoin(int argc, const char **argv)
287 {
288         return run_rpc_command(NULL, PI_NETLOGON, 
289                                NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC, 
290                                rpc_oldjoin_internals,
291                                argc, argv);
292 }
293
294 /** 
295  * Join a domain, the old way.  This function exists to allow
296  * the message to be displayed when oldjoin was explicitly 
297  * requested, but not when it was implied by "net rpc join"
298  *
299  * @param argc  Standard main() style argc
300  * @param argc  Standard main() style argv.  Initial components are already
301  *              stripped
302  *
303  * @return A shell status integer (0 for success)
304  **/
305
306 static int net_rpc_oldjoin(int argc, const char **argv) 
307 {
308         int rc = net_rpc_perform_oldjoin(argc, argv);
309
310         if (rc) {
311                 d_printf("Failed to join domain\n");
312         }
313
314         return rc;
315 }
316
317 /** 
318  * Basic usage function for 'net rpc join'
319  * @param argc  Standard main() style argc
320  * @param argc  Standard main() style argv.  Initial components are already
321  *              stripped
322  **/
323
324 static int rpc_join_usage(int argc, const char **argv) 
325 {       
326         d_printf("net rpc join -U <username>[%%password] <type>[options]\n"\
327                  "\t to join a domain with admin username & password\n"\
328                  "\t\t password will be prompted if needed and none is specified\n"\
329                  "\t <type> can be (default MEMBER)\n"\
330                  "\t\t BDC - Join as a BDC\n"\
331                  "\t\t PDC - Join as a PDC\n"\
332                  "\t\t MEMBER - Join as a MEMBER server\n");
333
334         net_common_flags_usage(argc, argv);
335         return -1;
336 }
337
338 /** 
339  * 'net rpc join' entrypoint.
340  * @param argc  Standard main() style argc
341  * @param argc  Standard main() style argv.  Initial components are already
342  *              stripped
343  *
344  * Main 'net_rpc_join()' (where the admain username/password is used) is 
345  * in net_rpc_join.c
346  * Try to just change the password, but if that doesn't work, use/prompt
347  * for a username/password.
348  **/
349
350 int net_rpc_join(int argc, const char **argv) 
351 {
352         if ((net_rpc_perform_oldjoin(argc, argv) == 0))
353                 return 0;
354         
355         return net_rpc_join_newstyle(argc, argv);
356 }
357
358
359
360 /** 
361  * display info about a rpc domain
362  *
363  * All parameters are provided by the run_rpc_command function, except for
364  * argc, argv which are passed through. 
365  *
366  * @param domain_sid The domain sid acquired from the remote server
367  * @param cli A cli_state connected to the server.
368  * @param mem_ctx Talloc context, destoyed on completion of the function.
369  * @param argc  Standard main() style argc
370  * @param argv  Standard main() style argv.  Initial components are already
371  *              stripped
372  *
373  * @return Normal NTSTATUS return.
374  **/
375
376 static NTSTATUS 
377 rpc_info_internals(const DOM_SID *domain_sid, const char *domain_name, 
378                    struct cli_state *cli,
379                    TALLOC_CTX *mem_ctx, int argc, const char **argv)
380 {
381         POLICY_HND connect_pol, domain_pol;
382         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
383         SAM_UNK_CTR ctr;
384         fstring sid_str;
385
386         sid_to_string(sid_str, domain_sid);
387
388         /* Get sam policy handle */     
389         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
390                                   &connect_pol);
391         if (!NT_STATUS_IS_OK(result)) {
392                 goto done;
393         }
394         
395         /* Get domain policy handle */
396         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
397                                       MAXIMUM_ALLOWED_ACCESS,
398                                       domain_sid, &domain_pol);
399         if (!NT_STATUS_IS_OK(result)) {
400                 goto done;
401         }
402
403         ZERO_STRUCT(ctr);
404         result = cli_samr_query_dom_info(cli, mem_ctx, &domain_pol,
405                                          2, &ctr);
406         if (NT_STATUS_IS_OK(result)) {
407                 TALLOC_CTX *ctx = talloc_init("rpc_info_internals");
408                 d_printf("Domain Name: %s\n", unistr2_tdup(ctx, &ctr.info.inf2.uni_domain));
409                 d_printf("Domain SID: %s\n", sid_str);
410                 d_printf("Sequence number: %u\n", ctr.info.inf2.seq_num);
411                 d_printf("Num users: %u\n", ctr.info.inf2.num_domain_usrs);
412                 d_printf("Num domain groups: %u\n", ctr.info.inf2.num_domain_grps);
413                 d_printf("Num local groups: %u\n", ctr.info.inf2.num_local_grps);
414                 talloc_destroy(ctx);
415         }
416
417  done:
418         return result;
419 }
420
421
422 /** 
423  * 'net rpc info' entrypoint.
424  * @param argc  Standard main() style argc
425  * @param argc  Standard main() style argv.  Initial components are already
426  *              stripped
427  **/
428 int net_rpc_info(int argc, const char **argv) 
429 {
430         return run_rpc_command(NULL, PI_SAMR, NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC, 
431                                rpc_info_internals,
432                                argc, argv);
433 }
434
435
436 /** 
437  * Fetch domain SID into the local secrets.tdb
438  *
439  * All parameters are provided by the run_rpc_command function, except for
440  * argc, argv which are passes through. 
441  *
442  * @param domain_sid The domain sid acquired from the remote server
443  * @param cli A cli_state connected to the server.
444  * @param mem_ctx Talloc context, destoyed on completion of the function.
445  * @param argc  Standard main() style argc
446  * @param argv  Standard main() style argv.  Initial components are already
447  *              stripped
448  *
449  * @return Normal NTSTATUS return.
450  **/
451
452 static NTSTATUS 
453 rpc_getsid_internals(const DOM_SID *domain_sid, const char *domain_name, 
454                      struct cli_state *cli,
455                      TALLOC_CTX *mem_ctx, int argc, const char **argv)
456 {
457         fstring sid_str;
458
459         sid_to_string(sid_str, domain_sid);
460         d_printf("Storing SID %s for Domain %s in secrets.tdb\n",
461                  sid_str, domain_name);
462
463         if (!secrets_store_domain_sid(domain_name, domain_sid)) {
464                 DEBUG(0,("Can't store domain SID\n"));
465                 return NT_STATUS_UNSUCCESSFUL;
466         }
467
468         return NT_STATUS_OK;
469 }
470
471
472 /** 
473  * 'net rpc getsid' entrypoint.
474  * @param argc  Standard main() style argc
475  * @param argc  Standard main() style argv.  Initial components are already
476  *              stripped
477  **/
478 int net_rpc_getsid(int argc, const char **argv) 
479 {
480         return run_rpc_command(NULL, PI_SAMR, NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC, 
481                                rpc_getsid_internals,
482                                argc, argv);
483 }
484
485
486 /****************************************************************************/
487
488 /**
489  * Basic usage function for 'net rpc user'
490  * @param argc  Standard main() style argc.
491  * @param argv  Standard main() style argv.  Initial components are already
492  *              stripped.
493  **/
494
495 static int rpc_user_usage(int argc, const char **argv)
496 {
497         return net_help_user(argc, argv);
498 }
499
500 /** 
501  * Add a new user to a remote RPC server
502  *
503  * All parameters are provided by the run_rpc_command function, except for
504  * argc, argv which are passes through. 
505  *
506  * @param domain_sid The domain sid acquired from the remote server
507  * @param cli A cli_state connected to the server.
508  * @param mem_ctx Talloc context, destoyed on completion of the function.
509  * @param argc  Standard main() style argc
510  * @param argv  Standard main() style argv.  Initial components are already
511  *              stripped
512  *
513  * @return Normal NTSTATUS return.
514  **/
515
516 static NTSTATUS rpc_user_add_internals(const DOM_SID *domain_sid, const char *domain_name, 
517                                        struct cli_state *cli, TALLOC_CTX *mem_ctx, 
518                                        int argc, const char **argv) {
519         
520         POLICY_HND connect_pol, domain_pol, user_pol;
521         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
522         const char *acct_name;
523         uint16 acb_info;
524         uint32 unknown, user_rid;
525
526         if (argc != 1) {
527                 d_printf("User must be specified\n");
528                 rpc_user_usage(argc, argv);
529                 return NT_STATUS_OK;
530         }
531
532         acct_name = argv[0];
533
534         /* Get sam policy handle */
535         
536         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
537                                   &connect_pol);
538         if (!NT_STATUS_IS_OK(result)) {
539                 goto done;
540         }
541         
542         /* Get domain policy handle */
543         
544         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
545                                       MAXIMUM_ALLOWED_ACCESS,
546                                       domain_sid, &domain_pol);
547         if (!NT_STATUS_IS_OK(result)) {
548                 goto done;
549         }
550
551         /* Create domain user */
552
553         acb_info = ACB_NORMAL;
554         unknown = 0xe005000b; /* No idea what this is - a permission mask? */
555
556         result = cli_samr_create_dom_user(cli, mem_ctx, &domain_pol,
557                                           acct_name, acb_info, unknown,
558                                           &user_pol, &user_rid);
559         if (!NT_STATUS_IS_OK(result)) {
560                 goto done;
561         }
562
563  done:
564         if (!NT_STATUS_IS_OK(result)) {
565                 d_printf("Failed to add user %s - %s\n", acct_name, 
566                          nt_errstr(result));
567         } else {
568                 d_printf("Added user %s\n", acct_name);
569         }
570         return result;
571 }
572
573 /** 
574  * Add a new user to a remote RPC server
575  *
576  * @param argc  Standard main() style argc
577  * @param argv  Standard main() style argv.  Initial components are already
578  *              stripped
579  *
580  * @return A shell status integer (0 for success)
581  **/
582
583 static int rpc_user_add(int argc, const char **argv) 
584 {
585         return run_rpc_command(NULL, PI_SAMR, 0, rpc_user_add_internals,
586                                argc, argv);
587 }
588
589 /** 
590  * Delete a user from a remote RPC server
591  *
592  * All parameters are provided by the run_rpc_command function, except for
593  * argc, argv which are passes through. 
594  *
595  * @param domain_sid The domain sid acquired from the remote server
596  * @param cli A cli_state connected to the server.
597  * @param mem_ctx Talloc context, destoyed on completion of the function.
598  * @param argc  Standard main() style argc
599  * @param argv  Standard main() style argv.  Initial components are already
600  *              stripped
601  *
602  * @return Normal NTSTATUS return.
603  **/
604
605 static NTSTATUS rpc_user_del_internals(const DOM_SID *domain_sid, 
606                                        const char *domain_name, 
607                                        struct cli_state *cli, 
608                                        TALLOC_CTX *mem_ctx, 
609                                        int argc, const char **argv)
610 {
611         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
612         POLICY_HND connect_pol, domain_pol, user_pol;
613
614         if (argc < 1) {
615                 d_printf("User must be specified\n");
616                 rpc_user_usage(argc, argv);
617                 return NT_STATUS_OK;
618         }
619         /* Get sam policy and domain handles */
620
621         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
622                                   &connect_pol);
623
624         if (!NT_STATUS_IS_OK(result)) {
625                 goto done;
626         }
627
628         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
629                                       MAXIMUM_ALLOWED_ACCESS,
630                                       domain_sid, &domain_pol);
631
632         if (!NT_STATUS_IS_OK(result)) {
633                 goto done;
634         }
635
636         /* Get handle on user */
637
638         {
639                 uint32 *user_rids, num_rids, *name_types;
640                 uint32 flags = 0x000003e8; /* Unknown */
641
642                 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol,
643                                                flags, 1, &argv[0],
644                                                &num_rids, &user_rids,
645                                                &name_types);
646
647                 if (!NT_STATUS_IS_OK(result)) {
648                         goto done;
649                 }
650
651                 result = cli_samr_open_user(cli, mem_ctx, &domain_pol,
652                                             MAXIMUM_ALLOWED_ACCESS,
653                                             user_rids[0], &user_pol);
654
655                 if (!NT_STATUS_IS_OK(result)) {
656                         goto done;
657                 }
658         }
659
660         /* Delete user */
661
662         result = cli_samr_delete_dom_user(cli, mem_ctx, &user_pol);
663
664         if (!NT_STATUS_IS_OK(result)) {
665                 goto done;
666         }
667
668         /* Display results */
669
670  done:
671         return result;
672
673 }       
674
675 /** 
676  * Delete a user from a remote RPC server
677  *
678  * @param argc  Standard main() style argc
679  * @param argv  Standard main() style argv.  Initial components are already
680  *              stripped
681  *
682  * @return A shell status integer (0 for success)
683  **/
684
685 static int rpc_user_delete(int argc, const char **argv) 
686 {
687         return run_rpc_command(NULL, PI_SAMR, 0, rpc_user_del_internals,
688                                argc, argv);
689 }
690
691 /** 
692  * Set a password for a user on a remote RPC server
693  *
694  * All parameters are provided by the run_rpc_command function, except for
695  * argc, argv which are passes through. 
696  *
697  * @param domain_sid The domain sid acquired from the remote server
698  * @param cli A cli_state connected to the server.
699  * @param mem_ctx Talloc context, destoyed on completion of the function.
700  * @param argc  Standard main() style argc
701  * @param argv  Standard main() style argv.  Initial components are already
702  *              stripped
703  *
704  * @return Normal NTSTATUS return.
705  **/
706
707 static NTSTATUS rpc_user_password_internals(const DOM_SID *domain_sid, 
708                                             const char *domain_name, 
709                                             struct cli_state *cli, 
710                                             TALLOC_CTX *mem_ctx, 
711                                             int argc, const char **argv)
712 {
713         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
714         POLICY_HND connect_pol, domain_pol, user_pol;
715         SAM_USERINFO_CTR ctr;
716         SAM_USER_INFO_24 p24;
717         uchar pwbuf[516];
718         const char *user;
719         const char *new_password;
720         char *prompt = NULL;
721
722         if (argc < 1) {
723                 d_printf("User must be specified\n");
724                 rpc_user_usage(argc, argv);
725                 return NT_STATUS_OK;
726         }
727         
728         user = argv[0];
729
730         if (argv[1]) {
731                 new_password = argv[1];
732         } else {
733                 asprintf(&prompt, "Enter new password for %s:", user);
734                 new_password = getpass(prompt);
735                 SAFE_FREE(prompt);
736         }
737
738         /* Get sam policy and domain handles */
739
740         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
741                                   &connect_pol);
742
743         if (!NT_STATUS_IS_OK(result)) {
744                 goto done;
745         }
746
747         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
748                                       MAXIMUM_ALLOWED_ACCESS,
749                                       domain_sid, &domain_pol);
750
751         if (!NT_STATUS_IS_OK(result)) {
752                 goto done;
753         }
754
755         /* Get handle on user */
756
757         {
758                 uint32 *user_rids, num_rids, *name_types;
759                 uint32 flags = 0x000003e8; /* Unknown */
760
761                 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol,
762                                                flags, 1, &user,
763                                                &num_rids, &user_rids,
764                                                &name_types);
765
766                 if (!NT_STATUS_IS_OK(result)) {
767                         goto done;
768                 }
769
770                 result = cli_samr_open_user(cli, mem_ctx, &domain_pol,
771                                             MAXIMUM_ALLOWED_ACCESS,
772                                             user_rids[0], &user_pol);
773
774                 if (!NT_STATUS_IS_OK(result)) {
775                         goto done;
776                 }
777         }
778
779         /* Set password on account */
780
781         ZERO_STRUCT(ctr);
782         ZERO_STRUCT(p24);
783
784         encode_pw_buffer(pwbuf, new_password, STR_UNICODE);
785
786         init_sam_user_info24(&p24, (char *)pwbuf,24);
787
788         ctr.switch_value = 24;
789         ctr.info.id24 = &p24;
790
791         result = cli_samr_set_userinfo(cli, mem_ctx, &user_pol, 24, 
792                                        &cli->user_session_key, &ctr);
793
794         if (!NT_STATUS_IS_OK(result)) {
795                 goto done;
796         }
797
798         /* Display results */
799
800  done:
801         return result;
802
803 }       
804
805 /** 
806  * Set a user's password on a remote RPC server
807  *
808  * @param argc  Standard main() style argc
809  * @param argv  Standard main() style argv.  Initial components are already
810  *              stripped
811  *
812  * @return A shell status integer (0 for success)
813  **/
814
815 static int rpc_user_password(int argc, const char **argv) 
816 {
817         return run_rpc_command(NULL, PI_SAMR, 0, rpc_user_password_internals,
818                                argc, argv);
819 }
820
821 /** 
822  * List user's groups on a remote RPC server
823  *
824  * All parameters are provided by the run_rpc_command function, except for
825  * argc, argv which are passes through. 
826  *
827  * @param domain_sid The domain sid acquired from the remote server
828  * @param cli A cli_state connected to the server.
829  * @param mem_ctx Talloc context, destoyed on completion of the function.
830  * @param argc  Standard main() style argc
831  * @param argv  Standard main() style argv.  Initial components are already
832  *              stripped
833  *
834  * @return Normal NTSTATUS return.
835  **/
836
837 static NTSTATUS 
838 rpc_user_info_internals(const DOM_SID *domain_sid, const char *domain_name, 
839                         struct cli_state *cli,
840                         TALLOC_CTX *mem_ctx, int argc, const char **argv)
841 {
842         POLICY_HND connect_pol, domain_pol, user_pol;
843         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
844         uint32 *rids, num_rids, *name_types, num_names;
845         uint32 flags = 0x000003e8; /* Unknown */
846         int i;
847         char **names;
848         DOM_GID *user_gids;
849
850         if (argc < 1) {
851                 d_printf("User must be specified\n");
852                 rpc_user_usage(argc, argv);
853                 return NT_STATUS_OK;
854         }
855         /* Get sam policy handle */
856         
857         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
858                                   &connect_pol);
859         if (!NT_STATUS_IS_OK(result)) goto done;
860         
861         /* Get domain policy handle */
862         
863         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
864                                       MAXIMUM_ALLOWED_ACCESS,
865                                       domain_sid, &domain_pol);
866         if (!NT_STATUS_IS_OK(result)) goto done;
867
868         /* Get handle on user */
869
870         result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol,
871                                        flags, 1, &argv[0],
872                                        &num_rids, &rids, &name_types);
873
874         if (!NT_STATUS_IS_OK(result)) goto done;
875
876         result = cli_samr_open_user(cli, mem_ctx, &domain_pol,
877                                     MAXIMUM_ALLOWED_ACCESS,
878                                     rids[0], &user_pol);
879         if (!NT_STATUS_IS_OK(result)) goto done;
880
881         result = cli_samr_query_usergroups(cli, mem_ctx, &user_pol,
882                                            &num_rids, &user_gids);
883
884         /* Look up rids */
885
886         rids = (uint32 *)talloc(mem_ctx, sizeof(uint32) * num_rids);
887
888         for (i = 0; i < num_rids; i++)
889                 rids[i] = user_gids[i].g_rid;
890
891         result = cli_samr_lookup_rids(cli, mem_ctx, &domain_pol,
892                                       flags, num_rids, rids,
893                                       &num_names, &names, &name_types);
894
895         if (!NT_STATUS_IS_OK(result)) {
896                 goto done;
897         }
898
899         /* Display results */
900
901         for (i = 0; i < num_names; i++)
902                 printf("%s\n", names[i]);
903
904  done:
905         return result;
906 }
907
908 /** 
909  * List a user's groups from a remote RPC server
910  *
911  * @param argc  Standard main() style argc
912  * @param argv  Standard main() style argv.  Initial components are already
913  *              stripped
914  *
915  * @return A shell status integer (0 for success)
916  **/
917
918 static int rpc_user_info(int argc, const char **argv) 
919 {
920         return run_rpc_command(NULL, PI_SAMR, 0, rpc_user_info_internals,
921                                argc, argv);
922 }
923
924 /** 
925  * List users on a remote RPC server
926  *
927  * All parameters are provided by the run_rpc_command function, except for
928  * argc, argv which are passes through. 
929  *
930  * @param domain_sid The domain sid acquired from the remote server
931  * @param cli A cli_state connected to the server.
932  * @param mem_ctx Talloc context, destoyed on completion of the function.
933  * @param argc  Standard main() style argc
934  * @param argv  Standard main() style argv.  Initial components are already
935  *              stripped
936  *
937  * @return Normal NTSTATUS return.
938  **/
939
940 static NTSTATUS 
941 rpc_user_list_internals(const DOM_SID *domain_sid, const char *domain_name, 
942                         struct cli_state *cli,
943                         TALLOC_CTX *mem_ctx, int argc, const char **argv)
944 {
945         POLICY_HND connect_pol, domain_pol;
946         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
947         uint32 start_idx=0, num_entries, i, loop_count = 0;
948         SAM_DISPINFO_CTR ctr;
949         SAM_DISPINFO_1 info1;
950
951         /* Get sam policy handle */
952         
953         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
954                                   &connect_pol);
955         if (!NT_STATUS_IS_OK(result)) {
956                 goto done;
957         }
958         
959         /* Get domain policy handle */
960         
961         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
962                                       MAXIMUM_ALLOWED_ACCESS,
963                                       domain_sid, &domain_pol);
964         if (!NT_STATUS_IS_OK(result)) {
965                 goto done;
966         }
967
968         /* Query domain users */
969         ZERO_STRUCT(ctr);
970         ZERO_STRUCT(info1);
971         ctr.sam.info1 = &info1;
972         if (opt_long_list_entries)
973                 d_printf("\nUser name             Comment"\
974                          "\n-----------------------------\n");
975         do {
976                 fstring user, desc;
977                 uint32 max_entries, max_size;
978
979                 get_query_dispinfo_params(
980                         loop_count, &max_entries, &max_size);
981
982                 result = cli_samr_query_dispinfo(cli, mem_ctx, &domain_pol,
983                                                  &start_idx, 1, &num_entries,
984                                                  max_entries, max_size, &ctr);
985                 loop_count++;
986
987                 for (i = 0; i < num_entries; i++) {
988                         unistr2_to_ascii(user, &(&ctr.sam.info1->str[i])->uni_acct_name, sizeof(user)-1);
989                         if (opt_long_list_entries) 
990                                 unistr2_to_ascii(desc, &(&ctr.sam.info1->str[i])->uni_acct_desc, sizeof(desc)-1);
991                         
992                         if (opt_long_list_entries)
993                                 printf("%-21.21s %s\n", user, desc);
994                         else
995                                 printf("%s\n", user);
996                 }
997         } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
998
999  done:
1000         return result;
1001 }
1002
1003 /** 
1004  * 'net rpc user' entrypoint.
1005  * @param argc  Standard main() style argc
1006  * @param argc  Standard main() style argv.  Initial components are already
1007  *              stripped
1008  **/
1009
1010 int net_rpc_user(int argc, const char **argv) 
1011 {
1012         struct functable func[] = {
1013                 {"add", rpc_user_add},
1014                 {"info", rpc_user_info},
1015                 {"delete", rpc_user_delete},
1016                 {"password", rpc_user_password},
1017                 {NULL, NULL}
1018         };
1019         
1020         if (argc == 0) {
1021                 if (opt_long_list_entries) {
1022                 } else {
1023                 }
1024                         return run_rpc_command(NULL,PI_SAMR, 0, 
1025                                                rpc_user_list_internals,
1026                                                argc, argv);
1027         }
1028
1029         return net_run_function(argc, argv, func, rpc_user_usage);
1030 }
1031
1032
1033 /****************************************************************************/
1034
1035 /**
1036  * Basic usage function for 'net rpc group'
1037  * @param argc  Standard main() style argc.
1038  * @param argv  Standard main() style argv.  Initial components are already
1039  *              stripped.
1040  **/
1041
1042 static int rpc_group_usage(int argc, const char **argv)
1043 {
1044         return net_help_group(argc, argv);
1045 }
1046
1047 /** 
1048  * List groups on a remote RPC server
1049  *
1050  * All parameters are provided by the run_rpc_command function, except for
1051  * argc, argv which are passes through. 
1052  *
1053  * @param domain_sid The domain sid acquired from the remote server
1054  * @param cli A cli_state connected to the server.
1055  * @param mem_ctx Talloc context, destoyed on completion of the function.
1056  * @param argc  Standard main() style argc
1057  * @param argv  Standard main() style argv.  Initial components are already
1058  *              stripped
1059  *
1060  * @return Normal NTSTATUS return.
1061  **/
1062
1063 static NTSTATUS 
1064 rpc_group_list_internals(const DOM_SID *domain_sid, const char *domain_name, 
1065                          struct cli_state *cli,
1066                          TALLOC_CTX *mem_ctx, int argc, const char **argv)
1067 {
1068         POLICY_HND connect_pol, domain_pol;
1069         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1070         uint32 start_idx=0, max_entries=250, num_entries, i, loop_count = 0;
1071         struct acct_info *groups;
1072         DOM_SID global_sid_Builtin;
1073         BOOL global = False;
1074         BOOL local = False;
1075         BOOL builtin = False;
1076
1077         if (argc == 0) {
1078                 global = True;
1079                 local = True;
1080                 builtin = True;
1081         }
1082
1083         for (i=0; i<argc; i++) {
1084                 if (strequal(argv[i], "global"))
1085                         global = True;
1086
1087                 if (strequal(argv[i], "local"))
1088                         local = True;
1089
1090                 if (strequal(argv[i], "builtin"))
1091                         builtin = True;
1092         }
1093
1094         string_to_sid(&global_sid_Builtin, "S-1-5-32");
1095
1096         /* Get sam policy handle */
1097         
1098         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1099                                   &connect_pol);
1100         if (!NT_STATUS_IS_OK(result)) {
1101                 goto done;
1102         }
1103         
1104         /* Get domain policy handle */
1105         
1106         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1107                                       MAXIMUM_ALLOWED_ACCESS,
1108                                       domain_sid, &domain_pol);
1109         if (!NT_STATUS_IS_OK(result)) {
1110                 goto done;
1111         }
1112
1113         /* Query domain groups */
1114         if (opt_long_list_entries)
1115                 d_printf("\nGroup name            Comment"\
1116                          "\n-----------------------------\n");
1117         do {
1118                 SAM_DISPINFO_CTR ctr;
1119                 SAM_DISPINFO_3 info3;
1120                 uint32 max_size;
1121
1122                 ZERO_STRUCT(ctr);
1123                 ZERO_STRUCT(info3);
1124                 ctr.sam.info3 = &info3;
1125
1126                 if (!global) break;
1127
1128                 get_query_dispinfo_params(
1129                         loop_count, &max_entries, &max_size);
1130
1131                 result = cli_samr_query_dispinfo(cli, mem_ctx, &domain_pol,
1132                                                  &start_idx, 3, &num_entries,
1133                                                  max_entries, max_size, &ctr);
1134                                                  
1135                 for (i = 0; i < num_entries; i++) {
1136
1137                         fstring group, desc;
1138
1139                         unistr2_to_ascii(group, &(&ctr.sam.info3->str[i])->uni_grp_name, sizeof(group)-1);
1140                         unistr2_to_ascii(desc, &(&ctr.sam.info3->str[i])->uni_grp_desc, sizeof(desc)-1);
1141                         
1142                         if (opt_long_list_entries)
1143                                 printf("%-21.21s %-50.50s\n",
1144                                        group, desc);
1145                         else
1146                                 printf("%s\n", group);
1147                 }
1148         } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
1149         /* query domain aliases */
1150         start_idx = 0;
1151         do {
1152                 if (!local) break;
1153
1154                 result = cli_samr_enum_als_groups(cli, mem_ctx, &domain_pol,
1155                                                   &start_idx, max_entries,
1156                                                   &groups, &num_entries);
1157
1158                 for (i = 0; i < num_entries; i++) {
1159
1160                         char *description = NULL;
1161
1162                         if (opt_long_list_entries) {
1163
1164                                 POLICY_HND alias_pol;
1165                                 ALIAS_INFO_CTR ctr;
1166
1167                                 if ((NT_STATUS_IS_OK(cli_samr_open_alias(cli, mem_ctx,
1168                                                                          &domain_pol,
1169                                                                          0x8,
1170                                                                          groups[i].rid,
1171                                                                          &alias_pol))) &&
1172                                     (NT_STATUS_IS_OK(cli_samr_query_alias_info(cli, mem_ctx,
1173                                                                                &alias_pol, 3,
1174                                                                                &ctr))) &&
1175                                     (NT_STATUS_IS_OK(cli_samr_close(cli, mem_ctx,
1176                                                                     &alias_pol)))) {
1177                                         description = unistr2_tdup(mem_ctx,
1178                                                                    &ctr.alias.info3.uni_acct_desc);
1179                                 }
1180                         }
1181                         
1182                         if (description != NULL) {
1183                                 printf("%-21.21s %-50.50s\n", 
1184                                        groups[i].acct_name,
1185                                        description);
1186                         } else {
1187                                 printf("%s\n", groups[i].acct_name);
1188                         }
1189                 }
1190         } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
1191         cli_samr_close(cli, mem_ctx, &domain_pol);
1192         /* Get builtin policy handle */
1193         
1194         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1195                                       MAXIMUM_ALLOWED_ACCESS,
1196                                       &global_sid_Builtin, &domain_pol);
1197         if (!NT_STATUS_IS_OK(result)) {
1198                 goto done;
1199         }
1200         /* query builtin aliases */
1201         start_idx = 0;
1202         do {
1203                 if (!builtin) break;
1204
1205                 result = cli_samr_enum_als_groups(cli, mem_ctx, &domain_pol,
1206                                                   &start_idx, max_entries,
1207                                                   &groups, &num_entries);
1208                                                  
1209                 for (i = 0; i < num_entries; i++) {
1210
1211                         char *description = NULL;
1212
1213                         if (opt_long_list_entries) {
1214
1215                                 POLICY_HND alias_pol;
1216                                 ALIAS_INFO_CTR ctr;
1217
1218                                 if ((NT_STATUS_IS_OK(cli_samr_open_alias(cli, mem_ctx,
1219                                                                          &domain_pol,
1220                                                                          0x8,
1221                                                                          groups[i].rid,
1222                                                                          &alias_pol))) &&
1223                                     (NT_STATUS_IS_OK(cli_samr_query_alias_info(cli, mem_ctx,
1224                                                                                &alias_pol, 3,
1225                                                                                &ctr))) &&
1226                                     (NT_STATUS_IS_OK(cli_samr_close(cli, mem_ctx,
1227                                                                     &alias_pol)))) {
1228                                         description = unistr2_tdup(mem_ctx,
1229                                                                    &ctr.alias.info3.uni_acct_desc);
1230                                 }
1231                         }
1232                         
1233                         if (description != NULL) {
1234                                 printf("%-21.21s %-50.50s\n", 
1235                                        groups[i].acct_name,
1236                                        description);
1237                         } else {
1238                                 printf("%s\n", groups[i].acct_name);
1239                         }
1240                 }
1241         } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
1242
1243  done:
1244         return result;
1245 }
1246
1247 static int rpc_group_list(int argc, const char **argv)
1248 {
1249         return run_rpc_command(NULL, PI_SAMR, 0,
1250                                rpc_group_list_internals,
1251                                argc, argv);
1252 }
1253  
1254 static NTSTATUS 
1255 rpc_group_members_internals(const DOM_SID *domain_sid, const char *domain_name, 
1256                             struct cli_state *cli,
1257                             TALLOC_CTX *mem_ctx, int argc, const char **argv)
1258 {
1259         NTSTATUS result;
1260         POLICY_HND connect_pol, domain_pol, group_pol;
1261         uint32 num_rids, *rids, *rid_types;
1262         uint32 num_members, *group_rids, *group_attrs;
1263         uint32 num_names;
1264         char **names;
1265         uint32 *name_types;
1266         int i;
1267
1268         /* Get sam policy handle */
1269         
1270         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1271                                   &connect_pol);
1272         if (!NT_STATUS_IS_OK(result)) {
1273                 goto done;
1274         }
1275         
1276         /* Get domain policy handle */
1277         
1278         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1279                                       MAXIMUM_ALLOWED_ACCESS,
1280                                       domain_sid, &domain_pol);
1281         if (!NT_STATUS_IS_OK(result)) {
1282                 goto done;
1283         }
1284
1285         result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol, 1000,
1286                                        1, argv, &num_rids, &rids, &rid_types);
1287
1288         if (!NT_STATUS_IS_OK(result)) {
1289                 goto done;
1290         }
1291
1292         if (num_rids != 1) {
1293                 d_printf("Could not find group %s\n", argv[0]);
1294                 goto done;
1295         }
1296
1297         if (rid_types[0] != SID_NAME_DOM_GRP) {
1298                 d_printf("%s is not a domain group\n", argv[0]);
1299                 goto done;
1300         }
1301
1302         result = cli_samr_open_group(cli, mem_ctx, &domain_pol,
1303                                      MAXIMUM_ALLOWED_ACCESS,
1304                                      rids[0], &group_pol);
1305
1306         if (!NT_STATUS_IS_OK(result))
1307                 goto done;
1308
1309         result = cli_samr_query_groupmem(cli, mem_ctx, &group_pol,
1310                                          &num_members, &group_rids,
1311                                          &group_attrs);
1312
1313         if (!NT_STATUS_IS_OK(result))
1314                 goto done;
1315
1316         while (num_members > 0) {
1317                 int this_time = 512;
1318
1319                 if (num_members < this_time)
1320                         this_time = num_members;
1321
1322                 result = cli_samr_lookup_rids(cli, mem_ctx, &domain_pol, 1000,
1323                                               this_time, group_rids,
1324                                               &num_names, &names, &name_types);
1325
1326                 if (!NT_STATUS_IS_OK(result))
1327                         goto done;
1328
1329                 for (i = 0; i < this_time; i++) {
1330                         printf("%s\n", names[i]);
1331                 }
1332
1333                 num_members -= this_time;
1334                 group_rids += 512;
1335         }
1336
1337  done:
1338         return result;
1339 }
1340
1341 static int rpc_group_members(int argc, const char **argv)
1342 {
1343         if (argc != 1) {
1344                 return rpc_group_usage(argc, argv);
1345         }
1346
1347         return run_rpc_command(NULL, PI_SAMR, 0,
1348                                rpc_group_members_internals,
1349                                argc, argv);
1350 }
1351
1352 /** 
1353  * 'net rpc group' entrypoint.
1354  * @param argc  Standard main() style argc
1355  * @param argc  Standard main() style argv.  Initial components are already
1356  *              stripped
1357  **/
1358
1359 int net_rpc_group(int argc, const char **argv) 
1360 {
1361         struct functable func[] = {
1362 #if 0
1363                 {"add", rpc_group_add},
1364                 {"delete", rpc_group_delete},
1365 #endif
1366                 {"list", rpc_group_list},
1367                 {"members", rpc_group_members},
1368                 {NULL, NULL}
1369         };
1370         
1371         if (argc == 0) {
1372                 if (opt_long_list_entries) {
1373                 } else {
1374                 }
1375                 return run_rpc_command(NULL, PI_SAMR, 0, 
1376                                        rpc_group_list_internals,
1377                                        argc, argv);
1378         }
1379
1380         return net_run_function(argc, argv, func, rpc_group_usage);
1381 }
1382
1383 /****************************************************************************/
1384
1385 static int rpc_share_usage(int argc, const char **argv)
1386 {
1387         return net_help_share(argc, argv);
1388 }
1389
1390 /** 
1391  * Add a share on a remote RPC server
1392  *
1393  * All parameters are provided by the run_rpc_command function, except for
1394  * argc, argv which are passes through. 
1395  *
1396  * @param domain_sid The domain sid acquired from the remote server
1397  * @param cli A cli_state connected to the server.
1398  * @param mem_ctx Talloc context, destoyed on completion of the function.
1399  * @param argc  Standard main() style argc
1400  * @param argv  Standard main() style argv.  Initial components are already
1401  *              stripped
1402  *
1403  * @return Normal NTSTATUS return.
1404  **/
1405 static NTSTATUS 
1406 rpc_share_add_internals(const DOM_SID *domain_sid, const char *domain_name, 
1407                         struct cli_state *cli,
1408                         TALLOC_CTX *mem_ctx,int argc, const char **argv)
1409 {
1410         WERROR result;
1411         char *sharename=talloc_strdup(mem_ctx, argv[0]);
1412         char *path;
1413         uint32 type=0; /* only allow disk shares to be added */
1414         uint32 num_users=0, perms=0;
1415         char *password=NULL; /* don't allow a share password */
1416
1417         path = strchr(sharename, '=');
1418         if (!path)
1419                 return NT_STATUS_UNSUCCESSFUL;
1420         *path++ = '\0';
1421
1422         result = cli_srvsvc_net_share_add(cli, mem_ctx, sharename, type,
1423                                           opt_comment, perms, opt_maxusers,
1424                                           num_users, path, password);
1425         return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
1426 }
1427
1428 static int rpc_share_add(int argc, const char **argv)
1429 {
1430         if ((argc < 1) || !strchr(argv[0], '=')) {
1431                 DEBUG(1,("Sharename or path not specified on add\n"));
1432                 return rpc_share_usage(argc, argv);
1433         }
1434         return run_rpc_command(NULL, PI_SRVSVC, 0, 
1435                                rpc_share_add_internals,
1436                                argc, argv);
1437 }
1438
1439 /** 
1440  * Delete a share on a remote RPC server
1441  *
1442  * All parameters are provided by the run_rpc_command function, except for
1443  * argc, argv which are passes through. 
1444  *
1445  * @param domain_sid The domain sid acquired from the remote server
1446  * @param cli A cli_state connected to the server.
1447  * @param mem_ctx Talloc context, destoyed on completion of the function.
1448  * @param argc  Standard main() style argc
1449  * @param argv  Standard main() style argv.  Initial components are already
1450  *              stripped
1451  *
1452  * @return Normal NTSTATUS return.
1453  **/
1454 static NTSTATUS 
1455 rpc_share_del_internals(const DOM_SID *domain_sid, const char *domain_name, 
1456                         struct cli_state *cli,
1457                         TALLOC_CTX *mem_ctx,int argc, const char **argv)
1458 {
1459         WERROR result;
1460
1461         result = cli_srvsvc_net_share_del(cli, mem_ctx, argv[0]);
1462         return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
1463 }
1464
1465 /** 
1466  * Delete a share on a remote RPC server
1467  *
1468  * @param domain_sid The domain sid acquired from the remote server
1469  * @param argc  Standard main() style argc
1470  * @param argv  Standard main() style argv.  Initial components are already
1471  *              stripped
1472  *
1473  * @return A shell status integer (0 for success)
1474  **/
1475 static int rpc_share_delete(int argc, const char **argv)
1476 {
1477         if (argc < 1) {
1478                 DEBUG(1,("Sharename not specified on delete\n"));
1479                 return rpc_share_usage(argc, argv);
1480         }
1481         return run_rpc_command(NULL, PI_SRVSVC, 0, 
1482                                rpc_share_del_internals,
1483                                argc, argv);
1484 }
1485
1486 /**
1487  * Formatted print of share info
1488  *
1489  * @param info1  pointer to SRV_SHARE_INFO_1 to format
1490  **/
1491  
1492 static void display_share_info_1(SRV_SHARE_INFO_1 *info1)
1493 {
1494         fstring netname = "", remark = "";
1495
1496         rpcstr_pull_unistr2_fstring(netname, &info1->info_1_str.uni_netname);
1497         rpcstr_pull_unistr2_fstring(remark, &info1->info_1_str.uni_remark);
1498
1499         if (opt_long_list_entries) {
1500                 d_printf("%-12.12s %-8.8s %-50.50s\n",
1501                          netname, share_type[info1->info_1.type], remark);
1502         } else {
1503                 d_printf("%-12.12s\n", netname);
1504         }
1505
1506 }
1507
1508 /** 
1509  * List shares on a remote RPC server
1510  *
1511  * All parameters are provided by the run_rpc_command function, except for
1512  * argc, argv which are passes through. 
1513  *
1514  * @param domain_sid The domain sid acquired from the remote server
1515  * @param cli A cli_state connected to the server.
1516  * @param mem_ctx Talloc context, destoyed on completion of the function.
1517  * @param argc  Standard main() style argc
1518  * @param argv  Standard main() style argv.  Initial components are already
1519  *              stripped
1520  *
1521  * @return Normal NTSTATUS return.
1522  **/
1523
1524 static NTSTATUS 
1525 rpc_share_list_internals(const DOM_SID *domain_sid, const char *domain_name, 
1526                          struct cli_state *cli,
1527                          TALLOC_CTX *mem_ctx, int argc, const char **argv)
1528 {
1529         SRV_SHARE_INFO_CTR ctr;
1530         WERROR result;
1531         ENUM_HND hnd;
1532         uint32 preferred_len = 0xffffffff, i;
1533
1534         init_enum_hnd(&hnd, 0);
1535
1536         result = cli_srvsvc_net_share_enum(
1537                 cli, mem_ctx, 1, &ctr, preferred_len, &hnd);
1538
1539         if (!W_ERROR_IS_OK(result))
1540                 goto done;
1541
1542         /* Display results */
1543
1544         if (opt_long_list_entries) {
1545                 d_printf(
1546         "\nEnumerating shared resources (exports) on remote server:\n\n"\
1547         "\nShare name   Type     Description\n"\
1548         "----------   ----     -----------\n");
1549         }
1550         for (i = 0; i < ctr.num_entries; i++)
1551                 display_share_info_1(&ctr.share.info1[i]);
1552  done:
1553         return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
1554 }
1555
1556 /** 
1557  * 'net rpc share' entrypoint.
1558  * @param argc  Standard main() style argc
1559  * @param argv  Standard main() style argv.  Initial components are already
1560  *              stripped
1561  **/
1562
1563 int net_rpc_share(int argc, const char **argv) 
1564 {
1565         struct functable func[] = {
1566                 {"add", rpc_share_add},
1567                 {"delete", rpc_share_delete},
1568                 {NULL, NULL}
1569         };
1570
1571         if (argc == 0)
1572                 return run_rpc_command(NULL, PI_SRVSVC, 0, 
1573                                        rpc_share_list_internals,
1574                                        argc, argv);
1575
1576         return net_run_function(argc, argv, func, rpc_share_usage);
1577 }
1578
1579 /****************************************************************************/
1580
1581 static int rpc_file_usage(int argc, const char **argv)
1582 {
1583         return net_help_file(argc, argv);
1584 }
1585
1586 /** 
1587  * Close a file on a remote RPC server
1588  *
1589  * All parameters are provided by the run_rpc_command function, except for
1590  * argc, argv which are passes through. 
1591  *
1592  * @param domain_sid The domain sid acquired from the remote server
1593  * @param cli A cli_state connected to the server.
1594  * @param mem_ctx Talloc context, destoyed on completion of the function.
1595  * @param argc  Standard main() style argc
1596  * @param argv  Standard main() style argv.  Initial components are already
1597  *              stripped
1598  *
1599  * @return Normal NTSTATUS return.
1600  **/
1601 static NTSTATUS 
1602 rpc_file_close_internals(const DOM_SID *domain_sid, const char *domain_name, 
1603                          struct cli_state *cli,
1604                          TALLOC_CTX *mem_ctx, int argc, const char **argv)
1605 {
1606         WERROR result;
1607         result = cli_srvsvc_net_file_close(cli, mem_ctx, atoi(argv[0]));
1608         return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
1609 }
1610
1611 /** 
1612  * Close a file on a remote RPC server
1613  *
1614  * @param argc  Standard main() style argc
1615  * @param argv  Standard main() style argv.  Initial components are already
1616  *              stripped
1617  *
1618  * @return A shell status integer (0 for success)
1619  **/
1620 static int rpc_file_close(int argc, const char **argv)
1621 {
1622         if (argc < 1) {
1623                 DEBUG(1, ("No fileid given on close\n"));
1624                 return(rpc_file_usage(argc, argv));
1625         }
1626
1627         return run_rpc_command(NULL, PI_SRVSVC, 0, 
1628                                rpc_file_close_internals,
1629                                argc, argv);
1630 }
1631
1632 /** 
1633  * Formatted print of open file info 
1634  *
1635  * @param info3  FILE_INFO_3 contents
1636  * @param str3   strings for FILE_INFO_3
1637  **/
1638
1639 static void display_file_info_3(FILE_INFO_3 *info3, FILE_INFO_3_STR *str3)
1640 {
1641         fstring user = "", path = "";
1642
1643         rpcstr_pull_unistr2_fstring(user, &str3->uni_user_name);
1644         rpcstr_pull_unistr2_fstring(path, &str3->uni_path_name);
1645
1646         d_printf("%-7.1d %-20.20s 0x%-4.2x %-6.1d %s\n",
1647                  info3->id, user, info3->perms, info3->num_locks, path);
1648 }
1649
1650 /** 
1651  * List open files on a remote RPC server
1652  *
1653  * All parameters are provided by the run_rpc_command function, except for
1654  * argc, argv which are passes through. 
1655  *
1656  * @param domain_sid The domain sid acquired from the remote server
1657  * @param cli A cli_state connected to the server.
1658  * @param mem_ctx Talloc context, destoyed on completion of the function.
1659  * @param argc  Standard main() style argc
1660  * @param argv  Standard main() style argv.  Initial components are already
1661  *              stripped
1662  *
1663  * @return Normal NTSTATUS return.
1664  **/
1665
1666 static NTSTATUS 
1667 rpc_file_list_internals(const DOM_SID *domain_sid, const char *domain_name, 
1668                         struct cli_state *cli,
1669                         TALLOC_CTX *mem_ctx, int argc, const char **argv)
1670 {
1671         SRV_FILE_INFO_CTR ctr;
1672         WERROR result;
1673         ENUM_HND hnd;
1674         uint32 preferred_len = 0xffffffff, i;
1675         const char *username=NULL;
1676
1677         init_enum_hnd(&hnd, 0);
1678
1679         /* if argc > 0, must be user command */
1680         if (argc > 0)
1681                 username = smb_xstrdup(argv[0]);
1682                 
1683         result = cli_srvsvc_net_file_enum(
1684                 cli, mem_ctx, 3, username, &ctr, preferred_len, &hnd);
1685
1686         if (!W_ERROR_IS_OK(result))
1687                 goto done;
1688
1689         /* Display results */
1690
1691         d_printf(
1692                  "\nEnumerating open files on remote server:\n\n"\
1693                  "\nFileId  Opened by            Perms  Locks  Path"\
1694                  "\n------  ---------            -----  -----  ---- \n");
1695         for (i = 0; i < ctr.num_entries; i++)
1696                 display_file_info_3(&ctr.file.info3[i].info_3, 
1697                                     &ctr.file.info3[i].info_3_str);
1698  done:
1699         return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
1700 }
1701
1702
1703 /** 
1704  * List files for a user on a remote RPC server
1705  *
1706  * @param argc  Standard main() style argc
1707  * @param argv  Standard main() style argv.  Initial components are already
1708  *              stripped
1709  *
1710  * @return A shell status integer (0 for success)
1711  **/
1712 static int rpc_file_user(int argc, const char **argv)
1713 {
1714         if (argc < 1) {
1715                 DEBUG(1, ("No username given\n"));
1716                 return(rpc_file_usage(argc, argv));
1717         }
1718
1719         return run_rpc_command(NULL, PI_SRVSVC, 0, 
1720                                rpc_file_list_internals,
1721                                argc, argv);
1722 }
1723
1724
1725 /** 
1726  * 'net rpc file' entrypoint.
1727  * @param argc  Standard main() style argc
1728  * @param argv  Standard main() style argv.  Initial components are already
1729  *              stripped
1730  **/
1731
1732 int net_rpc_file(int argc, const char **argv) 
1733 {
1734         struct functable func[] = {
1735                 {"close", rpc_file_close},
1736                 {"user", rpc_file_user},
1737 #if 0
1738                 {"info", rpc_file_info},
1739 #endif
1740                 {NULL, NULL}
1741         };
1742
1743         if (argc == 0)
1744                 return run_rpc_command(NULL, PI_SRVSVC, 0, 
1745                                        rpc_file_list_internals,
1746                                        argc, argv);
1747
1748         return net_run_function(argc, argv, func, rpc_file_usage);
1749 }
1750
1751 /****************************************************************************/
1752
1753
1754
1755 /** 
1756  * ABORT the shutdown of a remote RPC Server over, initshutdown pipe
1757  *
1758  * All parameters are provided by the run_rpc_command function, except for
1759  * argc, argv which are passed through. 
1760  *
1761  * @param domain_sid The domain sid aquired from the remote server
1762  * @param cli A cli_state connected to the server.
1763  * @param mem_ctx Talloc context, destoyed on compleation of the function.
1764  * @param argc  Standard main() style argc
1765  * @param argv  Standard main() style argv.  Initial components are already
1766  *              stripped
1767  *
1768  * @return Normal NTSTATUS return.
1769  **/
1770
1771 static NTSTATUS rpc_shutdown_abort_internals(const DOM_SID *domain_sid, 
1772                                              const char *domain_name, 
1773                                              struct cli_state *cli, 
1774                                              TALLOC_CTX *mem_ctx, 
1775                                              int argc, const char **argv) 
1776 {
1777         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1778         
1779         result = cli_shutdown_abort(cli, mem_ctx);
1780         
1781         if (NT_STATUS_IS_OK(result))
1782                 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
1783         else
1784                 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
1785         
1786         return result;
1787 }
1788
1789
1790 /** 
1791  * ABORT the shutdown of a remote RPC Server,  over winreg pipe
1792  *
1793  * All parameters are provided by the run_rpc_command function, except for
1794  * argc, argv which are passed through. 
1795  *
1796  * @param domain_sid The domain sid aquired from the remote server
1797  * @param cli A cli_state connected to the server.
1798  * @param mem_ctx Talloc context, destoyed on compleation of the function.
1799  * @param argc  Standard main() style argc
1800  * @param argv  Standard main() style argv.  Initial components are already
1801  *              stripped
1802  *
1803  * @return Normal NTSTATUS return.
1804  **/
1805
1806 static NTSTATUS rpc_reg_shutdown_abort_internals(const DOM_SID *domain_sid, 
1807                                                  const char *domain_name, 
1808                                                  struct cli_state *cli, 
1809                                                  TALLOC_CTX *mem_ctx, 
1810                                                  int argc, const char **argv) 
1811 {
1812         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1813         
1814         result = cli_reg_abort_shutdown(cli, mem_ctx);
1815         
1816         if (NT_STATUS_IS_OK(result))
1817                 DEBUG(5,("cmd_reg_abort_shutdown: query succeeded\n"));
1818         else
1819                 DEBUG(5,("cmd_reg_abort_shutdown: query failed\n"));
1820         
1821         return result;
1822 }
1823
1824 /** 
1825  * ABORT the Shut down of a remote RPC server
1826  *
1827  * @param argc  Standard main() style argc
1828  * @param argv  Standard main() style argv.  Initial components are already
1829  *              stripped
1830  *
1831  * @return A shell status integer (0 for success)
1832  **/
1833
1834 static int rpc_shutdown_abort(int argc, const char **argv) 
1835 {
1836         int rc = run_rpc_command(NULL, PI_SHUTDOWN, 0, 
1837                                  rpc_shutdown_abort_internals,
1838                                  argc, argv);
1839
1840         if (rc == 0)
1841                 return rc;
1842
1843         DEBUG(1, ("initshutdown pipe didn't work, trying winreg pipe\n"));
1844
1845         return run_rpc_command(NULL, PI_WINREG, 0, 
1846                                rpc_reg_shutdown_abort_internals,
1847                                argc, argv);
1848 }
1849
1850 /** 
1851  * Shut down a remote RPC Server
1852  *
1853  * All parameters are provided by the run_rpc_command function, except for
1854  * argc, argv which are passes through. 
1855  *
1856  * @param domain_sid The domain sid aquired from the remote server
1857  * @param cli A cli_state connected to the server.
1858  * @param mem_ctx Talloc context, destoyed on compleation of the function.
1859  * @param argc  Standard main() style argc
1860  * @param argc  Standard main() style argv.  Initial components are already
1861  *              stripped
1862  *
1863  * @return Normal NTSTATUS return.
1864  **/
1865
1866 static NTSTATUS rpc_shutdown_internals(const DOM_SID *domain_sid, 
1867                                        const char *domain_name, 
1868                                        struct cli_state *cli, TALLOC_CTX *mem_ctx, 
1869                                        int argc, const char **argv) 
1870 {
1871         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1872         const char *msg = "This machine will be shutdown shortly";
1873         uint32 timeout = 20;
1874 #if 0
1875         poptContext pc;
1876         int rc;
1877
1878         struct poptOption long_options[] = {
1879                 {"message",    'm', POPT_ARG_STRING, &msg},
1880                 {"timeout",    't', POPT_ARG_INT,    &timeout},
1881                 {"reboot",     'r', POPT_ARG_NONE,   &reboot},
1882                 {"force",      'f', POPT_ARG_NONE,   &force},
1883                 { 0, 0, 0, 0}
1884         };
1885
1886         pc = poptGetContext(NULL, argc, (const char **) argv, long_options, 
1887                             POPT_CONTEXT_KEEP_FIRST);
1888
1889         rc = poptGetNextOpt(pc);
1890         
1891         if (rc < -1) {
1892                 /* an error occurred during option processing */
1893                 DEBUG(0, ("%s: %s\n",
1894                           poptBadOption(pc, POPT_BADOPTION_NOALIAS),
1895                           poptStrerror(rc)));
1896                 return NT_STATUS_INVALID_PARAMETER;
1897         }
1898 #endif
1899         if (opt_comment) {
1900                 msg = opt_comment;
1901         }
1902         if (opt_timeout) {
1903                 timeout = opt_timeout;
1904         }
1905
1906         /* create an entry */
1907         result = cli_reg_shutdown(cli, mem_ctx, msg, timeout, opt_reboot, opt_force);
1908
1909         if (NT_STATUS_IS_OK(result))
1910                 DEBUG(5,("Shutdown of remote machine succeeded\n"));
1911         else
1912                 DEBUG(0,("Shutdown of remote machine failed!\n"));
1913
1914         return result;
1915 }
1916
1917 /** 
1918  * Shut down a remote RPC server
1919  *
1920  * @param argc  Standard main() style argc
1921  * @param argc  Standard main() style argv.  Initial components are already
1922  *              stripped
1923  *
1924  * @return A shell status integer (0 for success)
1925  **/
1926
1927 static int rpc_shutdown(int argc, const char **argv) 
1928 {
1929         return run_rpc_command(NULL, PI_WINREG, 0, rpc_shutdown_internals,
1930                                        argc, argv);
1931 }
1932
1933 /***************************************************************************
1934   NT Domain trusts code (i.e. 'net rpc trustdom' functionality)
1935   
1936  ***************************************************************************/
1937
1938 /**
1939  * Add interdomain trust account to the RPC server.
1940  * All parameters (except for argc and argv) are passed by run_rpc_command
1941  * function.
1942  *
1943  * @param domain_sid The domain sid acquired from the server
1944  * @param cli A cli_state connected to the server.
1945  * @param mem_ctx Talloc context, destoyed on completion of the function.
1946  * @param argc  Standard main() style argc
1947  * @param argc  Standard main() style argv.  Initial components are already
1948  *              stripped
1949  *
1950  * @return normal NTSTATUS return code
1951  */
1952
1953 static NTSTATUS rpc_trustdom_add_internals(const DOM_SID *domain_sid, 
1954                                            const char *domain_name, 
1955                                            struct cli_state *cli, TALLOC_CTX *mem_ctx, 
1956                                            int argc, const char **argv) {
1957
1958         POLICY_HND connect_pol, domain_pol, user_pol;
1959         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1960         char *acct_name;
1961         uint16 acb_info;
1962         uint32 unknown, user_rid;
1963
1964         if (argc != 2) {
1965                 d_printf("Usage: net rpc trustdom add <domain_name> <pw>\n");
1966                 return NT_STATUS_INVALID_PARAMETER;
1967         }
1968
1969         /* 
1970          * Make valid trusting domain account (ie. uppercased and with '$' appended)
1971          */
1972          
1973         if (asprintf(&acct_name, "%s$", argv[0]) < 0) {
1974                 return NT_STATUS_NO_MEMORY;
1975         }
1976
1977         strupper_m(acct_name);
1978
1979         /* Get samr policy handle */
1980         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
1981                                   &connect_pol);
1982         if (!NT_STATUS_IS_OK(result)) {
1983                 goto done;
1984         }
1985         
1986         /* Get domain policy handle */
1987         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1988                                       MAXIMUM_ALLOWED_ACCESS,
1989                                       domain_sid, &domain_pol);
1990         if (!NT_STATUS_IS_OK(result)) {
1991                 goto done;
1992         }
1993
1994         /* Create trusting domain's account */
1995         acb_info = ACB_DOMTRUST;
1996         unknown = 0xe00500b0; /* No idea what this is - a permission mask?
1997                                  mimir: yes, most probably it is */
1998
1999         result = cli_samr_create_dom_user(cli, mem_ctx, &domain_pol,
2000                                           acct_name, acb_info, unknown,
2001                                           &user_pol, &user_rid);
2002         if (!NT_STATUS_IS_OK(result)) {
2003                 goto done;
2004         }
2005
2006         {
2007                 SAM_USERINFO_CTR ctr;
2008                 SAM_USER_INFO_24 p24;
2009                 uchar pwbuf[516];
2010
2011                 encode_pw_buffer((char *)pwbuf, argv[1], STR_UNICODE);
2012
2013                 ZERO_STRUCT(ctr);
2014                 ZERO_STRUCT(p24);
2015
2016                 init_sam_user_info24(&p24, (char *)pwbuf, 24);
2017
2018                 ctr.switch_value = 24;
2019                 ctr.info.id24 = &p24;
2020
2021                 result = cli_samr_set_userinfo(cli, mem_ctx, &user_pol, 24,
2022                                                &cli->user_session_key, &ctr);
2023
2024                 if (!NT_STATUS_IS_OK(result)) {
2025                         DEBUG(0,("Could not set trust account password: %s\n",
2026                                  nt_errstr(result)));
2027                         goto done;
2028                 }
2029         }
2030
2031  done:
2032         SAFE_FREE(acct_name);
2033         return result;
2034 }
2035
2036 /**
2037  * Create interdomain trust account for a remote domain.
2038  *
2039  * @param argc standard argc
2040  * @param argv standard argv without initial components
2041  *
2042  * @return Integer status (0 means success)
2043  **/
2044
2045 static int rpc_trustdom_add(int argc, const char **argv)
2046 {
2047         if (argc > 0) {
2048                 return run_rpc_command(NULL, PI_SAMR, 0, rpc_trustdom_add_internals,
2049                                        argc, argv);
2050         } else {
2051                 d_printf("Usage: net rpc trustdom add <domain>\n");
2052                 return -1;
2053         }
2054 }
2055
2056
2057 /**
2058  * Delete interdomain trust account for a remote domain.
2059  *
2060  * @param argc standard argc
2061  * @param argv standard argv without initial components
2062  *
2063  * @return Integer status (0 means success)
2064  **/
2065  
2066 static int rpc_trustdom_del(int argc, const char **argv)
2067 {
2068         d_printf("Sorry, not yet implemented.\n");
2069         d_printf("Use 'smbpasswd -x -i' instead.\n");
2070         return -1;
2071 }
2072
2073  
2074 /**
2075  * Establish trust relationship to a trusting domain.
2076  * Interdomain account must already be created on remote PDC.
2077  *
2078  * @param argc standard argc
2079  * @param argv standard argv without initial components
2080  *
2081  * @return Integer status (0 means success)
2082  **/
2083
2084 static int rpc_trustdom_establish(int argc, const char **argv)
2085 {
2086         struct cli_state *cli;
2087         struct in_addr server_ip;
2088         POLICY_HND connect_hnd;
2089         TALLOC_CTX *mem_ctx;
2090         NTSTATUS nt_status;
2091         DOM_SID *domain_sid;
2092         WKS_INFO_100 wks_info;
2093         
2094         char* domain_name;
2095         char* domain_name_pol;
2096         char* acct_name;
2097         fstring pdc_name;
2098
2099         /*
2100          * Connect to \\server\ipc$ as 'our domain' account with password
2101          */
2102
2103         if (argc != 1) {
2104                 d_printf("Usage: net rpc trustdom establish <domain_name>\n");
2105                 return -1;
2106         }
2107
2108         domain_name = smb_xstrdup(argv[0]);
2109         strupper_m(domain_name);
2110
2111         /* account name used at first is our domain's name with '$' */
2112         asprintf(&acct_name, "%s$", lp_workgroup());
2113         strupper_m(acct_name);
2114         
2115         /*
2116          * opt_workgroup will be used by connection functions further,
2117          * hence it should be set to remote domain name instead of ours
2118          */
2119         if (opt_workgroup) {
2120                 opt_workgroup = smb_xstrdup(domain_name);
2121         };
2122         
2123         opt_user_name = acct_name;
2124
2125         /* find the domain controller */
2126         if (!net_find_pdc(&server_ip, pdc_name, domain_name)) {
2127                 DEBUG(0, ("Couldn't find domain controller for domain %s\n", domain_name));
2128                 return -1;
2129         }
2130
2131         /* connect to ipc$ as username/password */
2132         nt_status = connect_to_ipc(&cli, &server_ip, pdc_name);
2133         if (!NT_STATUS_EQUAL(nt_status, NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT)) {
2134
2135                 /* Is it trusting domain account for sure ? */
2136                 DEBUG(0, ("Couldn't verify trusting domain account. Error was %s\n",
2137                         nt_errstr(nt_status)));
2138                 return -1;
2139         }
2140         
2141         /*
2142          * Connect to \\server\ipc$ again (this time anonymously)
2143          */
2144         
2145         nt_status = connect_to_ipc_anonymous(&cli, &server_ip, (char*)pdc_name);
2146         
2147         if (NT_STATUS_IS_ERR(nt_status)) {
2148                 DEBUG(0, ("Couldn't connect to domain %s controller. Error was %s.\n",
2149                         domain_name, nt_errstr(nt_status)));
2150         }
2151
2152         /*
2153          * Use NetServerEnum2 to make sure we're talking to a proper server
2154          */
2155          
2156         if (!cli_get_pdc_name(cli, domain_name, (char*)pdc_name)) {
2157                 DEBUG(0, ("NetServerEnum2 error: Couldn't find primary domain controller\
2158                          for domain %s\n", domain_name));
2159         }
2160          
2161         /*
2162          * Call WksQueryInfo to check remote server's capabilities
2163          * note: It is now used only to get unicode domain name
2164          */
2165         
2166         if (!cli_nt_session_open(cli, PI_WKSSVC)) {
2167                 DEBUG(0, ("Couldn't not initialise wkssvc pipe\n"));
2168                 return -1;
2169         }
2170
2171         if (!(mem_ctx = talloc_init("establishing trust relationship to domain %s",
2172                         domain_name))) {
2173                 DEBUG(0, ("talloc_init() failed\n"));
2174                 cli_shutdown(cli);
2175                 return -1;
2176         }
2177         
2178         nt_status = cli_wks_query_info(cli, mem_ctx, &wks_info);
2179         
2180         if (NT_STATUS_IS_ERR(nt_status)) {
2181                 DEBUG(0, ("WksQueryInfo call failed.\n"));
2182                 return -1;
2183         }
2184
2185         if (cli->nt_pipe_fnum)
2186                 cli_nt_session_close(cli);
2187
2188
2189         /*
2190          * Call LsaOpenPolicy and LsaQueryInfo
2191          */
2192          
2193         if (!(mem_ctx = talloc_init("rpc_trustdom_establish"))) {
2194                 DEBUG(0, ("talloc_init() failed\n"));
2195                 cli_shutdown(cli);
2196                 return -1;
2197         }
2198
2199         if (!cli_nt_session_open(cli, PI_LSARPC)) {
2200                 DEBUG(0, ("Could not initialise lsa pipe\n"));
2201                 cli_shutdown(cli);
2202                 return -1;
2203         }
2204
2205         nt_status = cli_lsa_open_policy2(cli, mem_ctx, True, SEC_RIGHTS_QUERY_VALUE,
2206                                          &connect_hnd);
2207         if (NT_STATUS_IS_ERR(nt_status)) {
2208                 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
2209                         nt_errstr(nt_status)));
2210                 return -1;
2211         }
2212
2213         /* Querying info level 5 */
2214         
2215         nt_status = cli_lsa_query_info_policy(cli, mem_ctx, &connect_hnd,
2216                                               5 /* info level */, &domain_name_pol,
2217                                               &domain_sid);
2218         if (NT_STATUS_IS_ERR(nt_status)) {
2219                 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
2220                         nt_errstr(nt_status)));
2221                 return -1;
2222         }
2223
2224
2225
2226
2227         /* There should be actually query info level 3 (following nt serv behaviour),
2228            but I still don't know if it's _really_ necessary */
2229                         
2230         /*
2231          * Store the password in secrets db
2232          */
2233
2234         if (!secrets_store_trusted_domain_password(domain_name, wks_info.uni_lan_grp.buffer,
2235                                                    wks_info.uni_lan_grp.uni_str_len, opt_password,
2236                                                    *domain_sid)) {
2237                 DEBUG(0, ("Storing password for trusted domain failed.\n"));
2238                 return -1;
2239         }
2240         
2241         /*
2242          * Close the pipes and clean up
2243          */
2244          
2245         nt_status = cli_lsa_close(cli, mem_ctx, &connect_hnd);
2246         if (NT_STATUS_IS_ERR(nt_status)) {
2247                 DEBUG(0, ("Couldn't close LSA pipe. Error was %s\n",
2248                         nt_errstr(nt_status)));
2249                 return -1;
2250         }
2251
2252         if (cli->nt_pipe_fnum)
2253                 cli_nt_session_close(cli);
2254          
2255         talloc_destroy(mem_ctx);
2256          
2257         DEBUG(0, ("Success!\n"));
2258         return 0;
2259 }
2260
2261 /**
2262  * Revoke trust relationship to the remote domain
2263  *
2264  * @param argc standard argc
2265  * @param argv standard argv without initial components
2266  *
2267  * @return Integer status (0 means success)
2268  **/
2269
2270 static int rpc_trustdom_revoke(int argc, const char **argv)
2271 {
2272         char* domain_name;
2273
2274         if (argc < 1) return -1;
2275         
2276         /* generate upper cased domain name */
2277         domain_name = smb_xstrdup(argv[0]);
2278         strupper_m(domain_name);
2279
2280         /* delete password of the trust */
2281         if (!trusted_domain_password_delete(domain_name)) {
2282                 DEBUG(0, ("Failed to revoke relationship to the trusted domain %s\n",
2283                           domain_name));
2284                 return -1;
2285         };
2286         
2287         return 0;
2288 }
2289
2290 /**
2291  * Usage for 'net rpc trustdom' command
2292  *
2293  * @param argc standard argc
2294  * @param argv standard argv without inital components
2295  *
2296  * @return Integer status returned to shell
2297  **/
2298  
2299 static int rpc_trustdom_usage(int argc, const char **argv)
2300 {
2301         d_printf("  net rpc trustdom add \t\t add trusting domain's account\n");
2302         d_printf("  net rpc trustdom del \t\t delete trusting domain's account\n");
2303         d_printf("  net rpc trustdom establish \t establish relationship to trusted domain\n");
2304         d_printf("  net rpc trustdom revoke \t abandon relationship to trusted domain\n");
2305         d_printf("  net rpc trustdom list \t show current interdomain trust relationships\n");
2306         return -1;
2307 }
2308
2309
2310 static NTSTATUS rpc_query_domain_sid(const DOM_SID *domain_sid, 
2311                                      const char *domain_name, 
2312                                      struct cli_state *cli, TALLOC_CTX *mem_ctx,
2313                                      int argc, const char **argv)
2314 {
2315         fstring str_sid;
2316         sid_to_string(str_sid, domain_sid);
2317         d_printf("%s\n", str_sid);
2318         return NT_STATUS_OK;
2319 }
2320
2321
2322 static int rpc_trustdom_list(int argc, const char **argv)
2323 {
2324         /* common variables */
2325         TALLOC_CTX* mem_ctx;
2326         struct cli_state *cli, *remote_cli;
2327         NTSTATUS nt_status;
2328         const char *domain_name = NULL;
2329         DOM_SID *queried_dom_sid;
2330         fstring ascii_sid, padding;
2331         int ascii_dom_name_len;
2332         POLICY_HND connect_hnd;
2333         
2334         /* trusted domains listing variables */
2335         unsigned int num_domains, enum_ctx = 0;
2336         int i, pad_len, col_len = 20;
2337         DOM_SID *domain_sids;
2338         char **trusted_dom_names;
2339         fstring pdc_name;
2340         char *dummy;
2341         
2342         /* trusting domains listing variables */
2343         POLICY_HND domain_hnd;
2344         char **trusting_dom_names;
2345         uint32 *trusting_dom_rids;
2346         
2347         /*
2348          * Listing trusted domains (stored in secrets.tdb, if local)
2349          */
2350
2351         mem_ctx = talloc_init("trust relationships listing");
2352
2353         /*
2354          * set domain and pdc name to local samba server (default)
2355          * or to remote one given in command line
2356          */
2357         
2358         if (StrCaseCmp(opt_workgroup, lp_workgroup())) {
2359                 domain_name = opt_workgroup;
2360                 opt_target_workgroup = opt_workgroup;
2361         } else {
2362                 fstrcpy(pdc_name, global_myname());
2363                 domain_name = talloc_strdup(mem_ctx, lp_workgroup());
2364                 opt_target_workgroup = domain_name;
2365         };
2366
2367         /* open \PIPE\lsarpc and open policy handle */
2368         if (!(cli = net_make_ipc_connection(NET_FLAGS_PDC))) {
2369                 DEBUG(0, ("Couldn't connect to domain controller\n"));
2370                 return -1;
2371         };
2372
2373         if (!cli_nt_session_open(cli, PI_LSARPC)) {
2374                 DEBUG(0, ("Could not initialise lsa pipe\n"));
2375                 return -1;
2376         };
2377
2378         nt_status = cli_lsa_open_policy2(cli, mem_ctx, False, SEC_RIGHTS_QUERY_VALUE,
2379                                         &connect_hnd);
2380         if (NT_STATUS_IS_ERR(nt_status)) {
2381                 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
2382                         nt_errstr(nt_status)));
2383                 return -1;
2384         };
2385         
2386         /* query info level 5 to obtain sid of a domain being queried */
2387         nt_status = cli_lsa_query_info_policy(
2388                 cli, mem_ctx, &connect_hnd, 5 /* info level */, 
2389                 &dummy, &queried_dom_sid);
2390
2391         if (NT_STATUS_IS_ERR(nt_status)) {
2392                 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
2393                         nt_errstr(nt_status)));
2394                 return -1;
2395         }
2396                 
2397         /*
2398          * Keep calling LsaEnumTrustdom over opened pipe until
2399          * the end of enumeration is reached
2400          */
2401          
2402         d_printf("Trusted domains list:\n\n");
2403
2404         do {
2405                 nt_status = cli_lsa_enum_trust_dom(cli, mem_ctx, &connect_hnd, &enum_ctx,
2406                                                    &num_domains,
2407                                                    &trusted_dom_names, &domain_sids);
2408                 
2409                 if (NT_STATUS_IS_ERR(nt_status)) {
2410                         DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
2411                                 nt_errstr(nt_status)));
2412                         return -1;
2413                 };
2414                 
2415                 for (i = 0; i < num_domains; i++) {
2416                         /* convert sid into ascii string */
2417                         sid_to_string(ascii_sid, &(domain_sids[i]));
2418                 
2419                         /* calculate padding space for d_printf to look nicer */
2420                         pad_len = col_len - strlen(trusted_dom_names[i]);
2421                         padding[pad_len] = 0;
2422                         do padding[--pad_len] = ' '; while (pad_len);
2423                         
2424                         d_printf("%s%s%s\n", trusted_dom_names[i], padding, ascii_sid);
2425                 };
2426                 
2427                 /*
2428                  * in case of no trusted domains say something rather
2429                  * than just display blank line
2430                  */
2431                 if (!num_domains) d_printf("none\n");
2432
2433         } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
2434
2435         /* close this connection before doing next one */
2436         nt_status = cli_lsa_close(cli, mem_ctx, &connect_hnd);
2437         if (NT_STATUS_IS_ERR(nt_status)) {
2438                 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
2439                         nt_errstr(nt_status)));
2440                 return -1;
2441         };
2442         
2443         cli_nt_session_close(cli);
2444
2445         /*
2446          * Listing trusting domains (stored in passdb backend, if local)
2447          */
2448         
2449         d_printf("\nTrusting domains list:\n\n");
2450
2451         /*
2452          * Open \PIPE\samr and get needed policy handles
2453          */
2454         if (!cli_nt_session_open(cli, PI_SAMR)) {
2455                 DEBUG(0, ("Could not initialise samr pipe\n"));
2456                 return -1;
2457         };
2458         
2459         /* SamrConnect */
2460         nt_status = cli_samr_connect(cli, mem_ctx, SA_RIGHT_SAM_OPEN_DOMAIN,
2461                                                                  &connect_hnd);
2462         if (!NT_STATUS_IS_OK(nt_status)) {
2463                 DEBUG(0, ("Couldn't open SAMR policy handle. Error was %s\n",
2464                         nt_errstr(nt_status)));
2465                 return -1;
2466         };
2467         
2468         /* SamrOpenDomain - we have to open domain policy handle in order to be
2469            able to enumerate accounts*/
2470         nt_status = cli_samr_open_domain(cli, mem_ctx, &connect_hnd,
2471                                          SA_RIGHT_DOMAIN_ENUM_ACCOUNTS,
2472                                          queried_dom_sid, &domain_hnd);                                                                  
2473         if (!NT_STATUS_IS_OK(nt_status)) {
2474                 DEBUG(0, ("Couldn't open domain object. Error was %s\n",
2475                         nt_errstr(nt_status)));
2476                 return -1;
2477         };
2478         
2479         /*
2480          * perform actual enumeration
2481          */
2482          
2483         enum_ctx = 0;   /* reset enumeration context from last enumeration */
2484         do {
2485                         
2486                 nt_status = cli_samr_enum_dom_users(cli, mem_ctx, &domain_hnd,
2487                                                     &enum_ctx, ACB_DOMTRUST, 0xffff,
2488                                                     &trusting_dom_names, &trusting_dom_rids,
2489                                                     &num_domains);
2490                 if (NT_STATUS_IS_ERR(nt_status)) {
2491                         DEBUG(0, ("Couldn't enumerate accounts. Error was: %s\n",
2492                                 nt_errstr(nt_status)));
2493                         return -1;
2494                 };
2495                 
2496                 for (i = 0; i < num_domains; i++) {
2497
2498                         /*
2499                          * get each single domain's sid (do we _really_ need this ?):
2500                          *  1) connect to domain's pdc
2501                          *  2) query the pdc for domain's sid
2502                          */
2503
2504                         /* get rid of '$' tail */
2505                         ascii_dom_name_len = strlen(trusting_dom_names[i]);
2506                         if (ascii_dom_name_len && ascii_dom_name_len < FSTRING_LEN)
2507                                 trusting_dom_names[i][ascii_dom_name_len - 1] = '\0';
2508                         
2509                         /* calculate padding space for d_printf to look nicer */
2510                         pad_len = col_len - strlen(trusting_dom_names[i]);
2511                         padding[pad_len] = 0;
2512                         do padding[--pad_len] = ' '; while (pad_len);
2513
2514                         /* set opt_* variables to remote domain */
2515                         strupper_m(trusting_dom_names[i]);
2516                         opt_workgroup = talloc_strdup(mem_ctx, trusting_dom_names[i]);
2517                         opt_target_workgroup = opt_workgroup;
2518                         
2519                         d_printf("%s%s", trusting_dom_names[i], padding);
2520                         
2521                         /* connect to remote domain controller */
2522                         remote_cli = net_make_ipc_connection(NET_FLAGS_PDC | NET_FLAGS_ANONYMOUS);
2523                         if (remote_cli) {                       
2524                                 /* query for domain's sid */
2525                                 if (run_rpc_command(remote_cli, PI_LSARPC, 0, rpc_query_domain_sid, argc, argv))
2526                                         d_printf("couldn't get domain's sid\n");
2527
2528                                 cli_shutdown(remote_cli);
2529                         
2530                         } else {
2531                                 d_printf("domain controller is not responding\n");
2532                         };
2533                 };
2534                 
2535                 if (!num_domains) d_printf("none\n");
2536                 
2537         } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
2538
2539         /* close opened samr and domain policy handles */
2540         nt_status = cli_samr_close(cli, mem_ctx, &domain_hnd);
2541         if (!NT_STATUS_IS_OK(nt_status)) {
2542                 DEBUG(0, ("Couldn't properly close domain policy handle for domain %s\n", domain_name));
2543         };
2544         
2545         nt_status = cli_samr_close(cli, mem_ctx, &connect_hnd);
2546         if (!NT_STATUS_IS_OK(nt_status)) {
2547                 DEBUG(0, ("Couldn't properly close samr policy handle for domain %s\n", domain_name));
2548         };
2549         
2550         /* close samr pipe and connection to IPC$ */
2551         cli_nt_session_close(cli);
2552         cli_shutdown(cli);
2553
2554         talloc_destroy(mem_ctx);         
2555         return 0;
2556 }
2557
2558 /**
2559  * Entrypoint for 'net rpc trustdom' code
2560  *
2561  * @param argc standard argc
2562  * @param argv standard argv without initial components
2563  *
2564  * @return Integer status (0 means success)
2565  */
2566
2567 static int rpc_trustdom(int argc, const char **argv)
2568 {
2569         struct functable func[] = {
2570                 {"add", rpc_trustdom_add},
2571                 {"del", rpc_trustdom_del},
2572                 {"establish", rpc_trustdom_establish},
2573                 {"revoke", rpc_trustdom_revoke},
2574                 {"help", rpc_trustdom_usage},
2575                 {"list", rpc_trustdom_list},
2576                 {NULL, NULL}
2577         };
2578
2579         if (argc == 0) {
2580                 rpc_trustdom_usage(argc, argv);
2581                 return -1;
2582         }
2583
2584         return (net_run_function(argc, argv, func, rpc_user_usage));
2585 }
2586
2587 /**
2588  * Check if a server will take rpc commands
2589  * @param flags Type of server to connect to (PDC, DMB, localhost)
2590  *              if the host is not explicitly specified
2591  * @return  BOOL (true means rpc supported)
2592  */
2593 BOOL net_rpc_check(unsigned flags)
2594 {
2595         struct cli_state cli;
2596         BOOL ret = False;
2597         struct in_addr server_ip;
2598         char *server_name = NULL;
2599
2600         /* flags (i.e. server type) may depend on command */
2601         if (!net_find_server(flags, &server_ip, &server_name))
2602                 return False;
2603
2604         ZERO_STRUCT(cli);
2605         if (cli_initialise(&cli) == False)
2606                 return False;
2607
2608         if (!cli_connect(&cli, server_name, &server_ip))
2609                 goto done;
2610         if (!attempt_netbios_session_request(&cli, global_myname(), 
2611                                              server_name, &server_ip))
2612                 goto done;
2613         if (!cli_negprot(&cli))
2614                 goto done;
2615         if (cli.protocol < PROTOCOL_NT1)
2616                 goto done;
2617
2618         ret = True;
2619  done:
2620         cli_shutdown(&cli);
2621         return ret;
2622 }
2623
2624 /* dump sam database via samsync rpc calls */
2625 static int rpc_samdump(int argc, const char **argv) {
2626         return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS, rpc_samdump_internals,
2627                                argc, argv);
2628 }
2629
2630 /* syncronise sam database via samsync rpc calls */
2631 static int rpc_vampire(int argc, const char **argv) {
2632         return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS, rpc_vampire_internals,
2633                                argc, argv);
2634 }
2635 /****************************************************************************/
2636
2637
2638 /** 
2639  * Basic usage function for 'net rpc'
2640  * @param argc  Standard main() style argc
2641  * @param argv  Standard main() style argv.  Initial components are already
2642  *              stripped
2643  **/
2644
2645 int net_rpc_usage(int argc, const char **argv) 
2646 {
2647         d_printf("  net rpc info \t\t\tshow basic info about a domain \n");
2648         d_printf("  net rpc join \t\t\tto join a domain \n");
2649         d_printf("  net rpc oldjoin \t\t\tto join a domain created in server manager\n\n\n");
2650         d_printf("  net rpc testjoin \t\ttests that a join is valid\n");
2651         d_printf("  net rpc user \t\t\tto add, delete and list users\n");
2652         d_printf("  net rpc password <username> [<password>] -Uadmin_username%%admin_pass");
2653         d_printf("  net rpc group \t\tto list groups\n");
2654         d_printf("  net rpc share \t\tto add, delete, and list shares\n");
2655         d_printf("  net rpc file \t\t\tto list open files\n");
2656         d_printf("  net rpc changetrustpw \tto change the trust account password\n");
2657         d_printf("  net rpc getsid \t\tfetch the domain sid into the local secrets.tdb\n");
2658         d_printf("  net rpc vampire \t\tsyncronise an NT PDC's users and groups into the local passdb\n");
2659         d_printf("  net rpc samdump \t\tdiplay an NT PDC's users, groups and other data\n");
2660         d_printf("  net rpc trustdom \t\tto create trusting domain's account\n"
2661                  "\t\t\t\t\tor establish trust\n");
2662         d_printf("  net rpc abortshutdown \tto abort the shutdown of a remote server\n");
2663         d_printf("  net rpc shutdown \t\tto shutdown a remote server\n");
2664         d_printf("\n");
2665         d_printf("'net rpc shutdown' also accepts the following miscellaneous options:\n"); /* misc options */
2666         d_printf("\t-r or --reboot\trequest remote server reboot on shutdown\n");
2667         d_printf("\t-f or --force\trequest the remote server force its shutdown\n");
2668         d_printf("\t-t or --timeout=<timeout>\tnumber of seconds before shutdown\n");
2669         d_printf("\t-c or --comment=<message>\ttext message to display on impending shutdown\n");
2670         return -1;
2671 }
2672
2673
2674 /**
2675  * Help function for 'net rpc'.  Calls command specific help if requested
2676  * or displays usage of net rpc
2677  * @param argc  Standard main() style argc
2678  * @param argv  Standard main() style argv.  Initial components are already
2679  *              stripped
2680  **/
2681
2682 int net_rpc_help(int argc, const char **argv)
2683 {
2684         struct functable func[] = {
2685                 {"join", rpc_join_usage},
2686                 {"user", rpc_user_usage},
2687                 {"group", rpc_group_usage},
2688                 {"share", rpc_share_usage},
2689                 /*{"changetrustpw", rpc_changetrustpw_usage}, */
2690                 {"trustdom", rpc_trustdom_usage},
2691                 /*{"abortshutdown", rpc_shutdown_abort_usage},*/
2692                 /*{"shutdown", rpc_shutdown_usage}, */
2693                 {NULL, NULL}
2694         };
2695
2696         if (argc == 0) {
2697                 net_rpc_usage(argc, argv);
2698                 return -1;
2699         }
2700
2701         return (net_run_function(argc, argv, func, rpc_user_usage));
2702 }
2703
2704
2705 /** 
2706  * 'net rpc' entrypoint.
2707  * @param argc  Standard main() style argc
2708  * @param argv  Standard main() style argv.  Initial components are already
2709  *              stripped
2710  **/
2711
2712 int net_rpc(int argc, const char **argv)
2713 {
2714         struct functable func[] = {
2715                 {"info", net_rpc_info},
2716                 {"join", net_rpc_join},
2717                 {"oldjoin", net_rpc_oldjoin},
2718                 {"testjoin", net_rpc_testjoin},
2719                 {"user", net_rpc_user},
2720                 {"password", rpc_user_password},
2721                 {"group", net_rpc_group},
2722                 {"share", net_rpc_share},
2723                 {"file", net_rpc_file},
2724                 {"changetrustpw", net_rpc_changetrustpw},
2725                 {"trustdom", rpc_trustdom},
2726                 {"abortshutdown", rpc_shutdown_abort},
2727                 {"shutdown", rpc_shutdown},
2728                 {"samdump", rpc_samdump},
2729                 {"vampire", rpc_vampire},
2730                 {"getsid", net_rpc_getsid},
2731                 {"help", net_rpc_help},
2732                 {NULL, NULL}
2733         };
2734         return net_run_function(argc, argv, func, net_rpc_usage);
2735 }