further work on and cleanup of the net-migration-tool.
[metze/old/v3-2-winbind-ndr.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  * Delete group 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 rpc_group_delete_internals(const DOM_SID *domain_sid,
1064                                            const char *domain_name,
1065                                            struct cli_state *cli,
1066                                            TALLOC_CTX *mem_ctx,
1067                                            int argc, const char **argv)
1068 {
1069         POLICY_HND connect_pol, domain_pol, group_pol, user_pol;
1070         BOOL group_is_primary = False;
1071         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1072
1073         uint32 *group_rids, num_rids, *name_types, num_members, 
1074                *group_attrs, group_rid;
1075         uint32 flags = 0x000003e8; /* Unknown */
1076         /* char **names; */
1077         int i;
1078         /* DOM_GID *user_gids; */
1079         SAM_USERINFO_CTR *user_ctr;
1080         fstring temp;
1081
1082         if (argc < 1) {
1083                 d_printf("specify group\n");
1084                 rpc_group_usage(argc,argv);
1085                 return NT_STATUS_OK; /* ok? */
1086         }
1087
1088         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
1089                                   &connect_pol);
1090
1091         if (!NT_STATUS_IS_OK(result)) {
1092                 d_printf("Request samr_connect failed\n");
1093                 goto done;
1094         }
1095         
1096         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1097                                       MAXIMUM_ALLOWED_ACCESS,
1098                                       domain_sid, &domain_pol);
1099         
1100         if (!NT_STATUS_IS_OK(result)) {
1101                 d_printf("Request open_domain failed\n");
1102                 goto done;
1103         }
1104         
1105         result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol,
1106                                        flags, 1, &argv[0],
1107                                        &num_rids, &group_rids,
1108                                        &name_types);
1109
1110         if (!NT_STATUS_IS_OK(result)) {
1111                 d_printf("Lookup of '%s' failed\n",argv[0]);
1112                 goto done;
1113         }
1114
1115         switch (name_types[0])
1116         {
1117         case SID_NAME_DOM_GRP:
1118                 result = cli_samr_open_group(cli, mem_ctx, &domain_pol,
1119                                              MAXIMUM_ALLOWED_ACCESS,
1120                                              group_rids[0], &group_pol);
1121                 if (!NT_STATUS_IS_OK(result)) {
1122                         d_printf("Request open_group failed");
1123                         goto done;
1124                 }
1125                 
1126                 group_rid = group_rids[0];
1127                 
1128                 result = cli_samr_query_groupmem(cli, mem_ctx, &group_pol,
1129                                  &num_members, &group_rids,
1130                                  &group_attrs);
1131                 
1132                 if (!NT_STATUS_IS_OK(result)) {
1133                         d_printf("Unable to query group members of %s",argv[0]);
1134                         goto done;
1135                 }
1136                 
1137                 if (opt_verbose) {
1138                         d_printf("Domain Group %s (rid: %d) has %d members\n",
1139                                 argv[0],group_rid,num_members);
1140                 }
1141
1142                 /* Check if group is anyone's primary group */
1143                 for (i = 0; i < num_members; i++)
1144                 {
1145                         result = cli_samr_open_user(cli, mem_ctx, &domain_pol,
1146                                                     MAXIMUM_ALLOWED_ACCESS,
1147                                                     group_rids[i], &user_pol);
1148         
1149                         if (!NT_STATUS_IS_OK(result)) {
1150                                 d_printf("Unable to open group member %d\n",group_rids[i]);
1151                                 goto done;
1152                         }
1153         
1154                         ZERO_STRUCT(user_ctr);
1155
1156                         result = cli_samr_query_userinfo(cli, mem_ctx, &user_pol,
1157                                                          21, &user_ctr);
1158         
1159                         if (!NT_STATUS_IS_OK(result)) {
1160                                 d_printf("Unable to lookup userinfo for group member %d\n",group_rids[i]);
1161                                 goto done;
1162                         }
1163         
1164                         if (user_ctr->info.id21->group_rid == group_rid) {
1165                                 unistr2_to_ascii(temp, &(user_ctr->info.id21)->uni_user_name, 
1166                                                 sizeof(temp)-1);
1167                                 if (opt_verbose) 
1168                                         d_printf("Group is primary group of %s\n",temp);
1169                                 group_is_primary = True;
1170                         }
1171
1172                         cli_samr_close(cli, mem_ctx, &user_pol);
1173                 }
1174                 
1175                 if (group_is_primary) {
1176                         d_printf("Unable to delete group because some of it's "
1177                                  "members have it as primary group\n");
1178                         result = NT_STATUS_MEMBERS_PRIMARY_GROUP;
1179                         goto done;
1180                 }
1181      
1182                 /* remove all group members */
1183                 for (i = 0; i < num_members; i++)
1184                 {
1185                         if (opt_verbose) 
1186                                 d_printf("Remove group member %d...",group_rids[i]);
1187                         result = cli_samr_del_groupmem(cli, mem_ctx, &group_pol, group_rids[i]);
1188
1189                         if (NT_STATUS_IS_OK(result)) {
1190                                 if (opt_verbose)
1191                                         d_printf("ok\n");
1192                         } else {
1193                                 if (opt_verbose)
1194                                         d_printf("failed\n");
1195                                 goto done;
1196                         }       
1197                 }
1198
1199                 result = cli_samr_delete_dom_group(cli, mem_ctx, &group_pol);
1200
1201                 break;
1202         /* removing a local group is easier... */
1203         case SID_NAME_ALIAS:
1204                 result = cli_samr_open_alias(cli, mem_ctx, &domain_pol,
1205                                              MAXIMUM_ALLOWED_ACCESS,
1206                                              group_rids[0], &group_pol);
1207
1208                 if (!NT_STATUS_IS_OK(result)) {
1209                         d_printf("Request open_alias failed\n");
1210                         goto done;
1211                 }
1212                 
1213                 result = cli_samr_delete_dom_alias(cli, mem_ctx, &group_pol);
1214                 break;
1215         default:
1216                 d_printf("%s is of type %s. This command is only for deleting local or global groups\n",
1217                         argv[0],sid_type_lookup(name_types[0]));
1218                 result = NT_STATUS_UNSUCCESSFUL;
1219                 goto done;
1220         }
1221          
1222         
1223         if (NT_STATUS_IS_OK(result)) {
1224                 if (opt_verbose)
1225                         d_printf("Deleted %s '%s'\n",sid_type_lookup(name_types[0]),argv[0]);
1226         } else {
1227                 d_printf("Deleting of %s failed: %s\n",argv[0],
1228                         get_friendly_nt_error_msg(result));
1229         }
1230         
1231  done:
1232         return result;  
1233         
1234 }
1235
1236 static int rpc_group_delete(int argc, const char **argv)
1237 {
1238         return run_rpc_command(NULL, PI_SAMR, 0, rpc_group_delete_internals,
1239                                argc,argv);
1240 }
1241
1242 static NTSTATUS 
1243 rpc_group_add_internals(const DOM_SID *domain_sid, const char *domain_name, 
1244                         struct cli_state *cli,
1245                         TALLOC_CTX *mem_ctx, int argc, const char **argv)
1246 {
1247         POLICY_HND connect_pol, domain_pol, group_pol;
1248         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1249         GROUP_INFO_CTR group_info;
1250
1251         if (argc != 1) {
1252                 d_printf("Group name must be specified\n");
1253                 rpc_group_usage(argc, argv);
1254                 return NT_STATUS_OK;
1255         }
1256
1257         /* Get sam policy handle */
1258         
1259         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1260                                   &connect_pol);
1261         if (!NT_STATUS_IS_OK(result)) goto done;
1262         
1263         /* Get domain policy handle */
1264         
1265         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1266                                       MAXIMUM_ALLOWED_ACCESS,
1267                                       domain_sid, &domain_pol);
1268         if (!NT_STATUS_IS_OK(result)) goto done;
1269
1270         /* Create the group */
1271
1272         result = cli_samr_create_dom_group(cli, mem_ctx, &domain_pol,
1273                                            argv[0], MAXIMUM_ALLOWED_ACCESS,
1274                                            &group_pol);
1275         if (!NT_STATUS_IS_OK(result)) goto done;
1276
1277         if (strlen(opt_comment) == 0) goto done;
1278
1279         /* We've got a comment to set */
1280
1281         group_info.switch_value1 = 4;
1282         init_samr_group_info4(&group_info.group.info4, opt_comment);
1283
1284         result = cli_samr_set_groupinfo(cli, mem_ctx, &group_pol, &group_info);
1285         if (!NT_STATUS_IS_OK(result)) goto done;
1286         
1287  done:
1288         if (NT_STATUS_IS_OK(result))
1289                 DEBUG(5, ("add group succeeded\n"));
1290         else
1291                 d_printf("add group failed: %s\n", nt_errstr(result));
1292
1293         return result;
1294 }
1295
1296 static NTSTATUS 
1297 rpc_alias_add_internals(const DOM_SID *domain_sid, const char *domain_name, 
1298                         struct cli_state *cli,
1299                         TALLOC_CTX *mem_ctx, int argc, const char **argv)
1300 {
1301         POLICY_HND connect_pol, domain_pol, alias_pol;
1302         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1303         ALIAS_INFO_CTR alias_info;
1304
1305         if (argc != 1) {
1306                 d_printf("Group name must be specified\n");
1307                 rpc_group_usage(argc, argv);
1308                 return NT_STATUS_OK;
1309         }
1310
1311         /* Get sam policy handle */
1312         
1313         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1314                                   &connect_pol);
1315         if (!NT_STATUS_IS_OK(result)) goto done;
1316         
1317         /* Get domain policy handle */
1318         
1319         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1320                                       MAXIMUM_ALLOWED_ACCESS,
1321                                       domain_sid, &domain_pol);
1322         if (!NT_STATUS_IS_OK(result)) goto done;
1323
1324         /* Create the group */
1325
1326         result = cli_samr_create_dom_alias(cli, mem_ctx, &domain_pol,
1327                                            argv[0], &alias_pol);
1328         if (!NT_STATUS_IS_OK(result)) goto done;
1329
1330         if (strlen(opt_comment) == 0) goto done;
1331
1332         /* We've got a comment to set */
1333
1334         alias_info.switch_value1 = 3;
1335         alias_info.switch_value2 = 3;
1336         init_samr_alias_info3(&alias_info.alias.info3, opt_comment);
1337
1338         result = cli_samr_set_aliasinfo(cli, mem_ctx, &alias_pol, &alias_info);
1339         if (!NT_STATUS_IS_OK(result)) goto done;
1340         
1341  done:
1342         if (NT_STATUS_IS_OK(result))
1343                 DEBUG(5, ("add group succeeded\n"));
1344         else
1345                 d_printf("add group failed: %s\n", nt_errstr(result));
1346
1347         return result;
1348 }
1349
1350 static int rpc_group_add(int argc, const char **argv)
1351 {
1352         if (opt_localgroup)
1353                 return run_rpc_command(NULL, PI_SAMR, 0,
1354                                        rpc_alias_add_internals,
1355                                        argc, argv);
1356
1357         return run_rpc_command(NULL, PI_SAMR, 0,
1358                                rpc_group_add_internals,
1359                                argc, argv);
1360 }
1361
1362 static NTSTATUS
1363 get_sid_from_name(struct cli_state *cli, TALLOC_CTX *mem_ctx, const char *name,
1364                   DOM_SID *sid, enum SID_NAME_USE *type)
1365 {
1366         int current_pipe = cli->pipe_idx;
1367
1368         DOM_SID *sids = NULL;
1369         uint32 *types = NULL;
1370         POLICY_HND lsa_pol;
1371         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1372
1373         if (current_pipe != PI_LSARPC) {
1374
1375                 if (current_pipe != -1)
1376                         cli_nt_session_close(cli);
1377
1378                 if (!cli_nt_session_open(cli, PI_LSARPC))
1379                         goto done;
1380         }
1381
1382         result = cli_lsa_open_policy(cli, mem_ctx, False,
1383                                      SEC_RIGHTS_MAXIMUM_ALLOWED, &lsa_pol);
1384
1385         if (!NT_STATUS_IS_OK(result))
1386                 goto done;
1387
1388         result = cli_lsa_lookup_names(cli, mem_ctx, &lsa_pol, 1,
1389                                       &name, &sids, &types);
1390
1391         if (NT_STATUS_IS_OK(result)) {
1392                 sid_copy(sid, &sids[0]);
1393                 *type = types[0];
1394         }
1395
1396         cli_lsa_close(cli, mem_ctx, &lsa_pol);
1397
1398  done:
1399         if (current_pipe != PI_LSARPC) {
1400                 cli_nt_session_close(cli);
1401                 if (current_pipe != -1)
1402                         cli_nt_session_open(cli, current_pipe);
1403         }
1404
1405         if (!NT_STATUS_IS_OK(result) && (StrnCaseCmp(name, "S-", 2) == 0)) {
1406
1407                 /* Try as S-1-5-whatever */
1408
1409                 DOM_SID tmp_sid;
1410
1411                 if (string_to_sid(&tmp_sid, name)) {
1412                         sid_copy(sid, &tmp_sid);
1413                         *type = SID_NAME_UNKNOWN;
1414                         result = NT_STATUS_OK;
1415                 }
1416         }
1417
1418         return result;
1419 }
1420
1421 static NTSTATUS
1422 rpc_add_groupmem(struct cli_state *cli, TALLOC_CTX *mem_ctx,
1423                  const DOM_SID *group_sid, const char *member)
1424 {
1425         POLICY_HND connect_pol, domain_pol;
1426         NTSTATUS result;
1427         uint32 group_rid;
1428         POLICY_HND group_pol;
1429
1430         uint32 num_rids;
1431         uint32 *rids = NULL;
1432         uint32 *rid_types = NULL;
1433
1434         DOM_SID sid;
1435
1436         sid_copy(&sid, group_sid);
1437
1438         if (!sid_split_rid(&sid, &group_rid))
1439                 return NT_STATUS_UNSUCCESSFUL;
1440
1441         /* Get sam policy handle */     
1442         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1443                                   &connect_pol);
1444         if (!NT_STATUS_IS_OK(result))
1445                 return result;
1446         
1447         /* Get domain policy handle */
1448         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1449                                       MAXIMUM_ALLOWED_ACCESS,
1450                                       &sid, &domain_pol);
1451         if (!NT_STATUS_IS_OK(result))
1452                 return result;
1453
1454         result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol, 1000,
1455                                        1, &member,
1456                                        &num_rids, &rids, &rid_types);
1457
1458         if (!NT_STATUS_IS_OK(result)) {
1459                 d_printf("Could not lookup up group member %s\n", member);
1460                 goto done;
1461         }
1462
1463         result = cli_samr_open_group(cli, mem_ctx, &domain_pol,
1464                                      MAXIMUM_ALLOWED_ACCESS,
1465                                      group_rid, &group_pol);
1466
1467         if (!NT_STATUS_IS_OK(result))
1468                 goto done;
1469
1470         result = cli_samr_add_groupmem(cli, mem_ctx, &group_pol, rids[0]);
1471
1472  done:
1473         cli_samr_close(cli, mem_ctx, &connect_pol);
1474         return result;
1475 }
1476
1477 static NTSTATUS
1478 rpc_add_aliasmem(struct cli_state *cli, TALLOC_CTX *mem_ctx,
1479                  const DOM_SID *alias_sid, const char *member)
1480 {
1481         POLICY_HND connect_pol, domain_pol;
1482         NTSTATUS result;
1483         uint32 alias_rid;
1484         POLICY_HND alias_pol;
1485
1486         DOM_SID member_sid;
1487         enum SID_NAME_USE member_type;
1488
1489         DOM_SID sid;
1490
1491         sid_copy(&sid, alias_sid);
1492
1493         if (!sid_split_rid(&sid, &alias_rid))
1494                 return NT_STATUS_UNSUCCESSFUL;
1495
1496         result = get_sid_from_name(cli, mem_ctx, member,
1497                                    &member_sid, &member_type);
1498
1499         if (!NT_STATUS_IS_OK(result)) {
1500                 d_printf("Could not lookup up group member %s\n", member);
1501                 return result;
1502         }
1503
1504         /* Get sam policy handle */     
1505         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1506                                   &connect_pol);
1507         if (!NT_STATUS_IS_OK(result)) {
1508                 goto done;
1509         }
1510         
1511         /* Get domain policy handle */
1512         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1513                                       MAXIMUM_ALLOWED_ACCESS,
1514                                       &sid, &domain_pol);
1515         if (!NT_STATUS_IS_OK(result)) {
1516                 goto done;
1517         }
1518
1519         result = cli_samr_open_alias(cli, mem_ctx, &domain_pol,
1520                                      MAXIMUM_ALLOWED_ACCESS,
1521                                      alias_rid, &alias_pol);
1522
1523         if (!NT_STATUS_IS_OK(result))
1524                 return result;
1525
1526         result = cli_samr_add_aliasmem(cli, mem_ctx, &alias_pol, &member_sid);
1527
1528         if (!NT_STATUS_IS_OK(result))
1529                 return result;
1530
1531  done:
1532         cli_samr_close(cli, mem_ctx, &connect_pol);
1533         return result;
1534 }
1535
1536 static NTSTATUS 
1537 rpc_group_addmem_internals(const DOM_SID *domain_sid, const char *domain_name, 
1538                            struct cli_state *cli,
1539                            TALLOC_CTX *mem_ctx, int argc, const char **argv)
1540 {
1541         DOM_SID group_sid;
1542         enum SID_NAME_USE group_type;
1543
1544         if (argc != 2) {
1545                 d_printf("Usage: 'net rpc group addmem <group> <member>\n");
1546                 return NT_STATUS_UNSUCCESSFUL;
1547         }
1548
1549         if (!NT_STATUS_IS_OK(get_sid_from_name(cli, mem_ctx, argv[0],
1550                                                &group_sid, &group_type))) {
1551                 d_printf("Could not lookup group name %s\n", argv[0]);
1552                 return NT_STATUS_UNSUCCESSFUL;
1553         }
1554
1555         if (group_type == SID_NAME_DOM_GRP) {
1556                 NTSTATUS result = rpc_add_groupmem(cli, mem_ctx,
1557                                                    &group_sid, argv[1]);
1558
1559                 if (!NT_STATUS_IS_OK(result)) {
1560                         d_printf("Could not add %s to %s: %s\n",
1561                                  argv[1], argv[0], nt_errstr(result));
1562                 }
1563                 return result;
1564         }
1565
1566         if (group_type == SID_NAME_ALIAS) {
1567                 NTSTATUS result = rpc_add_aliasmem(cli, mem_ctx,
1568                                                    &group_sid, argv[1]);
1569
1570                 if (!NT_STATUS_IS_OK(result)) {
1571                         d_printf("Could not add %s to %s: %s\n",
1572                                  argv[1], argv[0], nt_errstr(result));
1573                 }
1574                 return result;
1575         }
1576
1577         d_printf("Can only add members to global or local groups which "
1578                  "%s is not\n", argv[0]);
1579
1580         return NT_STATUS_UNSUCCESSFUL;
1581 }
1582
1583 static int rpc_group_addmem(int argc, const char **argv)
1584 {
1585         return run_rpc_command(NULL, PI_SAMR, 0,
1586                                rpc_group_addmem_internals,
1587                                argc, argv);
1588 }
1589
1590 static NTSTATUS
1591 rpc_del_groupmem(struct cli_state *cli, TALLOC_CTX *mem_ctx,
1592                  const DOM_SID *group_sid, const char *member)
1593 {
1594         POLICY_HND connect_pol, domain_pol;
1595         NTSTATUS result;
1596         uint32 group_rid;
1597         POLICY_HND group_pol;
1598
1599         uint32 num_rids;
1600         uint32 *rids = NULL;
1601         uint32 *rid_types = NULL;
1602
1603         DOM_SID sid;
1604
1605         sid_copy(&sid, group_sid);
1606
1607         if (!sid_split_rid(&sid, &group_rid))
1608                 return NT_STATUS_UNSUCCESSFUL;
1609
1610         /* Get sam policy handle */     
1611         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1612                                   &connect_pol);
1613         if (!NT_STATUS_IS_OK(result))
1614                 return result;
1615         
1616         /* Get domain policy handle */
1617         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1618                                       MAXIMUM_ALLOWED_ACCESS,
1619                                       &sid, &domain_pol);
1620         if (!NT_STATUS_IS_OK(result))
1621                 return result;
1622
1623         result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol, 1000,
1624                                        1, &member,
1625                                        &num_rids, &rids, &rid_types);
1626
1627         if (!NT_STATUS_IS_OK(result)) {
1628                 d_printf("Could not lookup up group member %s\n", member);
1629                 goto done;
1630         }
1631
1632         result = cli_samr_open_group(cli, mem_ctx, &domain_pol,
1633                                      MAXIMUM_ALLOWED_ACCESS,
1634                                      group_rid, &group_pol);
1635
1636         if (!NT_STATUS_IS_OK(result))
1637                 goto done;
1638
1639         result = cli_samr_del_groupmem(cli, mem_ctx, &group_pol, rids[0]);
1640
1641  done:
1642         cli_samr_close(cli, mem_ctx, &connect_pol);
1643         return result;
1644 }
1645
1646 static NTSTATUS
1647 rpc_del_aliasmem(struct cli_state *cli, TALLOC_CTX *mem_ctx,
1648                  const DOM_SID *alias_sid, const char *member)
1649 {
1650         POLICY_HND connect_pol, domain_pol;
1651         NTSTATUS result;
1652         uint32 alias_rid;
1653         POLICY_HND alias_pol;
1654
1655         DOM_SID member_sid;
1656         enum SID_NAME_USE member_type;
1657
1658         DOM_SID sid;
1659
1660         sid_copy(&sid, alias_sid);
1661
1662         if (!sid_split_rid(&sid, &alias_rid))
1663                 return NT_STATUS_UNSUCCESSFUL;
1664
1665         result = get_sid_from_name(cli, mem_ctx, member,
1666                                    &member_sid, &member_type);
1667
1668         if (!NT_STATUS_IS_OK(result)) {
1669                 d_printf("Could not lookup up group member %s\n", member);
1670                 return result;
1671         }
1672
1673         /* Get sam policy handle */     
1674         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1675                                   &connect_pol);
1676         if (!NT_STATUS_IS_OK(result)) {
1677                 goto done;
1678         }
1679         
1680         /* Get domain policy handle */
1681         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1682                                       MAXIMUM_ALLOWED_ACCESS,
1683                                       &sid, &domain_pol);
1684         if (!NT_STATUS_IS_OK(result)) {
1685                 goto done;
1686         }
1687
1688         result = cli_samr_open_alias(cli, mem_ctx, &domain_pol,
1689                                      MAXIMUM_ALLOWED_ACCESS,
1690                                      alias_rid, &alias_pol);
1691
1692         if (!NT_STATUS_IS_OK(result))
1693                 return result;
1694
1695         result = cli_samr_del_aliasmem(cli, mem_ctx, &alias_pol, &member_sid);
1696
1697         if (!NT_STATUS_IS_OK(result))
1698                 return result;
1699
1700  done:
1701         cli_samr_close(cli, mem_ctx, &connect_pol);
1702         return result;
1703 }
1704
1705 static NTSTATUS 
1706 rpc_group_delmem_internals(const DOM_SID *domain_sid, const char *domain_name, 
1707                            struct cli_state *cli,
1708                            TALLOC_CTX *mem_ctx, int argc, const char **argv)
1709 {
1710         DOM_SID group_sid;
1711         enum SID_NAME_USE group_type;
1712
1713         if (argc != 2) {
1714                 d_printf("Usage: 'net rpc group delmem <group> <member>\n");
1715                 return NT_STATUS_UNSUCCESSFUL;
1716         }
1717
1718         if (!NT_STATUS_IS_OK(get_sid_from_name(cli, mem_ctx, argv[0],
1719                                                &group_sid, &group_type))) {
1720                 d_printf("Could not lookup group name %s\n", argv[0]);
1721                 return NT_STATUS_UNSUCCESSFUL;
1722         }
1723
1724         if (group_type == SID_NAME_DOM_GRP) {
1725                 NTSTATUS result = rpc_del_groupmem(cli, mem_ctx,
1726                                                    &group_sid, argv[1]);
1727
1728                 if (!NT_STATUS_IS_OK(result)) {
1729                         d_printf("Could not del %s from %s: %s\n",
1730                                  argv[1], argv[0], nt_errstr(result));
1731                 }
1732                 return result;
1733         }
1734
1735         if (group_type == SID_NAME_ALIAS) {
1736                 NTSTATUS result = rpc_del_aliasmem(cli, mem_ctx, 
1737                                                    &group_sid, argv[1]);
1738
1739                 if (!NT_STATUS_IS_OK(result)) {
1740                         d_printf("Could not del %s from %s: %s\n",
1741                                  argv[1], argv[0], nt_errstr(result));
1742                 }
1743                 return result;
1744         }
1745
1746         d_printf("Can only delete members from global or local groups which "
1747                  "%s is not\n", argv[0]);
1748
1749         return NT_STATUS_UNSUCCESSFUL;
1750 }
1751
1752 static int rpc_group_delmem(int argc, const char **argv)
1753 {
1754         return run_rpc_command(NULL, PI_SAMR, 0,
1755                                rpc_group_delmem_internals,
1756                                argc, argv);
1757 }
1758
1759 /** 
1760  * List groups on a remote RPC server
1761  *
1762  * All parameters are provided by the run_rpc_command function, except for
1763  * argc, argv which are passes through. 
1764  *
1765  * @param domain_sid The domain sid acquired from the remote server
1766  * @param cli A cli_state connected to the server.
1767  * @param mem_ctx Talloc context, destoyed on completion of the function.
1768  * @param argc  Standard main() style argc
1769  * @param argv  Standard main() style argv.  Initial components are already
1770  *              stripped
1771  *
1772  * @return Normal NTSTATUS return.
1773  **/
1774
1775 static NTSTATUS 
1776 rpc_group_list_internals(const DOM_SID *domain_sid, const char *domain_name, 
1777                          struct cli_state *cli,
1778                          TALLOC_CTX *mem_ctx, int argc, const char **argv)
1779 {
1780         POLICY_HND connect_pol, domain_pol;
1781         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1782         uint32 start_idx=0, max_entries=250, num_entries, i, loop_count = 0;
1783         struct acct_info *groups;
1784         DOM_SID global_sid_Builtin;
1785         BOOL global = False;
1786         BOOL local = False;
1787         BOOL builtin = False;
1788
1789         if (argc == 0) {
1790                 global = True;
1791                 local = True;
1792                 builtin = True;
1793         }
1794
1795         for (i=0; i<argc; i++) {
1796                 if (strequal(argv[i], "global"))
1797                         global = True;
1798
1799                 if (strequal(argv[i], "local"))
1800                         local = True;
1801
1802                 if (strequal(argv[i], "builtin"))
1803                         builtin = True;
1804         }
1805
1806         string_to_sid(&global_sid_Builtin, "S-1-5-32");
1807
1808         /* Get sam policy handle */
1809         
1810         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
1811                                   &connect_pol);
1812         if (!NT_STATUS_IS_OK(result)) {
1813                 goto done;
1814         }
1815         
1816         /* Get domain policy handle */
1817         
1818         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1819                                       MAXIMUM_ALLOWED_ACCESS,
1820                                       domain_sid, &domain_pol);
1821         if (!NT_STATUS_IS_OK(result)) {
1822                 goto done;
1823         }
1824
1825         /* Query domain groups */
1826         if (opt_long_list_entries)
1827                 d_printf("\nGroup name            Comment"\
1828                          "\n-----------------------------\n");
1829         do {
1830                 SAM_DISPINFO_CTR ctr;
1831                 SAM_DISPINFO_3 info3;
1832                 uint32 max_size;
1833
1834                 ZERO_STRUCT(ctr);
1835                 ZERO_STRUCT(info3);
1836                 ctr.sam.info3 = &info3;
1837
1838                 if (!global) break;
1839
1840                 get_query_dispinfo_params(
1841                         loop_count, &max_entries, &max_size);
1842
1843                 result = cli_samr_query_dispinfo(cli, mem_ctx, &domain_pol,
1844                                                  &start_idx, 3, &num_entries,
1845                                                  max_entries, max_size, &ctr);
1846
1847                 if (!NT_STATUS_IS_OK(result) &&
1848                     !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
1849                         break;
1850                                                  
1851                 for (i = 0; i < num_entries; i++) {
1852
1853                         fstring group, desc;
1854
1855                         unistr2_to_ascii(group, &(&ctr.sam.info3->str[i])->uni_grp_name, sizeof(group)-1);
1856                         unistr2_to_ascii(desc, &(&ctr.sam.info3->str[i])->uni_grp_desc, sizeof(desc)-1);
1857                         
1858                         if (opt_long_list_entries)
1859                                 printf("%-21.21s %-50.50s\n",
1860                                        group, desc);
1861                         else
1862                                 printf("%s\n", group);
1863                 }
1864         } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
1865         /* query domain aliases */
1866         start_idx = 0;
1867         do {
1868                 if (!local) break;
1869
1870                 /* The max_size field in cli_samr_enum_als_groups is more like
1871                  * an account_control field with indiviual bits what to
1872                  * retrieve. Set this to 0xffff as NT4 usrmgr.exe does to get
1873                  * everything. I'm too lazy (sorry) to get this through to
1874                  * rpc_parse/ etc.  Volker */
1875
1876                 result = cli_samr_enum_als_groups(cli, mem_ctx, &domain_pol,
1877                                                   &start_idx, 0xffff,
1878                                                   &groups, &num_entries);
1879
1880                 if (!NT_STATUS_IS_OK(result) &&
1881                     !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
1882                         break;
1883                                                  
1884                 for (i = 0; i < num_entries; i++) {
1885
1886                         char *description = NULL;
1887
1888                         if (opt_long_list_entries) {
1889
1890                                 POLICY_HND alias_pol;
1891                                 ALIAS_INFO_CTR ctr;
1892
1893                                 if ((NT_STATUS_IS_OK(cli_samr_open_alias(cli, mem_ctx,
1894                                                                          &domain_pol,
1895                                                                          0x8,
1896                                                                          groups[i].rid,
1897                                                                          &alias_pol))) &&
1898                                     (NT_STATUS_IS_OK(cli_samr_query_alias_info(cli, mem_ctx,
1899                                                                                &alias_pol, 3,
1900                                                                                &ctr))) &&
1901                                     (NT_STATUS_IS_OK(cli_samr_close(cli, mem_ctx,
1902                                                                     &alias_pol)))) {
1903                                         description = unistr2_tdup(mem_ctx,
1904                                                                    &ctr.alias.info3.uni_acct_desc);
1905                                 }
1906                         }
1907                         
1908                         if (description != NULL) {
1909                                 printf("%-21.21s %-50.50s\n", 
1910                                        groups[i].acct_name,
1911                                        description);
1912                         } else {
1913                                 printf("%s\n", groups[i].acct_name);
1914                         }
1915                 }
1916         } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
1917         cli_samr_close(cli, mem_ctx, &domain_pol);
1918         /* Get builtin policy handle */
1919         
1920         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1921                                       MAXIMUM_ALLOWED_ACCESS,
1922                                       &global_sid_Builtin, &domain_pol);
1923         if (!NT_STATUS_IS_OK(result)) {
1924                 goto done;
1925         }
1926         /* query builtin aliases */
1927         start_idx = 0;
1928         do {
1929                 if (!builtin) break;
1930
1931                 result = cli_samr_enum_als_groups(cli, mem_ctx, &domain_pol,
1932                                                   &start_idx, max_entries,
1933                                                   &groups, &num_entries);
1934                                                  
1935                 if (!NT_STATUS_IS_OK(result) &&
1936                     !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
1937                         break;
1938                                                  
1939                 for (i = 0; i < num_entries; i++) {
1940
1941                         char *description = NULL;
1942
1943                         if (opt_long_list_entries) {
1944
1945                                 POLICY_HND alias_pol;
1946                                 ALIAS_INFO_CTR ctr;
1947
1948                                 if ((NT_STATUS_IS_OK(cli_samr_open_alias(cli, mem_ctx,
1949                                                                          &domain_pol,
1950                                                                          0x8,
1951                                                                          groups[i].rid,
1952                                                                          &alias_pol))) &&
1953                                     (NT_STATUS_IS_OK(cli_samr_query_alias_info(cli, mem_ctx,
1954                                                                                &alias_pol, 3,
1955                                                                                &ctr))) &&
1956                                     (NT_STATUS_IS_OK(cli_samr_close(cli, mem_ctx,
1957                                                                     &alias_pol)))) {
1958                                         description = unistr2_tdup(mem_ctx,
1959                                                                    &ctr.alias.info3.uni_acct_desc);
1960                                 }
1961                         }
1962                         
1963                         if (description != NULL) {
1964                                 printf("%-21.21s %-50.50s\n", 
1965                                        groups[i].acct_name,
1966                                        description);
1967                         } else {
1968                                 printf("%s\n", groups[i].acct_name);
1969                         }
1970                 }
1971         } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
1972
1973  done:
1974         return result;
1975 }
1976
1977 static int rpc_group_list(int argc, const char **argv)
1978 {
1979         return run_rpc_command(NULL, PI_SAMR, 0,
1980                                rpc_group_list_internals,
1981                                argc, argv);
1982 }
1983
1984 static NTSTATUS
1985 rpc_list_group_members(struct cli_state *cli, TALLOC_CTX *mem_ctx,
1986                        const char *domain_name, const DOM_SID *domain_sid,
1987                        POLICY_HND *domain_pol, uint32 rid)
1988 {
1989         NTSTATUS result;
1990         POLICY_HND group_pol;
1991         uint32 num_members, *group_rids, *group_attrs;
1992         uint32 num_names;
1993         char **names;
1994         uint32 *name_types;
1995         int i;
1996
1997         fstring sid_str;
1998         sid_to_string(sid_str, domain_sid);
1999
2000         result = cli_samr_open_group(cli, mem_ctx, domain_pol,
2001                                      MAXIMUM_ALLOWED_ACCESS,
2002                                      rid, &group_pol);
2003
2004         if (!NT_STATUS_IS_OK(result))
2005                 return result;
2006
2007         result = cli_samr_query_groupmem(cli, mem_ctx, &group_pol,
2008                                          &num_members, &group_rids,
2009                                          &group_attrs);
2010
2011         if (!NT_STATUS_IS_OK(result))
2012                 return result;
2013
2014         while (num_members > 0) {
2015                 int this_time = 512;
2016
2017                 if (num_members < this_time)
2018                         this_time = num_members;
2019
2020                 result = cli_samr_lookup_rids(cli, mem_ctx, domain_pol, 1000,
2021                                               this_time, group_rids,
2022                                               &num_names, &names, &name_types);
2023
2024                 if (!NT_STATUS_IS_OK(result))
2025                         return result;
2026
2027                 /* We only have users as members, but make the output
2028                    the same as the output of alias members */
2029
2030                 for (i = 0; i < this_time; i++) {
2031
2032                         if (opt_long_list_entries) {
2033                                 printf("%s-%d %s\\%s %d\n", sid_str,
2034                                        group_rids[i], domain_name, names[i],
2035                                        SID_NAME_USER);
2036                         } else {
2037                                 printf("%s\\%s\n", domain_name, names[i]);
2038                         }
2039                 }
2040
2041                 num_members -= this_time;
2042                 group_rids += 512;
2043         }
2044
2045         return NT_STATUS_OK;
2046 }
2047
2048 static NTSTATUS
2049 rpc_list_alias_members(struct cli_state *cli, TALLOC_CTX *mem_ctx,
2050                        POLICY_HND *domain_pol, uint32 rid)
2051 {
2052         NTSTATUS result;
2053         POLICY_HND alias_pol, lsa_pol;
2054         uint32 num_members;
2055         DOM_SID *alias_sids;
2056         char **domains;
2057         char **names;
2058         uint32 *types;
2059         int i;
2060
2061         result = cli_samr_open_alias(cli, mem_ctx, domain_pol,
2062                                      MAXIMUM_ALLOWED_ACCESS, rid, &alias_pol);
2063
2064         if (!NT_STATUS_IS_OK(result))
2065                 return result;
2066
2067         result = cli_samr_query_aliasmem(cli, mem_ctx, &alias_pol,
2068                                          &num_members, &alias_sids);
2069
2070         if (!NT_STATUS_IS_OK(result)) {
2071                 d_printf("Couldn't list alias members\n");
2072                 return result;
2073         }
2074
2075         if (num_members == 0) {
2076                 return NT_STATUS_OK;
2077         }
2078
2079         cli_nt_session_close(cli);
2080
2081         if (!cli_nt_session_open(cli, PI_LSARPC)) {
2082                 d_printf("Couldn't open LSA pipe\n");
2083                 return result;
2084         }
2085
2086         result = cli_lsa_open_policy(cli, mem_ctx, True,
2087                                      SEC_RIGHTS_MAXIMUM_ALLOWED, &lsa_pol);
2088
2089         if (!NT_STATUS_IS_OK(result)) {
2090                 d_printf("Couldn't open LSA policy handle\n");
2091                 return result;
2092         }
2093
2094         result = cli_lsa_lookup_sids(cli, mem_ctx, &lsa_pol, num_members,
2095                                      alias_sids, 
2096                                      &domains, &names, &types);
2097
2098         if (!NT_STATUS_IS_OK(result) &&
2099             !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED)) {
2100                 d_printf("Couldn't lookup SIDs\n");
2101                 return result;
2102         }
2103
2104         for (i = 0; i < num_members; i++) {
2105                 fstring sid_str;
2106                 sid_to_string(sid_str, &alias_sids[i]);
2107
2108                 if (opt_long_list_entries) {
2109                         printf("%s %s\\%s %d\n", sid_str, 
2110                                domains[i] ? domains[i] : "*unknown*", 
2111                                names[i] ? names[i] : "*unknown*", types[i]);
2112                 } else {
2113                         if (domains[i])
2114                                 printf("%s\\%s\n", domains[i], names[i]);
2115                         else
2116                                 printf("%s\n", sid_str);
2117                 }
2118         }
2119
2120         return NT_STATUS_OK;
2121 }
2122  
2123 static NTSTATUS 
2124 rpc_group_members_internals(const DOM_SID *domain_sid,
2125                             const char *domain_name, 
2126                             struct cli_state *cli,
2127                             TALLOC_CTX *mem_ctx, int argc, const char **argv)
2128 {
2129         NTSTATUS result;
2130         POLICY_HND connect_pol, domain_pol;
2131         uint32 num_rids, *rids, *rid_types;
2132
2133         /* Get sam policy handle */
2134         
2135         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
2136                                   &connect_pol);
2137
2138         if (!NT_STATUS_IS_OK(result))
2139                 return result;
2140         
2141         /* Get domain policy handle */
2142         
2143         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
2144                                       MAXIMUM_ALLOWED_ACCESS,
2145                                       domain_sid, &domain_pol);
2146
2147         if (!NT_STATUS_IS_OK(result))
2148                 return result;
2149
2150         result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol, 1000,
2151                                        1, argv, &num_rids, &rids, &rid_types);
2152
2153         if (!NT_STATUS_IS_OK(result)) {
2154
2155                 /* Ok, did not find it in the global sam, try with builtin */
2156
2157                 DOM_SID sid_Builtin;
2158
2159                 cli_samr_close(cli, mem_ctx, &domain_pol);
2160
2161                 string_to_sid(&sid_Builtin, "S-1-5-32");                
2162
2163                 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
2164                                               MAXIMUM_ALLOWED_ACCESS,
2165                                               &sid_Builtin, &domain_pol);
2166
2167                 if (!NT_STATUS_IS_OK(result)) {
2168                         d_printf("Couldn't find group %s\n", argv[0]);
2169                         return result;
2170                 }
2171
2172                 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol, 1000,
2173                                                1, argv, &num_rids,
2174                                                &rids, &rid_types);
2175
2176                 if (!NT_STATUS_IS_OK(result)) {
2177                         d_printf("Couldn't find group %s\n", argv[0]);
2178                         return result;
2179                 }
2180         }
2181
2182         if (num_rids != 1) {
2183                 d_printf("Couldn't find group %s\n", argv[0]);
2184                 return result;
2185         }
2186
2187         if (rid_types[0] == SID_NAME_DOM_GRP) {
2188                 return rpc_list_group_members(cli, mem_ctx, domain_name,
2189                                               domain_sid, &domain_pol,
2190                                               rids[0]);
2191         }
2192
2193         if (rid_types[0] == SID_NAME_ALIAS) {
2194                 return rpc_list_alias_members(cli, mem_ctx, &domain_pol,
2195                                               rids[0]);
2196         }
2197
2198         return NT_STATUS_NO_SUCH_GROUP;
2199 }
2200
2201 static int rpc_group_members(int argc, const char **argv)
2202 {
2203         if (argc != 1) {
2204                 return rpc_group_usage(argc, argv);
2205         }
2206
2207         return run_rpc_command(NULL, PI_SAMR, 0,
2208                                rpc_group_members_internals,
2209                                argc, argv);
2210 }
2211
2212 static NTSTATUS 
2213 rpc_group_rename_internals(const DOM_SID *domain_sid,
2214                             const char *domain_name, 
2215                             struct cli_state *cli,
2216                             TALLOC_CTX *mem_ctx, int argc, const char **argv)
2217 {
2218         NTSTATUS result;
2219         POLICY_HND connect_pol, domain_pol, group_pol;
2220         uint32 num_rids, *rids, *rid_types;
2221         GROUP_INFO_CTR ctr;
2222
2223         if (argc != 2) {
2224                 d_printf("Usage: 'net rpc group rename group newname'\n");
2225                 return NT_STATUS_UNSUCCESSFUL;
2226         }
2227
2228         /* Get sam policy handle */
2229         
2230         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS, 
2231                                   &connect_pol);
2232
2233         if (!NT_STATUS_IS_OK(result))
2234                 return result;
2235         
2236         /* Get domain policy handle */
2237         
2238         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
2239                                       MAXIMUM_ALLOWED_ACCESS,
2240                                       domain_sid, &domain_pol);
2241
2242         if (!NT_STATUS_IS_OK(result))
2243                 return result;
2244
2245         result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol, 1000,
2246                                        1, argv, &num_rids, &rids, &rid_types);
2247
2248         if (num_rids != 1) {
2249                 d_printf("Couldn't find group %s\n", argv[0]);
2250                 return result;
2251         }
2252
2253         if (rid_types[0] != SID_NAME_DOM_GRP) {
2254                 d_printf("Can only rename domain groups\n");
2255                 return NT_STATUS_UNSUCCESSFUL;
2256         }
2257
2258         result = cli_samr_open_group(cli, mem_ctx, &domain_pol,
2259                                      MAXIMUM_ALLOWED_ACCESS,
2260                                      rids[0], &group_pol);
2261
2262         if (!NT_STATUS_IS_OK(result))
2263                 return result;
2264
2265         ZERO_STRUCT(ctr);
2266
2267         ctr.switch_value1 = 2;
2268         init_samr_group_info2(&ctr.group.info2, argv[1]);
2269
2270         result = cli_samr_set_groupinfo(cli, mem_ctx, &group_pol, &ctr);
2271
2272         if (!NT_STATUS_IS_OK(result))
2273                 return result;
2274
2275         return NT_STATUS_NO_SUCH_GROUP;
2276 }
2277
2278 static int rpc_group_rename(int argc, const char **argv)
2279 {
2280         if (argc != 2) {
2281                 return rpc_group_usage(argc, argv);
2282         }
2283
2284         return run_rpc_command(NULL, PI_SAMR, 0,
2285                                rpc_group_rename_internals,
2286                                argc, argv);
2287 }
2288
2289 /** 
2290  * 'net rpc group' entrypoint.
2291  * @param argc  Standard main() style argc
2292  * @param argc  Standard main() style argv.  Initial components are already
2293  *              stripped
2294  **/
2295
2296 int net_rpc_group(int argc, const char **argv) 
2297 {
2298         struct functable func[] = {
2299                 {"add", rpc_group_add},
2300                 {"delete", rpc_group_delete},
2301                 {"addmem", rpc_group_addmem},
2302                 {"delmem", rpc_group_delmem},
2303                 {"list", rpc_group_list},
2304                 {"members", rpc_group_members},
2305                 {"rename", rpc_group_rename},
2306                 {NULL, NULL}
2307         };
2308         
2309         if (argc == 0) {
2310                 if (opt_long_list_entries) {
2311                 } else {
2312                 }
2313                 return run_rpc_command(NULL, PI_SAMR, 0, 
2314                                        rpc_group_list_internals,
2315                                        argc, argv);
2316         }
2317
2318         return net_run_function(argc, argv, func, rpc_group_usage);
2319 }
2320
2321 /****************************************************************************/
2322
2323 static int rpc_share_usage(int argc, const char **argv)
2324 {
2325         return net_help_share(argc, argv);
2326 }
2327
2328 /** 
2329  * Add a share on a remote RPC server
2330  *
2331  * All parameters are provided by the run_rpc_command function, except for
2332  * argc, argv which are passes through. 
2333  *
2334  * @param domain_sid The domain sid acquired from the remote server
2335  * @param cli A cli_state connected to the server.
2336  * @param mem_ctx Talloc context, destoyed on completion of the function.
2337  * @param argc  Standard main() style argc
2338  * @param argv  Standard main() style argv.  Initial components are already
2339  *              stripped
2340  *
2341  * @return Normal NTSTATUS return.
2342  **/
2343 static NTSTATUS 
2344 rpc_share_add_internals(const DOM_SID *domain_sid, const char *domain_name, 
2345                         struct cli_state *cli,
2346                         TALLOC_CTX *mem_ctx,int argc, const char **argv)
2347 {
2348         WERROR result;
2349         char *sharename=talloc_strdup(mem_ctx, argv[0]);
2350         char *path;
2351         uint32 type=0; /* only allow disk shares to be added */
2352         uint32 num_users=0, perms=0;
2353         char *password=NULL; /* don't allow a share password */
2354         uint32 level = 2;
2355
2356         path = strchr(sharename, '=');
2357         if (!path)
2358                 return NT_STATUS_UNSUCCESSFUL;
2359         *path++ = '\0';
2360
2361         result = cli_srvsvc_net_share_add(cli, mem_ctx, sharename, type,
2362                                           opt_comment, perms, opt_maxusers,
2363                                           num_users, path, password, 
2364                                           level, NULL);
2365         return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
2366 }
2367
2368 static int rpc_share_add(int argc, const char **argv)
2369 {
2370         if ((argc < 1) || !strchr(argv[0], '=')) {
2371                 DEBUG(1,("Sharename or path not specified on add\n"));
2372                 return rpc_share_usage(argc, argv);
2373         }
2374         return run_rpc_command(NULL, PI_SRVSVC, 0, 
2375                                rpc_share_add_internals,
2376                                argc, argv);
2377 }
2378
2379 /** 
2380  * Delete a share on a remote RPC server
2381  *
2382  * All parameters are provided by the run_rpc_command function, except for
2383  * argc, argv which are passes through. 
2384  *
2385  * @param domain_sid The domain sid acquired from the remote server
2386  * @param cli A cli_state connected to the server.
2387  * @param mem_ctx Talloc context, destoyed on completion of the function.
2388  * @param argc  Standard main() style argc
2389  * @param argv  Standard main() style argv.  Initial components are already
2390  *              stripped
2391  *
2392  * @return Normal NTSTATUS return.
2393  **/
2394 static NTSTATUS 
2395 rpc_share_del_internals(const DOM_SID *domain_sid, const char *domain_name, 
2396                         struct cli_state *cli,
2397                         TALLOC_CTX *mem_ctx,int argc, const char **argv)
2398 {
2399         WERROR result;
2400
2401         result = cli_srvsvc_net_share_del(cli, mem_ctx, argv[0]);
2402         return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
2403 }
2404
2405 /** 
2406  * Delete a share on a remote RPC server
2407  *
2408  * @param domain_sid The domain sid acquired from the remote server
2409  * @param argc  Standard main() style argc
2410  * @param argv  Standard main() style argv.  Initial components are already
2411  *              stripped
2412  *
2413  * @return A shell status integer (0 for success)
2414  **/
2415 static int rpc_share_delete(int argc, const char **argv)
2416 {
2417         if (argc < 1) {
2418                 DEBUG(1,("Sharename not specified on delete\n"));
2419                 return rpc_share_usage(argc, argv);
2420         }
2421         return run_rpc_command(NULL, PI_SRVSVC, 0, 
2422                                rpc_share_del_internals,
2423                                argc, argv);
2424 }
2425
2426 /**
2427  * Formatted print of share info
2428  *
2429  * @param info1  pointer to SRV_SHARE_INFO_1 to format
2430  **/
2431  
2432 static void display_share_info_1(SRV_SHARE_INFO_1 *info1)
2433 {
2434         fstring netname = "", remark = "";
2435
2436         rpcstr_pull_unistr2_fstring(netname, &info1->info_1_str.uni_netname);
2437         rpcstr_pull_unistr2_fstring(remark, &info1->info_1_str.uni_remark);
2438
2439         if (opt_long_list_entries) {
2440                 d_printf("%-12s %-8.8s %-50s\n",
2441                          netname, share_type[info1->info_1.type], remark);
2442         } else {
2443                 d_printf("%s\n", netname);
2444         }
2445
2446 }
2447
2448 /** 
2449  * List shares on a remote RPC server
2450  *
2451  * All parameters are provided by the run_rpc_command function, except for
2452  * argc, argv which are passes through. 
2453  *
2454  * @param domain_sid The domain sid acquired from the remote server
2455  * @param cli A cli_state connected to the server.
2456  * @param mem_ctx Talloc context, destoyed on completion of the function.
2457  * @param argc  Standard main() style argc
2458  * @param argv  Standard main() style argv.  Initial components are already
2459  *              stripped
2460  *
2461  * @return Normal NTSTATUS return.
2462  **/
2463
2464 static NTSTATUS 
2465 rpc_share_list_internals(const DOM_SID *domain_sid, const char *domain_name, 
2466                          struct cli_state *cli,
2467                          TALLOC_CTX *mem_ctx, int argc, const char **argv)
2468 {
2469         SRV_SHARE_INFO_CTR ctr;
2470         WERROR result;
2471         ENUM_HND hnd;
2472         uint32 preferred_len = 0xffffffff, i;
2473
2474         init_enum_hnd(&hnd, 0);
2475
2476         result = cli_srvsvc_net_share_enum(
2477                 cli, mem_ctx, 1, &ctr, preferred_len, &hnd);
2478
2479         if (!W_ERROR_IS_OK(result))
2480                 goto done;
2481
2482         /* Display results */
2483
2484         if (opt_long_list_entries) {
2485                 d_printf(
2486         "\nEnumerating shared resources (exports) on remote server:\n\n"\
2487         "\nShare name   Type     Description\n"\
2488         "----------   ----     -----------\n");
2489         }
2490         for (i = 0; i < ctr.num_entries; i++)
2491                 display_share_info_1(&ctr.share.info1[i]);
2492  done:
2493         return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
2494 }
2495
2496 /** 
2497  * Migrate shares from a remote RPC server to the local RPC srever
2498  *
2499  * All parameters are provided by the run_rpc_command function, except for
2500  * argc, argv which are passes through. 
2501  *
2502  * @param domain_sid The domain sid acquired from the remote server
2503  * @param cli A cli_state connected to the server.
2504  * @param mem_ctx Talloc context, destoyed on completion of the function.
2505  * @param argc  Standard main() style argc
2506  * @param argv  Standard main() style argv.  Initial components are already
2507  *              stripped
2508  *
2509  * @return Normal NTSTATUS return.
2510  **/
2511 static NTSTATUS 
2512 rpc_share_migrate_shares_internals(const DOM_SID *domain_sid, const char *domain_name, 
2513                                    struct cli_state *cli, TALLOC_CTX *mem_ctx, 
2514                                    int argc, const char **argv)
2515 {
2516         WERROR result;
2517         NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
2518         SRV_SHARE_INFO_CTR ctr_src;
2519         ENUM_HND hnd;
2520         uint32 type = 0; /* only allow disk shares to be added */
2521         uint32 num_uses = 0, perms = 0, max_uses = 0;
2522         char *password = NULL; /* don't allow a share password */
2523         uint32 preferred_len = 0xffffffff, i;
2524         BOOL got_dst_srvsvc_pipe = False;
2525         struct cli_state *cli_dst = NULL;
2526         uint32 level = 502; /* includes secdesc */
2527         SEC_DESC *share_sd = NULL;
2528
2529         init_enum_hnd(&hnd, 0);
2530
2531         result = cli_srvsvc_net_share_enum(
2532                         cli, mem_ctx, level, &ctr_src, preferred_len, &hnd);
2533         if (!W_ERROR_IS_OK(result))
2534                 goto done;
2535
2536         /* connect local PI_SRVSVC */
2537         nt_status = connect_local_pipe(&cli_dst, PI_SRVSVC, &got_dst_srvsvc_pipe);
2538         if (!NT_STATUS_IS_OK(nt_status))
2539                 return nt_status;
2540
2541
2542         for (i = 0; i < ctr_src.num_entries; i++) {
2543
2544                 fstring netname = "", remark = "", path = "";
2545                 /* reset error-code */
2546                 nt_status = NT_STATUS_UNSUCCESSFUL;
2547
2548                 rpcstr_pull_unistr2_fstring(
2549                         netname, &ctr_src.share.info502[i].info_502_str.uni_netname);
2550                 rpcstr_pull_unistr2_fstring(
2551                         remark, &ctr_src.share.info502[i].info_502_str.uni_remark);
2552                 rpcstr_pull_unistr2_fstring(
2553                         path, &ctr_src.share.info502[i].info_502_str.uni_path);
2554                 num_uses        = ctr_src.share.info502[i].info_502.num_uses;
2555                 max_uses        = ctr_src.share.info502[i].info_502.max_uses;
2556                 perms           = ctr_src.share.info502[i].info_502.perms;
2557
2558
2559                 if (opt_acls)
2560                         share_sd = dup_sec_desc(
2561                                 mem_ctx, ctr_src.share.info502[i].info_502_str.sd);
2562
2563                 /* since we do not have NetShareGetInfo implemented in samba3 we 
2564                    only can skip inside the enum-ctr_src */
2565                 if (argc == 1) {
2566                         char *one_share = talloc_strdup(mem_ctx, argv[0]);
2567                         if (!strequal(netname, one_share))
2568                                 continue;
2569                 }
2570
2571                 /* skip builtin shares */
2572                 /* FIXME: should print$ be added too ? */
2573                 if (strequal(netname,"IPC$") || strequal(netname,"ADMIN$") || 
2574                     strequal(netname,"global")) 
2575                         continue;
2576
2577                 /* only work with file-shares */
2578                 if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
2579                         d_printf("skipping   [%s]: not a file share.\n", netname);
2580                         continue;
2581                 }
2582
2583                 if (!cli_tdis(cli)) 
2584                         goto done;
2585
2586
2587                 /* finallly add the share on the dst server 
2588                    please note that samba currently does not allow to 
2589                    add a share without existing directory */
2590
2591                 printf("migrating: [%s], path: %s, comment: %s, %s share-ACLs\n", 
2592                         netname, path, remark, opt_acls ? "including" : "without" );
2593
2594                 if (opt_verbose && opt_acls)
2595                         display_sec_desc(share_sd);
2596
2597                 result = cli_srvsvc_net_share_add(cli_dst, mem_ctx, netname, type,
2598                                                   remark, perms, max_uses,
2599                                                   num_uses, path, password, 
2600                                                   level, share_sd);
2601         
2602                 if (W_ERROR_V(result) == W_ERROR_V(WERR_ALREADY_EXISTS)) {
2603                         printf("           [%s] does already exist\n", netname);
2604                         continue;
2605                 }
2606
2607                 if (!W_ERROR_IS_OK(result)) {
2608                         printf("cannot add share: %s\n", dos_errstr(result));
2609                         goto done;
2610                 }
2611
2612         }
2613
2614         nt_status = NT_STATUS_OK;
2615
2616 done:
2617         if (got_dst_srvsvc_pipe) {
2618                 cli_nt_session_close(cli_dst);
2619                 cli_shutdown(cli_dst);
2620         }
2621
2622         return nt_status;
2623
2624 }
2625
2626 /** 
2627  * Migrate shares from a rpc-server to another
2628  *
2629  * @param argc  Standard main() style argc
2630  * @param argv  Standard main() style argv.  Initial components are already
2631  *              stripped
2632  *
2633  * @return A shell status integer (0 for success)
2634  **/
2635 static int rpc_share_migrate_shares(int argc, const char **argv)
2636 {
2637
2638         if (!opt_host) {
2639                 printf("no server to migrate\n");
2640                 return -1;
2641         }
2642
2643         return run_rpc_command(NULL, PI_SRVSVC, 0, 
2644                                rpc_share_migrate_shares_internals,
2645                                argc, argv);
2646 }
2647
2648 typedef struct copy_clistate {
2649         TALLOC_CTX *mem_ctx;
2650         struct cli_state *cli_share_src;
2651         struct cli_state *cli_share_dst;
2652         const char *cwd;
2653 } copy_clistate;
2654
2655
2656 /**
2657  * Copy a file/dir 
2658  *
2659  * @param f     file_info
2660  * @param mask  current search mask
2661  * @param state arg-pointer
2662  *
2663  **/
2664 static void copy_fn(file_info *f, const char *mask, void *state)
2665 {
2666         NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
2667         struct copy_clistate *local_state = (struct copy_clistate *)state;
2668         fstring filename, new_mask, dir;
2669
2670         if (strequal(f->name, ".") || strequal(f->name, "..")) 
2671                 return;
2672
2673         DEBUG(3,("got mask: %s, name: %s\n", mask, f->name));
2674
2675         /* DIRECTORY */
2676         if (f->mode & aDIR) {
2677
2678                 DEBUG(3,("got dir: %s\n", f->name));
2679
2680                 fstrcpy(dir, local_state->cwd);
2681                 fstrcat(dir, "\\");
2682                 fstrcat(dir, f->name);
2683
2684                 /* create that directory */
2685                 nt_status = net_copy_file(local_state->mem_ctx, 
2686                                           local_state->cli_share_src, 
2687                                           local_state->cli_share_dst, 
2688                                           dir, dir, 
2689                                           opt_acls? True : False, 
2690                                           opt_attrs? True : False,
2691                                           opt_timestamps? True : False,
2692                                           False);
2693
2694                 if (!NT_STATUS_IS_OK(nt_status)) 
2695                         printf("could not copy dir %s: %s\n", 
2696                                 dir, nt_errstr(nt_status));
2697
2698                 /* search below that directory */
2699                 fstrcpy(new_mask, dir);
2700                 fstrcat(new_mask, "\\*");
2701
2702                 if (!sync_files(local_state->mem_ctx, 
2703                                 local_state->cli_share_src, 
2704                                 local_state->cli_share_dst, 
2705                                 new_mask, dir))
2706
2707                         printf("could not sync files\n");
2708                         
2709                 return;
2710         }
2711
2712
2713         /* FILE */
2714         fstrcpy(filename, local_state->cwd);
2715         fstrcat(filename, "\\");
2716         fstrcat(filename, f->name);
2717
2718         DEBUG(3,("got file: %s\n", filename));
2719
2720         nt_status = net_copy_file(local_state->mem_ctx, 
2721                                   local_state->cli_share_src, 
2722                                   local_state->cli_share_dst, 
2723                                   filename, filename, 
2724                                   opt_acls? True : False, 
2725                                   opt_attrs? True : False,
2726                                   opt_timestamps? True: False,
2727                                   True);
2728
2729         if (!NT_STATUS_IS_OK(nt_status)) 
2730                 printf("could not copy file %s: %s\n", 
2731                         filename, nt_errstr(nt_status));
2732
2733 }
2734
2735 /**
2736  * sync files, can be called recursivly to list files 
2737  * and then call copy_fn for each file 
2738  *
2739  * @param mem_ctx       TALLOC_CTX
2740  * @param cli_share_src a connected share on the originating server
2741  * @param cli_share_dst a connected share on the destination server
2742  * @param mask          the current search mask
2743  * @param cwd           the current path
2744  *
2745  * @return              Boolean result
2746  **/
2747 BOOL sync_files(TALLOC_CTX *mem_ctx, 
2748                 struct cli_state *cli_share_src, 
2749                 struct cli_state *cli_share_dst,
2750                 pstring mask, fstring cwd)
2751
2752 {
2753
2754         uint16 attribute = aSYSTEM | aHIDDEN | aDIR;
2755         struct copy_clistate clistate;
2756
2757         clistate.mem_ctx        = mem_ctx;
2758         clistate.cli_share_src  = cli_share_src;
2759         clistate.cli_share_dst  = cli_share_dst;
2760         clistate.cwd            = cwd;
2761
2762         DEBUG(3,("calling cli_list with mask: %s\n", mask));
2763
2764         if (cli_list(cli_share_src, mask, attribute, copy_fn, &clistate) == -1) {
2765                 d_printf("listing %s failed with error: %s\n", 
2766                         mask, cli_errstr(cli_share_src));
2767                 return False;
2768         }
2769
2770         return True;
2771 }
2772
2773
2774 /** 
2775  * Sync all files inside a remote share to another share (over smb)
2776  *
2777  * All parameters are provided by the run_rpc_command function, except for
2778  * argc, argv which are passes through. 
2779  *
2780  * @param domain_sid The domain sid acquired from the remote server
2781  * @param cli A cli_state connected to the server.
2782  * @param mem_ctx Talloc context, destoyed on completion of the function.
2783  * @param argc  Standard main() style argc
2784  * @param argv  Standard main() style argv.  Initial components are already
2785  *              stripped
2786  *
2787  * @return Normal NTSTATUS return.
2788  **/
2789 static NTSTATUS 
2790 rpc_share_migrate_files_internals(const DOM_SID *domain_sid, const char *domain_name, 
2791                                   struct cli_state *cli, TALLOC_CTX *mem_ctx,
2792                                   int argc, const char **argv)
2793 {
2794         WERROR result;
2795         NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
2796         SRV_SHARE_INFO_CTR ctr_src;
2797         ENUM_HND hnd;
2798         uint32 preferred_len = 0xffffffff, i;
2799         uint32 level = 2;
2800         struct cli_state *cli_share_src = NULL;
2801         struct cli_state *cli_share_dst = NULL;
2802         BOOL got_src_share = False;
2803         BOOL got_dst_share = False;
2804         pstring mask;
2805         extern struct in_addr loopback_ip;
2806
2807         init_enum_hnd(&hnd, 0);
2808
2809         result = cli_srvsvc_net_share_enum(
2810                         cli, mem_ctx, level, &ctr_src, preferred_len, &hnd);
2811
2812         if (!W_ERROR_IS_OK(result))
2813                 goto done;
2814
2815         for (i = 0; i < ctr_src.num_entries; i++) {
2816
2817                 fstring netname = "", remark = "", path = "";
2818
2819                 rpcstr_pull_unistr2_fstring(
2820                         netname, &ctr_src.share.info2[i].info_2_str.uni_netname);
2821                 rpcstr_pull_unistr2_fstring(
2822                         remark, &ctr_src.share.info2[i].info_2_str.uni_remark);
2823                 rpcstr_pull_unistr2_fstring(
2824                         path, &ctr_src.share.info2[i].info_2_str.uni_path);
2825
2826                 /* since we do not have NetShareGetInfo implemented in samba3 we 
2827                    only can skip inside the enum-ctr_src */
2828                 if (argc == 1) {
2829                         char *one_share = talloc_strdup(mem_ctx, argv[0]);
2830                         if (!strequal(netname, one_share))
2831                                 continue;
2832                 }
2833
2834                 /* skip builtin and hidden shares 
2835                    In particular, one might not want to mirror whole discs :) */
2836                 if (strequal(netname,"IPC$") || strequal(netname,"ADMIN$"))
2837                         continue;
2838                 
2839                 if (strequal(netname, "print$") || netname[1] == '$') {
2840                         d_printf("skipping   [%s]: builtin/hidden share\n", netname);
2841                         continue;
2842                 }
2843
2844                 if (opt_exclude && in_list(netname, (char *)opt_exclude, False)) {
2845                         printf("excluding  [%s]\n", netname);
2846                         continue;
2847                 } 
2848
2849                 /* only work with file-shares */
2850                 if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
2851                         d_printf("skipping   [%s]: not a file share.\n", netname);
2852                         continue;
2853                 }
2854
2855                 if (!cli_tdis(cli))
2856                         return NT_STATUS_UNSUCCESSFUL;
2857
2858                 printf("syncing    [%s] files and directories %s ACLs, %s DOS Attributes %s\n", 
2859                         netname, 
2860                         opt_acls ? "including" : "without", 
2861                         opt_attrs ? "including" : "without",
2862                         opt_timestamps ? "(preserving timestamps)" : "");
2863
2864
2865                 /* open share source */
2866                 nt_status = connect_to_service(&cli_share_src, &cli->dest_ip, 
2867                                                cli->desthost, netname, "A:");
2868                 if (!NT_STATUS_IS_OK(nt_status))
2869                         goto done;
2870
2871                 got_src_share = True;
2872
2873
2874                 /* open share destination */
2875                 nt_status = connect_to_service(&cli_share_dst, &loopback_ip, 
2876                                                "127.0.0.1", netname, "A:");
2877                 if (!NT_STATUS_IS_OK(nt_status))
2878                         goto done;
2879
2880                 got_dst_share = True;
2881
2882
2883                 /* now call the filesync */
2884                 pstrcpy(mask, "\\*");
2885
2886                 if (!sync_files(mem_ctx, cli_share_src, cli_share_dst, mask, NULL)) {
2887                         d_printf("could not sync files for share: %s\n", netname);
2888                         nt_status = NT_STATUS_UNSUCCESSFUL;
2889                         goto done;
2890                 }
2891                 
2892         }
2893
2894         nt_status = NT_STATUS_OK;
2895
2896 done:
2897
2898         if (got_src_share)
2899                 cli_shutdown(cli_share_src);
2900
2901         if (got_dst_share)
2902                 cli_shutdown(cli_share_dst);
2903                 
2904         return nt_status;
2905
2906 }
2907
2908 static int rpc_share_migrate_files(int argc, const char **argv)
2909 {
2910
2911         if (!opt_host) {
2912                 printf("no server to migrate\n");
2913                 return -1;
2914         }
2915
2916         return run_rpc_command(NULL, PI_SRVSVC, 0, 
2917                                rpc_share_migrate_files_internals,
2918                                argc, argv);
2919 }
2920
2921 /** 
2922  * Migrate shares (including share-definitions, share-acls and files with acls/attrs)
2923  * from one server to another
2924  *
2925  * @param argc  Standard main() style argc
2926  * @param argv  Standard main() style argv.  Initial components are already
2927  *              stripped
2928  *
2929  * @return A shell status integer (0 for success)
2930  *
2931  **/
2932 static int rpc_share_migrate_all(int argc, const char **argv)
2933 {
2934         int ret;
2935
2936         if (!opt_host) {
2937                 printf("no server to migrate\n");
2938                 return -1;
2939         }
2940
2941         ret = run_rpc_command(NULL, PI_SRVSVC, 0, rpc_share_migrate_shares_internals, argc, argv);
2942         if (ret)
2943                 return ret;
2944 #if 0
2945         ret = run_rpc_command(NULL, PI_SRVSVC, 0, rpc_share_migrate_shares_security_internals, argc, argv);
2946         if (ret)
2947                 return ret;
2948 #endif
2949         return run_rpc_command(NULL, PI_SRVSVC, 0, rpc_share_migrate_files_internals, argc, argv);
2950 }
2951
2952
2953 /** 
2954  * 'net rpc share migrate' entrypoint.
2955  * @param argc  Standard main() style argc
2956  * @param argv  Standard main() style argv.  Initial components are already
2957  *              stripped
2958  **/
2959 static int rpc_share_migrate(int argc, const char **argv)
2960 {
2961
2962         struct functable func[] = {
2963                 {"all",         rpc_share_migrate_all},
2964                 {"files",       rpc_share_migrate_files},
2965                 {"help",        rpc_share_usage},
2966 /*              {"security",    rpc_share_migrate_security},*/
2967                 {"shares",      rpc_share_migrate_shares},
2968                 {NULL, NULL}
2969         };
2970
2971         return net_run_function(argc, argv, func, rpc_share_usage);
2972 }
2973
2974 /** 
2975  * 'net rpc share' entrypoint.
2976  * @param argc  Standard main() style argc
2977  * @param argv  Standard main() style argv.  Initial components are already
2978  *              stripped
2979  **/
2980
2981 int net_rpc_share(int argc, const char **argv) 
2982 {
2983         struct functable func[] = {
2984                 {"add", rpc_share_add},
2985                 {"delete", rpc_share_delete},
2986                 {"migrate", rpc_share_migrate},
2987                 {NULL, NULL}
2988         };
2989
2990         if (argc == 0)
2991                 return run_rpc_command(NULL, PI_SRVSVC, 0, 
2992                                        rpc_share_list_internals,
2993                                        argc, argv);
2994
2995         return net_run_function(argc, argv, func, rpc_share_usage);
2996 }
2997
2998 /****************************************************************************/
2999
3000 static int rpc_file_usage(int argc, const char **argv)
3001 {
3002         return net_help_file(argc, argv);
3003 }
3004
3005 /** 
3006  * Close a file on a remote RPC server
3007  *
3008  * All parameters are provided by the run_rpc_command function, except for
3009  * argc, argv which are passes through. 
3010  *
3011  * @param domain_sid The domain sid acquired from the remote server
3012  * @param cli A cli_state connected to the server.
3013  * @param mem_ctx Talloc context, destoyed on completion of the function.
3014  * @param argc  Standard main() style argc
3015  * @param argv  Standard main() style argv.  Initial components are already
3016  *              stripped
3017  *
3018  * @return Normal NTSTATUS return.
3019  **/
3020 static NTSTATUS 
3021 rpc_file_close_internals(const DOM_SID *domain_sid, const char *domain_name, 
3022                          struct cli_state *cli,
3023                          TALLOC_CTX *mem_ctx, int argc, const char **argv)
3024 {
3025         WERROR result;
3026         result = cli_srvsvc_net_file_close(cli, mem_ctx, atoi(argv[0]));
3027         return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
3028 }
3029
3030 /** 
3031  * Close a file on a remote RPC server
3032  *
3033  * @param argc  Standard main() style argc
3034  * @param argv  Standard main() style argv.  Initial components are already
3035  *              stripped
3036  *
3037  * @return A shell status integer (0 for success)
3038  **/
3039 static int rpc_file_close(int argc, const char **argv)
3040 {
3041         if (argc < 1) {
3042                 DEBUG(1, ("No fileid given on close\n"));
3043                 return(rpc_file_usage(argc, argv));
3044         }
3045
3046         return run_rpc_command(NULL, PI_SRVSVC, 0, 
3047                                rpc_file_close_internals,
3048                                argc, argv);
3049 }
3050
3051 /** 
3052  * Formatted print of open file info 
3053  *
3054  * @param info3  FILE_INFO_3 contents
3055  * @param str3   strings for FILE_INFO_3
3056  **/
3057
3058 static void display_file_info_3(FILE_INFO_3 *info3, FILE_INFO_3_STR *str3)
3059 {
3060         fstring user = "", path = "";
3061
3062         rpcstr_pull_unistr2_fstring(user, &str3->uni_user_name);
3063         rpcstr_pull_unistr2_fstring(path, &str3->uni_path_name);
3064
3065         d_printf("%-7.1d %-20.20s 0x%-4.2x %-6.1d %s\n",
3066                  info3->id, user, info3->perms, info3->num_locks, path);
3067 }
3068
3069 /** 
3070  * List open files on a remote RPC server
3071  *
3072  * All parameters are provided by the run_rpc_command function, except for
3073  * argc, argv which are passes through. 
3074  *
3075  * @param domain_sid The domain sid acquired from the remote server
3076  * @param cli A cli_state connected to the server.
3077  * @param mem_ctx Talloc context, destoyed on completion of the function.
3078  * @param argc  Standard main() style argc
3079  * @param argv  Standard main() style argv.  Initial components are already
3080  *              stripped
3081  *
3082  * @return Normal NTSTATUS return.
3083  **/
3084
3085 static NTSTATUS 
3086 rpc_file_list_internals(const DOM_SID *domain_sid, const char *domain_name, 
3087                         struct cli_state *cli,
3088                         TALLOC_CTX *mem_ctx, int argc, const char **argv)
3089 {
3090         SRV_FILE_INFO_CTR ctr;
3091         WERROR result;
3092         ENUM_HND hnd;
3093         uint32 preferred_len = 0xffffffff, i;
3094         const char *username=NULL;
3095
3096         init_enum_hnd(&hnd, 0);
3097
3098         /* if argc > 0, must be user command */
3099         if (argc > 0)
3100                 username = smb_xstrdup(argv[0]);
3101                 
3102         result = cli_srvsvc_net_file_enum(
3103                 cli, mem_ctx, 3, username, &ctr, preferred_len, &hnd);
3104
3105         if (!W_ERROR_IS_OK(result))
3106                 goto done;
3107
3108         /* Display results */
3109
3110         d_printf(
3111                  "\nEnumerating open files on remote server:\n\n"\
3112                  "\nFileId  Opened by            Perms  Locks  Path"\
3113                  "\n------  ---------            -----  -----  ---- \n");
3114         for (i = 0; i < ctr.num_entries; i++)
3115                 display_file_info_3(&ctr.file.info3[i].info_3, 
3116                                     &ctr.file.info3[i].info_3_str);
3117  done:
3118         return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
3119 }
3120
3121
3122 /** 
3123  * List files for a user on a remote RPC server
3124  *
3125  * @param argc  Standard main() style argc
3126  * @param argv  Standard main() style argv.  Initial components are already
3127  *              stripped
3128  *
3129  * @return A shell status integer (0 for success)
3130  **/
3131 static int rpc_file_user(int argc, const char **argv)
3132 {
3133         if (argc < 1) {
3134                 DEBUG(1, ("No username given\n"));
3135                 return(rpc_file_usage(argc, argv));
3136         }
3137
3138         return run_rpc_command(NULL, PI_SRVSVC, 0, 
3139                                rpc_file_list_internals,
3140                                argc, argv);
3141 }
3142
3143
3144 /** 
3145  * 'net rpc file' entrypoint.
3146  * @param argc  Standard main() style argc
3147  * @param argv  Standard main() style argv.  Initial components are already
3148  *              stripped
3149  **/
3150
3151 int net_rpc_file(int argc, const char **argv) 
3152 {
3153         struct functable func[] = {
3154                 {"close", rpc_file_close},
3155                 {"user", rpc_file_user},
3156 #if 0
3157                 {"info", rpc_file_info},
3158 #endif
3159                 {NULL, NULL}
3160         };
3161
3162         if (argc == 0)
3163                 return run_rpc_command(NULL, PI_SRVSVC, 0, 
3164                                        rpc_file_list_internals,
3165                                        argc, argv);
3166
3167         return net_run_function(argc, argv, func, rpc_file_usage);
3168 }
3169
3170 /****************************************************************************/
3171
3172
3173
3174 /** 
3175  * ABORT the shutdown of a remote RPC Server over, initshutdown pipe
3176  *
3177  * All parameters are provided by the run_rpc_command function, except for
3178  * argc, argv which are passed through. 
3179  *
3180  * @param domain_sid The domain sid aquired from the remote server
3181  * @param cli A cli_state connected to the server.
3182  * @param mem_ctx Talloc context, destoyed on compleation of the function.
3183  * @param argc  Standard main() style argc
3184  * @param argv  Standard main() style argv.  Initial components are already
3185  *              stripped
3186  *
3187  * @return Normal NTSTATUS return.
3188  **/
3189
3190 static NTSTATUS rpc_shutdown_abort_internals(const DOM_SID *domain_sid, 
3191                                              const char *domain_name, 
3192                                              struct cli_state *cli, 
3193                                              TALLOC_CTX *mem_ctx, 
3194                                              int argc, const char **argv) 
3195 {
3196         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
3197         
3198         result = cli_shutdown_abort(cli, mem_ctx);
3199         
3200         if (NT_STATUS_IS_OK(result))
3201                 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
3202         else
3203                 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
3204         
3205         return result;
3206 }
3207
3208
3209 /** 
3210  * ABORT the shutdown of a remote RPC Server,  over winreg pipe
3211  *
3212  * All parameters are provided by the run_rpc_command function, except for
3213  * argc, argv which are passed through. 
3214  *
3215  * @param domain_sid The domain sid aquired from the remote server
3216  * @param cli A cli_state connected to the server.
3217  * @param mem_ctx Talloc context, destoyed on compleation of the function.
3218  * @param argc  Standard main() style argc
3219  * @param argv  Standard main() style argv.  Initial components are already
3220  *              stripped
3221  *
3222  * @return Normal NTSTATUS return.
3223  **/
3224
3225 static NTSTATUS rpc_reg_shutdown_abort_internals(const DOM_SID *domain_sid, 
3226                                                  const char *domain_name, 
3227                                                  struct cli_state *cli, 
3228                                                  TALLOC_CTX *mem_ctx, 
3229                                                  int argc, const char **argv) 
3230 {
3231         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
3232         
3233         result = cli_reg_abort_shutdown(cli, mem_ctx);
3234         
3235         if (NT_STATUS_IS_OK(result))
3236                 DEBUG(5,("cmd_reg_abort_shutdown: query succeeded\n"));
3237         else
3238                 DEBUG(5,("cmd_reg_abort_shutdown: query failed\n"));
3239         
3240         return result;
3241 }
3242
3243 /** 
3244  * ABORT the Shut down of a remote RPC server
3245  *
3246  * @param argc  Standard main() style argc
3247  * @param argv  Standard main() style argv.  Initial components are already
3248  *              stripped
3249  *
3250  * @return A shell status integer (0 for success)
3251  **/
3252
3253 static int rpc_shutdown_abort(int argc, const char **argv) 
3254 {
3255         int rc = run_rpc_command(NULL, PI_SHUTDOWN, 0, 
3256                                  rpc_shutdown_abort_internals,
3257                                  argc, argv);
3258
3259         if (rc == 0)
3260                 return rc;
3261
3262         DEBUG(1, ("initshutdown pipe didn't work, trying winreg pipe\n"));
3263
3264         return run_rpc_command(NULL, PI_WINREG, 0, 
3265                                rpc_reg_shutdown_abort_internals,
3266                                argc, argv);
3267 }
3268
3269 /** 
3270  * Shut down a remote RPC Server
3271  *
3272  * All parameters are provided by the run_rpc_command function, except for
3273  * argc, argv which are passes through. 
3274  *
3275  * @param domain_sid The domain sid aquired from the remote server
3276  * @param cli A cli_state connected to the server.
3277  * @param mem_ctx Talloc context, destoyed on compleation of the function.
3278  * @param argc  Standard main() style argc
3279  * @param argc  Standard main() style argv.  Initial components are already
3280  *              stripped
3281  *
3282  * @return Normal NTSTATUS return.
3283  **/
3284
3285 static NTSTATUS rpc_shutdown_internals(const DOM_SID *domain_sid, 
3286                                        const char *domain_name, 
3287                                        struct cli_state *cli, TALLOC_CTX *mem_ctx, 
3288                                        int argc, const char **argv) 
3289 {
3290         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
3291         const char *msg = "This machine will be shutdown shortly";
3292         uint32 timeout = 20;
3293 #if 0
3294         poptContext pc;
3295         int rc;
3296
3297         struct poptOption long_options[] = {
3298                 {"message",    'm', POPT_ARG_STRING, &msg},
3299                 {"timeout",    't', POPT_ARG_INT,    &timeout},
3300                 {"reboot",     'r', POPT_ARG_NONE,   &reboot},
3301                 {"force",      'f', POPT_ARG_NONE,   &force},
3302                 { 0, 0, 0, 0}
3303         };
3304
3305         pc = poptGetContext(NULL, argc, (const char **) argv, long_options, 
3306                             POPT_CONTEXT_KEEP_FIRST);
3307
3308         rc = poptGetNextOpt(pc);
3309         
3310         if (rc < -1) {
3311                 /* an error occurred during option processing */
3312                 DEBUG(0, ("%s: %s\n",
3313                           poptBadOption(pc, POPT_BADOPTION_NOALIAS),
3314                           poptStrerror(rc)));
3315                 return NT_STATUS_INVALID_PARAMETER;
3316         }
3317 #endif
3318         if (opt_comment) {
3319                 msg = opt_comment;
3320         }
3321         if (opt_timeout) {
3322                 timeout = opt_timeout;
3323         }
3324
3325         /* create an entry */
3326         result = cli_reg_shutdown(cli, mem_ctx, msg, timeout, opt_reboot, opt_force);
3327
3328         if (NT_STATUS_IS_OK(result))
3329                 DEBUG(5,("Shutdown of remote machine succeeded\n"));
3330         else
3331                 DEBUG(0,("Shutdown of remote machine failed!\n"));
3332
3333         return result;
3334 }
3335
3336 /** 
3337  * Shut down a remote RPC server
3338  *
3339  * @param argc  Standard main() style argc
3340  * @param argc  Standard main() style argv.  Initial components are already
3341  *              stripped
3342  *
3343  * @return A shell status integer (0 for success)
3344  **/
3345
3346 static int rpc_shutdown(int argc, const char **argv) 
3347 {
3348         return run_rpc_command(NULL, PI_WINREG, 0, rpc_shutdown_internals,
3349                                        argc, argv);
3350 }
3351
3352 /***************************************************************************
3353   NT Domain trusts code (i.e. 'net rpc trustdom' functionality)
3354   
3355  ***************************************************************************/
3356
3357 /**
3358  * Add interdomain trust account to the RPC server.
3359  * All parameters (except for argc and argv) are passed by run_rpc_command
3360  * function.
3361  *
3362  * @param domain_sid The domain sid acquired from the server
3363  * @param cli A cli_state connected to the server.
3364  * @param mem_ctx Talloc context, destoyed on completion of the function.
3365  * @param argc  Standard main() style argc
3366  * @param argc  Standard main() style argv.  Initial components are already
3367  *              stripped
3368  *
3369  * @return normal NTSTATUS return code
3370  */
3371
3372 static NTSTATUS rpc_trustdom_add_internals(const DOM_SID *domain_sid, 
3373                                            const char *domain_name, 
3374                                            struct cli_state *cli, TALLOC_CTX *mem_ctx, 
3375                                            int argc, const char **argv) {
3376
3377         POLICY_HND connect_pol, domain_pol, user_pol;
3378         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
3379         char *acct_name;
3380         uint16 acb_info;
3381         uint32 unknown, user_rid;
3382
3383         if (argc != 2) {
3384                 d_printf("Usage: net rpc trustdom add <domain_name> <pw>\n");
3385                 return NT_STATUS_INVALID_PARAMETER;
3386         }
3387
3388         /* 
3389          * Make valid trusting domain account (ie. uppercased and with '$' appended)
3390          */
3391          
3392         if (asprintf(&acct_name, "%s$", argv[0]) < 0) {
3393                 return NT_STATUS_NO_MEMORY;
3394         }
3395
3396         strupper_m(acct_name);
3397
3398         /* Get samr policy handle */
3399         result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
3400                                   &connect_pol);
3401         if (!NT_STATUS_IS_OK(result)) {
3402                 goto done;
3403         }
3404         
3405         /* Get domain policy handle */
3406         result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
3407                                       MAXIMUM_ALLOWED_ACCESS,
3408                                       domain_sid, &domain_pol);
3409         if (!NT_STATUS_IS_OK(result)) {
3410                 goto done;
3411         }
3412
3413         /* Create trusting domain's account */
3414         acb_info = ACB_DOMTRUST;
3415         unknown = 0xe00500b0; /* No idea what this is - a permission mask?
3416                                  mimir: yes, most probably it is */
3417
3418         result = cli_samr_create_dom_user(cli, mem_ctx, &domain_pol,
3419                                           acct_name, acb_info, unknown,
3420                                           &user_pol, &user_rid);
3421         if (!NT_STATUS_IS_OK(result)) {
3422                 goto done;
3423         }
3424
3425         {
3426                 SAM_USERINFO_CTR ctr;
3427                 SAM_USER_INFO_24 p24;
3428                 uchar pwbuf[516];
3429
3430                 encode_pw_buffer((char *)pwbuf, argv[1], STR_UNICODE);
3431
3432                 ZERO_STRUCT(ctr);
3433                 ZERO_STRUCT(p24);
3434
3435                 init_sam_user_info24(&p24, (char *)pwbuf, 24);
3436
3437                 ctr.switch_value = 24;
3438                 ctr.info.id24 = &p24;
3439
3440                 result = cli_samr_set_userinfo(cli, mem_ctx, &user_pol, 24,
3441                                                &cli->user_session_key, &ctr);
3442
3443                 if (!NT_STATUS_IS_OK(result)) {
3444                         DEBUG(0,("Could not set trust account password: %s\n",
3445                                  nt_errstr(result)));
3446                         goto done;
3447                 }
3448         }
3449
3450  done:
3451         SAFE_FREE(acct_name);
3452         return result;
3453 }
3454
3455 /**
3456  * Create interdomain trust account for a remote domain.
3457  *
3458  * @param argc standard argc
3459  * @param argv standard argv without initial components
3460  *
3461  * @return Integer status (0 means success)
3462  **/
3463
3464 static int rpc_trustdom_add(int argc, const char **argv)
3465 {
3466         if (argc > 0) {
3467                 return run_rpc_command(NULL, PI_SAMR, 0, rpc_trustdom_add_internals,
3468                                        argc, argv);
3469         } else {
3470                 d_printf("Usage: net rpc trustdom add <domain>\n");
3471                 return -1;
3472         }
3473 }
3474
3475
3476 /**
3477  * Delete interdomain trust account for a remote domain.
3478  *
3479  * @param argc standard argc
3480  * @param argv standard argv without initial components
3481  *
3482  * @return Integer status (0 means success)
3483  **/
3484  
3485 static int rpc_trustdom_del(int argc, const char **argv)
3486 {
3487         d_printf("Sorry, not yet implemented.\n");
3488         d_printf("Use 'smbpasswd -x -i' instead.\n");
3489         return -1;
3490 }
3491
3492  
3493 /**
3494  * Establish trust relationship to a trusting domain.
3495  * Interdomain account must already be created on remote PDC.
3496  *
3497  * @param argc standard argc
3498  * @param argv standard argv without initial components
3499  *
3500  * @return Integer status (0 means success)
3501  **/
3502
3503 static int rpc_trustdom_establish(int argc, const char **argv)
3504 {
3505         struct cli_state *cli;
3506         struct in_addr server_ip;
3507         POLICY_HND connect_hnd;
3508         TALLOC_CTX *mem_ctx;
3509         NTSTATUS nt_status;
3510         DOM_SID *domain_sid;
3511         WKS_INFO_100 wks_info;
3512         
3513         char* domain_name;
3514         char* domain_name_pol;
3515         char* acct_name;
3516         fstring pdc_name;
3517
3518         /*
3519          * Connect to \\server\ipc$ as 'our domain' account with password
3520          */
3521
3522         if (argc != 1) {
3523                 d_printf("Usage: net rpc trustdom establish <domain_name>\n");
3524                 return -1;
3525         }
3526
3527         domain_name = smb_xstrdup(argv[0]);
3528         strupper_m(domain_name);
3529
3530         /* account name used at first is our domain's name with '$' */
3531         asprintf(&acct_name, "%s$", lp_workgroup());
3532         strupper_m(acct_name);
3533         
3534         /*
3535          * opt_workgroup will be used by connection functions further,
3536          * hence it should be set to remote domain name instead of ours
3537          */
3538         if (opt_workgroup) {
3539                 opt_workgroup = smb_xstrdup(domain_name);
3540         };
3541         
3542         opt_user_name = acct_name;
3543
3544         /* find the domain controller */
3545         if (!net_find_pdc(&server_ip, pdc_name, domain_name)) {
3546                 DEBUG(0, ("Couldn't find domain controller for domain %s\n", domain_name));
3547                 return -1;
3548         }
3549
3550         /* connect to ipc$ as username/password */
3551         nt_status = connect_to_ipc(&cli, &server_ip, pdc_name);
3552         if (!NT_STATUS_EQUAL(nt_status, NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT)) {
3553
3554                 /* Is it trusting domain account for sure ? */
3555                 DEBUG(0, ("Couldn't verify trusting domain account. Error was %s\n",
3556                         nt_errstr(nt_status)));
3557                 return -1;
3558         }
3559         
3560         /*
3561          * Connect to \\server\ipc$ again (this time anonymously)
3562          */
3563         
3564         nt_status = connect_to_ipc_anonymous(&cli, &server_ip, (char*)pdc_name);
3565         
3566         if (NT_STATUS_IS_ERR(nt_status)) {
3567                 DEBUG(0, ("Couldn't connect to domain %s controller. Error was %s.\n",
3568                         domain_name, nt_errstr(nt_status)));
3569         }
3570
3571         /*
3572          * Use NetServerEnum2 to make sure we're talking to a proper server
3573          */
3574          
3575         if (!cli_get_pdc_name(cli, domain_name, (char*)pdc_name)) {
3576                 DEBUG(0, ("NetServerEnum2 error: Couldn't find primary domain controller\
3577                          for domain %s\n", domain_name));
3578         }
3579          
3580         /*
3581          * Call WksQueryInfo to check remote server's capabilities
3582          * note: It is now used only to get unicode domain name
3583          */
3584         
3585         if (!cli_nt_session_open(cli, PI_WKSSVC)) {
3586                 DEBUG(0, ("Couldn't not initialise wkssvc pipe\n"));
3587                 return -1;
3588         }
3589
3590         if (!(mem_ctx = talloc_init("establishing trust relationship to domain %s",
3591                         domain_name))) {
3592                 DEBUG(0, ("talloc_init() failed\n"));
3593                 cli_shutdown(cli);
3594                 return -1;
3595         }
3596         
3597         nt_status = cli_wks_query_info(cli, mem_ctx, &wks_info);
3598         
3599         if (NT_STATUS_IS_ERR(nt_status)) {
3600                 DEBUG(0, ("WksQueryInfo call failed.\n"));
3601                 return -1;
3602         }
3603
3604         if (cli->nt_pipe_fnum)
3605                 cli_nt_session_close(cli);
3606
3607
3608         /*
3609          * Call LsaOpenPolicy and LsaQueryInfo
3610          */
3611          
3612         if (!(mem_ctx = talloc_init("rpc_trustdom_establish"))) {
3613                 DEBUG(0, ("talloc_init() failed\n"));
3614                 cli_shutdown(cli);
3615                 return -1;
3616         }
3617
3618         if (!cli_nt_session_open(cli, PI_LSARPC)) {
3619                 DEBUG(0, ("Could not initialise lsa pipe\n"));
3620                 cli_shutdown(cli);
3621                 return -1;
3622         }
3623
3624         nt_status = cli_lsa_open_policy2(cli, mem_ctx, True, SEC_RIGHTS_QUERY_VALUE,
3625                                          &connect_hnd);
3626         if (NT_STATUS_IS_ERR(nt_status)) {
3627                 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
3628                         nt_errstr(nt_status)));
3629                 return -1;
3630         }
3631
3632         /* Querying info level 5 */
3633         
3634         nt_status = cli_lsa_query_info_policy(cli, mem_ctx, &connect_hnd,
3635                                               5 /* info level */, &domain_name_pol,
3636                                               &domain_sid);
3637         if (NT_STATUS_IS_ERR(nt_status)) {
3638                 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
3639                         nt_errstr(nt_status)));
3640                 return -1;
3641         }
3642
3643
3644
3645
3646         /* There should be actually query info level 3 (following nt serv behaviour),
3647            but I still don't know if it's _really_ necessary */
3648                         
3649         /*
3650          * Store the password in secrets db
3651          */
3652
3653         if (!secrets_store_trusted_domain_password(domain_name, wks_info.uni_lan_grp.buffer,
3654                                                    wks_info.uni_lan_grp.uni_str_len, opt_password,
3655                                                    *domain_sid)) {
3656                 DEBUG(0, ("Storing password for trusted domain failed.\n"));
3657                 return -1;
3658         }
3659         
3660         /*
3661          * Close the pipes and clean up
3662          */
3663          
3664         nt_status = cli_lsa_close(cli, mem_ctx, &connect_hnd);
3665         if (NT_STATUS_IS_ERR(nt_status)) {
3666                 DEBUG(0, ("Couldn't close LSA pipe. Error was %s\n",
3667                         nt_errstr(nt_status)));
3668                 return -1;
3669         }
3670
3671         if (cli->nt_pipe_fnum)
3672                 cli_nt_session_close(cli);
3673          
3674         talloc_destroy(mem_ctx);
3675          
3676         d_printf("Trust to domain %s established\n", domain_name);
3677         return 0;
3678 }
3679
3680 /**
3681  * Revoke trust relationship to the remote domain
3682  *
3683  * @param argc standard argc
3684  * @param argv standard argv without initial components
3685  *
3686  * @return Integer status (0 means success)
3687  **/
3688
3689 static int rpc_trustdom_revoke(int argc, const char **argv)
3690 {
3691         char* domain_name;
3692
3693         if (argc < 1) return -1;
3694         
3695         /* generate upper cased domain name */
3696         domain_name = smb_xstrdup(argv[0]);
3697         strupper_m(domain_name);
3698
3699         /* delete password of the trust */
3700         if (!trusted_domain_password_delete(domain_name)) {
3701                 DEBUG(0, ("Failed to revoke relationship to the trusted domain %s\n",
3702                           domain_name));
3703                 return -1;
3704         };
3705         
3706         return 0;
3707 }
3708
3709 /**
3710  * Usage for 'net rpc trustdom' command
3711  *
3712  * @param argc standard argc
3713  * @param argv standard argv without inital components
3714  *
3715  * @return Integer status returned to shell
3716  **/
3717  
3718 static int rpc_trustdom_usage(int argc, const char **argv)
3719 {
3720         d_printf("  net rpc trustdom add \t\t add trusting domain's account\n");
3721         d_printf("  net rpc trustdom del \t\t delete trusting domain's account\n");
3722         d_printf("  net rpc trustdom establish \t establish relationship to trusted domain\n");
3723         d_printf("  net rpc trustdom revoke \t abandon relationship to trusted domain\n");
3724         d_printf("  net rpc trustdom list \t show current interdomain trust relationships\n");
3725         return -1;
3726 }
3727
3728
3729 static NTSTATUS rpc_query_domain_sid(const DOM_SID *domain_sid, 
3730                                      const char *domain_name, 
3731                                      struct cli_state *cli, TALLOC_CTX *mem_ctx,
3732                                      int argc, const char **argv)
3733 {
3734         fstring str_sid;
3735         sid_to_string(str_sid, domain_sid);
3736         d_printf("%s\n", str_sid);
3737         return NT_STATUS_OK;
3738 }
3739
3740
3741 static int rpc_trustdom_list(int argc, const char **argv)
3742 {
3743         /* common variables */
3744         TALLOC_CTX* mem_ctx;
3745         struct cli_state *cli, *remote_cli;
3746         NTSTATUS nt_status;
3747         const char *domain_name = NULL;
3748         DOM_SID *queried_dom_sid;
3749         fstring ascii_sid, padding;
3750         int ascii_dom_name_len;
3751         POLICY_HND connect_hnd;
3752         
3753         /* trusted domains listing variables */
3754         unsigned int num_domains, enum_ctx = 0;
3755         int i, pad_len, col_len = 20;
3756         DOM_SID *domain_sids;
3757         char **trusted_dom_names;
3758         fstring pdc_name;
3759         char *dummy;
3760         
3761         /* trusting domains listing variables */
3762         POLICY_HND domain_hnd;
3763         char **trusting_dom_names;
3764         uint32 *trusting_dom_rids;
3765         
3766         /*
3767          * Listing trusted domains (stored in secrets.tdb, if local)
3768          */
3769
3770         mem_ctx = talloc_init("trust relationships listing");
3771
3772         /*
3773          * set domain and pdc name to local samba server (default)
3774          * or to remote one given in command line
3775          */
3776         
3777         if (StrCaseCmp(opt_workgroup, lp_workgroup())) {
3778                 domain_name = opt_workgroup;
3779                 opt_target_workgroup = opt_workgroup;
3780         } else {
3781                 fstrcpy(pdc_name, global_myname());
3782                 domain_name = talloc_strdup(mem_ctx, lp_workgroup());
3783                 opt_target_workgroup = domain_name;
3784         };
3785
3786         /* open \PIPE\lsarpc and open policy handle */
3787         if (!(cli = net_make_ipc_connection(NET_FLAGS_PDC))) {
3788                 DEBUG(0, ("Couldn't connect to domain controller\n"));
3789                 return -1;
3790         };
3791
3792         if (!cli_nt_session_open(cli, PI_LSARPC)) {
3793                 DEBUG(0, ("Could not initialise lsa pipe\n"));
3794                 return -1;
3795         };
3796
3797         nt_status = cli_lsa_open_policy2(cli, mem_ctx, False, SEC_RIGHTS_QUERY_VALUE,
3798                                         &connect_hnd);
3799         if (NT_STATUS_IS_ERR(nt_status)) {
3800                 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
3801                         nt_errstr(nt_status)));
3802                 return -1;
3803         };
3804         
3805         /* query info level 5 to obtain sid of a domain being queried */
3806         nt_status = cli_lsa_query_info_policy(
3807                 cli, mem_ctx, &connect_hnd, 5 /* info level */, 
3808                 &dummy, &queried_dom_sid);
3809
3810         if (NT_STATUS_IS_ERR(nt_status)) {
3811                 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
3812                         nt_errstr(nt_status)));
3813                 return -1;
3814         }
3815                 
3816         /*
3817          * Keep calling LsaEnumTrustdom over opened pipe until
3818          * the end of enumeration is reached
3819          */
3820          
3821         d_printf("Trusted domains list:\n\n");
3822
3823         do {
3824                 nt_status = cli_lsa_enum_trust_dom(cli, mem_ctx, &connect_hnd, &enum_ctx,
3825                                                    &num_domains,
3826                                                    &trusted_dom_names, &domain_sids);
3827                 
3828                 if (NT_STATUS_IS_ERR(nt_status)) {
3829                         DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
3830                                 nt_errstr(nt_status)));
3831                         return -1;
3832                 };
3833                 
3834                 for (i = 0; i < num_domains; i++) {
3835                         /* convert sid into ascii string */
3836                         sid_to_string(ascii_sid, &(domain_sids[i]));
3837                 
3838                         /* calculate padding space for d_printf to look nicer */
3839                         pad_len = col_len - strlen(trusted_dom_names[i]);
3840                         padding[pad_len] = 0;
3841                         do padding[--pad_len] = ' '; while (pad_len);
3842                         
3843                         d_printf("%s%s%s\n", trusted_dom_names[i], padding, ascii_sid);
3844                 };
3845                 
3846                 /*
3847                  * in case of no trusted domains say something rather
3848                  * than just display blank line
3849                  */
3850                 if (!num_domains) d_printf("none\n");
3851
3852         } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
3853
3854         /* close this connection before doing next one */
3855         nt_status = cli_lsa_close(cli, mem_ctx, &connect_hnd);
3856         if (NT_STATUS_IS_ERR(nt_status)) {
3857                 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
3858                         nt_errstr(nt_status)));
3859                 return -1;
3860         };
3861         
3862         cli_nt_session_close(cli);
3863
3864         /*
3865          * Listing trusting domains (stored in passdb backend, if local)
3866          */
3867         
3868         d_printf("\nTrusting domains list:\n\n");
3869
3870         /*
3871          * Open \PIPE\samr and get needed policy handles
3872          */
3873         if (!cli_nt_session_open(cli, PI_SAMR)) {
3874                 DEBUG(0, ("Could not initialise samr pipe\n"));
3875                 return -1;
3876         };
3877         
3878         /* SamrConnect */
3879         nt_status = cli_samr_connect(cli, mem_ctx, SA_RIGHT_SAM_OPEN_DOMAIN,
3880                                                                  &connect_hnd);
3881         if (!NT_STATUS_IS_OK(nt_status)) {
3882                 DEBUG(0, ("Couldn't open SAMR policy handle. Error was %s\n",
3883                         nt_errstr(nt_status)));
3884                 return -1;
3885         };
3886         
3887         /* SamrOpenDomain - we have to open domain policy handle in order to be
3888            able to enumerate accounts*/
3889         nt_status = cli_samr_open_domain(cli, mem_ctx, &connect_hnd,
3890                                          SA_RIGHT_DOMAIN_ENUM_ACCOUNTS,
3891                                          queried_dom_sid, &domain_hnd);                                                                  
3892         if (!NT_STATUS_IS_OK(nt_status)) {
3893                 DEBUG(0, ("Couldn't open domain object. Error was %s\n",
3894                         nt_errstr(nt_status)));
3895                 return -1;
3896         };
3897         
3898         /*
3899          * perform actual enumeration
3900          */
3901          
3902         enum_ctx = 0;   /* reset enumeration context from last enumeration */
3903         do {
3904                         
3905                 nt_status = cli_samr_enum_dom_users(cli, mem_ctx, &domain_hnd,
3906                                                     &enum_ctx, ACB_DOMTRUST, 0xffff,
3907                                                     &trusting_dom_names, &trusting_dom_rids,
3908                                                     &num_domains);
3909                 if (NT_STATUS_IS_ERR(nt_status)) {
3910                         DEBUG(0, ("Couldn't enumerate accounts. Error was: %s\n",
3911                                 nt_errstr(nt_status)));
3912                         return -1;
3913                 };
3914                 
3915                 for (i = 0; i < num_domains; i++) {
3916
3917                         /*
3918                          * get each single domain's sid (do we _really_ need this ?):
3919                          *  1) connect to domain's pdc
3920                          *  2) query the pdc for domain's sid
3921                          */
3922
3923                         /* get rid of '$' tail */
3924                         ascii_dom_name_len = strlen(trusting_dom_names[i]);
3925                         if (ascii_dom_name_len && ascii_dom_name_len < FSTRING_LEN)
3926                                 trusting_dom_names[i][ascii_dom_name_len - 1] = '\0';
3927                         
3928                         /* calculate padding space for d_printf to look nicer */
3929                         pad_len = col_len - strlen(trusting_dom_names[i]);
3930                         padding[pad_len] = 0;
3931                         do padding[--pad_len] = ' '; while (pad_len);
3932
3933                         /* set opt_* variables to remote domain */
3934                         strupper_m(trusting_dom_names[i]);
3935                         opt_workgroup = talloc_strdup(mem_ctx, trusting_dom_names[i]);
3936                         opt_target_workgroup = opt_workgroup;
3937                         
3938                         d_printf("%s%s", trusting_dom_names[i], padding);
3939                         
3940                         /* connect to remote domain controller */
3941                         remote_cli = net_make_ipc_connection(NET_FLAGS_PDC | NET_FLAGS_ANONYMOUS);
3942                         if (remote_cli) {                       
3943                                 /* query for domain's sid */
3944                                 if (run_rpc_command(remote_cli, PI_LSARPC, 0, rpc_query_domain_sid, argc, argv))
3945                                         d_printf("couldn't get domain's sid\n");
3946
3947                                 cli_shutdown(remote_cli);
3948                         
3949                         } else {
3950                                 d_printf("domain controller is not responding\n");
3951                         };
3952                 };
3953                 
3954                 if (!num_domains) d_printf("none\n");
3955                 
3956         } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
3957
3958         /* close opened samr and domain policy handles */
3959         nt_status = cli_samr_close(cli, mem_ctx, &domain_hnd);
3960         if (!NT_STATUS_IS_OK(nt_status)) {
3961                 DEBUG(0, ("Couldn't properly close domain policy handle for domain %s\n", domain_name));
3962         };
3963         
3964         nt_status = cli_samr_close(cli, mem_ctx, &connect_hnd);
3965         if (!NT_STATUS_IS_OK(nt_status)) {
3966                 DEBUG(0, ("Couldn't properly close samr policy handle for domain %s\n", domain_name));
3967         };
3968         
3969         /* close samr pipe and connection to IPC$ */
3970         cli_nt_session_close(cli);
3971         cli_shutdown(cli);
3972
3973         talloc_destroy(mem_ctx);         
3974         return 0;
3975 }
3976
3977 /**
3978  * Entrypoint for 'net rpc trustdom' code
3979  *
3980  * @param argc standard argc
3981  * @param argv standard argv without initial components
3982  *
3983  * @return Integer status (0 means success)
3984  */
3985
3986 static int rpc_trustdom(int argc, const char **argv)
3987 {
3988         struct functable func[] = {
3989                 {"add", rpc_trustdom_add},
3990                 {"del", rpc_trustdom_del},
3991                 {"establish", rpc_trustdom_establish},
3992                 {"revoke", rpc_trustdom_revoke},
3993                 {"help", rpc_trustdom_usage},
3994                 {"list", rpc_trustdom_list},
3995                 {NULL, NULL}
3996         };
3997
3998         if (argc == 0) {
3999                 rpc_trustdom_usage(argc, argv);
4000                 return -1;
4001         }
4002
4003         return (net_run_function(argc, argv, func, rpc_user_usage));
4004 }
4005
4006 /**
4007  * Check if a server will take rpc commands
4008  * @param flags Type of server to connect to (PDC, DMB, localhost)
4009  *              if the host is not explicitly specified
4010  * @return  BOOL (true means rpc supported)
4011  */
4012 BOOL net_rpc_check(unsigned flags)
4013 {
4014         struct cli_state cli;
4015         BOOL ret = False;
4016         struct in_addr server_ip;
4017         char *server_name = NULL;
4018
4019         /* flags (i.e. server type) may depend on command */
4020         if (!net_find_server(flags, &server_ip, &server_name))
4021                 return False;
4022
4023         ZERO_STRUCT(cli);
4024         if (cli_initialise(&cli) == False)
4025                 return False;
4026
4027         if (!cli_connect(&cli, server_name, &server_ip))
4028                 goto done;
4029         if (!attempt_netbios_session_request(&cli, global_myname(), 
4030                                              server_name, &server_ip))
4031                 goto done;
4032         if (!cli_negprot(&cli))
4033                 goto done;
4034         if (cli.protocol < PROTOCOL_NT1)
4035                 goto done;
4036
4037         ret = True;
4038  done:
4039         cli_shutdown(&cli);
4040         return ret;
4041 }
4042
4043 /* dump sam database via samsync rpc calls */
4044 static int rpc_samdump(int argc, const char **argv) {
4045         return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS, rpc_samdump_internals,
4046                                argc, argv);
4047 }
4048
4049 /* syncronise sam database via samsync rpc calls */
4050 static int rpc_vampire(int argc, const char **argv) {
4051         return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS, rpc_vampire_internals,
4052                                argc, argv);
4053 }
4054
4055 /** 
4056  * Migrate everything from a print-server
4057  *
4058  * @param argc  Standard main() style argc
4059  * @param argv  Standard main() style argv.  Initial components are already
4060  *              stripped
4061  *
4062  * @return A shell status integer (0 for success)
4063  *
4064  * The order is important !
4065  * To successfully add drivers the print-queues have to exist !
4066  * Applying ACLs should be the last step, because you're easily locked out
4067  *
4068  **/
4069 static int rpc_printer_migrate_all(int argc, const char **argv)
4070 {
4071         int ret;
4072
4073         if (!opt_host) {
4074                 printf("no server to migrate\n");
4075                 return -1;
4076         }
4077
4078         ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_printers_internals, argc, argv);
4079         if (ret)
4080                 return ret;
4081
4082         ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_drivers_internals, argc, argv);
4083         if (ret)
4084                 return ret;
4085
4086         ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_forms_internals, argc, argv);
4087         if (ret)
4088                 return ret;
4089
4090         ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_settings_internals, argc, argv);
4091         if (ret)
4092                 return ret;
4093
4094         return run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_security_internals, argc, argv);
4095
4096 }
4097
4098 /** 
4099  * Migrate print-drivers from a print-server
4100  *
4101  * @param argc  Standard main() style argc
4102  * @param argv  Standard main() style argv.  Initial components are already
4103  *              stripped
4104  *
4105  * @return A shell status integer (0 for success)
4106  **/
4107 static int rpc_printer_migrate_drivers(int argc, const char **argv)
4108 {
4109         if (!opt_host) {
4110                 printf("no server to migrate\n");
4111                 return -1;
4112         }
4113
4114         return run_rpc_command(NULL, PI_SPOOLSS, 0, 
4115                                rpc_printer_migrate_drivers_internals,
4116                                argc, argv);
4117 }
4118
4119 /** 
4120  * Migrate print-forms from a print-server
4121  *
4122  * @param argc  Standard main() style argc
4123  * @param argv  Standard main() style argv.  Initial components are already
4124  *              stripped
4125  *
4126  * @return A shell status integer (0 for success)
4127  **/
4128 static int rpc_printer_migrate_forms(int argc, const char **argv)
4129 {
4130         if (!opt_host) {
4131                 printf("no server to migrate\n");
4132                 return -1;
4133         }
4134
4135         return run_rpc_command(NULL, PI_SPOOLSS, 0, 
4136                                rpc_printer_migrate_forms_internals,
4137                                argc, argv);
4138 }
4139
4140 /** 
4141  * Migrate printers from a print-server
4142  *
4143  * @param argc  Standard main() style argc
4144  * @param argv  Standard main() style argv.  Initial components are already
4145  *              stripped
4146  *
4147  * @return A shell status integer (0 for success)
4148  **/
4149 static int rpc_printer_migrate_printers(int argc, const char **argv)
4150 {
4151         if (!opt_host) {
4152                 printf("no server to migrate\n");
4153                 return -1;
4154         }
4155
4156         return run_rpc_command(NULL, PI_SPOOLSS, 0, 
4157                                rpc_printer_migrate_printers_internals,
4158                                argc, argv);
4159 }
4160
4161 /** 
4162  * Migrate printer-ACLs from a print-server
4163  *
4164  * @param argc  Standard main() style argc
4165  * @param argv  Standard main() style argv.  Initial components are already
4166  *              stripped
4167  *
4168  * @return A shell status integer (0 for success)
4169  **/
4170 static int rpc_printer_migrate_security(int argc, const char **argv)
4171 {
4172         if (!opt_host) {
4173                 printf("no server to migrate\n");
4174                 return -1;
4175         }
4176
4177         return run_rpc_command(NULL, PI_SPOOLSS, 0, 
4178                                rpc_printer_migrate_security_internals,
4179                                argc, argv);
4180 }
4181
4182 /** 
4183  * Migrate printer-settings from a print-server
4184  *
4185  * @param argc  Standard main() style argc
4186  * @param argv  Standard main() style argv.  Initial components are already
4187  *              stripped
4188  *
4189  * @return A shell status integer (0 for success)
4190  **/
4191 static int rpc_printer_migrate_settings(int argc, const char **argv)
4192 {
4193         if (!opt_host) {
4194                 printf("no server to migrate\n");
4195                 return -1;
4196         }
4197
4198         return run_rpc_command(NULL, PI_SPOOLSS, 0, 
4199                                rpc_printer_migrate_settings_internals,
4200                                argc, argv);
4201 }
4202
4203 /** 
4204  * 'net rpc printer' entrypoint.
4205  * @param argc  Standard main() style argc
4206  * @param argv  Standard main() style argv.  Initial components are already
4207  *              stripped
4208  **/
4209
4210 int rpc_printer_migrate(int argc, const char **argv) 
4211 {
4212
4213         /* ouch: when addriver and setdriver are called from within
4214            rpc_printer_migrate_drivers_internals, the printer-queue already
4215            *has* to exist */
4216
4217         struct functable func[] = {
4218                 {"all",         rpc_printer_migrate_all},
4219                 {"drivers",     rpc_printer_migrate_drivers},
4220                 {"forms",       rpc_printer_migrate_forms},
4221                 {"help",        rpc_printer_usage},
4222                 {"printers",    rpc_printer_migrate_printers},
4223                 {"security",    rpc_printer_migrate_security},
4224                 {"settings",    rpc_printer_migrate_settings},
4225                 {NULL, NULL}
4226         };
4227
4228         return net_run_function(argc, argv, func, rpc_printer_usage);
4229 }
4230
4231
4232 /** 
4233  * List printers on a remote RPC server
4234  *
4235  * @param argc  Standard main() style argc
4236  * @param argv  Standard main() style argv.  Initial components are already
4237  *              stripped
4238  *
4239  * @return A shell status integer (0 for success)
4240  **/
4241 static int rpc_printer_list(int argc, const char **argv)
4242 {
4243
4244         return run_rpc_command(NULL, PI_SPOOLSS, 0, 
4245                                rpc_printer_list_internals,
4246                                argc, argv);
4247 }
4248
4249 /** 
4250  * List printer-drivers on a remote RPC server
4251  *
4252  * @param argc  Standard main() style argc
4253  * @param argv  Standard main() style argv.  Initial components are already
4254  *              stripped
4255  *
4256  * @return A shell status integer (0 for success)
4257  **/
4258 static int rpc_printer_driver_list(int argc, const char **argv)
4259 {
4260
4261         return run_rpc_command(NULL, PI_SPOOLSS, 0, 
4262                                rpc_printer_driver_list_internals,
4263                                argc, argv);
4264 }
4265
4266 /** 
4267  * Display rpc printer help page.
4268  * @param argc  Standard main() style argc
4269  * @param argv  Standard main() style argv.  Initial components are already
4270  *              stripped
4271  **/
4272 int rpc_printer_usage(int argc, const char **argv)
4273 {
4274         return net_help_printer(argc, argv);
4275 }
4276
4277 /** 
4278  * 'net rpc printer' entrypoint.
4279  * @param argc  Standard main() style argc
4280  * @param argv  Standard main() style argv.  Initial components are already
4281  *              stripped
4282  **/
4283 int net_rpc_printer(int argc, const char **argv) 
4284 {
4285         struct functable func[] = {
4286                 {"list", rpc_printer_list},
4287                 {"migrate", rpc_printer_migrate},
4288                 {"driver", rpc_printer_driver_list},
4289                 {NULL, NULL}
4290         };
4291
4292         if (argc == 0)
4293                 return run_rpc_command(NULL, PI_SPOOLSS, 0, 
4294                                rpc_printer_list_internals,
4295                                argc, argv);
4296
4297         return net_run_function(argc, argv, func, rpc_printer_usage);
4298 }
4299
4300 /****************************************************************************/
4301
4302
4303 /** 
4304  * Basic usage function for 'net rpc'
4305  * @param argc  Standard main() style argc
4306  * @param argv  Standard main() style argv.  Initial components are already
4307  *              stripped
4308  **/
4309
4310 int net_rpc_usage(int argc, const char **argv) 
4311 {
4312         d_printf("  net rpc info \t\t\tshow basic info about a domain \n");
4313         d_printf("  net rpc join \t\t\tto join a domain \n");
4314         d_printf("  net rpc oldjoin \t\t\tto join a domain created in server manager\n\n\n");
4315         d_printf("  net rpc testjoin \t\ttests that a join is valid\n");
4316         d_printf("  net rpc user \t\t\tto add, delete and list users\n");
4317         d_printf("  net rpc password <username> [<password>] -Uadmin_username%%admin_pass");
4318         d_printf("  net rpc group \t\tto list groups\n");
4319         d_printf("  net rpc share \t\tto add, delete, list and migrate shares\n");
4320         d_printf("  net rpc printer \t\tto list and migrate printers\n");
4321         d_printf("  net rpc file \t\t\tto list open files\n");
4322         d_printf("  net rpc changetrustpw \tto change the trust account password\n");
4323         d_printf("  net rpc getsid \t\tfetch the domain sid into the local secrets.tdb\n");
4324         d_printf("  net rpc vampire \t\tsyncronise an NT PDC's users and groups into the local passdb\n");
4325         d_printf("  net rpc samdump \t\tdiplay an NT PDC's users, groups and other data\n");
4326         d_printf("  net rpc trustdom \t\tto create trusting domain's account\n"
4327                  "\t\t\t\t\tor establish trust\n");
4328         d_printf("  net rpc abortshutdown \tto abort the shutdown of a remote server\n");
4329         d_printf("  net rpc shutdown \t\tto shutdown a remote server\n");
4330         d_printf("\n");
4331         d_printf("'net rpc shutdown' also accepts the following miscellaneous options:\n"); /* misc options */
4332         d_printf("\t-r or --reboot\trequest remote server reboot on shutdown\n");
4333         d_printf("\t-f or --force\trequest the remote server force its shutdown\n");
4334         d_printf("\t-t or --timeout=<timeout>\tnumber of seconds before shutdown\n");
4335         d_printf("\t-c or --comment=<message>\ttext message to display on impending shutdown\n");
4336         return -1;
4337 }
4338
4339
4340 /**
4341  * Help function for 'net rpc'.  Calls command specific help if requested
4342  * or displays usage of net rpc
4343  * @param argc  Standard main() style argc
4344  * @param argv  Standard main() style argv.  Initial components are already
4345  *              stripped
4346  **/
4347
4348 int net_rpc_help(int argc, const char **argv)
4349 {
4350         struct functable func[] = {
4351                 {"join", rpc_join_usage},
4352                 {"user", rpc_user_usage},
4353                 {"group", rpc_group_usage},
4354                 {"share", rpc_share_usage},
4355                 /*{"changetrustpw", rpc_changetrustpw_usage}, */
4356                 {"trustdom", rpc_trustdom_usage},
4357                 /*{"abortshutdown", rpc_shutdown_abort_usage},*/
4358                 /*{"shutdown", rpc_shutdown_usage}, */
4359                 {NULL, NULL}
4360         };
4361
4362         if (argc == 0) {
4363                 net_rpc_usage(argc, argv);
4364                 return -1;
4365         }
4366
4367         return (net_run_function(argc, argv, func, rpc_user_usage));
4368 }
4369
4370
4371 /** 
4372  * 'net rpc' entrypoint.
4373  * @param argc  Standard main() style argc
4374  * @param argv  Standard main() style argv.  Initial components are already
4375  *              stripped
4376  **/
4377
4378 int net_rpc(int argc, const char **argv)
4379 {
4380         struct functable func[] = {
4381                 {"info", net_rpc_info},
4382                 {"join", net_rpc_join},
4383                 {"oldjoin", net_rpc_oldjoin},
4384                 {"testjoin", net_rpc_testjoin},
4385                 {"user", net_rpc_user},
4386                 {"password", rpc_user_password},
4387                 {"group", net_rpc_group},
4388                 {"share", net_rpc_share},
4389                 {"file", net_rpc_file},
4390                 {"printer", net_rpc_printer},
4391                 {"changetrustpw", net_rpc_changetrustpw},
4392                 {"trustdom", rpc_trustdom},
4393                 {"abortshutdown", rpc_shutdown_abort},
4394                 {"shutdown", rpc_shutdown},
4395                 {"samdump", rpc_samdump},
4396                 {"vampire", rpc_vampire},
4397                 {"getsid", net_rpc_getsid},
4398                 {"help", net_rpc_help},
4399                 {NULL, NULL}
4400         };
4401         return net_run_function(argc, argv, func, net_rpc_usage);
4402 }