s3:net: fix password set of 'net rpc trustdom add'
[samba.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    Copyright (C) 2004,2008 Guenther Deschner (gd@samba.org)
7    Copyright (C) 2005 Jeremy Allison (jra@samba.org)
8    Copyright (C) 2006 Jelmer Vernooij (jelmer@samba.org)
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
22
23 #include "includes.h"
24 #include "utils/net.h"
25
26 static int net_mode_share;
27 static bool sync_files(struct copy_clistate *cp_clistate, const char *mask);
28
29 /**
30  * @file net_rpc.c
31  *
32  * @brief RPC based subcommands for the 'net' utility.
33  *
34  * This file should contain much of the functionality that used to
35  * be found in rpcclient, execpt that the commands should change
36  * less often, and the fucntionality should be sane (the user is not
37  * expected to know a rid/sid before they conduct an operation etc.)
38  *
39  * @todo Perhaps eventually these should be split out into a number
40  * of files, as this could get quite big.
41  **/
42
43
44 /**
45  * Many of the RPC functions need the domain sid.  This function gets
46  *  it at the start of every run
47  *
48  * @param cli A cli_state already connected to the remote machine
49  *
50  * @return The Domain SID of the remote machine.
51  **/
52
53 NTSTATUS net_get_remote_domain_sid(struct cli_state *cli, TALLOC_CTX *mem_ctx,
54                                    DOM_SID **domain_sid,
55                                    const char **domain_name)
56 {
57         struct rpc_pipe_client *lsa_pipe;
58         POLICY_HND pol;
59         NTSTATUS result = NT_STATUS_OK;
60         union lsa_PolicyInformation *info = NULL;
61
62         result = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
63                                           &lsa_pipe);
64         if (!NT_STATUS_IS_OK(result)) {
65                 d_fprintf(stderr, "Could not initialise lsa pipe\n");
66                 return result;
67         }
68
69         result = rpccli_lsa_open_policy(lsa_pipe, mem_ctx, false,
70                                      SEC_RIGHTS_MAXIMUM_ALLOWED,
71                                      &pol);
72         if (!NT_STATUS_IS_OK(result)) {
73                 d_fprintf(stderr, "open_policy failed: %s\n",
74                           nt_errstr(result));
75                 return result;
76         }
77
78         result = rpccli_lsa_QueryInfoPolicy(lsa_pipe, mem_ctx,
79                                             &pol,
80                                             LSA_POLICY_INFO_ACCOUNT_DOMAIN,
81                                             &info);
82         if (!NT_STATUS_IS_OK(result)) {
83                 d_fprintf(stderr, "lsaquery failed: %s\n",
84                           nt_errstr(result));
85                 return result;
86         }
87
88         *domain_name = info->account_domain.name.string;
89         *domain_sid = info->account_domain.sid;
90
91         rpccli_lsa_Close(lsa_pipe, mem_ctx, &pol);
92         TALLOC_FREE(lsa_pipe);
93
94         return NT_STATUS_OK;
95 }
96
97 /**
98  * Run a single RPC command, from start to finish.
99  *
100  * @param pipe_name the pipe to connect to (usually a PIPE_ constant)
101  * @param conn_flag a NET_FLAG_ combination.  Passed to
102  *                   net_make_ipc_connection.
103  * @param argc  Standard main() style argc.
104  * @param argv  Standard main() style argv. Initial components are already
105  *              stripped.
106  * @return A shell status integer (0 for success).
107  */
108
109 int run_rpc_command(struct net_context *c,
110                         struct cli_state *cli_arg,
111                         const struct ndr_syntax_id *interface,
112                         int conn_flags,
113                         rpc_command_fn fn,
114                         int argc,
115                         const char **argv)
116 {
117         struct cli_state *cli = NULL;
118         struct rpc_pipe_client *pipe_hnd = NULL;
119         TALLOC_CTX *mem_ctx;
120         NTSTATUS nt_status;
121         DOM_SID *domain_sid;
122         const char *domain_name;
123
124         /* make use of cli_state handed over as an argument, if possible */
125         if (!cli_arg) {
126                 nt_status = net_make_ipc_connection(c, conn_flags, &cli);
127                 if (!NT_STATUS_IS_OK(nt_status)) {
128                         DEBUG(1, ("failed to make ipc connection: %s\n",
129                                   nt_errstr(nt_status)));
130                         return -1;
131                 }
132         } else {
133                 cli = cli_arg;
134         }
135
136         if (!cli) {
137                 return -1;
138         }
139
140         /* Create mem_ctx */
141
142         if (!(mem_ctx = talloc_init("run_rpc_command"))) {
143                 DEBUG(0, ("talloc_init() failed\n"));
144                 cli_shutdown(cli);
145                 return -1;
146         }
147
148         nt_status = net_get_remote_domain_sid(cli, mem_ctx, &domain_sid,
149                                               &domain_name);
150         if (!NT_STATUS_IS_OK(nt_status)) {
151                 cli_shutdown(cli);
152                 return -1;
153         }
154
155         if (!(conn_flags & NET_FLAGS_NO_PIPE)) {
156                 if (lp_client_schannel()
157                     && (ndr_syntax_id_equal(interface,
158                                             &ndr_table_netlogon.syntax_id))) {
159                         /* Always try and create an schannel netlogon pipe. */
160                         nt_status = cli_rpc_pipe_open_schannel(
161                                 cli, interface,
162                                 PIPE_AUTH_LEVEL_PRIVACY, domain_name,
163                                 &pipe_hnd);
164                         if (!NT_STATUS_IS_OK(nt_status)) {
165                                 DEBUG(0, ("Could not initialise schannel netlogon pipe. Error was %s\n",
166                                         nt_errstr(nt_status) ));
167                                 cli_shutdown(cli);
168                                 return -1;
169                         }
170                 } else {
171                         if (conn_flags & NET_FLAGS_SEAL) {
172                                 nt_status = cli_rpc_pipe_open_ntlmssp(
173                                         cli, interface,
174                                         PIPE_AUTH_LEVEL_PRIVACY,
175                                         lp_workgroup(), c->opt_user_name,
176                                         c->opt_password, &pipe_hnd);
177                         } else {
178                                 nt_status = cli_rpc_pipe_open_noauth(
179                                         cli, interface,
180                                         &pipe_hnd);
181                         }
182                         if (!NT_STATUS_IS_OK(nt_status)) {
183                                 DEBUG(0, ("Could not initialise pipe %s. Error was %s\n",
184                                         cli_get_pipe_name_from_iface(
185                                                 debug_ctx(), cli, interface),
186                                         nt_errstr(nt_status) ));
187                                 cli_shutdown(cli);
188                                 return -1;
189                         }
190                 }
191         }
192
193         nt_status = fn(c, domain_sid, domain_name, cli, pipe_hnd, mem_ctx, argc, argv);
194
195         if (!NT_STATUS_IS_OK(nt_status)) {
196                 DEBUG(1, ("rpc command function failed! (%s)\n", nt_errstr(nt_status)));
197         } else {
198                 DEBUG(5, ("rpc command function succedded\n"));
199         }
200
201         if (!(conn_flags & NET_FLAGS_NO_PIPE)) {
202                 if (pipe_hnd) {
203                         TALLOC_FREE(pipe_hnd);
204                 }
205         }
206
207         /* close the connection only if it was opened here */
208         if (!cli_arg) {
209                 cli_shutdown(cli);
210         }
211
212         talloc_destroy(mem_ctx);
213         return (!NT_STATUS_IS_OK(nt_status));
214 }
215
216 /**
217  * Force a change of the trust acccount password.
218  *
219  * All parameters are provided by the run_rpc_command function, except for
220  * argc, argv which are passed through.
221  *
222  * @param domain_sid The domain sid acquired from the remote server.
223  * @param cli A cli_state connected to the server.
224  * @param mem_ctx Talloc context, destroyed on completion of the function.
225  * @param argc  Standard main() style argc.
226  * @param argv  Standard main() style argv. Initial components are already
227  *              stripped.
228  *
229  * @return Normal NTSTATUS return.
230  **/
231
232 static NTSTATUS rpc_changetrustpw_internals(struct net_context *c,
233                                         const DOM_SID *domain_sid,
234                                         const char *domain_name,
235                                         struct cli_state *cli,
236                                         struct rpc_pipe_client *pipe_hnd,
237                                         TALLOC_CTX *mem_ctx,
238                                         int argc,
239                                         const char **argv)
240 {
241
242         return trust_pw_find_change_and_store_it(pipe_hnd, mem_ctx, c->opt_target_workgroup);
243 }
244
245 /**
246  * Force a change of the trust acccount password.
247  *
248  * @param argc  Standard main() style argc.
249  * @param argv  Standard main() style argv. Initial components are already
250  *              stripped.
251  *
252  * @return A shell status integer (0 for success).
253  **/
254
255 int net_rpc_changetrustpw(struct net_context *c, int argc, const char **argv)
256 {
257         if (c->display_usage) {
258                 d_printf("Usage:\n"
259                          "net rpc changetrustpw\n"
260                          "    Change the machine trust password\n");
261                 return 0;
262         }
263
264         return run_rpc_command(c, NULL, &ndr_table_netlogon.syntax_id,
265                                NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
266                                rpc_changetrustpw_internals,
267                                argc, argv);
268 }
269
270 /**
271  * Join a domain, the old way.
272  *
273  * This uses 'machinename' as the inital password, and changes it.
274  *
275  * The password should be created with 'server manager' or equiv first.
276  *
277  * All parameters are provided by the run_rpc_command function, except for
278  * argc, argv which are passed through.
279  *
280  * @param domain_sid The domain sid acquired from the remote server.
281  * @param cli A cli_state connected to the server.
282  * @param mem_ctx Talloc context, destroyed on completion of the function.
283  * @param argc  Standard main() style argc.
284  * @param argv  Standard main() style argv. Initial components are already
285  *              stripped.
286  *
287  * @return Normal NTSTATUS return.
288  **/
289
290 static NTSTATUS rpc_oldjoin_internals(struct net_context *c,
291                                         const DOM_SID *domain_sid,
292                                         const char *domain_name,
293                                         struct cli_state *cli,
294                                         struct rpc_pipe_client *pipe_hnd,
295                                         TALLOC_CTX *mem_ctx,
296                                         int argc,
297                                         const char **argv)
298 {
299
300         fstring trust_passwd;
301         unsigned char orig_trust_passwd_hash[16];
302         NTSTATUS result;
303         uint32 sec_channel_type;
304
305         result = cli_rpc_pipe_open_noauth(cli, &ndr_table_netlogon.syntax_id,
306                                           &pipe_hnd);
307         if (!NT_STATUS_IS_OK(result)) {
308                 DEBUG(0,("rpc_oldjoin_internals: netlogon pipe open to machine %s failed. "
309                         "error was %s\n",
310                         cli->desthost,
311                         nt_errstr(result) ));
312                 return result;
313         }
314
315         /*
316            check what type of join - if the user want's to join as
317            a BDC, the server must agree that we are a BDC.
318         */
319         if (argc >= 0) {
320                 sec_channel_type = get_sec_channel_type(argv[0]);
321         } else {
322                 sec_channel_type = get_sec_channel_type(NULL);
323         }
324
325         fstrcpy(trust_passwd, global_myname());
326         strlower_m(trust_passwd);
327
328         /*
329          * Machine names can be 15 characters, but the max length on
330          * a password is 14.  --jerry
331          */
332
333         trust_passwd[14] = '\0';
334
335         E_md4hash(trust_passwd, orig_trust_passwd_hash);
336
337         result = trust_pw_change_and_store_it(pipe_hnd, mem_ctx, c->opt_target_workgroup,
338                                               orig_trust_passwd_hash,
339                                               sec_channel_type);
340
341         if (NT_STATUS_IS_OK(result))
342                 printf("Joined domain %s.\n", c->opt_target_workgroup);
343
344
345         if (!secrets_store_domain_sid(c->opt_target_workgroup, domain_sid)) {
346                 DEBUG(0, ("error storing domain sid for %s\n", c->opt_target_workgroup));
347                 result = NT_STATUS_UNSUCCESSFUL;
348         }
349
350         return result;
351 }
352
353 /**
354  * Join a domain, the old way.
355  *
356  * @param argc  Standard main() style argc.
357  * @param argv  Standard main() style argv. Initial components are already
358  *              stripped.
359  *
360  * @return A shell status integer (0 for success).
361  **/
362
363 static int net_rpc_perform_oldjoin(struct net_context *c, int argc, const char **argv)
364 {
365         return run_rpc_command(c, NULL, &ndr_table_netlogon.syntax_id,
366                                NET_FLAGS_NO_PIPE | NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
367                                rpc_oldjoin_internals,
368                                argc, argv);
369 }
370
371 /**
372  * Join a domain, the old way.  This function exists to allow
373  * the message to be displayed when oldjoin was explicitly
374  * requested, but not when it was implied by "net rpc join".
375  *
376  * @param argc  Standard main() style argc.
377  * @param argv  Standard main() style argv. Initial components are already
378  *              stripped.
379  *
380  * @return A shell status integer (0 for success).
381  **/
382
383 static int net_rpc_oldjoin(struct net_context *c, int argc, const char **argv)
384 {
385         int rc = -1;
386
387         if (c->display_usage) {
388                 d_printf("Usage:\n"
389                          "net rpc oldjoin\n"
390                          "    Join a domain the old way\n");
391                 return 0;
392         }
393
394         rc = net_rpc_perform_oldjoin(c, argc, argv);
395
396         if (rc) {
397                 d_fprintf(stderr, "Failed to join domain\n");
398         }
399
400         return rc;
401 }
402
403 /**
404  * 'net rpc join' entrypoint.
405  * @param argc  Standard main() style argc.
406  * @param argv  Standard main() style argv. Initial components are already
407  *              stripped
408  *
409  * Main 'net_rpc_join()' (where the admin username/password is used) is
410  * in net_rpc_join.c.
411  * Try to just change the password, but if that doesn't work, use/prompt
412  * for a username/password.
413  **/
414
415 int net_rpc_join(struct net_context *c, int argc, const char **argv)
416 {
417         if (c->display_usage) {
418                 d_printf("Usage:\n"
419                          "net rpc join -U <username>[%%password] <type>\n"
420                          "  Join a domain\n"
421                          "    username\tName of the admin user"
422                          "    password\tPassword of the admin user, will "
423                          "prompt if not specified\n"
424                          "    type\tCan be one of the following:\n"
425                          "\t\tMEMBER\tJoin as member server (default)\n"
426                          "\t\tBDC\tJoin as BDC\n"
427                          "\t\tPDC\tJoin as PDC\n");
428                 return 0;
429         }
430
431         if (lp_server_role() == ROLE_STANDALONE) {
432                 d_printf("cannot join as standalone machine\n");
433                 return -1;
434         }
435
436         if (strlen(global_myname()) > 15) {
437                 d_printf("Our netbios name can be at most 15 chars long, "
438                          "\"%s\" is %u chars long\n",
439                          global_myname(), (unsigned int)strlen(global_myname()));
440                 return -1;
441         }
442
443         if ((net_rpc_perform_oldjoin(c, argc, argv) == 0))
444                 return 0;
445
446         return net_rpc_join_newstyle(c, argc, argv);
447 }
448
449 /**
450  * display info about a rpc domain
451  *
452  * All parameters are provided by the run_rpc_command function, except for
453  * argc, argv which are passed through.
454  *
455  * @param domain_sid The domain sid acquired from the remote server
456  * @param cli A cli_state connected to the server.
457  * @param mem_ctx Talloc context, destroyed on completion of the function.
458  * @param argc  Standard main() style argc.
459  * @param argv  Standard main() style argv. Initial components are already
460  *              stripped.
461  *
462  * @return Normal NTSTATUS return.
463  **/
464
465 NTSTATUS rpc_info_internals(struct net_context *c,
466                         const DOM_SID *domain_sid,
467                         const char *domain_name,
468                         struct cli_state *cli,
469                         struct rpc_pipe_client *pipe_hnd,
470                         TALLOC_CTX *mem_ctx,
471                         int argc,
472                         const char **argv)
473 {
474         POLICY_HND connect_pol, domain_pol;
475         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
476         union samr_DomainInfo *info = NULL;
477         fstring sid_str;
478
479         sid_to_fstring(sid_str, domain_sid);
480
481         /* Get sam policy handle */
482         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
483                                       pipe_hnd->desthost,
484                                       MAXIMUM_ALLOWED_ACCESS,
485                                       &connect_pol);
486         if (!NT_STATUS_IS_OK(result)) {
487                 d_fprintf(stderr, "Could not connect to SAM: %s\n", nt_errstr(result));
488                 goto done;
489         }
490
491         /* Get domain policy handle */
492         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
493                                         &connect_pol,
494                                         MAXIMUM_ALLOWED_ACCESS,
495                                         CONST_DISCARD(struct dom_sid2 *, domain_sid),
496                                         &domain_pol);
497         if (!NT_STATUS_IS_OK(result)) {
498                 d_fprintf(stderr, "Could not open domain: %s\n", nt_errstr(result));
499                 goto done;
500         }
501
502         result = rpccli_samr_QueryDomainInfo(pipe_hnd, mem_ctx,
503                                              &domain_pol,
504                                              2,
505                                              &info);
506         if (NT_STATUS_IS_OK(result)) {
507                 d_printf("Domain Name: %s\n", info->info2.domain_name.string);
508                 d_printf("Domain SID: %s\n", sid_str);
509                 d_printf("Sequence number: %llu\n",
510                         (unsigned long long)info->info2.sequence_num);
511                 d_printf("Num users: %u\n", info->info2.num_users);
512                 d_printf("Num domain groups: %u\n", info->info2.num_groups);
513                 d_printf("Num local groups: %u\n", info->info2.num_aliases);
514         }
515
516  done:
517         return result;
518 }
519
520 /**
521  * 'net rpc info' entrypoint.
522  * @param argc  Standard main() style argc.
523  * @param argv  Standard main() style argv. Initial components are already
524  *              stripped.
525  **/
526
527 int net_rpc_info(struct net_context *c, int argc, const char **argv)
528 {
529         if (c->display_usage) {
530                 d_printf("Usage:\n"
531                          "net rpc info\n"
532                          "  Display information about the domain\n");
533                 return 0;
534         }
535
536         return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id,
537                                NET_FLAGS_PDC, rpc_info_internals,
538                                argc, argv);
539 }
540
541 /**
542  * Fetch domain SID into the local secrets.tdb.
543  *
544  * All parameters are provided by the run_rpc_command function, except for
545  * argc, argv which are passed through.
546  *
547  * @param domain_sid The domain sid acquired from the remote server.
548  * @param cli A cli_state connected to the server.
549  * @param mem_ctx Talloc context, destroyed on completion of the function.
550  * @param argc  Standard main() style argc.
551  * @param argv  Standard main() style argv. Initial components are already
552  *              stripped.
553  *
554  * @return Normal NTSTATUS return.
555  **/
556
557 static NTSTATUS rpc_getsid_internals(struct net_context *c,
558                         const DOM_SID *domain_sid,
559                         const char *domain_name,
560                         struct cli_state *cli,
561                         struct rpc_pipe_client *pipe_hnd,
562                         TALLOC_CTX *mem_ctx,
563                         int argc,
564                         const char **argv)
565 {
566         fstring sid_str;
567
568         sid_to_fstring(sid_str, domain_sid);
569         d_printf("Storing SID %s for Domain %s in secrets.tdb\n",
570                  sid_str, domain_name);
571
572         if (!secrets_store_domain_sid(domain_name, domain_sid)) {
573                 DEBUG(0,("Can't store domain SID\n"));
574                 return NT_STATUS_UNSUCCESSFUL;
575         }
576
577         return NT_STATUS_OK;
578 }
579
580 /**
581  * 'net rpc getsid' entrypoint.
582  * @param argc  Standard main() style argc.
583  * @param argv  Standard main() style argv. Initial components are already
584  *              stripped.
585  **/
586
587 int net_rpc_getsid(struct net_context *c, int argc, const char **argv)
588 {
589         if (c->display_usage) {
590                 d_printf("Usage:\n"
591                          "net rpc getsid\n"
592                          "    Fetch domain SID into local secrets.tdb\n");
593                 return 0;
594         }
595
596         return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id,
597                                NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
598                                rpc_getsid_internals,
599                                argc, argv);
600 }
601
602 /****************************************************************************/
603
604 /**
605  * Basic usage function for 'net rpc user'.
606  * @param argc  Standard main() style argc.
607  * @param argv  Standard main() style argv. Initial components are already
608  *              stripped.
609  **/
610
611 static int rpc_user_usage(struct net_context *c, int argc, const char **argv)
612 {
613         return net_user_usage(c, argc, argv);
614 }
615
616 /**
617  * Add a new user to a remote RPC server.
618  *
619  * @param argc  Standard main() style argc.
620  * @param argv  Standard main() style argv. Initial components are already
621  *              stripped.
622  *
623  * @return A shell status integer (0 for success).
624  **/
625
626 static int rpc_user_add(struct net_context *c, int argc, const char **argv)
627 {
628         NET_API_STATUS status;
629         struct USER_INFO_1 info1;
630         uint32_t parm_error = 0;
631
632         if (argc < 1 || c->display_usage) {
633                 rpc_user_usage(c, argc, argv);
634                 return 0;
635         }
636
637         ZERO_STRUCT(info1);
638
639         info1.usri1_name = argv[0];
640         if (argc == 2) {
641                 info1.usri1_password = argv[1];
642         }
643
644         status = NetUserAdd(c->opt_host, 1, (uint8_t *)&info1, &parm_error);
645
646         if (status != 0) {
647                 d_fprintf(stderr, "Failed to add user '%s' with: %s.\n",
648                         argv[0], libnetapi_get_error_string(c->netapi_ctx,
649                                                             status));
650                 return -1;
651         } else {
652                 d_printf("Added user '%s'.\n", argv[0]);
653         }
654
655         return 0;
656 }
657
658 /**
659  * Rename a user on a remote RPC server.
660  *
661  * @param argc  Standard main() style argc.
662  * @param argv  Standard main() style argv. Initial components are already
663  *              stripped.
664  *
665  * @return A shell status integer (0 for success).
666  **/
667
668 static int rpc_user_rename(struct net_context *c, int argc, const char **argv)
669 {
670         NET_API_STATUS status;
671         struct USER_INFO_0 u0;
672         uint32_t parm_err = 0;
673
674         if (argc != 2 || c->display_usage) {
675                 rpc_user_usage(c, argc, argv);
676                 return 0;
677         }
678
679         u0.usri0_name = argv[1];
680
681         status = NetUserSetInfo(c->opt_host, argv[0],
682                                 0, (uint8_t *)&u0, &parm_err);
683         if (status) {
684                 d_fprintf(stderr, "Failed to rename user from %s to %s - %s\n",
685                           argv[0], argv[1],
686                           libnetapi_get_error_string(c->netapi_ctx, status));
687         } else {
688                 d_printf("Renamed user from %s to %s\n", argv[0], argv[1]);
689         }
690
691         return status;
692 }
693
694 /**
695  * Delete a user from a remote RPC server.
696  *
697  * @param argc  Standard main() style argc.
698  * @param argv  Standard main() style argv. Initial components are already
699  *              stripped.
700  *
701  * @return A shell status integer (0 for success).
702  **/
703
704 static int rpc_user_delete(struct net_context *c, int argc, const char **argv)
705 {
706         NET_API_STATUS status;
707
708         if (argc < 1 || c->display_usage) {
709                 rpc_user_usage(c, argc, argv);
710                 return 0;
711         }
712
713         status = NetUserDel(c->opt_host, argv[0]);
714
715         if (status != 0) {
716                 d_fprintf(stderr, "Failed to delete user '%s' with: %s.\n",
717                           argv[0],
718                           libnetapi_get_error_string(c->netapi_ctx, status));
719                 return -1;
720         } else {
721                 d_printf("Deleted user '%s'.\n", argv[0]);
722         }
723
724         return 0;
725 }
726
727 /**
728  * Set a user's password on a remote RPC server.
729  *
730  * @param argc  Standard main() style argc.
731  * @param argv  Standard main() style argv. Initial components are already
732  *              stripped.
733  *
734  * @return A shell status integer (0 for success).
735  **/
736
737 static int rpc_user_password(struct net_context *c, int argc, const char **argv)
738 {
739         NET_API_STATUS status;
740         char *prompt = NULL;
741         struct USER_INFO_1003 u1003;
742         uint32_t parm_err = 0;
743
744         if (argc < 1 || c->display_usage) {
745                 rpc_user_usage(c, argc, argv);
746                 return 0;
747         }
748
749         if (argv[1]) {
750                 u1003.usri1003_password = argv[1];
751         } else {
752                 asprintf(&prompt, "Enter new password for %s:", argv[0]);
753                 u1003.usri1003_password = getpass(prompt);
754                 SAFE_FREE(prompt);
755         }
756
757         status = NetUserSetInfo(c->opt_host, argv[0], 1003, (uint8_t *)&u1003, &parm_err);
758
759         /* Display results */
760         if (status != 0) {
761                 d_fprintf(stderr, "Failed to set password for '%s' with: %s.\n",
762                         argv[0], libnetapi_get_error_string(c->netapi_ctx,
763                                                             status));
764                 return -1;
765         }
766
767         return 0;
768 }
769
770 /**
771  * List a user's groups from a remote RPC server.
772  *
773  * @param argc  Standard main() style argc.
774  * @param argv  Standard main() style argv. Initial components are already
775  *              stripped.
776  *
777  * @return A shell status integer (0 for success)
778  **/
779
780 static int rpc_user_info(struct net_context *c, int argc, const char **argv)
781
782 {
783         NET_API_STATUS status;
784         struct GROUP_USERS_INFO_0 *u0 = NULL;
785         uint32_t entries_read = 0;
786         uint32_t total_entries = 0;
787         int i;
788
789
790         if (argc < 1 || c->display_usage) {
791                 rpc_user_usage(c, argc, argv);
792                 return 0;
793         }
794
795         status = NetUserGetGroups(c->opt_host,
796                                   argv[0],
797                                   0,
798                                   (uint8_t **)&u0,
799                                   (uint32_t)-1,
800                                   &entries_read,
801                                   &total_entries);
802         if (status != 0) {
803                 d_fprintf(stderr, "Failed to get groups for '%s' with: %s.\n",
804                         argv[0], libnetapi_get_error_string(c->netapi_ctx,
805                                                             status));
806                 return -1;
807         }
808
809         for (i=0; i < entries_read; i++) {
810                 printf("%s\n", u0->grui0_name);
811                 u0++;
812         }
813
814         return 0;
815 }
816
817 /**
818  * List users on a remote RPC server.
819  *
820  * All parameters are provided by the run_rpc_command function, except for
821  * argc, argv which are passed through.
822  *
823  * @param domain_sid The domain sid acquired from the remote server.
824  * @param cli A cli_state connected to the server.
825  * @param mem_ctx Talloc context, destroyed on completion of the function.
826  * @param argc  Standard main() style argc.
827  * @param argv  Standard main() style argv. Initial components are already
828  *              stripped.
829  *
830  * @return Normal NTSTATUS return.
831  **/
832
833 static int rpc_user_list(struct net_context *c, int argc, const char **argv)
834 {
835         NET_API_STATUS status;
836         uint32_t start_idx=0, num_entries, i, loop_count = 0;
837         struct NET_DISPLAY_USER *info = NULL;
838         void *buffer = NULL;
839
840         /* Query domain users */
841         if (c->opt_long_list_entries)
842                 d_printf("\nUser name             Comment"
843                          "\n-----------------------------\n");
844         do {
845                 uint32_t max_entries, max_size;
846
847                 get_query_dispinfo_params(
848                         loop_count, &max_entries, &max_size);
849
850                 status = NetQueryDisplayInformation(c->opt_host,
851                                                     1,
852                                                     start_idx,
853                                                     max_entries,
854                                                     max_size,
855                                                     &num_entries,
856                                                     &buffer);
857                 if (status != 0 && status != ERROR_MORE_DATA) {
858                         return status;
859                 }
860
861                 info = (struct NET_DISPLAY_USER *)buffer;
862
863                 for (i = 0; i < num_entries; i++) {
864
865                         if (c->opt_long_list_entries)
866                                 printf("%-21.21s %s\n", info->usri1_name,
867                                         info->usri1_comment);
868                         else
869                                 printf("%s\n", info->usri1_name);
870                         info++;
871                 }
872
873                 NetApiBufferFree(buffer);
874
875                 loop_count++;
876                 start_idx += num_entries;
877
878         } while (status == ERROR_MORE_DATA);
879
880         return status;
881 }
882
883 /**
884  * 'net rpc user' entrypoint.
885  * @param argc  Standard main() style argc.
886  * @param argv  Standard main() style argv. Initial components are already
887  *              stripped.
888  **/
889
890 int net_rpc_user(struct net_context *c, int argc, const char **argv)
891 {
892         NET_API_STATUS status;
893
894         struct functable func[] = {
895                 {
896                         "add",
897                         rpc_user_add,
898                         NET_TRANSPORT_RPC,
899                         "Add specified user",
900                         "net rpc user add\n"
901                         "    Add specified user"
902                 },
903                 {
904                         "info",
905                         rpc_user_info,
906                         NET_TRANSPORT_RPC,
907                         "List domain groups of user",
908                         "net rpc user info\n"
909                         "    Lis domain groups of user"
910                 },
911                 {
912                         "delete",
913                         rpc_user_delete,
914                         NET_TRANSPORT_RPC,
915                         "Remove specified user",
916                         "net rpc user delete\n"
917                         "    Remove specified user"
918                 },
919                 {
920                         "password",
921                         rpc_user_password,
922                         NET_TRANSPORT_RPC,
923                         "Change user password",
924                         "net rpc user password\n"
925                         "    Change user password"
926                 },
927                 {
928                         "rename",
929                         rpc_user_rename,
930                         NET_TRANSPORT_RPC,
931                         "Rename specified user",
932                         "net rpc user rename\n"
933                         "    Rename specified user"
934                 },
935                 {NULL, NULL, 0, NULL, NULL}
936         };
937
938         status = libnetapi_init(&c->netapi_ctx);
939         if (status != 0) {
940                 return -1;
941         }
942         libnetapi_set_username(c->netapi_ctx, c->opt_user_name);
943         libnetapi_set_password(c->netapi_ctx, c->opt_password);
944         if (c->opt_kerberos) {
945                 libnetapi_set_use_kerberos(c->netapi_ctx);
946         }
947
948         if (argc == 0) {
949                 if (c->display_usage) {
950                         d_printf("Usage:\n");
951                         d_printf("net rpc user\n"
952                                  "    List all users\n");
953                         net_display_usage_from_functable(func);
954                         return 0;
955                 }
956
957                 return rpc_user_list(c, argc, argv);
958         }
959
960         return net_run_function(c, argc, argv, "net rpc user", func);
961 }
962
963 static NTSTATUS rpc_sh_user_list(struct net_context *c,
964                                  TALLOC_CTX *mem_ctx,
965                                  struct rpc_sh_ctx *ctx,
966                                  struct rpc_pipe_client *pipe_hnd,
967                                  int argc, const char **argv)
968 {
969         return werror_to_ntstatus(W_ERROR(rpc_user_list(c, argc, argv)));
970 }
971
972 static NTSTATUS rpc_sh_user_info(struct net_context *c,
973                                  TALLOC_CTX *mem_ctx,
974                                  struct rpc_sh_ctx *ctx,
975                                  struct rpc_pipe_client *pipe_hnd,
976                                  int argc, const char **argv)
977 {
978         return werror_to_ntstatus(W_ERROR(rpc_user_info(c, argc, argv)));
979 }
980
981 static NTSTATUS rpc_sh_handle_user(struct net_context *c,
982                                    TALLOC_CTX *mem_ctx,
983                                    struct rpc_sh_ctx *ctx,
984                                    struct rpc_pipe_client *pipe_hnd,
985                                    int argc, const char **argv,
986                                    NTSTATUS (*fn)(
987                                            struct net_context *c,
988                                            TALLOC_CTX *mem_ctx,
989                                            struct rpc_sh_ctx *ctx,
990                                            struct rpc_pipe_client *pipe_hnd,
991                                            POLICY_HND *user_hnd,
992                                            int argc, const char **argv))
993 {
994         POLICY_HND connect_pol, domain_pol, user_pol;
995         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
996         DOM_SID sid;
997         uint32 rid;
998         enum lsa_SidType type;
999
1000         if (argc == 0) {
1001                 d_fprintf(stderr, "usage: %s <username>\n", ctx->whoami);
1002                 return NT_STATUS_INVALID_PARAMETER;
1003         }
1004
1005         ZERO_STRUCT(connect_pol);
1006         ZERO_STRUCT(domain_pol);
1007         ZERO_STRUCT(user_pol);
1008
1009         result = net_rpc_lookup_name(c, mem_ctx, rpc_pipe_np_smb_conn(pipe_hnd),
1010                                      argv[0], NULL, NULL, &sid, &type);
1011         if (!NT_STATUS_IS_OK(result)) {
1012                 d_fprintf(stderr, "Could not lookup %s: %s\n", argv[0],
1013                           nt_errstr(result));
1014                 goto done;
1015         }
1016
1017         if (type != SID_NAME_USER) {
1018                 d_fprintf(stderr, "%s is a %s, not a user\n", argv[0],
1019                           sid_type_lookup(type));
1020                 result = NT_STATUS_NO_SUCH_USER;
1021                 goto done;
1022         }
1023
1024         if (!sid_peek_check_rid(ctx->domain_sid, &sid, &rid)) {
1025                 d_fprintf(stderr, "%s is not in our domain\n", argv[0]);
1026                 result = NT_STATUS_NO_SUCH_USER;
1027                 goto done;
1028         }
1029
1030         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1031                                       pipe_hnd->desthost,
1032                                       MAXIMUM_ALLOWED_ACCESS,
1033                                       &connect_pol);
1034         if (!NT_STATUS_IS_OK(result)) {
1035                 goto done;
1036         }
1037
1038         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1039                                         &connect_pol,
1040                                         MAXIMUM_ALLOWED_ACCESS,
1041                                         ctx->domain_sid,
1042                                         &domain_pol);
1043         if (!NT_STATUS_IS_OK(result)) {
1044                 goto done;
1045         }
1046
1047         result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
1048                                       &domain_pol,
1049                                       MAXIMUM_ALLOWED_ACCESS,
1050                                       rid,
1051                                       &user_pol);
1052         if (!NT_STATUS_IS_OK(result)) {
1053                 goto done;
1054         }
1055
1056         result = fn(c, mem_ctx, ctx, pipe_hnd, &user_pol, argc-1, argv+1);
1057
1058  done:
1059         if (is_valid_policy_hnd(&user_pol)) {
1060                 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
1061         }
1062         if (is_valid_policy_hnd(&domain_pol)) {
1063                 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
1064         }
1065         if (is_valid_policy_hnd(&connect_pol)) {
1066                 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1067         }
1068         return result;
1069 }
1070
1071 static NTSTATUS rpc_sh_user_show_internals(struct net_context *c,
1072                                            TALLOC_CTX *mem_ctx,
1073                                            struct rpc_sh_ctx *ctx,
1074                                            struct rpc_pipe_client *pipe_hnd,
1075                                            POLICY_HND *user_hnd,
1076                                            int argc, const char **argv)
1077 {
1078         NTSTATUS result;
1079         union samr_UserInfo *info = NULL;
1080
1081         if (argc != 0) {
1082                 d_fprintf(stderr, "usage: %s show <username>\n", ctx->whoami);
1083                 return NT_STATUS_INVALID_PARAMETER;
1084         }
1085
1086         result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1087                                            user_hnd,
1088                                            21,
1089                                            &info);
1090         if (!NT_STATUS_IS_OK(result)) {
1091                 return result;
1092         }
1093
1094         d_printf("user rid: %d, group rid: %d\n",
1095                 info->info21.rid,
1096                 info->info21.primary_gid);
1097
1098         return result;
1099 }
1100
1101 static NTSTATUS rpc_sh_user_show(struct net_context *c,
1102                                  TALLOC_CTX *mem_ctx,
1103                                  struct rpc_sh_ctx *ctx,
1104                                  struct rpc_pipe_client *pipe_hnd,
1105                                  int argc, const char **argv)
1106 {
1107         return rpc_sh_handle_user(c, mem_ctx, ctx, pipe_hnd, argc, argv,
1108                                   rpc_sh_user_show_internals);
1109 }
1110
1111 #define FETCHSTR(name, rec) \
1112 do { if (strequal(ctx->thiscmd, name)) { \
1113         oldval = talloc_strdup(mem_ctx, info->info21.rec.string); } \
1114 } while (0);
1115
1116 #define SETSTR(name, rec, flag) \
1117 do { if (strequal(ctx->thiscmd, name)) { \
1118         init_lsa_String(&(info->info21.rec), argv[0]); \
1119         info->info21.fields_present |= SAMR_FIELD_##flag; } \
1120 } while (0);
1121
1122 static NTSTATUS rpc_sh_user_str_edit_internals(struct net_context *c,
1123                                                TALLOC_CTX *mem_ctx,
1124                                                struct rpc_sh_ctx *ctx,
1125                                                struct rpc_pipe_client *pipe_hnd,
1126                                                POLICY_HND *user_hnd,
1127                                                int argc, const char **argv)
1128 {
1129         NTSTATUS result;
1130         const char *username;
1131         const char *oldval = "";
1132         union samr_UserInfo *info = NULL;
1133
1134         if (argc > 1) {
1135                 d_fprintf(stderr, "usage: %s <username> [new value|NULL]\n",
1136                           ctx->whoami);
1137                 return NT_STATUS_INVALID_PARAMETER;
1138         }
1139
1140         result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1141                                            user_hnd,
1142                                            21,
1143                                            &info);
1144         if (!NT_STATUS_IS_OK(result)) {
1145                 return result;
1146         }
1147
1148         username = talloc_strdup(mem_ctx, info->info21.account_name.string);
1149
1150         FETCHSTR("fullname", full_name);
1151         FETCHSTR("homedir", home_directory);
1152         FETCHSTR("homedrive", home_drive);
1153         FETCHSTR("logonscript", logon_script);
1154         FETCHSTR("profilepath", profile_path);
1155         FETCHSTR("description", description);
1156
1157         if (argc == 0) {
1158                 d_printf("%s's %s: [%s]\n", username, ctx->thiscmd, oldval);
1159                 goto done;
1160         }
1161
1162         if (strcmp(argv[0], "NULL") == 0) {
1163                 argv[0] = "";
1164         }
1165
1166         ZERO_STRUCT(info->info21);
1167
1168         SETSTR("fullname", full_name, FULL_NAME);
1169         SETSTR("homedir", home_directory, HOME_DIRECTORY);
1170         SETSTR("homedrive", home_drive, HOME_DRIVE);
1171         SETSTR("logonscript", logon_script, LOGON_SCRIPT);
1172         SETSTR("profilepath", profile_path, PROFILE_PATH);
1173         SETSTR("description", description, DESCRIPTION);
1174
1175         result = rpccli_samr_SetUserInfo(pipe_hnd, mem_ctx,
1176                                          user_hnd,
1177                                          21,
1178                                          info);
1179
1180         d_printf("Set %s's %s from [%s] to [%s]\n", username,
1181                  ctx->thiscmd, oldval, argv[0]);
1182
1183  done:
1184
1185         return result;
1186 }
1187
1188 #define HANDLEFLG(name, rec) \
1189 do { if (strequal(ctx->thiscmd, name)) { \
1190         oldval = (oldflags & ACB_##rec) ? "yes" : "no"; \
1191         if (newval) { \
1192                 newflags = oldflags | ACB_##rec; \
1193         } else { \
1194                 newflags = oldflags & ~ACB_##rec; \
1195         } } } while (0);
1196
1197 static NTSTATUS rpc_sh_user_str_edit(struct net_context *c,
1198                                      TALLOC_CTX *mem_ctx,
1199                                      struct rpc_sh_ctx *ctx,
1200                                      struct rpc_pipe_client *pipe_hnd,
1201                                      int argc, const char **argv)
1202 {
1203         return rpc_sh_handle_user(c, mem_ctx, ctx, pipe_hnd, argc, argv,
1204                                   rpc_sh_user_str_edit_internals);
1205 }
1206
1207 static NTSTATUS rpc_sh_user_flag_edit_internals(struct net_context *c,
1208                                                 TALLOC_CTX *mem_ctx,
1209                                                 struct rpc_sh_ctx *ctx,
1210                                                 struct rpc_pipe_client *pipe_hnd,
1211                                                 POLICY_HND *user_hnd,
1212                                                 int argc, const char **argv)
1213 {
1214         NTSTATUS result;
1215         const char *username;
1216         const char *oldval = "unknown";
1217         uint32 oldflags, newflags;
1218         bool newval;
1219         union samr_UserInfo *info = NULL;
1220
1221         if ((argc > 1) ||
1222             ((argc == 1) && !strequal(argv[0], "yes") &&
1223              !strequal(argv[0], "no"))) {
1224                 d_fprintf(stderr, "usage: %s <username> [yes|no]\n",
1225                           ctx->whoami);
1226                 return NT_STATUS_INVALID_PARAMETER;
1227         }
1228
1229         newval = strequal(argv[0], "yes");
1230
1231         result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1232                                            user_hnd,
1233                                            21,
1234                                            &info);
1235         if (!NT_STATUS_IS_OK(result)) {
1236                 return result;
1237         }
1238
1239         username = talloc_strdup(mem_ctx, info->info21.account_name.string);
1240         oldflags = info->info21.acct_flags;
1241         newflags = info->info21.acct_flags;
1242
1243         HANDLEFLG("disabled", DISABLED);
1244         HANDLEFLG("pwnotreq", PWNOTREQ);
1245         HANDLEFLG("autolock", AUTOLOCK);
1246         HANDLEFLG("pwnoexp", PWNOEXP);
1247
1248         if (argc == 0) {
1249                 d_printf("%s's %s flag: %s\n", username, ctx->thiscmd, oldval);
1250                 goto done;
1251         }
1252
1253         ZERO_STRUCT(info->info21);
1254
1255         info->info21.acct_flags = newflags;
1256         info->info21.fields_present = SAMR_FIELD_ACCT_FLAGS;
1257
1258         result = rpccli_samr_SetUserInfo(pipe_hnd, mem_ctx,
1259                                          user_hnd,
1260                                          21,
1261                                          info);
1262
1263         if (NT_STATUS_IS_OK(result)) {
1264                 d_printf("Set %s's %s flag from [%s] to [%s]\n", username,
1265                          ctx->thiscmd, oldval, argv[0]);
1266         }
1267
1268  done:
1269
1270         return result;
1271 }
1272
1273 static NTSTATUS rpc_sh_user_flag_edit(struct net_context *c,
1274                                       TALLOC_CTX *mem_ctx,
1275                                       struct rpc_sh_ctx *ctx,
1276                                       struct rpc_pipe_client *pipe_hnd,
1277                                       int argc, const char **argv)
1278 {
1279         return rpc_sh_handle_user(c, mem_ctx, ctx, pipe_hnd, argc, argv,
1280                                   rpc_sh_user_flag_edit_internals);
1281 }
1282
1283 struct rpc_sh_cmd *net_rpc_user_edit_cmds(struct net_context *c,
1284                                           TALLOC_CTX *mem_ctx,
1285                                           struct rpc_sh_ctx *ctx)
1286 {
1287         static struct rpc_sh_cmd cmds[] = {
1288
1289                 { "fullname", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1290                   "Show/Set a user's full name" },
1291
1292                 { "homedir", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1293                   "Show/Set a user's home directory" },
1294
1295                 { "homedrive", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1296                   "Show/Set a user's home drive" },
1297
1298                 { "logonscript", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1299                   "Show/Set a user's logon script" },
1300
1301                 { "profilepath", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1302                   "Show/Set a user's profile path" },
1303
1304                 { "description", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1305                   "Show/Set a user's description" },
1306
1307                 { "disabled", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_flag_edit,
1308                   "Show/Set whether a user is disabled" },
1309
1310                 { "autolock", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_flag_edit,
1311                   "Show/Set whether a user locked out" },
1312
1313                 { "pwnotreq", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_flag_edit,
1314                   "Show/Set whether a user does not need a password" },
1315
1316                 { "pwnoexp", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_flag_edit,
1317                   "Show/Set whether a user's password does not expire" },
1318
1319                 { NULL, NULL, 0, NULL, NULL }
1320         };
1321
1322         return cmds;
1323 }
1324
1325 struct rpc_sh_cmd *net_rpc_user_cmds(struct net_context *c,
1326                                      TALLOC_CTX *mem_ctx,
1327                                      struct rpc_sh_ctx *ctx)
1328 {
1329         static struct rpc_sh_cmd cmds[] = {
1330
1331                 { "list", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_list,
1332                   "List available users" },
1333
1334                 { "info", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_info,
1335                   "List the domain groups a user is member of" },
1336
1337                 { "show", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_show,
1338                   "Show info about a user" },
1339
1340                 { "edit", net_rpc_user_edit_cmds, 0, NULL,
1341                   "Show/Modify a user's fields" },
1342
1343                 { NULL, NULL, 0, NULL, NULL }
1344         };
1345
1346         return cmds;
1347 }
1348
1349 /****************************************************************************/
1350
1351 /**
1352  * Basic usage function for 'net rpc group'.
1353  * @param argc  Standard main() style argc.
1354  * @param argv  Standard main() style argv. Initial components are already
1355  *              stripped.
1356  **/
1357
1358 static int rpc_group_usage(struct net_context *c, int argc, const char **argv)
1359 {
1360         return net_group_usage(c, argc, argv);
1361 }
1362
1363 /**
1364  * Delete group on a remote RPC server.
1365  *
1366  * All parameters are provided by the run_rpc_command function, except for
1367  * argc, argv which are passed through.
1368  *
1369  * @param domain_sid The domain sid acquired from the remote server.
1370  * @param cli A cli_state connected to the server.
1371  * @param mem_ctx Talloc context, destroyed on completion of the function.
1372  * @param argc  Standard main() style argc.
1373  * @param argv  Standard main() style argv. Initial components are already
1374  *              stripped.
1375  *
1376  * @return Normal NTSTATUS return.
1377  **/
1378
1379 static NTSTATUS rpc_group_delete_internals(struct net_context *c,
1380                                         const DOM_SID *domain_sid,
1381                                         const char *domain_name,
1382                                         struct cli_state *cli,
1383                                         struct rpc_pipe_client *pipe_hnd,
1384                                         TALLOC_CTX *mem_ctx,
1385                                         int argc,
1386                                         const char **argv)
1387 {
1388         POLICY_HND connect_pol, domain_pol, group_pol, user_pol;
1389         bool group_is_primary = false;
1390         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1391         uint32_t group_rid;
1392         struct samr_RidTypeArray *rids = NULL;
1393         /* char **names; */
1394         int i;
1395         /* DOM_GID *user_gids; */
1396
1397         struct samr_Ids group_rids, name_types;
1398         struct lsa_String lsa_acct_name;
1399         union samr_UserInfo *info = NULL;
1400
1401         if (argc < 1 || c->display_usage) {
1402                 rpc_group_usage(c, argc,argv);
1403                 return NT_STATUS_OK; /* ok? */
1404         }
1405
1406         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1407                                       pipe_hnd->desthost,
1408                                       MAXIMUM_ALLOWED_ACCESS,
1409                                       &connect_pol);
1410
1411         if (!NT_STATUS_IS_OK(result)) {
1412                 d_fprintf(stderr, "Request samr_Connect2 failed\n");
1413                 goto done;
1414         }
1415
1416         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1417                                         &connect_pol,
1418                                         MAXIMUM_ALLOWED_ACCESS,
1419                                         CONST_DISCARD(struct dom_sid2 *, domain_sid),
1420                                         &domain_pol);
1421
1422         if (!NT_STATUS_IS_OK(result)) {
1423                 d_fprintf(stderr, "Request open_domain failed\n");
1424                 goto done;
1425         }
1426
1427         init_lsa_String(&lsa_acct_name, argv[0]);
1428
1429         result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
1430                                          &domain_pol,
1431                                          1,
1432                                          &lsa_acct_name,
1433                                          &group_rids,
1434                                          &name_types);
1435         if (!NT_STATUS_IS_OK(result)) {
1436                 d_fprintf(stderr, "Lookup of '%s' failed\n",argv[0]);
1437                 goto done;
1438         }
1439
1440         switch (name_types.ids[0])
1441         {
1442         case SID_NAME_DOM_GRP:
1443                 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
1444                                                &domain_pol,
1445                                                MAXIMUM_ALLOWED_ACCESS,
1446                                                group_rids.ids[0],
1447                                                &group_pol);
1448                 if (!NT_STATUS_IS_OK(result)) {
1449                         d_fprintf(stderr, "Request open_group failed");
1450                         goto done;
1451                 }
1452
1453                 group_rid = group_rids.ids[0];
1454
1455                 result = rpccli_samr_QueryGroupMember(pipe_hnd, mem_ctx,
1456                                                       &group_pol,
1457                                                       &rids);
1458
1459                 if (!NT_STATUS_IS_OK(result)) {
1460                         d_fprintf(stderr, "Unable to query group members of %s",argv[0]);
1461                         goto done;
1462                 }
1463
1464                 if (c->opt_verbose) {
1465                         d_printf("Domain Group %s (rid: %d) has %d members\n",
1466                                 argv[0],group_rid, rids->count);
1467                 }
1468
1469                 /* Check if group is anyone's primary group */
1470                 for (i = 0; i < rids->count; i++)
1471                 {
1472                         result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
1473                                                       &domain_pol,
1474                                                       MAXIMUM_ALLOWED_ACCESS,
1475                                                       rids->rids[i],
1476                                                       &user_pol);
1477
1478                         if (!NT_STATUS_IS_OK(result)) {
1479                                 d_fprintf(stderr, "Unable to open group member %d\n",
1480                                         rids->rids[i]);
1481                                 goto done;
1482                         }
1483
1484                         result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1485                                                            &user_pol,
1486                                                            21,
1487                                                            &info);
1488
1489                         if (!NT_STATUS_IS_OK(result)) {
1490                                 d_fprintf(stderr, "Unable to lookup userinfo for group member %d\n",
1491                                         rids->rids[i]);
1492                                 goto done;
1493                         }
1494
1495                         if (info->info21.primary_gid == group_rid) {
1496                                 if (c->opt_verbose) {
1497                                         d_printf("Group is primary group of %s\n",
1498                                                 info->info21.account_name.string);
1499                                 }
1500                                 group_is_primary = true;
1501                         }
1502
1503                         rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
1504                 }
1505
1506                 if (group_is_primary) {
1507                         d_fprintf(stderr, "Unable to delete group because some "
1508                                  "of it's members have it as primary group\n");
1509                         result = NT_STATUS_MEMBERS_PRIMARY_GROUP;
1510                         goto done;
1511                 }
1512
1513                 /* remove all group members */
1514                 for (i = 0; i < rids->count; i++)
1515                 {
1516                         if (c->opt_verbose)
1517                                 d_printf("Remove group member %d...",
1518                                         rids->rids[i]);
1519                         result = rpccli_samr_DeleteGroupMember(pipe_hnd, mem_ctx,
1520                                                                &group_pol,
1521                                                                rids->rids[i]);
1522
1523                         if (NT_STATUS_IS_OK(result)) {
1524                                 if (c->opt_verbose)
1525                                         d_printf("ok\n");
1526                         } else {
1527                                 if (c->opt_verbose)
1528                                         d_printf("failed\n");
1529                                 goto done;
1530                         }
1531                 }
1532
1533                 result = rpccli_samr_DeleteDomainGroup(pipe_hnd, mem_ctx,
1534                                                        &group_pol);
1535
1536                 break;
1537         /* removing a local group is easier... */
1538         case SID_NAME_ALIAS:
1539                 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
1540                                                &domain_pol,
1541                                                MAXIMUM_ALLOWED_ACCESS,
1542                                                group_rids.ids[0],
1543                                                &group_pol);
1544
1545                 if (!NT_STATUS_IS_OK(result)) {
1546                         d_fprintf(stderr, "Request open_alias failed\n");
1547                         goto done;
1548                 }
1549
1550                 result = rpccli_samr_DeleteDomAlias(pipe_hnd, mem_ctx,
1551                                                     &group_pol);
1552                 break;
1553         default:
1554                 d_fprintf(stderr, "%s is of type %s. This command is only for deleting local or global groups\n",
1555                         argv[0],sid_type_lookup(name_types.ids[0]));
1556                 result = NT_STATUS_UNSUCCESSFUL;
1557                 goto done;
1558         }
1559
1560         if (NT_STATUS_IS_OK(result)) {
1561                 if (c->opt_verbose)
1562                         d_printf("Deleted %s '%s'\n",sid_type_lookup(name_types.ids[0]),argv[0]);
1563         } else {
1564                 d_fprintf(stderr, "Deleting of %s failed: %s\n",argv[0],
1565                         get_friendly_nt_error_msg(result));
1566         }
1567
1568  done:
1569         return result;
1570
1571 }
1572
1573 static int rpc_group_delete(struct net_context *c, int argc, const char **argv)
1574 {
1575         return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
1576                                rpc_group_delete_internals, argc,argv);
1577 }
1578
1579 static int rpc_group_add_internals(struct net_context *c, int argc, const char **argv)
1580 {
1581         NET_API_STATUS status;
1582         struct GROUP_INFO_1 info1;
1583         uint32_t parm_error = 0;
1584
1585         if (argc != 1 || c->display_usage) {
1586                 rpc_group_usage(c, argc, argv);
1587                 return 0;
1588         }
1589
1590         ZERO_STRUCT(info1);
1591
1592         info1.grpi1_name = argv[0];
1593         if (c->opt_comment && strlen(c->opt_comment) > 0) {
1594                 info1.grpi1_comment = c->opt_comment;
1595         }
1596
1597         status = NetGroupAdd(c->opt_host, 1, (uint8_t *)&info1, &parm_error);
1598
1599         if (status != 0) {
1600                 d_fprintf(stderr, "Failed to add group '%s' with: %s.\n",
1601                         argv[0], libnetapi_get_error_string(c->netapi_ctx,
1602                                                             status));
1603                 return -1;
1604         } else {
1605                 d_printf("Added group '%s'.\n", argv[0]);
1606         }
1607
1608         return 0;
1609 }
1610
1611 static int rpc_alias_add_internals(struct net_context *c, int argc, const char **argv)
1612 {
1613         NET_API_STATUS status;
1614         struct LOCALGROUP_INFO_1 info1;
1615         uint32_t parm_error = 0;
1616
1617         if (argc != 1 || c->display_usage) {
1618                 rpc_group_usage(c, argc, argv);
1619                 return 0;
1620         }
1621
1622         ZERO_STRUCT(info1);
1623
1624         info1.lgrpi1_name = argv[0];
1625         if (c->opt_comment && strlen(c->opt_comment) > 0) {
1626                 info1.lgrpi1_comment = c->opt_comment;
1627         }
1628
1629         status = NetLocalGroupAdd(c->opt_host, 1, (uint8_t *)&info1, &parm_error);
1630
1631         if (status != 0) {
1632                 d_fprintf(stderr, "Failed to add alias '%s' with: %s.\n",
1633                         argv[0], libnetapi_get_error_string(c->netapi_ctx,
1634                                                             status));
1635                 return -1;
1636         } else {
1637                 d_printf("Added alias '%s'.\n", argv[0]);
1638         }
1639
1640         return 0;
1641 }
1642
1643 static int rpc_group_add(struct net_context *c, int argc, const char **argv)
1644 {
1645         if (c->opt_localgroup)
1646                 return rpc_alias_add_internals(c, argc, argv);
1647
1648         return rpc_group_add_internals(c, argc, argv);
1649 }
1650
1651 static NTSTATUS get_sid_from_name(struct cli_state *cli,
1652                                 TALLOC_CTX *mem_ctx,
1653                                 const char *name,
1654                                 DOM_SID *sid,
1655                                 enum lsa_SidType *type)
1656 {
1657         DOM_SID *sids = NULL;
1658         enum lsa_SidType *types = NULL;
1659         struct rpc_pipe_client *pipe_hnd;
1660         POLICY_HND lsa_pol;
1661         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1662
1663         result = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
1664                                           &pipe_hnd);
1665         if (!NT_STATUS_IS_OK(result)) {
1666                 goto done;
1667         }
1668
1669         result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, false,
1670                                      SEC_RIGHTS_MAXIMUM_ALLOWED, &lsa_pol);
1671
1672         if (!NT_STATUS_IS_OK(result)) {
1673                 goto done;
1674         }
1675
1676         result = rpccli_lsa_lookup_names(pipe_hnd, mem_ctx, &lsa_pol, 1,
1677                                       &name, NULL, 1, &sids, &types);
1678
1679         if (NT_STATUS_IS_OK(result)) {
1680                 sid_copy(sid, &sids[0]);
1681                 *type = types[0];
1682         }
1683
1684         rpccli_lsa_Close(pipe_hnd, mem_ctx, &lsa_pol);
1685
1686  done:
1687         if (pipe_hnd) {
1688                 TALLOC_FREE(pipe_hnd);
1689         }
1690
1691         if (!NT_STATUS_IS_OK(result) && (StrnCaseCmp(name, "S-", 2) == 0)) {
1692
1693                 /* Try as S-1-5-whatever */
1694
1695                 DOM_SID tmp_sid;
1696
1697                 if (string_to_sid(&tmp_sid, name)) {
1698                         sid_copy(sid, &tmp_sid);
1699                         *type = SID_NAME_UNKNOWN;
1700                         result = NT_STATUS_OK;
1701                 }
1702         }
1703
1704         return result;
1705 }
1706
1707 static NTSTATUS rpc_add_groupmem(struct rpc_pipe_client *pipe_hnd,
1708                                 TALLOC_CTX *mem_ctx,
1709                                 const DOM_SID *group_sid,
1710                                 const char *member)
1711 {
1712         POLICY_HND connect_pol, domain_pol;
1713         NTSTATUS result;
1714         uint32 group_rid;
1715         POLICY_HND group_pol;
1716
1717         struct samr_Ids rids, rid_types;
1718         struct lsa_String lsa_acct_name;
1719
1720         DOM_SID sid;
1721
1722         sid_copy(&sid, group_sid);
1723
1724         if (!sid_split_rid(&sid, &group_rid)) {
1725                 return NT_STATUS_UNSUCCESSFUL;
1726         }
1727
1728         /* Get sam policy handle */
1729         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1730                                       pipe_hnd->desthost,
1731                                       MAXIMUM_ALLOWED_ACCESS,
1732                                       &connect_pol);
1733         if (!NT_STATUS_IS_OK(result)) {
1734                 return result;
1735         }
1736
1737         /* Get domain policy handle */
1738         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1739                                         &connect_pol,
1740                                         MAXIMUM_ALLOWED_ACCESS,
1741                                         &sid,
1742                                         &domain_pol);
1743         if (!NT_STATUS_IS_OK(result)) {
1744                 return result;
1745         }
1746
1747         init_lsa_String(&lsa_acct_name, member);
1748
1749         result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
1750                                          &domain_pol,
1751                                          1,
1752                                          &lsa_acct_name,
1753                                          &rids,
1754                                          &rid_types);
1755
1756         if (!NT_STATUS_IS_OK(result)) {
1757                 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
1758                 goto done;
1759         }
1760
1761         result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
1762                                        &domain_pol,
1763                                        MAXIMUM_ALLOWED_ACCESS,
1764                                        group_rid,
1765                                        &group_pol);
1766
1767         if (!NT_STATUS_IS_OK(result)) {
1768                 goto done;
1769         }
1770
1771         result = rpccli_samr_AddGroupMember(pipe_hnd, mem_ctx,
1772                                             &group_pol,
1773                                             rids.ids[0],
1774                                             0x0005); /* unknown flags */
1775
1776  done:
1777         rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1778         return result;
1779 }
1780
1781 static NTSTATUS rpc_add_aliasmem(struct rpc_pipe_client *pipe_hnd,
1782                                 TALLOC_CTX *mem_ctx,
1783                                 const DOM_SID *alias_sid,
1784                                 const char *member)
1785 {
1786         POLICY_HND connect_pol, domain_pol;
1787         NTSTATUS result;
1788         uint32 alias_rid;
1789         POLICY_HND alias_pol;
1790
1791         DOM_SID member_sid;
1792         enum lsa_SidType member_type;
1793
1794         DOM_SID sid;
1795
1796         sid_copy(&sid, alias_sid);
1797
1798         if (!sid_split_rid(&sid, &alias_rid)) {
1799                 return NT_STATUS_UNSUCCESSFUL;
1800         }
1801
1802         result = get_sid_from_name(rpc_pipe_np_smb_conn(pipe_hnd), mem_ctx,
1803                                    member, &member_sid, &member_type);
1804
1805         if (!NT_STATUS_IS_OK(result)) {
1806                 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
1807                 return result;
1808         }
1809
1810         /* Get sam policy handle */
1811         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1812                                       pipe_hnd->desthost,
1813                                       MAXIMUM_ALLOWED_ACCESS,
1814                                       &connect_pol);
1815         if (!NT_STATUS_IS_OK(result)) {
1816                 goto done;
1817         }
1818
1819         /* Get domain policy handle */
1820         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1821                                         &connect_pol,
1822                                         MAXIMUM_ALLOWED_ACCESS,
1823                                         &sid,
1824                                         &domain_pol);
1825         if (!NT_STATUS_IS_OK(result)) {
1826                 goto done;
1827         }
1828
1829         result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
1830                                        &domain_pol,
1831                                        MAXIMUM_ALLOWED_ACCESS,
1832                                        alias_rid,
1833                                        &alias_pol);
1834
1835         if (!NT_STATUS_IS_OK(result)) {
1836                 return result;
1837         }
1838
1839         result = rpccli_samr_AddAliasMember(pipe_hnd, mem_ctx,
1840                                             &alias_pol,
1841                                             &member_sid);
1842
1843         if (!NT_STATUS_IS_OK(result)) {
1844                 return result;
1845         }
1846
1847  done:
1848         rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1849         return result;
1850 }
1851
1852 static NTSTATUS rpc_group_addmem_internals(struct net_context *c,
1853                                         const DOM_SID *domain_sid,
1854                                         const char *domain_name,
1855                                         struct cli_state *cli,
1856                                         struct rpc_pipe_client *pipe_hnd,
1857                                         TALLOC_CTX *mem_ctx,
1858                                         int argc,
1859                                         const char **argv)
1860 {
1861         DOM_SID group_sid;
1862         enum lsa_SidType group_type;
1863
1864         if (argc != 2 || c->display_usage) {
1865                 d_printf("Usage:\n"
1866                          "net rpc group addmem <group> <member>\n"
1867                          "  Add a member to a group\n"
1868                          "    group\tGroup to add member to\n"
1869                          "    member\tMember to add to group\n");
1870                 return NT_STATUS_UNSUCCESSFUL;
1871         }
1872
1873         if (!NT_STATUS_IS_OK(get_sid_from_name(cli, mem_ctx, argv[0],
1874                                                &group_sid, &group_type))) {
1875                 d_fprintf(stderr, "Could not lookup group name %s\n", argv[0]);
1876                 return NT_STATUS_UNSUCCESSFUL;
1877         }
1878
1879         if (group_type == SID_NAME_DOM_GRP) {
1880                 NTSTATUS result = rpc_add_groupmem(pipe_hnd, mem_ctx,
1881                                                    &group_sid, argv[1]);
1882
1883                 if (!NT_STATUS_IS_OK(result)) {
1884                         d_fprintf(stderr, "Could not add %s to %s: %s\n",
1885                                  argv[1], argv[0], nt_errstr(result));
1886                 }
1887                 return result;
1888         }
1889
1890         if (group_type == SID_NAME_ALIAS) {
1891                 NTSTATUS result = rpc_add_aliasmem(pipe_hnd, mem_ctx,
1892                                                    &group_sid, argv[1]);
1893
1894                 if (!NT_STATUS_IS_OK(result)) {
1895                         d_fprintf(stderr, "Could not add %s to %s: %s\n",
1896                                  argv[1], argv[0], nt_errstr(result));
1897                 }
1898                 return result;
1899         }
1900
1901         d_fprintf(stderr, "Can only add members to global or local groups "
1902                  "which %s is not\n", argv[0]);
1903
1904         return NT_STATUS_UNSUCCESSFUL;
1905 }
1906
1907 static int rpc_group_addmem(struct net_context *c, int argc, const char **argv)
1908 {
1909         return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
1910                                rpc_group_addmem_internals,
1911                                argc, argv);
1912 }
1913
1914 static NTSTATUS rpc_del_groupmem(struct net_context *c,
1915                                 struct rpc_pipe_client *pipe_hnd,
1916                                 TALLOC_CTX *mem_ctx,
1917                                 const DOM_SID *group_sid,
1918                                 const char *member)
1919 {
1920         POLICY_HND connect_pol, domain_pol;
1921         NTSTATUS result;
1922         uint32 group_rid;
1923         POLICY_HND group_pol;
1924
1925         struct samr_Ids rids, rid_types;
1926         struct lsa_String lsa_acct_name;
1927
1928         DOM_SID sid;
1929
1930         sid_copy(&sid, group_sid);
1931
1932         if (!sid_split_rid(&sid, &group_rid))
1933                 return NT_STATUS_UNSUCCESSFUL;
1934
1935         /* Get sam policy handle */
1936         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1937                                       pipe_hnd->desthost,
1938                                       MAXIMUM_ALLOWED_ACCESS,
1939                                       &connect_pol);
1940         if (!NT_STATUS_IS_OK(result))
1941                 return result;
1942
1943         /* Get domain policy handle */
1944         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1945                                         &connect_pol,
1946                                         MAXIMUM_ALLOWED_ACCESS,
1947                                         &sid,
1948                                         &domain_pol);
1949         if (!NT_STATUS_IS_OK(result))
1950                 return result;
1951
1952         init_lsa_String(&lsa_acct_name, member);
1953
1954         result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
1955                                          &domain_pol,
1956                                          1,
1957                                          &lsa_acct_name,
1958                                          &rids,
1959                                          &rid_types);
1960         if (!NT_STATUS_IS_OK(result)) {
1961                 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
1962                 goto done;
1963         }
1964
1965         result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
1966                                        &domain_pol,
1967                                        MAXIMUM_ALLOWED_ACCESS,
1968                                        group_rid,
1969                                        &group_pol);
1970
1971         if (!NT_STATUS_IS_OK(result))
1972                 goto done;
1973
1974         result = rpccli_samr_DeleteGroupMember(pipe_hnd, mem_ctx,
1975                                                &group_pol,
1976                                                rids.ids[0]);
1977
1978  done:
1979         rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1980         return result;
1981 }
1982
1983 static NTSTATUS rpc_del_aliasmem(struct rpc_pipe_client *pipe_hnd,
1984                                 TALLOC_CTX *mem_ctx,
1985                                 const DOM_SID *alias_sid,
1986                                 const char *member)
1987 {
1988         POLICY_HND connect_pol, domain_pol;
1989         NTSTATUS result;
1990         uint32 alias_rid;
1991         POLICY_HND alias_pol;
1992
1993         DOM_SID member_sid;
1994         enum lsa_SidType member_type;
1995
1996         DOM_SID sid;
1997
1998         sid_copy(&sid, alias_sid);
1999
2000         if (!sid_split_rid(&sid, &alias_rid))
2001                 return NT_STATUS_UNSUCCESSFUL;
2002
2003         result = get_sid_from_name(rpc_pipe_np_smb_conn(pipe_hnd), mem_ctx,
2004                                    member, &member_sid, &member_type);
2005
2006         if (!NT_STATUS_IS_OK(result)) {
2007                 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
2008                 return result;
2009         }
2010
2011         /* Get sam policy handle */
2012         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2013                                       pipe_hnd->desthost,
2014                                       MAXIMUM_ALLOWED_ACCESS,
2015                                       &connect_pol);
2016         if (!NT_STATUS_IS_OK(result)) {
2017                 goto done;
2018         }
2019
2020         /* Get domain policy handle */
2021         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2022                                         &connect_pol,
2023                                         MAXIMUM_ALLOWED_ACCESS,
2024                                         &sid,
2025                                         &domain_pol);
2026         if (!NT_STATUS_IS_OK(result)) {
2027                 goto done;
2028         }
2029
2030         result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2031                                        &domain_pol,
2032                                        MAXIMUM_ALLOWED_ACCESS,
2033                                        alias_rid,
2034                                        &alias_pol);
2035
2036         if (!NT_STATUS_IS_OK(result))
2037                 return result;
2038
2039         result = rpccli_samr_DeleteAliasMember(pipe_hnd, mem_ctx,
2040                                                &alias_pol,
2041                                                &member_sid);
2042
2043         if (!NT_STATUS_IS_OK(result))
2044                 return result;
2045
2046  done:
2047         rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
2048         return result;
2049 }
2050
2051 static NTSTATUS rpc_group_delmem_internals(struct net_context *c,
2052                                         const DOM_SID *domain_sid,
2053                                         const char *domain_name,
2054                                         struct cli_state *cli,
2055                                         struct rpc_pipe_client *pipe_hnd,
2056                                         TALLOC_CTX *mem_ctx,
2057                                         int argc,
2058                                         const char **argv)
2059 {
2060         DOM_SID group_sid;
2061         enum lsa_SidType group_type;
2062
2063         if (argc != 2 || c->display_usage) {
2064                 d_printf("Usage:\n"
2065                          "net rpc group delmem <group> <member>\n"
2066                          "  Delete a member from a group\n"
2067                          "    group\tGroup to delete member from\n"
2068                          "    member\tMember to delete from group\n");
2069                 return NT_STATUS_UNSUCCESSFUL;
2070         }
2071
2072         if (!NT_STATUS_IS_OK(get_sid_from_name(cli, mem_ctx, argv[0],
2073                                                &group_sid, &group_type))) {
2074                 d_fprintf(stderr, "Could not lookup group name %s\n", argv[0]);
2075                 return NT_STATUS_UNSUCCESSFUL;
2076         }
2077
2078         if (group_type == SID_NAME_DOM_GRP) {
2079                 NTSTATUS result = rpc_del_groupmem(c, pipe_hnd, mem_ctx,
2080                                                    &group_sid, argv[1]);
2081
2082                 if (!NT_STATUS_IS_OK(result)) {
2083                         d_fprintf(stderr, "Could not del %s from %s: %s\n",
2084                                  argv[1], argv[0], nt_errstr(result));
2085                 }
2086                 return result;
2087         }
2088
2089         if (group_type == SID_NAME_ALIAS) {
2090                 NTSTATUS result = rpc_del_aliasmem(pipe_hnd, mem_ctx,
2091                                                    &group_sid, argv[1]);
2092
2093                 if (!NT_STATUS_IS_OK(result)) {
2094                         d_fprintf(stderr, "Could not del %s from %s: %s\n",
2095                                  argv[1], argv[0], nt_errstr(result));
2096                 }
2097                 return result;
2098         }
2099
2100         d_fprintf(stderr, "Can only delete members from global or local groups "
2101                  "which %s is not\n", argv[0]);
2102
2103         return NT_STATUS_UNSUCCESSFUL;
2104 }
2105
2106 static int rpc_group_delmem(struct net_context *c, int argc, const char **argv)
2107 {
2108         return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
2109                                rpc_group_delmem_internals,
2110                                argc, argv);
2111 }
2112
2113 /**
2114  * List groups on a remote RPC server.
2115  *
2116  * All parameters are provided by the run_rpc_command function, except for
2117  * argc, argv which are passes through.
2118  *
2119  * @param domain_sid The domain sid acquired from the remote server.
2120  * @param cli A cli_state connected to the server.
2121  * @param mem_ctx Talloc context, destroyed on completion of the function.
2122  * @param argc  Standard main() style argc.
2123  * @param argv  Standard main() style argv. Initial components are already
2124  *              stripped.
2125  *
2126  * @return Normal NTSTATUS return.
2127  **/
2128
2129 static NTSTATUS rpc_group_list_internals(struct net_context *c,
2130                                         const DOM_SID *domain_sid,
2131                                         const char *domain_name,
2132                                         struct cli_state *cli,
2133                                         struct rpc_pipe_client *pipe_hnd,
2134                                         TALLOC_CTX *mem_ctx,
2135                                         int argc,
2136                                         const char **argv)
2137 {
2138         POLICY_HND connect_pol, domain_pol;
2139         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2140         uint32 start_idx=0, max_entries=250, num_entries, i, loop_count = 0;
2141         struct samr_SamArray *groups = NULL;
2142         bool global = false;
2143         bool local = false;
2144         bool builtin = false;
2145
2146         if (c->display_usage) {
2147                 d_printf("Usage:\n"
2148                          "net rpc group list [global] [local] [builtin]\n"
2149                          "  List groups on RPC server\n"
2150                          "    global\tList global groups\n"
2151                          "    local\tList local groups\n"
2152                          "    builtin\tList builtin groups\n"
2153                          "    If none of global, local or builtin is "
2154                          "specified, all three options are considered set\n");
2155                 return NT_STATUS_OK;
2156         }
2157
2158         if (argc == 0) {
2159                 global = true;
2160                 local = true;
2161                 builtin = true;
2162         }
2163
2164         for (i=0; i<argc; i++) {
2165                 if (strequal(argv[i], "global"))
2166                         global = true;
2167
2168                 if (strequal(argv[i], "local"))
2169                         local = true;
2170
2171                 if (strequal(argv[i], "builtin"))
2172                         builtin = true;
2173         }
2174
2175         /* Get sam policy handle */
2176
2177         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2178                                       pipe_hnd->desthost,
2179                                       MAXIMUM_ALLOWED_ACCESS,
2180                                       &connect_pol);
2181         if (!NT_STATUS_IS_OK(result)) {
2182                 goto done;
2183         }
2184
2185         /* Get domain policy handle */
2186
2187         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2188                                         &connect_pol,
2189                                         MAXIMUM_ALLOWED_ACCESS,
2190                                         CONST_DISCARD(struct dom_sid2 *, domain_sid),
2191                                         &domain_pol);
2192         if (!NT_STATUS_IS_OK(result)) {
2193                 goto done;
2194         }
2195
2196         /* Query domain groups */
2197         if (c->opt_long_list_entries)
2198                 d_printf("\nGroup name            Comment"
2199                          "\n-----------------------------\n");
2200         do {
2201                 uint32_t max_size, total_size, returned_size;
2202                 union samr_DispInfo info;
2203
2204                 if (!global) break;
2205
2206                 get_query_dispinfo_params(
2207                         loop_count, &max_entries, &max_size);
2208
2209                 result = rpccli_samr_QueryDisplayInfo(pipe_hnd, mem_ctx,
2210                                                       &domain_pol,
2211                                                       3,
2212                                                       start_idx,
2213                                                       max_entries,
2214                                                       max_size,
2215                                                       &total_size,
2216                                                       &returned_size,
2217                                                       &info);
2218                 num_entries = info.info3.count;
2219                 start_idx += info.info3.count;
2220
2221                 if (!NT_STATUS_IS_OK(result) &&
2222                     !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2223                         break;
2224
2225                 for (i = 0; i < num_entries; i++) {
2226
2227                         const char *group = NULL;
2228                         const char *desc = NULL;
2229
2230                         group = info.info3.entries[i].account_name.string;
2231                         desc = info.info3.entries[i].description.string;
2232
2233                         if (c->opt_long_list_entries)
2234                                 printf("%-21.21s %-50.50s\n",
2235                                        group, desc);
2236                         else
2237                                 printf("%s\n", group);
2238                 }
2239         } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2240         /* query domain aliases */
2241         start_idx = 0;
2242         do {
2243                 if (!local) break;
2244
2245                 result = rpccli_samr_EnumDomainAliases(pipe_hnd, mem_ctx,
2246                                                        &domain_pol,
2247                                                        &start_idx,
2248                                                        &groups,
2249                                                        0xffff,
2250                                                        &num_entries);
2251                 if (!NT_STATUS_IS_OK(result) &&
2252                     !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2253                         break;
2254
2255                 for (i = 0; i < num_entries; i++) {
2256
2257                         const char *description = NULL;
2258
2259                         if (c->opt_long_list_entries) {
2260
2261                                 POLICY_HND alias_pol;
2262                                 union samr_AliasInfo *info = NULL;
2263
2264                                 if ((NT_STATUS_IS_OK(rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2265                                                                            &domain_pol,
2266                                                                            0x8,
2267                                                                            groups->entries[i].idx,
2268                                                                            &alias_pol))) &&
2269                                     (NT_STATUS_IS_OK(rpccli_samr_QueryAliasInfo(pipe_hnd, mem_ctx,
2270                                                                                 &alias_pol,
2271                                                                                 3,
2272                                                                                 &info))) &&
2273                                     (NT_STATUS_IS_OK(rpccli_samr_Close(pipe_hnd, mem_ctx,
2274                                                                     &alias_pol)))) {
2275                                         description = info->description.string;
2276                                 }
2277                         }
2278
2279                         if (description != NULL) {
2280                                 printf("%-21.21s %-50.50s\n",
2281                                        groups->entries[i].name.string,
2282                                        description);
2283                         } else {
2284                                 printf("%s\n", groups->entries[i].name.string);
2285                         }
2286                 }
2287         } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2288         rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
2289         /* Get builtin policy handle */
2290
2291         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2292                                         &connect_pol,
2293                                         MAXIMUM_ALLOWED_ACCESS,
2294                                         CONST_DISCARD(struct dom_sid2 *, &global_sid_Builtin),
2295                                         &domain_pol);
2296         if (!NT_STATUS_IS_OK(result)) {
2297                 goto done;
2298         }
2299         /* query builtin aliases */
2300         start_idx = 0;
2301         do {
2302                 if (!builtin) break;
2303
2304                 result = rpccli_samr_EnumDomainAliases(pipe_hnd, mem_ctx,
2305                                                        &domain_pol,
2306                                                        &start_idx,
2307                                                        &groups,
2308                                                        max_entries,
2309                                                        &num_entries);
2310                 if (!NT_STATUS_IS_OK(result) &&
2311                     !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2312                         break;
2313
2314                 for (i = 0; i < num_entries; i++) {
2315
2316                         const char *description = NULL;
2317
2318                         if (c->opt_long_list_entries) {
2319
2320                                 POLICY_HND alias_pol;
2321                                 union samr_AliasInfo *info = NULL;
2322
2323                                 if ((NT_STATUS_IS_OK(rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2324                                                                            &domain_pol,
2325                                                                            0x8,
2326                                                                            groups->entries[i].idx,
2327                                                                            &alias_pol))) &&
2328                                     (NT_STATUS_IS_OK(rpccli_samr_QueryAliasInfo(pipe_hnd, mem_ctx,
2329                                                                                 &alias_pol,
2330                                                                                 3,
2331                                                                                 &info))) &&
2332                                     (NT_STATUS_IS_OK(rpccli_samr_Close(pipe_hnd, mem_ctx,
2333                                                                     &alias_pol)))) {
2334                                         description = info->description.string;
2335                                 }
2336                         }
2337
2338                         if (description != NULL) {
2339                                 printf("%-21.21s %-50.50s\n",
2340                                        groups->entries[i].name.string,
2341                                        description);
2342                         } else {
2343                                 printf("%s\n", groups->entries[i].name.string);
2344                         }
2345                 }
2346         } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2347
2348  done:
2349         return result;
2350 }
2351
2352 static int rpc_group_list(struct net_context *c, int argc, const char **argv)
2353 {
2354         return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
2355                                rpc_group_list_internals,
2356                                argc, argv);
2357 }
2358
2359 static NTSTATUS rpc_list_group_members(struct net_context *c,
2360                                         struct rpc_pipe_client *pipe_hnd,
2361                                         TALLOC_CTX *mem_ctx,
2362                                         const char *domain_name,
2363                                         const DOM_SID *domain_sid,
2364                                         POLICY_HND *domain_pol,
2365                                         uint32 rid)
2366 {
2367         NTSTATUS result;
2368         POLICY_HND group_pol;
2369         uint32 num_members, *group_rids;
2370         int i;
2371         struct samr_RidTypeArray *rids = NULL;
2372         struct lsa_Strings names;
2373         struct samr_Ids types;
2374
2375         fstring sid_str;
2376         sid_to_fstring(sid_str, domain_sid);
2377
2378         result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
2379                                        domain_pol,
2380                                        MAXIMUM_ALLOWED_ACCESS,
2381                                        rid,
2382                                        &group_pol);
2383
2384         if (!NT_STATUS_IS_OK(result))
2385                 return result;
2386
2387         result = rpccli_samr_QueryGroupMember(pipe_hnd, mem_ctx,
2388                                               &group_pol,
2389                                               &rids);
2390
2391         if (!NT_STATUS_IS_OK(result))
2392                 return result;
2393
2394         num_members = rids->count;
2395         group_rids = rids->rids;
2396
2397         while (num_members > 0) {
2398                 int this_time = 512;
2399
2400                 if (num_members < this_time)
2401                         this_time = num_members;
2402
2403                 result = rpccli_samr_LookupRids(pipe_hnd, mem_ctx,
2404                                                 domain_pol,
2405                                                 this_time,
2406                                                 group_rids,
2407                                                 &names,
2408                                                 &types);
2409
2410                 if (!NT_STATUS_IS_OK(result))
2411                         return result;
2412
2413                 /* We only have users as members, but make the output
2414                    the same as the output of alias members */
2415
2416                 for (i = 0; i < this_time; i++) {
2417
2418                         if (c->opt_long_list_entries) {
2419                                 printf("%s-%d %s\\%s %d\n", sid_str,
2420                                        group_rids[i], domain_name,
2421                                        names.names[i].string,
2422                                        SID_NAME_USER);
2423                         } else {
2424                                 printf("%s\\%s\n", domain_name,
2425                                         names.names[i].string);
2426                         }
2427                 }
2428
2429                 num_members -= this_time;
2430                 group_rids += 512;
2431         }
2432
2433         return NT_STATUS_OK;
2434 }
2435
2436 static NTSTATUS rpc_list_alias_members(struct net_context *c,
2437                                         struct rpc_pipe_client *pipe_hnd,
2438                                         TALLOC_CTX *mem_ctx,
2439                                         POLICY_HND *domain_pol,
2440                                         uint32 rid)
2441 {
2442         NTSTATUS result;
2443         struct rpc_pipe_client *lsa_pipe;
2444         POLICY_HND alias_pol, lsa_pol;
2445         uint32 num_members;
2446         DOM_SID *alias_sids;
2447         char **domains;
2448         char **names;
2449         enum lsa_SidType *types;
2450         int i;
2451         struct lsa_SidArray sid_array;
2452
2453         result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2454                                        domain_pol,
2455                                        MAXIMUM_ALLOWED_ACCESS,
2456                                        rid,
2457                                        &alias_pol);
2458
2459         if (!NT_STATUS_IS_OK(result))
2460                 return result;
2461
2462         result = rpccli_samr_GetMembersInAlias(pipe_hnd, mem_ctx,
2463                                                &alias_pol,
2464                                                &sid_array);
2465
2466         if (!NT_STATUS_IS_OK(result)) {
2467                 d_fprintf(stderr, "Couldn't list alias members\n");
2468                 return result;
2469         }
2470
2471         num_members = sid_array.num_sids;
2472
2473         if (num_members == 0) {
2474                 return NT_STATUS_OK;
2475         }
2476
2477         result = cli_rpc_pipe_open_noauth(rpc_pipe_np_smb_conn(pipe_hnd),
2478                                           &ndr_table_lsarpc.syntax_id,
2479                                           &lsa_pipe);
2480         if (!NT_STATUS_IS_OK(result)) {
2481                 d_fprintf(stderr, "Couldn't open LSA pipe. Error was %s\n",
2482                         nt_errstr(result) );
2483                 return result;
2484         }
2485
2486         result = rpccli_lsa_open_policy(lsa_pipe, mem_ctx, true,
2487                                      SEC_RIGHTS_MAXIMUM_ALLOWED, &lsa_pol);
2488
2489         if (!NT_STATUS_IS_OK(result)) {
2490                 d_fprintf(stderr, "Couldn't open LSA policy handle\n");
2491                 TALLOC_FREE(lsa_pipe);
2492                 return result;
2493         }
2494
2495         alias_sids = TALLOC_ZERO_ARRAY(mem_ctx, DOM_SID, num_members);
2496         if (!alias_sids) {
2497                 d_fprintf(stderr, "Out of memory\n");
2498                 TALLOC_FREE(lsa_pipe);
2499                 return NT_STATUS_NO_MEMORY;
2500         }
2501
2502         for (i=0; i<num_members; i++) {
2503                 sid_copy(&alias_sids[i], sid_array.sids[i].sid);
2504         }
2505
2506         result = rpccli_lsa_lookup_sids(lsa_pipe, mem_ctx, &lsa_pol,
2507                                      num_members,  alias_sids,
2508                                      &domains, &names, &types);
2509
2510         if (!NT_STATUS_IS_OK(result) &&
2511             !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED)) {
2512                 d_fprintf(stderr, "Couldn't lookup SIDs\n");
2513                 TALLOC_FREE(lsa_pipe);
2514                 return result;
2515         }
2516
2517         for (i = 0; i < num_members; i++) {
2518                 fstring sid_str;
2519                 sid_to_fstring(sid_str, &alias_sids[i]);
2520
2521                 if (c->opt_long_list_entries) {
2522                         printf("%s %s\\%s %d\n", sid_str,
2523                                domains[i] ? domains[i] : "*unknown*",
2524                                names[i] ? names[i] : "*unknown*", types[i]);
2525                 } else {
2526                         if (domains[i])
2527                                 printf("%s\\%s\n", domains[i], names[i]);
2528                         else
2529                                 printf("%s\n", sid_str);
2530                 }
2531         }
2532
2533         TALLOC_FREE(lsa_pipe);
2534         return NT_STATUS_OK;
2535 }
2536
2537 static NTSTATUS rpc_group_members_internals(struct net_context *c,
2538                                         const DOM_SID *domain_sid,
2539                                         const char *domain_name,
2540                                         struct cli_state *cli,
2541                                         struct rpc_pipe_client *pipe_hnd,
2542                                         TALLOC_CTX *mem_ctx,
2543                                         int argc,
2544                                         const char **argv)
2545 {
2546         NTSTATUS result;
2547         POLICY_HND connect_pol, domain_pol;
2548         struct samr_Ids rids, rid_types;
2549         struct lsa_String lsa_acct_name;
2550
2551         /* Get sam policy handle */
2552
2553         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2554                                       pipe_hnd->desthost,
2555                                       MAXIMUM_ALLOWED_ACCESS,
2556                                       &connect_pol);
2557
2558         if (!NT_STATUS_IS_OK(result))
2559                 return result;
2560
2561         /* Get domain policy handle */
2562
2563         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2564                                         &connect_pol,
2565                                         MAXIMUM_ALLOWED_ACCESS,
2566                                         CONST_DISCARD(struct dom_sid2 *, domain_sid),
2567                                         &domain_pol);
2568
2569         if (!NT_STATUS_IS_OK(result))
2570                 return result;
2571
2572         init_lsa_String(&lsa_acct_name, argv[0]); /* sure? */
2573
2574         result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
2575                                          &domain_pol,
2576                                          1,
2577                                          &lsa_acct_name,
2578                                          &rids,
2579                                          &rid_types);
2580
2581         if (!NT_STATUS_IS_OK(result)) {
2582
2583                 /* Ok, did not find it in the global sam, try with builtin */
2584
2585                 DOM_SID sid_Builtin;
2586
2587                 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
2588
2589                 sid_copy(&sid_Builtin, &global_sid_Builtin);
2590
2591                 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2592                                                 &connect_pol,
2593                                                 MAXIMUM_ALLOWED_ACCESS,
2594                                                 &sid_Builtin,
2595                                                 &domain_pol);
2596
2597                 if (!NT_STATUS_IS_OK(result)) {
2598                         d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2599                         return result;
2600                 }
2601
2602                 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
2603                                                  &domain_pol,
2604                                                  1,
2605                                                  &lsa_acct_name,
2606                                                  &rids,
2607                                                  &rid_types);
2608
2609                 if (!NT_STATUS_IS_OK(result)) {
2610                         d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2611                         return result;
2612                 }
2613         }
2614
2615         if (rids.count != 1) {
2616                 d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2617                 return result;
2618         }
2619
2620         if (rid_types.ids[0] == SID_NAME_DOM_GRP) {
2621                 return rpc_list_group_members(c, pipe_hnd, mem_ctx, domain_name,
2622                                               domain_sid, &domain_pol,
2623                                               rids.ids[0]);
2624         }
2625
2626         if (rid_types.ids[0] == SID_NAME_ALIAS) {
2627                 return rpc_list_alias_members(c, pipe_hnd, mem_ctx, &domain_pol,
2628                                               rids.ids[0]);
2629         }
2630
2631         return NT_STATUS_NO_SUCH_GROUP;
2632 }
2633
2634 static int rpc_group_members(struct net_context *c, int argc, const char **argv)
2635 {
2636         if (argc != 1 || c->display_usage) {
2637                 return rpc_group_usage(c, argc, argv);
2638         }
2639
2640         return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
2641                                rpc_group_members_internals,
2642                                argc, argv);
2643 }
2644
2645 static int rpc_group_rename_internals(struct net_context *c, int argc, const char **argv)
2646 {
2647         NET_API_STATUS status;
2648         struct GROUP_INFO_0 g0;
2649         uint32_t parm_err;
2650
2651         if (argc != 2) {
2652                 d_printf("Usage: 'net rpc group rename group newname'\n");
2653                 return -1;
2654         }
2655
2656         g0.grpi0_name = argv[1];
2657
2658         status = NetGroupSetInfo(c->opt_host,
2659                                  argv[0],
2660                                  0,
2661                                  (uint8_t *)&g0,
2662                                  &parm_err);
2663
2664         if (status != 0) {
2665                 d_fprintf(stderr, "Renaming group %s failed with: %s\n",
2666                         argv[0], libnetapi_get_error_string(c->netapi_ctx,
2667                         status));
2668                 return -1;
2669         }
2670
2671         return 0;
2672 }
2673
2674 static int rpc_group_rename(struct net_context *c, int argc, const char **argv)
2675 {
2676         if (argc != 2 || c->display_usage) {
2677                 return rpc_group_usage(c, argc, argv);
2678         }
2679
2680         return rpc_group_rename_internals(c, argc, argv);
2681 }
2682
2683 /**
2684  * 'net rpc group' entrypoint.
2685  * @param argc  Standard main() style argc.
2686  * @param argv  Standard main() style argv. Initial components are already
2687  *              stripped.
2688  **/
2689
2690 int net_rpc_group(struct net_context *c, int argc, const char **argv)
2691 {
2692         NET_API_STATUS status;
2693
2694         struct functable func[] = {
2695                 {
2696                         "add",
2697                         rpc_group_add,
2698                         NET_TRANSPORT_RPC,
2699                         "Create specified group",
2700                         "net rpc group add\n"
2701                         "    Create specified group"
2702                 },
2703                 {
2704                         "delete",
2705                         rpc_group_delete,
2706                         NET_TRANSPORT_RPC,
2707                         "Delete specified group",
2708                         "net rpc group delete\n"
2709                         "    Delete specified group"
2710                 },
2711                 {
2712                         "addmem",
2713                         rpc_group_addmem,
2714                         NET_TRANSPORT_RPC,
2715                         "Add member to group",
2716                         "net rpc group addmem\n"
2717                         "    Add member to group"
2718                 },
2719                 {
2720                         "delmem",
2721                         rpc_group_delmem,
2722                         NET_TRANSPORT_RPC,
2723                         "Remove member from group",
2724                         "net rpc group delmem\n"
2725                         "    Remove member from group"
2726                 },
2727                 {
2728                         "list",
2729                         rpc_group_list,
2730                         NET_TRANSPORT_RPC,
2731                         "List groups",
2732                         "net rpc group list\n"
2733                         "    List groups"
2734                 },
2735                 {
2736                         "members",
2737                         rpc_group_members,
2738                         NET_TRANSPORT_RPC,
2739                         "List group members",
2740                         "net rpc group members\n"
2741                         "    List group members"
2742                 },
2743                 {
2744                         "rename",
2745                         rpc_group_rename,
2746                         NET_TRANSPORT_RPC,
2747                         "Rename group",
2748                         "net rpc group rename\n"
2749                         "    Rename group"
2750                 },
2751                 {NULL, NULL, 0, NULL, NULL}
2752         };
2753
2754         status = libnetapi_init(&c->netapi_ctx);
2755         if (status != 0) {
2756                 return -1;
2757         }
2758         libnetapi_set_username(c->netapi_ctx, c->opt_user_name);
2759         libnetapi_set_password(c->netapi_ctx, c->opt_password);
2760         if (c->opt_kerberos) {
2761                 libnetapi_set_use_kerberos(c->netapi_ctx);
2762         }
2763
2764         if (argc == 0) {
2765                 if (c->display_usage) {
2766                         d_printf("Usage:\n");
2767                         d_printf("net rpc group\n"
2768                                  "    Alias for net rpc group list global local "
2769                                  "builtin\n");
2770                         net_display_usage_from_functable(func);
2771                         return 0;
2772                 }
2773
2774                 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
2775                                        rpc_group_list_internals,
2776                                        argc, argv);
2777         }
2778
2779         return net_run_function(c, argc, argv, "net rpc group", func);
2780 }
2781
2782 /****************************************************************************/
2783
2784 static int rpc_share_usage(struct net_context *c, int argc, const char **argv)
2785 {
2786         return net_share_usage(c, argc, argv);
2787 }
2788
2789 /**
2790  * Add a share on a remote RPC server.
2791  *
2792  * @param argc  Standard main() style argc.
2793  * @param argv  Standard main() style argv. Initial components are already
2794  *              stripped.
2795  *
2796  * @return A shell status integer (0 for success).
2797  **/
2798
2799 static int rpc_share_add(struct net_context *c, int argc, const char **argv)
2800 {
2801         NET_API_STATUS status;
2802         char *sharename;
2803         char *path;
2804         uint32 type = STYPE_DISKTREE; /* only allow disk shares to be added */
2805         uint32 num_users=0, perms=0;
2806         char *password=NULL; /* don't allow a share password */
2807         struct SHARE_INFO_2 i2;
2808         uint32_t parm_error = 0;
2809
2810         if ((argc < 1) || !strchr(argv[0], '=') || c->display_usage) {
2811                 return rpc_share_usage(c, argc, argv);
2812         }
2813
2814         if ((sharename = talloc_strdup(c, argv[0])) == NULL) {
2815                 return -1;
2816         }
2817
2818         path = strchr(sharename, '=');
2819         if (!path) {
2820                 return -1;
2821         }
2822
2823         *path++ = '\0';
2824
2825         i2.shi2_netname         = sharename;
2826         i2.shi2_type            = type;
2827         i2.shi2_remark          = c->opt_comment;
2828         i2.shi2_permissions     = perms;
2829         i2.shi2_max_uses        = c->opt_maxusers;
2830         i2.shi2_current_uses    = num_users;
2831         i2.shi2_path            = path;
2832         i2.shi2_passwd          = password;
2833
2834         status = NetShareAdd(c->opt_host,
2835                              2,
2836                              (uint8_t *)&i2,
2837                              &parm_error);
2838         if (status != 0) {
2839                 printf("NetShareAdd failed with: %s\n",
2840                         libnetapi_get_error_string(c->netapi_ctx, status));
2841         }
2842
2843         return status;
2844 }
2845
2846 /**
2847  * Delete a share on a remote RPC server.
2848  *
2849  * @param domain_sid The domain sid acquired from the remote server.
2850  * @param argc  Standard main() style argc.
2851  * @param argv  Standard main() style argv. Initial components are already
2852  *              stripped.
2853  *
2854  * @return A shell status integer (0 for success).
2855  **/
2856 static int rpc_share_delete(struct net_context *c, int argc, const char **argv)
2857 {
2858         if (argc < 1 || c->display_usage) {
2859                 return rpc_share_usage(c, argc, argv);
2860         }
2861
2862         return NetShareDel(c->opt_host, argv[0], 0);
2863 }
2864
2865 /**
2866  * Formatted print of share info
2867  *
2868  * @param r  pointer to SHARE_INFO_1 to format
2869  **/
2870
2871 static void display_share_info_1(struct net_context *c,
2872                                  struct SHARE_INFO_1 *r)
2873 {
2874         if (c->opt_long_list_entries) {
2875                 d_printf("%-12s %-8.8s %-50s\n",
2876                          r->shi1_netname,
2877                          net_share_type_str(r->shi1_type & ~(STYPE_TEMPORARY|STYPE_HIDDEN)),
2878                          r->shi1_remark);
2879         } else {
2880                 d_printf("%s\n", r->shi1_netname);
2881         }
2882 }
2883
2884 static WERROR get_share_info(struct net_context *c,
2885                              struct rpc_pipe_client *pipe_hnd,
2886                              TALLOC_CTX *mem_ctx,
2887                              uint32 level,
2888                              int argc,
2889                              const char **argv,
2890                              struct srvsvc_NetShareInfoCtr *info_ctr)
2891 {
2892         WERROR result;
2893         NTSTATUS status;
2894         union srvsvc_NetShareInfo info;
2895
2896         /* no specific share requested, enumerate all */
2897         if (argc == 0) {
2898
2899                 uint32_t preferred_len = 0xffffffff;
2900                 uint32_t total_entries = 0;
2901                 uint32_t resume_handle = 0;
2902
2903                 info_ctr->level = level;
2904
2905                 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, mem_ctx,
2906                                                        pipe_hnd->desthost,
2907                                                        info_ctr,
2908                                                        preferred_len,
2909                                                        &total_entries,
2910                                                        &resume_handle,
2911                                                        &result);
2912                 return result;
2913         }
2914
2915         /* request just one share */
2916         status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
2917                                                pipe_hnd->desthost,
2918                                                argv[0],
2919                                                level,
2920                                                &info,
2921                                                &result);
2922
2923         if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
2924                 goto done;
2925         }
2926
2927         /* construct ctr */
2928         ZERO_STRUCTP(info_ctr);
2929
2930         info_ctr->level = level;
2931
2932         switch (level) {
2933         case 1:
2934         {
2935                 struct srvsvc_NetShareCtr1 *ctr1;
2936
2937                 ctr1 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr1);
2938                 W_ERROR_HAVE_NO_MEMORY(ctr1);
2939
2940                 ctr1->count = 1;
2941                 ctr1->array = info.info1;
2942
2943                 info_ctr->ctr.ctr1 = ctr1;
2944         }
2945         case 2:
2946         {
2947                 struct srvsvc_NetShareCtr2 *ctr2;
2948
2949                 ctr2 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr2);
2950                 W_ERROR_HAVE_NO_MEMORY(ctr2);
2951
2952                 ctr2->count = 1;
2953                 ctr2->array = info.info2;
2954
2955                 info_ctr->ctr.ctr2 = ctr2;
2956         }
2957         case 502:
2958         {
2959                 struct srvsvc_NetShareCtr502 *ctr502;
2960
2961                 ctr502 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr502);
2962                 W_ERROR_HAVE_NO_MEMORY(ctr502);
2963
2964                 ctr502->count = 1;
2965                 ctr502->array = info.info502;
2966
2967                 info_ctr->ctr.ctr502 = ctr502;
2968         }
2969         } /* switch */
2970 done:
2971         return result;
2972 }
2973
2974 /***
2975  * 'net rpc share list' entrypoint.
2976  * @param argc  Standard main() style argc.
2977  * @param argv  Standard main() style argv. Initial components are already
2978  *              stripped.
2979  **/
2980 static int rpc_share_list(struct net_context *c, int argc, const char **argv)
2981 {
2982         NET_API_STATUS status;
2983         struct SHARE_INFO_1 *i1 = NULL;
2984         uint32_t entries_read = 0;
2985         uint32_t total_entries = 0;
2986         uint32_t resume_handle = 0;
2987         uint32_t i, level = 1;
2988
2989         if (c->display_usage) {
2990                 d_printf("Usage\n"
2991                          "net rpc share list\n"
2992                          "    List shares on remote server\n");
2993                 return 0;
2994         }
2995
2996         status = NetShareEnum(c->opt_host,
2997                               level,
2998                               (uint8_t **)&i1,
2999                               (uint32_t)-1,
3000                               &entries_read,
3001                               &total_entries,
3002                               &resume_handle);
3003         if (status != 0) {
3004                 goto done;
3005         }
3006
3007         /* Display results */
3008
3009         if (c->opt_long_list_entries) {
3010                 d_printf(
3011         "\nEnumerating shared resources (exports) on remote server:\n\n"
3012         "\nShare name   Type     Description\n"
3013         "----------   ----     -----------\n");
3014         }
3015         for (i = 0; i < entries_read; i++)
3016                 display_share_info_1(c, &i1[i]);
3017  done:
3018         return status;
3019 }
3020
3021 static bool check_share_availability(struct cli_state *cli, const char *netname)
3022 {
3023         if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
3024                 d_printf("skipping   [%s]: not a file share.\n", netname);
3025                 return false;
3026         }
3027
3028         if (!cli_tdis(cli))
3029                 return false;
3030
3031         return true;
3032 }
3033
3034 static bool check_share_sanity(struct net_context *c, struct cli_state *cli,
3035                                const char *netname, uint32 type)
3036 {
3037         /* only support disk shares */
3038         if (! ( type == STYPE_DISKTREE || type == (STYPE_DISKTREE | STYPE_HIDDEN)) ) {
3039                 printf("share [%s] is not a diskshare (type: %x)\n", netname, type);
3040                 return false;
3041         }
3042
3043         /* skip builtin shares */
3044         /* FIXME: should print$ be added too ? */
3045         if (strequal(netname,"IPC$") || strequal(netname,"ADMIN$") ||
3046             strequal(netname,"global"))
3047                 return false;
3048
3049         if (c->opt_exclude && in_list(netname, c->opt_exclude, false)) {
3050                 printf("excluding  [%s]\n", netname);
3051                 return false;
3052         }
3053
3054         return check_share_availability(cli, netname);
3055 }
3056
3057 /**
3058  * Migrate shares from a remote RPC server to the local RPC server.
3059  *
3060  * All parameters are provided by the run_rpc_command function, except for
3061  * argc, argv which are passed through.
3062  *
3063  * @param domain_sid The domain sid acquired from the remote server.
3064  * @param cli A cli_state connected to the server.
3065  * @param mem_ctx Talloc context, destroyed on completion of the function.
3066  * @param argc  Standard main() style argc.
3067  * @param argv  Standard main() style argv. Initial components are already
3068  *              stripped.
3069  *
3070  * @return Normal NTSTATUS return.
3071  **/
3072
3073 static NTSTATUS rpc_share_migrate_shares_internals(struct net_context *c,
3074                                                 const DOM_SID *domain_sid,
3075                                                 const char *domain_name,
3076                                                 struct cli_state *cli,
3077                                                 struct rpc_pipe_client *pipe_hnd,
3078                                                 TALLOC_CTX *mem_ctx,
3079                                                 int argc,
3080                                                 const char **argv)
3081 {
3082         WERROR result;
3083         NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3084         struct srvsvc_NetShareInfoCtr ctr_src;
3085         uint32 i;
3086         struct rpc_pipe_client *srvsvc_pipe = NULL;
3087         struct cli_state *cli_dst = NULL;
3088         uint32 level = 502; /* includes secdesc */
3089         uint32_t parm_error = 0;
3090
3091         result = get_share_info(c, pipe_hnd, mem_ctx, level, argc, argv,
3092                                 &ctr_src);
3093         if (!W_ERROR_IS_OK(result))
3094                 goto done;
3095
3096         /* connect destination PI_SRVSVC */
3097         nt_status = connect_dst_pipe(c, &cli_dst, &srvsvc_pipe,
3098                                      &ndr_table_srvsvc.syntax_id);
3099         if (!NT_STATUS_IS_OK(nt_status))
3100                 return nt_status;
3101
3102
3103         for (i = 0; i < ctr_src.ctr.ctr502->count; i++) {
3104
3105                 union srvsvc_NetShareInfo info;
3106                 struct srvsvc_NetShareInfo502 info502 =
3107                         ctr_src.ctr.ctr502->array[i];
3108
3109                 /* reset error-code */
3110                 nt_status = NT_STATUS_UNSUCCESSFUL;
3111
3112                 if (!check_share_sanity(c, cli, info502.name, info502.type))
3113                         continue;
3114
3115                 /* finally add the share on the dst server */
3116
3117                 printf("migrating: [%s], path: %s, comment: %s, without share-ACLs\n", 
3118                         info502.name, info502.path, info502.comment);
3119
3120                 info.info502 = &info502;
3121
3122                 nt_status = rpccli_srvsvc_NetShareAdd(srvsvc_pipe, mem_ctx,
3123                                                       srvsvc_pipe->desthost,
3124                                                       502,
3125                                                       &info,
3126                                                       &parm_error,
3127                                                       &result);
3128
3129                 if (W_ERROR_V(result) == W_ERROR_V(WERR_ALREADY_EXISTS)) {
3130                         printf("           [%s] does already exist\n",
3131                                 info502.name);
3132                         continue;
3133                 }
3134
3135                 if (!NT_STATUS_IS_OK(nt_status) || !W_ERROR_IS_OK(result)) {
3136                         printf("cannot add share: %s\n", dos_errstr(result));
3137                         goto done;
3138                 }
3139
3140         }
3141
3142         nt_status = NT_STATUS_OK;
3143
3144 done:
3145         if (cli_dst) {
3146                 cli_shutdown(cli_dst);
3147         }
3148
3149         return nt_status;
3150
3151 }
3152
3153 /**
3154  * Migrate shares from a RPC server to another.
3155  *
3156  * @param argc  Standard main() style argc.
3157  * @param argv  Standard main() style argv. Initial components are already
3158  *              stripped.
3159  *
3160  * @return A shell status integer (0 for success).
3161  **/
3162 static int rpc_share_migrate_shares(struct net_context *c, int argc,
3163                                     const char **argv)
3164 {
3165         if (c->display_usage) {
3166                 d_printf("Usage:\n"
3167                          "net rpc share migrate shares\n"
3168                          "    Migrate shares to local server\n");
3169                 return 0;
3170         }
3171
3172         if (!c->opt_host) {
3173                 printf("no server to migrate\n");
3174                 return -1;
3175         }
3176
3177         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3178                                rpc_share_migrate_shares_internals,
3179                                argc, argv);
3180 }
3181
3182 /**
3183  * Copy a file/dir
3184  *
3185  * @param f     file_info
3186  * @param mask  current search mask
3187  * @param state arg-pointer
3188  *
3189  **/
3190 static void copy_fn(const char *mnt, file_info *f,
3191                     const char *mask, void *state)
3192 {
3193         static NTSTATUS nt_status;
3194         static struct copy_clistate *local_state;
3195         static fstring filename, new_mask;
3196         fstring dir;
3197         char *old_dir;
3198         struct net_context *c;
3199
3200         local_state = (struct copy_clistate *)state;
3201         nt_status = NT_STATUS_UNSUCCESSFUL;
3202
3203         c = local_state->c;
3204
3205         if (strequal(f->name, ".") || strequal(f->name, ".."))
3206                 return;
3207
3208         DEBUG(3,("got mask: %s, name: %s\n", mask, f->name));
3209
3210         /* DIRECTORY */
3211         if (f->mode & aDIR) {
3212
3213                 DEBUG(3,("got dir: %s\n", f->name));
3214
3215                 fstrcpy(dir, local_state->cwd);
3216                 fstrcat(dir, "\\");
3217                 fstrcat(dir, f->name);
3218
3219                 switch (net_mode_share)
3220                 {
3221                 case NET_MODE_SHARE_MIGRATE:
3222                         /* create that directory */
3223                         nt_status = net_copy_file(c, local_state->mem_ctx,
3224                                                   local_state->cli_share_src,
3225                                                   local_state->cli_share_dst,
3226                                                   dir, dir,
3227                                                   c->opt_acls? true : false,
3228                                                   c->opt_attrs? true : false,
3229                                                   c->opt_timestamps? true:false,
3230                                                   false);
3231                         break;
3232                 default:
3233                         d_fprintf(stderr, "Unsupported mode %d\n", net_mode_share);
3234                         return;
3235                 }
3236
3237                 if (!NT_STATUS_IS_OK(nt_status))
3238                         printf("could not handle dir %s: %s\n",
3239                                 dir, nt_errstr(nt_status));
3240
3241                 /* search below that directory */
3242                 fstrcpy(new_mask, dir);
3243                 fstrcat(new_mask, "\\*");
3244
3245                 old_dir = local_state->cwd;
3246                 local_state->cwd = dir;
3247                 if (!sync_files(local_state, new_mask))
3248                         printf("could not handle files\n");
3249                 local_state->cwd = old_dir;
3250
3251                 return;
3252         }
3253
3254
3255         /* FILE */
3256         fstrcpy(filename, local_state->cwd);
3257         fstrcat(filename, "\\");
3258         fstrcat(filename, f->name);
3259
3260         DEBUG(3,("got file: %s\n", filename));
3261
3262         switch (net_mode_share)
3263         {
3264         case NET_MODE_SHARE_MIGRATE:
3265                 nt_status = net_copy_file(c, local_state->mem_ctx,
3266                                           local_state->cli_share_src,
3267                                           local_state->cli_share_dst,
3268                                           filename, filename,
3269                                           c->opt_acls? true : false,
3270                                           c->opt_attrs? true : false,
3271                                           c->opt_timestamps? true: false,
3272                                           true);
3273                 break;
3274         default:
3275                 d_fprintf(stderr, "Unsupported file mode %d\n", net_mode_share);
3276                 return;
3277         }
3278
3279         if (!NT_STATUS_IS_OK(nt_status))
3280                 printf("could not handle file %s: %s\n",
3281                         filename, nt_errstr(nt_status));
3282
3283 }
3284
3285 /**
3286  * sync files, can be called recursivly to list files
3287  * and then call copy_fn for each file
3288  *
3289  * @param cp_clistate   pointer to the copy_clistate we work with
3290  * @param mask          the current search mask
3291  *
3292  * @return              Boolean result
3293  **/
3294 static bool sync_files(struct copy_clistate *cp_clistate, const char *mask)
3295 {
3296         struct cli_state *targetcli;
3297         char *targetpath = NULL;
3298
3299         DEBUG(3,("calling cli_list with mask: %s\n", mask));
3300
3301         if ( !cli_resolve_path(talloc_tos(), "", cp_clistate->cli_share_src,
3302                                 mask, &targetcli, &targetpath ) ) {
3303                 d_fprintf(stderr, "cli_resolve_path %s failed with error: %s\n", 
3304                         mask, cli_errstr(cp_clistate->cli_share_src));
3305                 return false;
3306         }
3307
3308         if (cli_list(targetcli, targetpath, cp_clistate->attribute, copy_fn, cp_clistate) == -1) {
3309                 d_fprintf(stderr, "listing %s failed with error: %s\n",
3310                         mask, cli_errstr(targetcli));
3311                 return false;
3312         }
3313
3314         return true;
3315 }
3316
3317
3318 /**
3319  * Set the top level directory permissions before we do any further copies.
3320  * Should set up ACL inheritance.
3321  **/
3322
3323 bool copy_top_level_perms(struct net_context *c,
3324                                 struct copy_clistate *cp_clistate,
3325                                 const char *sharename)
3326 {
3327         NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3328
3329         switch (net_mode_share) {
3330         case NET_MODE_SHARE_MIGRATE:
3331                 DEBUG(3,("calling net_copy_fileattr for '.' directory in share %s\n", sharename));
3332                 nt_status = net_copy_fileattr(c,
3333                                                 cp_clistate->mem_ctx,
3334                                                 cp_clistate->cli_share_src,
3335                                                 cp_clistate->cli_share_dst,
3336                                                 "\\", "\\",
3337                                                 c->opt_acls? true : false,
3338                                                 c->opt_attrs? true : false,
3339                                                 c->opt_timestamps? true: false,
3340                                                 false);
3341                 break;
3342         default:
3343                 d_fprintf(stderr, "Unsupported mode %d\n", net_mode_share);
3344                 break;
3345         }
3346
3347         if (!NT_STATUS_IS_OK(nt_status))  {
3348                 printf("Could handle directory attributes for top level directory of share %s. Error %s\n", 
3349                         sharename, nt_errstr(nt_status));
3350                 return false;
3351         }
3352
3353         return true;
3354 }
3355
3356 /**
3357  * Sync all files inside a remote share to another share (over smb).
3358  *
3359  * All parameters are provided by the run_rpc_command function, except for
3360  * argc, argv which are passed through.
3361  *
3362  * @param domain_sid The domain sid acquired from the remote server.
3363  * @param cli A cli_state connected to the server.
3364  * @param mem_ctx Talloc context, destroyed on completion of the function.
3365  * @param argc  Standard main() style argc.
3366  * @param argv  Standard main() style argv. Initial components are already
3367  *              stripped.
3368  *
3369  * @return Normal NTSTATUS return.
3370  **/
3371
3372 static NTSTATUS rpc_share_migrate_files_internals(struct net_context *c,
3373                                                 const DOM_SID *domain_sid,
3374                                                 const char *domain_name,
3375                                                 struct cli_state *cli,
3376                                                 struct rpc_pipe_client *pipe_hnd,
3377                                                 TALLOC_CTX *mem_ctx,
3378                                                 int argc,
3379                                                 const char **argv)
3380 {
3381         WERROR result;
3382         NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3383         struct srvsvc_NetShareInfoCtr ctr_src;
3384         uint32 i;
3385         uint32 level = 502;
3386         struct copy_clistate cp_clistate;
3387         bool got_src_share = false;
3388         bool got_dst_share = false;
3389         const char *mask = "\\*";
3390         char *dst = NULL;
3391
3392         dst = SMB_STRDUP(c->opt_destination?c->opt_destination:"127.0.0.1");
3393         if (dst == NULL) {
3394                 nt_status = NT_STATUS_NO_MEMORY;
3395                 goto done;
3396         }
3397
3398         result = get_share_info(c, pipe_hnd, mem_ctx, level, argc, argv,
3399                                 &ctr_src);
3400
3401         if (!W_ERROR_IS_OK(result))
3402                 goto done;
3403
3404         for (i = 0; i < ctr_src.ctr.ctr502->count; i++) {
3405
3406                 struct srvsvc_NetShareInfo502 info502 =
3407                         ctr_src.ctr.ctr502->array[i];
3408
3409                 if (!check_share_sanity(c, cli, info502.name, info502.type))
3410                         continue;
3411
3412                 /* one might not want to mirror whole discs :) */
3413                 if (strequal(info502.name, "print$") || info502.name[1] == '$') {
3414                         d_printf("skipping   [%s]: builtin/hidden share\n", info502.name);
3415                         continue;
3416                 }
3417
3418                 switch (net_mode_share)
3419                 {
3420                 case NET_MODE_SHARE_MIGRATE:
3421                         printf("syncing");
3422                         break;
3423                 default:
3424                         d_fprintf(stderr, "Unsupported mode %d\n", net_mode_share);
3425                         break;
3426                 }
3427                 printf("    [%s] files and directories %s ACLs, %s DOS Attributes %s\n", 
3428                         info502.name,
3429                         c->opt_acls ? "including" : "without",
3430                         c->opt_attrs ? "including" : "without",
3431                         c->opt_timestamps ? "(preserving timestamps)" : "");
3432
3433                 cp_clistate.mem_ctx = mem_ctx;
3434                 cp_clistate.cli_share_src = NULL;
3435                 cp_clistate.cli_share_dst = NULL;
3436                 cp_clistate.cwd = NULL;
3437                 cp_clistate.attribute = aSYSTEM | aHIDDEN | aDIR;
3438                 cp_clistate.c = c;
3439
3440                 /* open share source */
3441                 nt_status = connect_to_service(c, &cp_clistate.cli_share_src,
3442                                                &cli->dest_ss, cli->desthost,
3443                                                info502.name, "A:");
3444                 if (!NT_STATUS_IS_OK(nt_status))
3445                         goto done;
3446
3447                 got_src_share = true;
3448
3449                 if (net_mode_share == NET_MODE_SHARE_MIGRATE) {
3450                         /* open share destination */
3451                         nt_status = connect_to_service(c, &cp_clistate.cli_share_dst,
3452                                                        NULL, dst, info502.name, "A:");
3453                         if (!NT_STATUS_IS_OK(nt_status))
3454                                 goto done;
3455
3456                         got_dst_share = true;
3457                 }
3458
3459                 if (!copy_top_level_perms(c, &cp_clistate, info502.name)) {
3460                         d_fprintf(stderr, "Could not handle the top level directory permissions for the share: %s\n", info502.name);
3461                         nt_status = NT_STATUS_UNSUCCESSFUL;
3462                         goto done;
3463                 }
3464
3465                 if (!sync_files(&cp_clistate, mask)) {
3466                         d_fprintf(stderr, "could not handle files for share: %s\n", info502.name);
3467                         nt_status = NT_STATUS_UNSUCCESSFUL;
3468                         goto done;
3469                 }
3470         }
3471
3472         nt_status = NT_STATUS_OK;
3473
3474 done:
3475
3476         if (got_src_share)
3477                 cli_shutdown(cp_clistate.cli_share_src);
3478
3479         if (got_dst_share)
3480                 cli_shutdown(cp_clistate.cli_share_dst);
3481
3482         SAFE_FREE(dst);
3483         return nt_status;
3484
3485 }
3486
3487 static int rpc_share_migrate_files(struct net_context *c, int argc, const char **argv)
3488 {
3489         if (c->display_usage) {
3490                 d_printf("Usage:\n"
3491                          "net share migrate files\n"
3492                          "    Migrate files to local server\n");
3493                 return 0;
3494         }
3495
3496         if (!c->opt_host) {
3497                 d_printf("no server to migrate\n");
3498                 return -1;
3499         }
3500
3501         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3502                                rpc_share_migrate_files_internals,
3503                                argc, argv);
3504 }
3505
3506 /**
3507  * Migrate share-ACLs from a remote RPC server to the local RPC server.
3508  *
3509  * All parameters are provided by the run_rpc_command function, except for
3510  * argc, argv which are passed through.
3511  *
3512  * @param domain_sid The domain sid acquired from the remote server.
3513  * @param cli A cli_state connected to the server.
3514  * @param mem_ctx Talloc context, destroyed on completion of the function.
3515  * @param argc  Standard main() style argc.
3516  * @param argv  Standard main() style argv. Initial components are already
3517  *              stripped.
3518  *
3519  * @return Normal NTSTATUS return.
3520  **/
3521
3522 static NTSTATUS rpc_share_migrate_security_internals(struct net_context *c,
3523                                                 const DOM_SID *domain_sid,
3524                                                 const char *domain_name,
3525                                                 struct cli_state *cli,
3526                                                 struct rpc_pipe_client *pipe_hnd,
3527                                                 TALLOC_CTX *mem_ctx,
3528                                                 int argc,
3529                                                 const char **argv)
3530 {
3531         WERROR result;
3532         NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3533         struct srvsvc_NetShareInfoCtr ctr_src;
3534         union srvsvc_NetShareInfo info;
3535         uint32 i;
3536         struct rpc_pipe_client *srvsvc_pipe = NULL;
3537         struct cli_state *cli_dst = NULL;
3538         uint32 level = 502; /* includes secdesc */
3539         uint32_t parm_error = 0;
3540
3541         result = get_share_info(c, pipe_hnd, mem_ctx, level, argc, argv,
3542                                 &ctr_src);
3543
3544         if (!W_ERROR_IS_OK(result))
3545                 goto done;
3546
3547         /* connect destination PI_SRVSVC */
3548         nt_status = connect_dst_pipe(c, &cli_dst, &srvsvc_pipe,
3549                                      &ndr_table_srvsvc.syntax_id);
3550         if (!NT_STATUS_IS_OK(nt_status))
3551                 return nt_status;
3552
3553
3554         for (i = 0; i < ctr_src.ctr.ctr502->count; i++) {
3555
3556                 struct srvsvc_NetShareInfo502 info502 =
3557                         ctr_src.ctr.ctr502->array[i];
3558
3559                 /* reset error-code */
3560                 nt_status = NT_STATUS_UNSUCCESSFUL;
3561
3562                 if (!check_share_sanity(c, cli, info502.name, info502.type))
3563                         continue;
3564
3565                 printf("migrating: [%s], path: %s, comment: %s, including share-ACLs\n", 
3566                         info502.name, info502.path, info502.comment);
3567
3568                 if (c->opt_verbose)
3569                         display_sec_desc(info502.sd_buf.sd);
3570
3571                 /* FIXME: shouldn't we be able to just set the security descriptor ? */
3572                 info.info502 = &info502;
3573
3574                 /* finally modify the share on the dst server */
3575                 nt_status = rpccli_srvsvc_NetShareSetInfo(srvsvc_pipe, mem_ctx,
3576                                                           srvsvc_pipe->desthost,
3577                                                           info502.name,
3578                                                           level,
3579                                                           &info,
3580                                                           &parm_error,
3581                                                           &result);
3582                 if (!NT_STATUS_IS_OK(nt_status) || !W_ERROR_IS_OK(result)) {
3583                         printf("cannot set share-acl: %s\n", dos_errstr(result));
3584                         goto done;
3585                 }
3586
3587         }
3588
3589         nt_status = NT_STATUS_OK;
3590
3591 done:
3592         if (cli_dst) {
3593                 cli_shutdown(cli_dst);
3594         }
3595
3596         return nt_status;
3597
3598 }
3599
3600 /**
3601  * Migrate share-acls from a RPC server to another.
3602  *
3603  * @param argc  Standard main() style argc.
3604  * @param argv  Standard main() style argv. Initial components are already
3605  *              stripped.
3606  *
3607  * @return A shell status integer (0 for success).
3608  **/
3609 static int rpc_share_migrate_security(struct net_context *c, int argc,
3610                                       const char **argv)
3611 {
3612         if (c->display_usage) {
3613                 d_printf("Usage:\n"
3614                          "net rpc share migrate security\n"
3615                          "    Migrate share-acls to local server\n");
3616                 return 0;
3617         }
3618
3619         if (!c->opt_host) {
3620                 d_printf("no server to migrate\n");
3621                 return -1;
3622         }
3623
3624         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3625                                rpc_share_migrate_security_internals,
3626                                argc, argv);
3627 }
3628
3629 /**
3630  * Migrate shares (including share-definitions, share-acls and files with acls/attrs)
3631  * from one server to another.
3632  *
3633  * @param argc  Standard main() style argc.
3634  * @param argv  Standard main() style argv. Initial components are already
3635  *              stripped.
3636  *
3637  * @return A shell status integer (0 for success).
3638  *
3639  **/
3640 static int rpc_share_migrate_all(struct net_context *c, int argc,
3641                                  const char **argv)
3642 {
3643         int ret;
3644
3645         if (c->display_usage) {
3646                 d_printf("Usage:\n"
3647                          "net rpc share migrate all\n"
3648                          "    Migrates shares including all share settings\n");
3649                 return 0;
3650         }
3651
3652         if (!c->opt_host) {
3653                 d_printf("no server to migrate\n");
3654                 return -1;
3655         }
3656
3657         /* order is important. we don't want to be locked out by the share-acl
3658          * before copying files - gd */
3659
3660         ret = run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3661                               rpc_share_migrate_shares_internals, argc, argv);
3662         if (ret)
3663                 return ret;
3664
3665         ret = run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3666                               rpc_share_migrate_files_internals, argc, argv);
3667         if (ret)
3668                 return ret;
3669
3670         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3671                                rpc_share_migrate_security_internals, argc,
3672                                argv);
3673 }
3674
3675
3676 /**
3677  * 'net rpc share migrate' entrypoint.
3678  * @param argc  Standard main() style argc.
3679  * @param argv  Standard main() style argv. Initial components are already
3680  *              stripped.
3681  **/
3682 static int rpc_share_migrate(struct net_context *c, int argc, const char **argv)
3683 {
3684
3685         struct functable func[] = {
3686                 {
3687                         "all",
3688                         rpc_share_migrate_all,
3689                         NET_TRANSPORT_RPC,
3690                         "Migrate shares from remote to local server",
3691                         "net rpc share migrate all\n"
3692                         "    Migrate shares from remote to local server"
3693                 },
3694                 {
3695                         "files",
3696                         rpc_share_migrate_files,
3697                         NET_TRANSPORT_RPC,
3698                         "Migrate files from remote to local server",
3699                         "net rpc share migrate files\n"
3700                         "    Migrate files from remote to local server"
3701                 },
3702                 {
3703                         "security",
3704                         rpc_share_migrate_security,
3705                         NET_TRANSPORT_RPC,
3706                         "Migrate share-ACLs from remote to local server",
3707                         "net rpc share migrate security\n"
3708                         "    Migrate share-ACLs from remote to local server"
3709                 },
3710                 {
3711                         "shares",
3712                         rpc_share_migrate_shares,
3713                         NET_TRANSPORT_RPC,
3714                         "Migrate shares from remote to local server",
3715                         "net rpc share migrate shares\n"
3716                         "    Migrate shares from remote to local server"
3717                 },
3718                 {NULL, NULL, 0, NULL, NULL}
3719         };
3720
3721         net_mode_share = NET_MODE_SHARE_MIGRATE;
3722
3723         return net_run_function(c, argc, argv, "net rpc share migrate", func);
3724 }
3725
3726 struct full_alias {
3727         DOM_SID sid;
3728         uint32 num_members;
3729         DOM_SID *members;
3730 };
3731
3732 static int num_server_aliases;
3733 static struct full_alias *server_aliases;
3734
3735 /*
3736  * Add an alias to the static list.
3737  */
3738 static void push_alias(TALLOC_CTX *mem_ctx, struct full_alias *alias)
3739 {
3740         if (server_aliases == NULL)
3741                 server_aliases = SMB_MALLOC_ARRAY(struct full_alias, 100);
3742
3743         server_aliases[num_server_aliases] = *alias;
3744         num_server_aliases += 1;
3745 }
3746
3747 /*
3748  * For a specific domain on the server, fetch all the aliases
3749  * and their members. Add all of them to the server_aliases.
3750  */
3751
3752 static NTSTATUS rpc_fetch_domain_aliases(struct rpc_pipe_client *pipe_hnd,
3753                                         TALLOC_CTX *mem_ctx,
3754                                         POLICY_HND *connect_pol,
3755                                         const DOM_SID *domain_sid)
3756 {
3757         uint32 start_idx, max_entries, num_entries, i;
3758         struct samr_SamArray *groups = NULL;
3759         NTSTATUS result;
3760         POLICY_HND domain_pol;
3761
3762         /* Get domain policy handle */
3763
3764         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
3765                                         connect_pol,
3766                                         MAXIMUM_ALLOWED_ACCESS,
3767                                         CONST_DISCARD(struct dom_sid2 *, domain_sid),
3768                                         &domain_pol);
3769         if (!NT_STATUS_IS_OK(result))
3770                 return result;
3771
3772         start_idx = 0;
3773         max_entries = 250;
3774
3775         do {
3776                 result = rpccli_samr_EnumDomainAliases(pipe_hnd, mem_ctx,
3777                                                        &domain_pol,
3778                                                        &start_idx,
3779                                                        &groups,
3780                                                        max_entries,
3781                                                        &num_entries);
3782                 for (i = 0; i < num_entries; i++) {
3783
3784                         POLICY_HND alias_pol;
3785                         struct full_alias alias;
3786                         struct lsa_SidArray sid_array;
3787                         int j;
3788
3789                         result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
3790                                                        &domain_pol,
3791                                                        MAXIMUM_ALLOWED_ACCESS,
3792                                                        groups->entries[i].idx,
3793                                                        &alias_pol);
3794                         if (!NT_STATUS_IS_OK(result))
3795                                 goto done;
3796
3797                         result = rpccli_samr_GetMembersInAlias(pipe_hnd, mem_ctx,
3798                                                                &alias_pol,
3799                                                                &sid_array);
3800                         if (!NT_STATUS_IS_OK(result))
3801                                 goto done;
3802
3803                         alias.num_members = sid_array.num_sids;
3804
3805                         result = rpccli_samr_Close(pipe_hnd, mem_ctx, &alias_pol);
3806                         if (!NT_STATUS_IS_OK(result))
3807                                 goto done;
3808
3809                         alias.members = NULL;
3810
3811                         if (alias.num_members > 0) {
3812                                 alias.members = SMB_MALLOC_ARRAY(DOM_SID, alias.num_members);
3813
3814                                 for (j = 0; j < alias.num_members; j++)
3815                                         sid_copy(&alias.members[j],
3816                                                  sid_array.sids[j].sid);
3817                         }
3818
3819                         sid_copy(&alias.sid, domain_sid);
3820                         sid_append_rid(&alias.sid, groups->entries[i].idx);
3821
3822                         push_alias(mem_ctx, &alias);
3823                 }
3824         } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
3825
3826         result = NT_STATUS_OK;
3827
3828  done:
3829         rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
3830
3831         return result;
3832 }
3833
3834 /*
3835  * Dump server_aliases as names for debugging purposes.
3836  */
3837
3838 static NTSTATUS rpc_aliaslist_dump(struct net_context *c,
3839                                 const DOM_SID *domain_sid,
3840                                 const char *domain_name,
3841                                 struct cli_state *cli,
3842                                 struct rpc_pipe_client *pipe_hnd,
3843                                 TALLOC_CTX *mem_ctx,
3844                                 int argc,
3845                                 const char **argv)
3846 {
3847         int i;
3848         NTSTATUS result;
3849         POLICY_HND lsa_pol;
3850
3851         result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, true,
3852                                      SEC_RIGHTS_MAXIMUM_ALLOWED,
3853                                      &lsa_pol);
3854         if (!NT_STATUS_IS_OK(result))
3855                 return result;
3856
3857         for (i=0; i<num_server_aliases; i++) {
3858                 char **names;
3859                 char **domains;
3860                 enum lsa_SidType *types;
3861                 int j;
3862
3863                 struct full_alias *alias = &server_aliases[i];
3864
3865                 result = rpccli_lsa_lookup_sids(pipe_hnd, mem_ctx, &lsa_pol, 1,
3866                                              &alias->sid,
3867                                              &domains, &names, &types);
3868                 if (!NT_STATUS_IS_OK(result))
3869                         continue;
3870
3871                 DEBUG(1, ("%s\\%s %d: ", domains[0], names[0], types[0]));
3872
3873                 if (alias->num_members == 0) {
3874                         DEBUG(1, ("\n"));
3875                         continue;
3876                 }
3877
3878                 result = rpccli_lsa_lookup_sids(pipe_hnd, mem_ctx, &lsa_pol,
3879                                              alias->num_members,
3880                                              alias->members,
3881                                              &domains, &names, &types);
3882
3883                 if (!NT_STATUS_IS_OK(result) &&
3884                     !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED))
3885                         continue;
3886
3887                 for (j=0; j<alias->num_members; j++)
3888                         DEBUG(1, ("%s\\%s (%d); ",
3889                                   domains[j] ? domains[j] : "*unknown*", 
3890                                   names[j] ? names[j] : "*unknown*",types[j]));
3891                 DEBUG(1, ("\n"));
3892         }
3893
3894         rpccli_lsa_Close(pipe_hnd, mem_ctx, &lsa_pol);
3895
3896         return NT_STATUS_OK;
3897 }
3898
3899 /*
3900  * Fetch a list of all server aliases and their members into
3901  * server_aliases.
3902  */
3903
3904 static NTSTATUS rpc_aliaslist_internals(struct net_context *c,
3905                                         const DOM_SID *domain_sid,
3906                                         const char *domain_name,
3907                                         struct cli_state *cli,
3908                                         struct rpc_pipe_client *pipe_hnd,
3909                                         TALLOC_CTX *mem_ctx,
3910                                         int argc,
3911                                         const char **argv)
3912 {
3913         NTSTATUS result;
3914         POLICY_HND connect_pol;
3915
3916         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
3917                                       pipe_hnd->desthost,
3918                                       MAXIMUM_ALLOWED_ACCESS,
3919                                       &connect_pol);
3920
3921         if (!NT_STATUS_IS_OK(result))
3922                 goto done;
3923
3924         result = rpc_fetch_domain_aliases(pipe_hnd, mem_ctx, &connect_pol,
3925                                           &global_sid_Builtin);
3926
3927         if (!NT_STATUS_IS_OK(result))
3928                 goto done;
3929
3930         result = rpc_fetch_domain_aliases(pipe_hnd, mem_ctx, &connect_pol,
3931                                           domain_sid);
3932
3933         rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
3934  done:
3935         return result;
3936 }
3937
3938 static void init_user_token(NT_USER_TOKEN *token, DOM_SID *user_sid)
3939 {
3940         token->num_sids = 4;
3941
3942         if (!(token->user_sids = SMB_MALLOC_ARRAY(DOM_SID, 4))) {
3943                 d_fprintf(stderr, "malloc failed\n");
3944                 token->num_sids = 0;
3945                 return;
3946         }
3947
3948         token->user_sids[0] = *user_sid;
3949         sid_copy(&token->user_sids[1], &global_sid_World);
3950         sid_copy(&token->user_sids[2], &global_sid_Network);
3951         sid_copy(&token->user_sids[3], &global_sid_Authenticated_Users);
3952 }
3953
3954 static void free_user_token(NT_USER_TOKEN *token)
3955 {
3956         SAFE_FREE(token->user_sids);
3957 }
3958
3959 static void add_sid_to_token(NT_USER_TOKEN *token, DOM_SID *sid)
3960 {
3961         if (is_sid_in_token(token, sid))
3962                 return;
3963
3964         token->user_sids = SMB_REALLOC_ARRAY(token->user_sids, DOM_SID, token->num_sids+1);
3965         if (!token->user_sids) {
3966                 return;
3967         }
3968
3969         sid_copy(&token->user_sids[token->num_sids], sid);
3970
3971         token->num_sids += 1;
3972 }
3973
3974 struct user_token {
3975         fstring name;
3976         NT_USER_TOKEN token;
3977 };
3978
3979 static void dump_user_token(struct user_token *token)
3980 {
3981         int i;
3982
3983         d_printf("%s\n", token->name);
3984
3985         for (i=0; i<token->token.num_sids; i++) {
3986                 d_printf(" %s\n", sid_string_tos(&token->token.user_sids[i]));
3987         }
3988 }
3989
3990 static bool is_alias_member(DOM_SID *sid, struct full_alias *alias)
3991 {
3992         int i;
3993
3994         for (i=0; i<alias->num_members; i++) {
3995                 if (sid_compare(sid, &alias->members[i]) == 0)
3996                         return true;
3997         }
3998
3999         return false;
4000 }
4001
4002 static void collect_sid_memberships(NT_USER_TOKEN *token, DOM_SID sid)
4003 {
4004         int i;
4005
4006         for (i=0; i<num_server_aliases; i++) {
4007                 if (is_alias_member(&sid, &server_aliases[i]))
4008                         add_sid_to_token(token, &server_aliases[i].sid);
4009         }
4010 }
4011
4012 /*
4013  * We got a user token with all the SIDs we can know about without asking the
4014  * server directly. These are the user and domain group sids. All of these can
4015  * be members of aliases. So scan the list of aliases for each of the SIDs and
4016  * add them to the token.
4017  */
4018
4019 static void collect_alias_memberships(NT_USER_TOKEN *token)
4020 {
4021         int num_global_sids = token->num_sids;
4022         int i;
4023
4024         for (i=0; i<num_global_sids; i++) {
4025                 collect_sid_memberships(token, token->user_sids[i]);
4026         }
4027 }
4028
4029 static bool get_user_sids(const char *domain, const char *user, NT_USER_TOKEN *token)
4030 {
4031         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
4032         enum wbcSidType type;
4033         fstring full_name;
4034         struct wbcDomainSid wsid;
4035         char *sid_str = NULL;
4036         DOM_SID user_sid;
4037         uint32_t num_groups;
4038         gid_t *groups = NULL;
4039         uint32_t i;
4040
4041         fstr_sprintf(full_name, "%s%c%s",
4042                      domain, *lp_winbind_separator(), user);
4043
4044         /* First let's find out the user sid */
4045
4046         wbc_status = wbcLookupName(domain, user, &wsid, &type);
4047
4048         if (!WBC_ERROR_IS_OK(wbc_status)) {
4049                 DEBUG(1, ("winbind could not find %s: %s\n",
4050                           full_name, wbcErrorString(wbc_status)));
4051                 return false;
4052         }
4053
4054         wbc_status = wbcSidToString(&wsid, &sid_str);
4055         if (!WBC_ERROR_IS_OK(wbc_status)) {
4056                 return false;
4057         }
4058
4059         if (type != SID_NAME_USER) {
4060                 wbcFreeMemory(sid_str);
4061                 DEBUG(1, ("%s is not a user\n", full_name));
4062                 return false;
4063         }
4064
4065         string_to_sid(&user_sid, sid_str);
4066         wbcFreeMemory(sid_str);
4067         sid_str = NULL;
4068
4069         init_user_token(token, &user_sid);
4070
4071         /* And now the groups winbind knows about */
4072
4073         wbc_status = wbcGetGroups(full_name, &num_groups, &groups);
4074         if (!WBC_ERROR_IS_OK(wbc_status)) {
4075                 DEBUG(1, ("winbind could not get groups of %s: %s\n",
4076                         full_name, wbcErrorString(wbc_status)));
4077                 return false;
4078         }
4079
4080         for (i = 0; i < num_groups; i++) {
4081                 gid_t gid = groups[i];
4082                 DOM_SID sid;
4083
4084                 wbc_status = wbcGidToSid(gid, &wsid);
4085                 if (!WBC_ERROR_IS_OK(wbc_status)) {
4086                         DEBUG(1, ("winbind could not find SID of gid %d: %s\n",
4087                                   gid, wbcErrorString(wbc_status)));
4088                         wbcFreeMemory(groups);
4089                         return false;
4090                 }
4091
4092                 wbc_status = wbcSidToString(&wsid, &sid_str);
4093                 if (!WBC_ERROR_IS_OK(wbc_status)) {
4094                         wbcFreeMemory(groups);
4095                         return false;
4096                 }
4097
4098                 DEBUG(3, (" %s\n", sid_str));
4099
4100                 string_to_sid(&sid, sid_str);
4101                 wbcFreeMemory(sid_str);
4102                 sid_str = NULL;
4103
4104                 add_sid_to_token(token, &sid);
4105         }
4106         wbcFreeMemory(groups);
4107
4108         return true;
4109 }
4110
4111 /**
4112  * Get a list of all user tokens we want to look at
4113  **/
4114
4115 static bool get_user_tokens(struct net_context *c, int *num_tokens,
4116                             struct user_token **user_tokens)
4117 {
4118         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
4119         uint32_t i, num_users;
4120         const char **users;
4121         struct user_token *result;
4122         TALLOC_CTX *frame = NULL;
4123
4124         if (lp_winbind_use_default_domain() &&
4125             (c->opt_target_workgroup == NULL)) {
4126                 d_fprintf(stderr, "winbind use default domain = yes set, "
4127                          "please specify a workgroup\n");
4128                 return false;
4129         }
4130
4131         /* Send request to winbind daemon */
4132
4133         wbc_status = wbcListUsers(NULL, &num_users, &users);
4134         if (!WBC_ERROR_IS_OK(wbc_status)) {
4135                 DEBUG(1, ("winbind could not list users: %s\n",
4136                           wbcErrorString(wbc_status)));
4137                 return false;
4138         }
4139
4140         result = SMB_MALLOC_ARRAY(struct user_token, num_users);
4141
4142         if (result == NULL) {
4143                 DEBUG(1, ("Could not malloc sid array\n"));
4144                 wbcFreeMemory(users);
4145                 return false;
4146         }
4147
4148         frame = talloc_stackframe();
4149         for (i=0; i < num_users; i++) {
4150                 fstring domain, user;
4151                 char *p;
4152
4153                 fstrcpy(result[i].name, users[i]);
4154
4155                 p = strchr(users[i], *lp_winbind_separator());
4156
4157                 DEBUG(3, ("%s\n", users[i]));
4158
4159                 if (p == NULL) {
4160                         fstrcpy(domain, c->opt_target_workgroup);
4161                         fstrcpy(user, users[i]);
4162                 } else {
4163                         *p++ = '\0';
4164                         fstrcpy(domain, users[i]);
4165                         strupper_m(domain);
4166                         fstrcpy(user, p);
4167                 }
4168
4169                 get_user_sids(domain, user, &(result[i].token));
4170                 i+=1;
4171         }
4172         TALLOC_FREE(frame);
4173         wbcFreeMemory(users);
4174
4175         *num_tokens = num_users;
4176         *user_tokens = result;
4177
4178         return true;
4179 }
4180
4181 static bool get_user_tokens_from_file(FILE *f,
4182                                       int *num_tokens,
4183                                       struct user_token **tokens)
4184 {
4185         struct user_token *token = NULL;
4186
4187         while (!feof(f)) {
4188                 fstring line;
4189
4190                 if (fgets(line, sizeof(line)-1, f) == NULL) {
4191                         return true;
4192                 }
4193
4194                 if (line[strlen(line)-1] == '\n')
4195                         line[strlen(line)-1] = '\0';
4196
4197                 if (line[0] == ' ') {
4198                         /* We have a SID */
4199
4200                         DOM_SID sid;
4201                         string_to_sid(&sid, &line[1]);
4202
4203                         if (token == NULL) {
4204                                 DEBUG(0, ("File does not begin with username"));
4205                                 return false;
4206                         }
4207
4208                         add_sid_to_token(&token->token, &sid);
4209                         continue;
4210                 }
4211
4212                 /* And a new user... */
4213
4214                 *num_tokens += 1;
4215                 *tokens = SMB_REALLOC_ARRAY(*tokens, struct user_token, *num_tokens);
4216                 if (*tokens == NULL) {
4217                         DEBUG(0, ("Could not realloc tokens\n"));
4218                         return false;
4219                 }
4220
4221                 token = &((*tokens)[*num_tokens-1]);
4222
4223                 fstrcpy(token->name, line);
4224                 token->token.num_sids = 0;
4225                 token->token.user_sids = NULL;
4226                 continue;
4227         }
4228         
4229         return false;
4230 }
4231
4232
4233 /*
4234  * Show the list of all users that have access to a share
4235  */
4236
4237 static void show_userlist(struct rpc_pipe_client *pipe_hnd,
4238                         TALLOC_CTX *mem_ctx,
4239                         const char *netname,
4240                         int num_tokens,
4241                         struct user_token *tokens)
4242 {
4243         int fnum;
4244         SEC_DESC *share_sd = NULL;
4245         SEC_DESC *root_sd = NULL;
4246         struct cli_state *cli = rpc_pipe_np_smb_conn(pipe_hnd);
4247         int i;
4248         union srvsvc_NetShareInfo info;
4249         WERROR result;
4250         NTSTATUS status;
4251         uint16 cnum;
4252
4253         status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
4254                                                pipe_hnd->desthost,
4255                                                netname,
4256                                                502,
4257                                                &info,
4258                                                &result);
4259
4260         if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
4261                 DEBUG(1, ("Coult not query secdesc for share %s\n",
4262                           netname));
4263                 return;
4264         }
4265
4266         share_sd = info.info502->sd_buf.sd;
4267         if (share_sd == NULL) {
4268                 DEBUG(1, ("Got no secdesc for share %s\n",
4269                           netname));
4270         }
4271
4272         cnum = cli->cnum;
4273
4274         if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
4275                 return;
4276         }
4277
4278         fnum = cli_nt_create(cli, "\\", READ_CONTROL_ACCESS);
4279
4280         if (fnum != -1) {
4281                 root_sd = cli_query_secdesc(cli, fnum, mem_ctx);
4282         }
4283
4284         for (i=0; i<num_tokens; i++) {
4285                 uint32 acc_granted;
4286
4287                 if (share_sd != NULL) {
4288                         status = se_access_check(share_sd, &tokens[i].token,
4289                                              1, &acc_granted);
4290
4291                         if (!NT_STATUS_IS_OK(status)) {
4292                                 DEBUG(1, ("Could not check share_sd for "
4293                                           "user %s\n",
4294                                           tokens[i].name));
4295                                 continue;
4296                         }
4297                 }
4298
4299                 if (root_sd == NULL) {
4300                         d_printf(" %s\n", tokens[i].name);
4301                         continue;
4302                 }
4303
4304                 status = se_access_check(root_sd, &tokens[i].token,
4305                                      1, &acc_granted);
4306                 if (!NT_STATUS_IS_OK(status)) {
4307                         DEBUG(1, ("Could not check root_sd for user %s\n",
4308                                   tokens[i].name));
4309                         continue;
4310                 }
4311                 d_printf(" %s\n", tokens[i].name);
4312         }
4313
4314         if (fnum != -1)
4315                 cli_close(cli, fnum);
4316         cli_tdis(cli);
4317         cli->cnum = cnum;
4318         
4319         return;
4320 }
4321
4322 struct share_list {
4323         int num_shares;
4324         char **shares;
4325 };
4326
4327 static void collect_share(const char *name, uint32 m,
4328                           const char *comment, void *state)
4329 {
4330         struct share_list *share_list = (struct share_list *)state;
4331
4332         if (m != STYPE_DISKTREE)
4333                 return;
4334
4335         share_list->num_shares += 1;
4336         share_list->shares = SMB_REALLOC_ARRAY(share_list->shares, char *, share_list->num_shares);
4337         if (!share_list->shares) {
4338                 share_list->num_shares = 0;
4339                 return;
4340         }
4341         share_list->shares[share_list->num_shares-1] = SMB_STRDUP(name);
4342 }
4343
4344 /**
4345  * List shares on a remote RPC server, including the security descriptors.
4346  *
4347  * All parameters are provided by the run_rpc_command function, except for
4348  * argc, argv which are passed through.
4349  *
4350  * @param domain_sid The domain sid acquired from the remote server.
4351  * @param cli A cli_state connected to the server.
4352  * @param mem_ctx Talloc context, destroyed on completion of the function.
4353  * @param argc  Standard main() style argc.
4354  * @param argv  Standard main() style argv. Initial components are already
4355  *              stripped.
4356  *
4357  * @return Normal NTSTATUS return.
4358  **/
4359
4360 static NTSTATUS rpc_share_allowedusers_internals(struct net_context *c,
4361                                                 const DOM_SID *domain_sid,
4362                                                 const char *domain_name,
4363                                                 struct cli_state *cli,
4364                                                 struct rpc_pipe_client *pipe_hnd,
4365                                                 TALLOC_CTX *mem_ctx,
4366                                                 int argc,
4367                                                 const char **argv)
4368 {
4369         int ret;
4370         bool r;
4371         ENUM_HND hnd;
4372         uint32 i;
4373         FILE *f;
4374
4375         struct user_token *tokens = NULL;
4376         int num_tokens = 0;
4377
4378         struct share_list share_list;
4379
4380         if (argc == 0) {
4381                 f = stdin;
4382         } else {
4383                 f = fopen(argv[0], "r");
4384         }
4385
4386         if (f == NULL) {
4387                 DEBUG(0, ("Could not open userlist: %s\n", strerror(errno)));
4388                 return NT_STATUS_UNSUCCESSFUL;
4389         }
4390
4391         r = get_user_tokens_from_file(f, &num_tokens, &tokens);
4392
4393         if (f != stdin)
4394                 fclose(f);
4395
4396         if (!r) {
4397                 DEBUG(0, ("Could not read users from file\n"));
4398                 return NT_STATUS_UNSUCCESSFUL;
4399         }
4400
4401         for (i=0; i<num_tokens; i++)
4402                 collect_alias_memberships(&tokens[i].token);
4403
4404         init_enum_hnd(&hnd, 0);
4405
4406         share_list.num_shares = 0;
4407         share_list.shares = NULL;
4408
4409         ret = cli_RNetShareEnum(cli, collect_share, &share_list);
4410
4411         if (ret == -1) {
4412                 DEBUG(0, ("Error returning browse list: %s\n",
4413                           cli_errstr(cli)));
4414                 goto done;
4415         }
4416
4417         for (i = 0; i < share_list.num_shares; i++) {
4418                 char *netname = share_list.shares[i];
4419
4420                 if (netname[strlen(netname)-1] == '$')
4421                         continue;
4422
4423                 d_printf("%s\n", netname);
4424
4425                 show_userlist(pipe_hnd, mem_ctx, netname,
4426                               num_tokens, tokens);
4427         }
4428  done:
4429         for (i=0; i<num_tokens; i++) {
4430                 free_user_token(&tokens[i].token);
4431         }
4432         SAFE_FREE(tokens);
4433         SAFE_FREE(share_list.shares);
4434
4435         return NT_STATUS_OK;
4436 }
4437
4438 static int rpc_share_allowedusers(struct net_context *c, int argc,
4439                                   const char **argv)
4440 {
4441         int result;
4442
4443         if (c->display_usage) {
4444                 d_printf("Usage:\n"
4445                          "net rpc share allowedusers\n"
4446                          "    List allowed users\n");
4447                 return 0;
4448         }
4449
4450         result = run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
4451                                  rpc_aliaslist_internals,
4452                                  argc, argv);
4453         if (result != 0)
4454                 return result;
4455
4456         result = run_rpc_command(c, NULL, &ndr_table_lsarpc.syntax_id, 0,
4457                                  rpc_aliaslist_dump,
4458                                  argc, argv);
4459         if (result != 0)
4460                 return result;
4461
4462         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
4463                                rpc_share_allowedusers_internals,
4464                                argc, argv);
4465 }
4466
4467 int net_usersidlist(struct net_context *c, int argc, const char **argv)
4468 {
4469         int num_tokens = 0;
4470         struct user_token *tokens = NULL;
4471         int i;
4472
4473         if (argc != 0) {
4474                 net_usersidlist_usage(c, argc, argv);
4475                 return 0;
4476         }
4477
4478         if (!get_user_tokens(c, &num_tokens, &tokens)) {
4479                 DEBUG(0, ("Could not get the user/sid list\n"));
4480                 return 0;
4481         }
4482
4483         for (i=0; i<num_tokens; i++) {
4484                 dump_user_token(&tokens[i]);
4485                 free_user_token(&tokens[i].token);
4486         }
4487
4488         SAFE_FREE(tokens);
4489         return 1;
4490 }
4491
4492 int net_usersidlist_usage(struct net_context *c, int argc, const char **argv)
4493 {
4494         d_printf("net usersidlist\n"
4495                  "\tprints out a list of all users the running winbind knows\n"
4496                  "\tabout, together with all their SIDs. This is used as\n"
4497                  "\tinput to the 'net rpc share allowedusers' command.\n\n");
4498
4499         net_common_flags_usage(c, argc, argv);
4500         return -1;
4501 }
4502
4503 /**
4504  * 'net rpc share' entrypoint.
4505  * @param argc  Standard main() style argc.
4506  * @param argv  Standard main() style argv. Initial components are already
4507  *              stripped.
4508  **/
4509
4510 int net_rpc_share(struct net_context *c, int argc, const char **argv)
4511 {
4512         NET_API_STATUS status;
4513
4514         struct functable func[] = {
4515                 {
4516                         "add",
4517                         rpc_share_add,
4518                         NET_TRANSPORT_RPC,
4519                         "Add share",
4520                         "net rpc share add\n"
4521                         "    Add share"
4522                 },
4523                 {
4524                         "delete",
4525                         rpc_share_delete,
4526                         NET_TRANSPORT_RPC,
4527                         "Remove share",
4528                         "net rpc share delete\n"
4529                         "    Remove share"
4530                 },
4531                 {
4532                         "allowedusers",
4533                         rpc_share_allowedusers,
4534                         NET_TRANSPORT_RPC,
4535                         "Modify allowed users",
4536                         "net rpc share allowedusers\n"
4537                         "    Modify allowed users"
4538                 },
4539                 {
4540                         "migrate",
4541                         rpc_share_migrate,
4542                         NET_TRANSPORT_RPC,
4543                         "Migrate share to local server",
4544                         "net rpc share migrate\n"
4545                         "    Migrate share to local server"
4546                 },
4547                 {
4548                         "list",
4549                         rpc_share_list,
4550                         NET_TRANSPORT_RPC,
4551                         "List shares",
4552                         "net rpc share list\n"
4553                         "    List shares"
4554                 },
4555                 {NULL, NULL, 0, NULL, NULL}
4556         };
4557
4558         status = libnetapi_init(&c->netapi_ctx);
4559         if (status != 0) {
4560                 return -1;
4561         }
4562         libnetapi_set_username(c->netapi_ctx, c->opt_user_name);
4563         libnetapi_set_password(c->netapi_ctx, c->opt_password);
4564         if (c->opt_kerberos) {
4565                 libnetapi_set_use_kerberos(c->netapi_ctx);
4566         }
4567
4568         if (argc == 0) {
4569                 if (c->display_usage) {
4570                         d_printf("Usage:\n"
4571                                  "net rpc share\n"
4572                                  "    List shares\n"
4573                                  "    Alias for net rpc share list\n");
4574                         net_display_usage_from_functable(func);
4575                         return 0;
4576                 }
4577
4578                 return rpc_share_list(c, argc, argv);
4579         }
4580
4581         return net_run_function(c, argc, argv, "net rpc share", func);
4582 }
4583
4584 static NTSTATUS rpc_sh_share_list(struct net_context *c,
4585                                   TALLOC_CTX *mem_ctx,
4586                                   struct rpc_sh_ctx *ctx,
4587                                   struct rpc_pipe_client *pipe_hnd,
4588                                   int argc, const char **argv)
4589 {
4590
4591         return werror_to_ntstatus(W_ERROR(rpc_share_list(c, argc, argv)));
4592 }
4593
4594 static NTSTATUS rpc_sh_share_add(struct net_context *c,
4595                                  TALLOC_CTX *mem_ctx,
4596                                  struct rpc_sh_ctx *ctx,
4597                                  struct rpc_pipe_client *pipe_hnd,
4598                                  int argc, const char **argv)
4599 {
4600         NET_API_STATUS status;
4601         uint32_t parm_err = 0;
4602         struct SHARE_INFO_2 i2;
4603
4604         if ((argc < 2) || (argc > 3)) {
4605                 d_fprintf(stderr, "usage: %s <share> <path> [comment]\n",
4606                           ctx->whoami);
4607                 return NT_STATUS_INVALID_PARAMETER;
4608         }
4609
4610         i2.shi2_netname         = argv[0];
4611         i2.shi2_type            = STYPE_DISKTREE;
4612         i2.shi2_remark          = (argc == 3) ? argv[2] : "";
4613         i2.shi2_permissions     = 0;
4614         i2.shi2_max_uses        = 0;
4615         i2.shi2_current_uses    = 0;
4616         i2.shi2_path            = argv[1];
4617         i2.shi2_passwd          = NULL;
4618
4619         status = NetShareAdd(pipe_hnd->desthost,
4620                              2,
4621                              (uint8_t *)&i2,
4622                              &parm_err);
4623
4624         return werror_to_ntstatus(W_ERROR(status));
4625 }
4626
4627 static NTSTATUS rpc_sh_share_delete(struct net_context *c,
4628                                     TALLOC_CTX *mem_ctx,
4629                                     struct rpc_sh_ctx *ctx,
4630                                     struct rpc_pipe_client *pipe_hnd,
4631                                     int argc, const char **argv)
4632 {
4633         if (argc != 1) {
4634                 d_fprintf(stderr, "usage: %s <share>\n", ctx->whoami);
4635                 return NT_STATUS_INVALID_PARAMETER;
4636         }
4637
4638         return werror_to_ntstatus(W_ERROR(NetShareDel(pipe_hnd->desthost, argv[0], 0)));
4639 }
4640
4641 static NTSTATUS rpc_sh_share_info(struct net_context *c,
4642                                   TALLOC_CTX *mem_ctx,
4643                                   struct rpc_sh_ctx *ctx,
4644                                   struct rpc_pipe_client *pipe_hnd,
4645                                   int argc, const char **argv)
4646 {
4647         union srvsvc_NetShareInfo info;
4648         WERROR result;
4649         NTSTATUS status;
4650
4651         if (argc != 1) {
4652                 d_fprintf(stderr, "usage: %s <share>\n", ctx->whoami);
4653                 return NT_STATUS_INVALID_PARAMETER;
4654         }
4655
4656         status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
4657                                                pipe_hnd->desthost,
4658                                                argv[0],
4659                                                2,
4660                                                &info,
4661                                                &result);
4662         if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
4663                 goto done;
4664         }
4665
4666         d_printf("Name:     %s\n", info.info2->name);
4667         d_printf("Comment:  %s\n", info.info2->comment);
4668         d_printf("Path:     %s\n", info.info2->path);
4669         d_printf("Password: %s\n", info.info2->password);
4670
4671  done:
4672         return werror_to_ntstatus(result);
4673 }
4674
4675 struct rpc_sh_cmd *net_rpc_share_cmds(struct net_context *c, TALLOC_CTX *mem_ctx,
4676                                       struct rpc_sh_ctx *ctx)
4677 {
4678         static struct rpc_sh_cmd cmds[] = {
4679
4680         { "list", NULL, &ndr_table_srvsvc.syntax_id, rpc_sh_share_list,
4681           "List available shares" },
4682
4683         { "add", NULL, &ndr_table_srvsvc.syntax_id, rpc_sh_share_add,
4684           "Add a share" },
4685
4686         { "delete", NULL, &ndr_table_srvsvc.syntax_id, rpc_sh_share_delete,
4687           "Delete a share" },
4688
4689         { "info", NULL, &ndr_table_srvsvc.syntax_id, rpc_sh_share_info,
4690           "Get information about a share" },
4691
4692         { NULL, NULL, 0, NULL, NULL }
4693         };
4694
4695         return cmds;
4696 }
4697
4698 /****************************************************************************/
4699
4700 static int rpc_file_usage(struct net_context *c, int argc, const char **argv)
4701 {
4702         return net_file_usage(c, argc, argv);
4703 }
4704
4705 /**
4706  * Close a file on a remote RPC server.
4707  *
4708  * @param argc  Standard main() style argc.
4709  * @param argv  Standard main() style argv. Initial components are already
4710  *              stripped.
4711  *
4712  * @return A shell status integer (0 for success).
4713  **/
4714 static int rpc_file_close(struct net_context *c, int argc, const char **argv)
4715 {
4716         if (argc < 1 || c->display_usage) {
4717                 return rpc_file_usage(c, argc, argv);
4718         }
4719
4720         return NetFileClose(c->opt_host, atoi(argv[0]));
4721 }
4722
4723 /**
4724  * Formatted print of open file info
4725  *
4726  * @param r  struct FILE_INFO_3 contents
4727  **/
4728
4729 static void display_file_info_3(struct FILE_INFO_3 *r)
4730 {
4731         d_printf("%-7.1d %-20.20s 0x%-4.2x %-6.1d %s\n",
4732                  r->fi3_id, r->fi3_username, r->fi3_permissions,
4733                  r->fi3_num_locks, r->fi3_pathname);
4734 }
4735
4736 /**
4737  * List files for a user on a remote RPC server.
4738  *
4739  * @param argc  Standard main() style argc.
4740  * @param argv  Standard main() style argv. Initial components are already
4741  *              stripped.
4742  *
4743  * @return A shell status integer (0 for success)..
4744  **/
4745
4746 static int rpc_file_user(struct net_context *c, int argc, const char **argv)
4747 {
4748         NET_API_STATUS status;
4749         uint32 preferred_len = 0xffffffff, i;
4750         const char *username=NULL;
4751         uint32_t total_entries = 0;
4752         uint32_t entries_read = 0;
4753         uint32_t resume_handle = 0;
4754         struct FILE_INFO_3 *i3 = NULL;
4755
4756         if (c->display_usage) {
4757                 return rpc_file_usage(c, argc, argv);
4758         }
4759
4760         /* if argc > 0, must be user command */
4761         if (argc > 0) {
4762                 username = smb_xstrdup(argv[0]);
4763         }
4764
4765         status = NetFileEnum(c->opt_host,
4766                              NULL,
4767                              username,
4768                              3,
4769                              (uint8_t **)&i3,
4770                              preferred_len,
4771                              &entries_read,
4772                              &total_entries,
4773                              &resume_handle);
4774
4775         if (status != 0) {
4776                 goto done;
4777         }
4778
4779         /* Display results */
4780
4781         d_printf(
4782                  "\nEnumerating open files on remote server:\n\n"
4783                  "\nFileId  Opened by            Perms  Locks  Path"
4784                  "\n------  ---------            -----  -----  ---- \n");
4785         for (i = 0; i < entries_read; i++) {
4786                 display_file_info_3(&i3[i]);
4787         }
4788  done:
4789         return status;
4790 }
4791
4792 /**
4793  * 'net rpc file' entrypoint.
4794  * @param argc  Standard main() style argc.
4795  * @param argv  Standard main() style argv. Initial components are already
4796  *              stripped.
4797  **/
4798
4799 int net_rpc_file(struct net_context *c, int argc, const char **argv)
4800 {
4801         NET_API_STATUS status;
4802
4803         struct functable func[] = {
4804                 {
4805                         "close",
4806                         rpc_file_close,
4807                         NET_TRANSPORT_RPC,
4808                         "Close opened file",
4809                         "net rpc file close\n"
4810                         "    Close opened file"
4811                 },
4812                 {
4813                         "user",
4814                         rpc_file_user,
4815                         NET_TRANSPORT_RPC,
4816                         "List files opened by user",
4817                         "net rpc file user\n"
4818                         "    List files opened by user"
4819                 },
4820 #if 0
4821                 {
4822                         "info",
4823                         rpc_file_info,
4824                         NET_TRANSPORT_RPC,
4825                         "Display information about opened file",
4826                         "net rpc file info\n"
4827                         "    Display information about opened file"
4828                 },
4829 #endif
4830                 {NULL, NULL, 0, NULL, NULL}
4831         };
4832
4833         status = libnetapi_init(&c->netapi_ctx);
4834         if (status != 0) {
4835                 return -1;
4836         }
4837         libnetapi_set_username(c->netapi_ctx, c->opt_user_name);
4838         libnetapi_set_password(c->netapi_ctx, c->opt_password);
4839         if (c->opt_kerberos) {
4840                 libnetapi_set_use_kerberos(c->netapi_ctx);
4841         }
4842
4843         if (argc == 0) {
4844                 if (c->display_usage) {
4845                         d_printf("Usage:\n");
4846                         d_printf("net rpc file\n"
4847                                  "    List opened files\n");
4848                         net_display_usage_from_functable(func);
4849                         return 0;
4850                 }
4851
4852                 return rpc_file_user(c, argc, argv);
4853         }
4854
4855         return net_run_function(c, argc, argv, "net rpc file", func);
4856 }
4857
4858 /**
4859  * ABORT the shutdown of a remote RPC Server, over initshutdown pipe.
4860  *
4861  * All parameters are provided by the run_rpc_command function, except for
4862  * argc, argv which are passed through.
4863  *
4864  * @param c     A net_context structure.
4865  * @param domain_sid The domain sid acquired from the remote server.
4866  * @param cli A cli_state connected to the server.
4867  * @param mem_ctx Talloc context, destroyed on completion of the function.
4868  * @param argc  Standard main() style argc.
4869  * @param argv  Standard main() style argv. Initial components are already
4870  *              stripped.
4871  *
4872  * @return Normal NTSTATUS return.
4873  **/
4874
4875 static NTSTATUS rpc_shutdown_abort_internals(struct net_context *c,
4876                                         const DOM_SID *domain_sid,
4877                                         const char *domain_name,
4878                                         struct cli_state *cli,
4879                                         struct rpc_pipe_client *pipe_hnd,
4880                                         TALLOC_CTX *mem_ctx,
4881                                         int argc,
4882                                         const char **argv)
4883 {
4884         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
4885
4886         result = rpccli_initshutdown_Abort(pipe_hnd, mem_ctx, NULL, NULL);
4887
4888         if (NT_STATUS_IS_OK(result)) {
4889                 d_printf("\nShutdown successfully aborted\n");
4890                 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
4891         } else
4892                 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
4893
4894         return result;
4895 }
4896
4897 /**
4898  * ABORT the shutdown of a remote RPC Server, over winreg pipe.
4899  *
4900  * All parameters are provided by the run_rpc_command function, except for
4901  * argc, argv which are passed through.
4902  *
4903  * @param c     A net_context structure.
4904  * @param domain_sid The domain sid acquired from the remote server.
4905  * @param cli A cli_state connected to the server.
4906  * @param mem_ctx Talloc context, destroyed on completion of the function.
4907  * @param argc  Standard main() style argc.
4908  * @param argv  Standard main() style argv. Initial components are already
4909  *              stripped.
4910  *
4911  * @return Normal NTSTATUS return.
4912  **/
4913
4914 static NTSTATUS rpc_reg_shutdown_abort_internals(struct net_context *c,
4915                                                 const DOM_SID *domain_sid,
4916                                                 const char *domain_name,
4917                                                 struct cli_state *cli,
4918                                                 struct rpc_pipe_client *pipe_hnd,
4919                                                 TALLOC_CTX *mem_ctx,
4920                                                 int argc,
4921                                                 const char **argv)
4922 {
4923         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
4924
4925         result = rpccli_winreg_AbortSystemShutdown(pipe_hnd, mem_ctx, NULL, NULL);
4926
4927         if (NT_STATUS_IS_OK(result)) {
4928                 d_printf("\nShutdown successfully aborted\n");
4929                 DEBUG(5,("cmd_reg_abort_shutdown: query succeeded\n"));
4930         } else
4931                 DEBUG(5,("cmd_reg_abort_shutdown: query failed\n"));
4932
4933         return result;
4934 }
4935
4936 /**
4937  * ABORT the shutdown of a remote RPC server.
4938  *
4939  * @param argc  Standard main() style argc.
4940  * @param argv  Standard main() style argv. Initial components are already
4941  *              stripped.
4942  *
4943  * @return A shell status integer (0 for success).
4944  **/
4945
4946 static int rpc_shutdown_abort(struct net_context *c, int argc,
4947                               const char **argv)
4948 {
4949         int rc = -1;
4950
4951         if (c->display_usage) {
4952                 d_printf("Usage:\n"
4953                          "net rpc abortshutdown\n"
4954                          "    Abort a scheduled shutdown\n");
4955                 return 0;
4956         }
4957
4958         rc = run_rpc_command(c, NULL, &ndr_table_initshutdown.syntax_id, 0,
4959                              rpc_shutdown_abort_internals, argc, argv);
4960
4961         if (rc == 0)
4962                 return rc;
4963
4964         DEBUG(1, ("initshutdown pipe didn't work, trying winreg pipe\n"));
4965
4966         return run_rpc_command(c, NULL, &ndr_table_winreg.syntax_id, 0,
4967                                rpc_reg_shutdown_abort_internals,
4968                                argc, argv);
4969 }
4970
4971 /**
4972  * Shut down a remote RPC Server via initshutdown pipe.
4973  *
4974  * All parameters are provided by the run_rpc_command function, except for
4975  * argc, argv which are passed through.
4976  *
4977  * @param c     A net_context structure.
4978  * @param domain_sid The domain sid acquired from the remote server.
4979  * @param cli A cli_state connected to the server.
4980  * @param mem_ctx Talloc context, destroyed on completion of the function.
4981  * @param argc  Standard main() style argc.
4982  * @param argv  Standard main() style argv. Initial components are already
4983  *              stripped.
4984  *
4985  * @return Normal NTSTATUS return.
4986  **/
4987
4988 NTSTATUS rpc_init_shutdown_internals(struct net_context *c,
4989                                      const DOM_SID *domain_sid,
4990                                      const char *domain_name,
4991                                      struct cli_state *cli,
4992                                      struct rpc_pipe_client *pipe_hnd,
4993                                      TALLOC_CTX *mem_ctx,
4994                                      int argc,
4995                                      const char **argv)
4996 {
4997         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
4998         const char *msg = "This machine will be shutdown shortly";
4999         uint32 timeout = 20;
5000         struct initshutdown_String msg_string;
5001         struct initshutdown_String_sub s;
5002
5003         if (c->opt_comment) {
5004                 msg = c->opt_comment;
5005         }
5006         if (c->opt_timeout) {
5007                 timeout = c->opt_timeout;
5008         }
5009
5010         s.name = msg;
5011         msg_string.name = &s;
5012
5013         /* create an entry */
5014         result = rpccli_initshutdown_Init(pipe_hnd, mem_ctx, NULL,
5015                         &msg_string, timeout, c->opt_force, c->opt_reboot,
5016                         NULL);
5017
5018         if (NT_STATUS_IS_OK(result)) {
5019                 d_printf("\nShutdown of remote machine succeeded\n");
5020                 DEBUG(5,("Shutdown of remote machine succeeded\n"));
5021         } else {
5022                 DEBUG(1,("Shutdown of remote machine failed!\n"));
5023         }
5024         return result;
5025 }
5026
5027 /**
5028  * Shut down a remote RPC Server via winreg pipe.
5029  *
5030  * All parameters are provided by the run_rpc_command function, except for
5031  * argc, argv which are passed through.
5032  *
5033  * @param c     A net_context structure.
5034  * @param domain_sid The domain sid acquired from the remote server.
5035  * @param cli A cli_state connected to the server.
5036  * @param mem_ctx Talloc context, destroyed on completion of the function.
5037  * @param argc  Standard main() style argc.
5038  * @param argv  Standard main() style argv. Initial components are already
5039  *              stripped.
5040  *
5041  * @return Normal NTSTATUS return.
5042  **/
5043
5044 NTSTATUS rpc_reg_shutdown_internals(struct net_context *c,
5045                                     const DOM_SID *domain_sid,
5046                                     const char *domain_name,
5047                                     struct cli_state *cli,
5048                                     struct rpc_pipe_client *pipe_hnd,
5049                                     TALLOC_CTX *mem_ctx,
5050                                     int argc,
5051                                     const char **argv)
5052 {
5053         const char *msg = "This machine will be shutdown shortly";
5054         uint32 timeout = 20;
5055         struct initshutdown_String msg_string;
5056         struct initshutdown_String_sub s;
5057         NTSTATUS result;
5058         WERROR werr;
5059
5060         if (c->opt_comment) {
5061                 msg = c->opt_comment;
5062         }
5063         s.name = msg;
5064         msg_string.name = &s;
5065
5066         if (c->opt_timeout) {
5067                 timeout = c->opt_timeout;
5068         }
5069
5070         /* create an entry */
5071         result = rpccli_winreg_InitiateSystemShutdown(pipe_hnd, mem_ctx, NULL,
5072                         &msg_string, timeout, c->opt_force, c->opt_reboot,
5073                         &werr);
5074
5075         if (NT_STATUS_IS_OK(result)) {
5076                 d_printf("\nShutdown of remote machine succeeded\n");
5077         } else {
5078                 d_fprintf(stderr, "\nShutdown of remote machine failed\n");
5079                 if ( W_ERROR_EQUAL(werr, WERR_MACHINE_LOCKED) )
5080                         d_fprintf(stderr, "\nMachine locked, use -f switch to force\n");
5081                 else
5082                         d_fprintf(stderr, "\nresult was: %s\n", dos_errstr(werr));
5083         }
5084
5085         return result;
5086 }
5087
5088 /**
5089  * Shut down a remote RPC server.
5090  *
5091  * @param argc  Standard main() style argc.
5092  * @param argv  Standard main() style argv. Initial components are already
5093  *              stripped.
5094  *
5095  * @return A shell status integer (0 for success).
5096  **/
5097
5098 static int rpc_shutdown(struct net_context *c, int argc, const char **argv)
5099 {
5100         int rc =  -1;
5101
5102         if (c->display_usage) {
5103                 d_printf("Usage:\n"
5104                          "net rpc shutdown\n"
5105                          "    Shut down a remote RPC server\n");
5106                 return 0;
5107         }
5108
5109         rc = run_rpc_command(c, NULL, &ndr_table_initshutdown.syntax_id, 0,
5110                              rpc_init_shutdown_internals, argc, argv);
5111
5112         if (rc) {
5113                 DEBUG(1, ("initshutdown pipe failed, trying winreg pipe\n"));
5114                 rc = run_rpc_command(c, NULL, &ndr_table_winreg.syntax_id, 0,
5115                                      rpc_reg_shutdown_internals, argc, argv);
5116         }
5117
5118         return rc;
5119 }
5120
5121 /***************************************************************************
5122   NT Domain trusts code (i.e. 'net rpc trustdom' functionality)
5123  ***************************************************************************/
5124
5125 /**
5126  * Add interdomain trust account to the RPC server.
5127  * All parameters (except for argc and argv) are passed by run_rpc_command
5128  * function.
5129  *
5130  * @param c     A net_context structure.
5131  * @param domain_sid The domain sid acquired from the server.
5132  * @param cli A cli_state connected to the server.
5133  * @param mem_ctx Talloc context, destroyed on completion of the function.
5134  * @param argc  Standard main() style argc.
5135  * @param argv  Standard main() style argv. Initial components are already
5136  *              stripped.
5137  *
5138  * @return normal NTSTATUS return code.
5139  */
5140
5141 static NTSTATUS rpc_trustdom_add_internals(struct net_context *c,
5142                                                 const DOM_SID *domain_sid,
5143                                                 const char *domain_name,
5144                                                 struct cli_state *cli,
5145                                                 struct rpc_pipe_client *pipe_hnd,
5146                                                 TALLOC_CTX *mem_ctx,
5147                                                 int argc,
5148                                                 const char **argv)
5149 {
5150         POLICY_HND connect_pol, domain_pol, user_pol;
5151         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5152         char *acct_name;
5153         struct lsa_String lsa_acct_name;
5154         uint32 acb_info;
5155         uint32 acct_flags=0;
5156         uint32 user_rid;
5157         uint32_t access_granted = 0;
5158         union samr_UserInfo info;
5159         unsigned int orig_timeout;
5160
5161         if (argc != 2) {
5162                 d_printf("Usage: net rpc trustdom add <domain_name> "
5163                          "<trust password>\n");
5164                 return NT_STATUS_INVALID_PARAMETER;
5165         }
5166
5167         /* 
5168          * Make valid trusting domain account (ie. uppercased and with '$' appended)
5169          */
5170
5171         if (asprintf(&acct_name, "%s$", argv[0]) < 0) {
5172                 return NT_STATUS_NO_MEMORY;
5173         }
5174
5175         strupper_m(acct_name);
5176
5177         init_lsa_String(&lsa_acct_name, acct_name);
5178
5179         /* Get samr policy handle */
5180         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
5181                                       pipe_hnd->desthost,
5182                                       MAXIMUM_ALLOWED_ACCESS,
5183                                       &connect_pol);
5184         if (!NT_STATUS_IS_OK(result)) {
5185                 goto done;
5186         }
5187
5188         /* Get domain policy handle */
5189         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
5190                                         &connect_pol,
5191                                         MAXIMUM_ALLOWED_ACCESS,
5192                                         CONST_DISCARD(struct dom_sid2 *, domain_sid),
5193                                         &domain_pol);
5194         if (!NT_STATUS_IS_OK(result)) {
5195                 goto done;
5196         }
5197
5198         /* This call can take a long time - allow the server to time out.
5199          * 35 seconds should do it. */
5200
5201         orig_timeout = rpccli_set_timeout(pipe_hnd, 35000);
5202
5203         /* Create trusting domain's account */
5204         acb_info = ACB_NORMAL;
5205         acct_flags = SEC_GENERIC_READ | SEC_GENERIC_WRITE | SEC_GENERIC_EXECUTE |
5206                      SEC_STD_WRITE_DAC | SEC_STD_DELETE |
5207                      SAMR_USER_ACCESS_SET_PASSWORD |
5208                      SAMR_USER_ACCESS_GET_ATTRIBUTES |
5209                      SAMR_USER_ACCESS_SET_ATTRIBUTES;
5210
5211         result = rpccli_samr_CreateUser2(pipe_hnd, mem_ctx,
5212                                          &domain_pol,
5213                                          &lsa_acct_name,
5214                                          acb_info,
5215                                          acct_flags,
5216                                          &user_pol,
5217                                          &access_granted,
5218                                          &user_rid);
5219
5220         /* And restore our original timeout. */
5221         rpccli_set_timeout(pipe_hnd, orig_timeout);
5222
5223         if (!NT_STATUS_IS_OK(result)) {
5224                 d_printf("net rpc trustdom add: create user %s failed %s\n",
5225                         acct_name, nt_errstr(result));
5226                 goto done;
5227         }
5228
5229         {
5230                 NTTIME notime;
5231                 struct samr_LogonHours hours;
5232                 struct lsa_BinaryString parameters;
5233                 const int units_per_week = 168;
5234                 struct samr_CryptPassword crypt_pwd;
5235
5236                 ZERO_STRUCT(notime);
5237                 ZERO_STRUCT(hours);
5238                 ZERO_STRUCT(parameters);
5239
5240                 hours.bits = talloc_array(mem_ctx, uint8_t, units_per_week);
5241                 if (!hours.bits) {
5242                         result = NT_STATUS_NO_MEMORY;
5243                         goto done;
5244                 }
5245                 hours.units_per_week = units_per_week;
5246                 memset(hours.bits, 0xFF, units_per_week);
5247
5248                 init_samr_CryptPassword(argv[1],
5249                                         &cli->user_session_key,
5250                                         &crypt_pwd);
5251
5252                 init_samr_user_info23(&info.info23,
5253                                       notime, notime, notime,
5254                                       notime, notime, notime,
5255                                       NULL, NULL, NULL, NULL, NULL,
5256                                       NULL, NULL, NULL, NULL, &parameters,
5257                                       0, 0, ACB_DOMTRUST,
5258                                       SAMR_FIELD_ACCT_FLAGS | SAMR_FIELD_PASSWORD,
5259                                       hours,
5260                                       0, 0, 0, 0, 0, 0, 0,
5261                                       &crypt_pwd);
5262
5263                 result = rpccli_samr_SetUserInfo2(pipe_hnd, mem_ctx,
5264                                                   &user_pol,
5265                                                   23,
5266                                                   &info);
5267
5268                 if (!NT_STATUS_IS_OK(result)) {
5269                         DEBUG(0,("Could not set trust account password: %s\n",
5270                                  nt_errstr(result)));
5271                         goto done;
5272                 }
5273         }
5274
5275  done:
5276         SAFE_FREE(acct_name);
5277         return result;
5278 }
5279
5280 /**
5281  * Create interdomain trust account for a remote domain.
5282  *
5283  * @param argc Standard argc.
5284  * @param argv Standard argv without initial components.
5285  *
5286  * @return Integer status (0 means success).
5287  **/
5288
5289 static int rpc_trustdom_add(struct net_context *c, int argc, const char **argv)
5290 {
5291         if (argc > 0 && !c->display_usage) {
5292                 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
5293                                        rpc_trustdom_add_internals, argc, argv);
5294         } else {
5295                 d_printf("Usage:\n"
5296                         "net rpc trustdom add <domain_name> <trust password>\n");
5297                 return -1;
5298         }
5299 }
5300
5301
5302 /**
5303  * Remove interdomain trust account from the RPC server.
5304  * All parameters (except for argc and argv) are passed by run_rpc_command
5305  * function.
5306  *
5307  * @param c     A net_context structure.
5308  * @param domain_sid The domain sid acquired from the server.
5309  * @param cli A cli_state connected to the server.
5310  * @param mem_ctx Talloc context, destroyed on completion of the function.
5311  * @param argc  Standard main() style argc.
5312  * @param argv  Standard main() style argv. Initial components are already
5313  *              stripped.
5314  *
5315  * @return normal NTSTATUS return code.
5316  */
5317
5318 static NTSTATUS rpc_trustdom_del_internals(struct net_context *c,
5319                                         const DOM_SID *domain_sid,
5320                                         const char *domain_name,
5321                                         struct cli_state *cli,
5322                                         struct rpc_pipe_client *pipe_hnd,
5323                                         TALLOC_CTX *mem_ctx,
5324                                         int argc,
5325                                         const char **argv)
5326 {
5327         POLICY_HND connect_pol, domain_pol, user_pol;
5328         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5329         char *acct_name;
5330         DOM_SID trust_acct_sid;
5331         struct samr_Ids user_rids, name_types;
5332         struct lsa_String lsa_acct_name;
5333
5334         if (argc != 1) {
5335                 d_printf("Usage: net rpc trustdom del <domain_name>\n");
5336                 return NT_STATUS_INVALID_PARAMETER;
5337         }
5338
5339         /*
5340          * Make valid trusting domain account (ie. uppercased and with '$' appended)
5341          */
5342         acct_name = talloc_asprintf(mem_ctx, "%s$", argv[0]);
5343
5344         if (acct_name == NULL)
5345                 return NT_STATUS_NO_MEMORY;
5346
5347         strupper_m(acct_name);
5348
5349         /* Get samr policy handle */
5350         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
5351                                       pipe_hnd->desthost,
5352                                       MAXIMUM_ALLOWED_ACCESS,
5353                                       &connect_pol);
5354         if (!NT_STATUS_IS_OK(result)) {
5355                 goto done;
5356         }
5357
5358         /* Get domain policy handle */
5359         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
5360                                         &connect_pol,
5361                                         MAXIMUM_ALLOWED_ACCESS,
5362                                         CONST_DISCARD(struct dom_sid2 *, domain_sid),
5363                                         &domain_pol);
5364         if (!NT_STATUS_IS_OK(result)) {
5365                 goto done;
5366         }
5367
5368         init_lsa_String(&lsa_acct_name, acct_name);
5369
5370         result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
5371                                          &domain_pol,
5372                                          1,
5373                                          &lsa_acct_name,
5374                                          &user_rids,
5375                                          &name_types);
5376
5377         if (!NT_STATUS_IS_OK(result)) {
5378                 d_printf("net rpc trustdom del: LookupNames on user %s failed %s\n",
5379                         acct_name, nt_errstr(result) );
5380                 goto done;
5381         }
5382
5383         result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
5384                                       &domain_pol,
5385                                       MAXIMUM_ALLOWED_ACCESS,
5386                                       user_rids.ids[0],
5387                                       &user_pol);
5388
5389         if (!NT_STATUS_IS_OK(result)) {
5390                 d_printf("net rpc trustdom del: OpenUser on user %s failed %s\n",
5391                         acct_name, nt_errstr(result) );
5392                 goto done;
5393         }
5394
5395         /* append the rid to the domain sid */
5396         sid_copy(&trust_acct_sid, domain_sid);
5397         if (!sid_append_rid(&trust_acct_sid, user_rids.ids[0])) {
5398                 goto done;
5399         }
5400
5401         /* remove the sid */
5402
5403         result = rpccli_samr_RemoveMemberFromForeignDomain(pipe_hnd, mem_ctx,
5404                                                            &user_pol,
5405                                                            &trust_acct_sid);
5406         if (!NT_STATUS_IS_OK(result)) {
5407                 d_printf("net rpc trustdom del: RemoveMemberFromForeignDomain on user %s failed %s\n",
5408                         acct_name, nt_errstr(result) );
5409                 goto done;
5410         }
5411
5412         /* Delete user */
5413
5414         result = rpccli_samr_DeleteUser(pipe_hnd, mem_ctx,
5415                                         &user_pol);
5416
5417         if (!NT_STATUS_IS_OK(result)) {
5418                 d_printf("net rpc trustdom del: DeleteUser on user %s failed %s\n",
5419                         acct_name, nt_errstr(result) );
5420                 goto done;
5421         }
5422
5423         if (!NT_STATUS_IS_OK(result)) {
5424                 d_printf("Could not set trust account password: %s\n",
5425                    nt_errstr(result));
5426                 goto done;
5427         }
5428
5429  done:
5430         return result;
5431 }
5432
5433 /**
5434  * Delete interdomain trust account for a remote domain.
5435  *
5436  * @param argc Standard argc.
5437  * @param argv Standard argv without initial components.
5438  *
5439  * @return Integer status (0 means success).
5440  **/
5441
5442 static int rpc_trustdom_del(struct net_context *c, int argc, const char **argv)
5443 {
5444         if (argc > 0 && !c->display_usage) {
5445                 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
5446                                        rpc_trustdom_del_internals, argc, argv);
5447         } else {
5448                 d_printf("Usage:\n"
5449                          "net rpc trustdom del <domain>\n");
5450                 return -1;
5451         }
5452 }
5453
5454 static NTSTATUS rpc_trustdom_get_pdc(struct net_context *c,
5455                                      struct cli_state *cli,
5456                                      TALLOC_CTX *mem_ctx,
5457                                      const char *domain_name)
5458 {
5459         char *dc_name = NULL;
5460         const char *buffer = NULL;
5461         struct rpc_pipe_client *netr;
5462         NTSTATUS status;
5463
5464         /* Use NetServerEnum2 */
5465
5466         if (cli_get_pdc_name(cli, domain_name, &dc_name)) {
5467                 SAFE_FREE(dc_name);
5468                 return NT_STATUS_OK;
5469         }
5470
5471         DEBUG(1,("NetServerEnum2 error: Couldn't find primary domain controller\
5472                  for domain %s\n", domain_name));
5473
5474         /* Try netr_GetDcName */
5475
5476         status = cli_rpc_pipe_open_noauth(cli, &ndr_table_netlogon.syntax_id,
5477                                           &netr);
5478         if (!NT_STATUS_IS_OK(status)) {
5479                 return status;
5480         }
5481
5482         status = rpccli_netr_GetDcName(netr, mem_ctx,
5483                                        cli->desthost,
5484                                        domain_name,
5485                                        &buffer,
5486                                        NULL);
5487         TALLOC_FREE(netr);
5488
5489         if (NT_STATUS_IS_OK(status)) {
5490                 return status;
5491         }
5492
5493         DEBUG(1,("netr_GetDcName error: Couldn't find primary domain controller\
5494                  for domain %s\n", domain_name));
5495
5496         return status;
5497 }
5498
5499 /**
5500  * Establish trust relationship to a trusting domain.
5501  * Interdomain account must already be created on remote PDC.
5502  *
5503  * @param c    A net_context structure.
5504  * @param argc Standard argc.
5505  * @param argv Standard argv without initial components.
5506  *
5507  * @return Integer status (0 means success).
5508  **/
5509
5510 static int rpc_trustdom_establish(struct net_context *c, int argc,
5511                                   const char **argv)
5512 {
5513         struct cli_state *cli = NULL;
5514         struct sockaddr_storage server_ss;
5515         struct rpc_pipe_client *pipe_hnd = NULL;
5516         POLICY_HND connect_hnd;
5517         TALLOC_CTX *mem_ctx;
5518         NTSTATUS nt_status;
5519         DOM_SID *domain_sid;
5520
5521         char* domain_name;
5522         char* acct_name;
5523         fstring pdc_name;
5524         union lsa_PolicyInformation *info = NULL;
5525
5526         /*
5527          * Connect to \\server\ipc$ as 'our domain' account with password
5528          */
5529
5530         if (argc != 1 || c->display_usage) {
5531                 d_printf("Usage:\n"
5532                          "net rpc trustdom establish <domain_name>\n");
5533                 return -1;
5534         }
5535
5536         domain_name = smb_xstrdup(argv[0]);
5537         strupper_m(domain_name);
5538
5539         /* account name used at first is our domain's name with '$' */
5540         asprintf(&acct_name, "%s$", lp_workgroup());
5541         strupper_m(acct_name);
5542
5543         /*
5544          * opt_workgroup will be used by connection functions further,
5545          * hence it should be set to remote domain name instead of ours
5546          */
5547         if (c->opt_workgroup) {
5548                 c->opt_workgroup = smb_xstrdup(domain_name);
5549         };
5550
5551         c->opt_user_name = acct_name;
5552
5553         /* find the domain controller */
5554         if (!net_find_pdc(&server_ss, pdc_name, domain_name)) {
5555                 DEBUG(0, ("Couldn't find domain controller for domain %s\n", domain_name));
5556                 return -1;
5557         }
5558
5559         /* connect to ipc$ as username/password */
5560         nt_status = connect_to_ipc(c, &cli, &server_ss, pdc_name);
5561         if (!NT_STATUS_EQUAL(nt_status, NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT)) {
5562
5563                 /* Is it trusting domain account for sure ? */
5564                 DEBUG(0, ("Couldn't verify trusting domain account. Error was %s\n",
5565                         nt_errstr(nt_status)));
5566                 return -1;
5567         }
5568
5569         /* store who we connected to */
5570
5571         saf_store( domain_name, pdc_name );
5572
5573         /*
5574          * Connect to \\server\ipc$ again (this time anonymously)
5575          */
5576
5577         nt_status = connect_to_ipc_anonymous(c, &cli, &server_ss,
5578                                              (char*)pdc_name);
5579
5580         if (NT_STATUS_IS_ERR(nt_status)) {
5581                 DEBUG(0, ("Couldn't connect to domain %s controller. Error was %s.\n",
5582                         domain_name, nt_errstr(nt_status)));
5583                 return -1;
5584         }
5585
5586         if (!(mem_ctx = talloc_init("establishing trust relationship to "
5587                                     "domain %s", domain_name))) {
5588                 DEBUG(0, ("talloc_init() failed\n"));
5589                 cli_shutdown(cli);
5590                 return -1;
5591         }
5592
5593         /* Make sure we're talking to a proper server */
5594
5595         nt_status = rpc_trustdom_get_pdc(c, cli, mem_ctx, domain_name);
5596         if (!NT_STATUS_IS_OK(nt_status)) {
5597                 cli_shutdown(cli);
5598                 talloc_destroy(mem_ctx);
5599                 return -1;
5600         }
5601
5602         /*
5603          * Call LsaOpenPolicy and LsaQueryInfo
5604          */
5605
5606         nt_status = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
5607                                              &pipe_hnd);
5608         if (!NT_STATUS_IS_OK(nt_status)) {
5609                 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n", nt_errstr(nt_status) ));
5610                 cli_shutdown(cli);
5611                 talloc_destroy(mem_ctx);
5612                 return -1;
5613         }
5614
5615         nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, true, SEC_RIGHTS_QUERY_VALUE,
5616                                          &connect_hnd);
5617         if (NT_STATUS_IS_ERR(nt_status)) {
5618                 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
5619                         nt_errstr(nt_status)));
5620                 cli_shutdown(cli);
5621                 talloc_destroy(mem_ctx);
5622                 return -1;
5623         }
5624
5625         /* Querying info level 5 */
5626
5627         nt_status = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
5628                                                &connect_hnd,
5629                                                LSA_POLICY_INFO_ACCOUNT_DOMAIN,
5630                                                &info);
5631         if (NT_STATUS_IS_ERR(nt_status)) {
5632                 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
5633                         nt_errstr(nt_status)));
5634                 cli_shutdown(cli);
5635                 talloc_destroy(mem_ctx);
5636                 return -1;
5637         }
5638
5639         domain_sid = info->account_domain.sid;
5640
5641         /* There should be actually query info level 3 (following nt serv behaviour),
5642            but I still don't know if it's _really_ necessary */
5643
5644         /*
5645          * Store the password in secrets db
5646          */
5647
5648         if (!pdb_set_trusteddom_pw(domain_name, c->opt_password, domain_sid)) {
5649                 DEBUG(0, ("Storing password for trusted domain failed.\n"));
5650                 cli_shutdown(cli);
5651                 talloc_destroy(mem_ctx);
5652                 return -1;
5653         }
5654
5655         /*
5656          * Close the pipes and clean up
5657          */
5658
5659         nt_status = rpccli_lsa_Close(pipe_hnd, mem_ctx, &connect_hnd);
5660         if (NT_STATUS_IS_ERR(nt_status)) {
5661                 DEBUG(0, ("Couldn't close LSA pipe. Error was %s\n",
5662                         nt_errstr(nt_status)));
5663                 cli_shutdown(cli);
5664                 talloc_destroy(mem_ctx);
5665                 return -1;
5666         }
5667
5668         cli_shutdown(cli);
5669
5670         talloc_destroy(mem_ctx);
5671
5672         d_printf("Trust to domain %s established\n", domain_name);
5673         return 0;
5674 }
5675
5676 /**
5677  * Revoke trust relationship to the remote domain.
5678  *
5679  * @param c    A net_context structure.
5680  * @param argc Standard argc.
5681  * @param argv Standard argv without initial components.
5682  *
5683  * @return Integer status (0 means success).
5684  **/
5685
5686 static int rpc_trustdom_revoke(struct net_context *c, int argc,
5687                                const char **argv)
5688 {
5689         char* domain_name;
5690         int rc = -1;
5691
5692         if (argc < 1 || c->display_usage) {
5693                 d_printf("Usage:\n"
5694                          "net rpc trustdom revoke <domain_name>\n"
5695                          "  Revoke trust relationship\n"
5696                          "    domain_name\tName of domain to revoke trust\n");
5697                 return -1;
5698         }
5699
5700         /* generate upper cased domain name */
5701         domain_name = smb_xstrdup(argv[0]);
5702         strupper_m(domain_name);
5703
5704         /* delete password of the trust */
5705         if (!pdb_del_trusteddom_pw(domain_name)) {
5706                 DEBUG(0, ("Failed to revoke relationship to the trusted domain %s\n",
5707                           domain_name));
5708                 goto done;
5709         };
5710
5711         rc = 0;
5712 done:
5713         SAFE_FREE(domain_name);
5714         return rc;
5715 }
5716
5717 static NTSTATUS rpc_query_domain_sid(struct net_context *c,
5718                                         const DOM_SID *domain_sid,
5719                                         const char *domain_name,
5720                                         struct cli_state *cli,
5721                                         struct rpc_pipe_client *pipe_hnd,
5722                                         TALLOC_CTX *mem_ctx,
5723                                         int argc,
5724                                         const char **argv)
5725 {
5726         fstring str_sid;
5727         sid_to_fstring(str_sid, domain_sid);
5728         d_printf("%s\n", str_sid);
5729         return NT_STATUS_OK;
5730 }
5731
5732 static void print_trusted_domain(DOM_SID *dom_sid, const char *trusted_dom_name)
5733 {
5734         fstring ascii_sid, padding;
5735         int pad_len, col_len = 20;
5736
5737         /* convert sid into ascii string */
5738         sid_to_fstring(ascii_sid, dom_sid);
5739
5740         /* calculate padding space for d_printf to look nicer */
5741         pad_len = col_len - strlen(trusted_dom_name);
5742         padding[pad_len] = 0;
5743         do padding[--pad_len] = ' '; while (pad_len);
5744
5745         d_printf("%s%s%s\n", trusted_dom_name, padding, ascii_sid);
5746 }
5747
5748 static NTSTATUS vampire_trusted_domain(struct rpc_pipe_client *pipe_hnd,
5749                                       TALLOC_CTX *mem_ctx,
5750                                       POLICY_HND *pol,
5751                                       DOM_SID dom_sid,
5752                                       const char *trusted_dom_name)
5753 {
5754         NTSTATUS nt_status;
5755         union lsa_TrustedDomainInfo *info = NULL;
5756         char *cleartextpwd = NULL;
5757         uint8_t nt_hash[16];
5758         DATA_BLOB data;
5759
5760         nt_status = rpccli_lsa_QueryTrustedDomainInfoBySid(pipe_hnd, mem_ctx,
5761                                                            pol,
5762                                                            &dom_sid,
5763                                                            LSA_TRUSTED_DOMAIN_INFO_PASSWORD,
5764                                                            &info);
5765         if (NT_STATUS_IS_ERR(nt_status)) {
5766                 DEBUG(0,("Could not query trusted domain info. Error was %s\n",
5767                 nt_errstr(nt_status)));
5768                 goto done;
5769         }
5770
5771         data = data_blob(info->password.password->data,
5772                          info->password.password->length);
5773
5774         if (!rpccli_get_pwd_hash(pipe_hnd, nt_hash)) {
5775                 DEBUG(0, ("Could not retrieve password hash\n"));
5776                 goto done;
5777         }
5778
5779         cleartextpwd = decrypt_trustdom_secret(nt_hash, &data);
5780
5781         if (cleartextpwd == NULL) {
5782                 DEBUG(0,("retrieved NULL password\n"));
5783                 nt_status = NT_STATUS_UNSUCCESSFUL;
5784                 goto done;
5785         }
5786
5787         if (!pdb_set_trusteddom_pw(trusted_dom_name, cleartextpwd, &dom_sid)) {
5788                 DEBUG(0, ("Storing password for trusted domain failed.\n"));
5789                 nt_status = NT_STATUS_UNSUCCESSFUL;
5790                 goto done;
5791         }
5792
5793 #ifdef DEBUG_PASSWORD
5794         DEBUG(100,("successfully vampired trusted domain [%s], sid: [%s], "
5795                    "password: [%s]\n", trusted_dom_name,
5796                    sid_string_dbg(&dom_sid), cleartextpwd));
5797 #endif
5798
5799 done:
5800         SAFE_FREE(cleartextpwd);
5801         data_blob_free(&data);
5802
5803         return nt_status;
5804 }
5805
5806 static int rpc_trustdom_vampire(struct net_context *c, int argc,
5807                                 const char **argv)
5808 {
5809         /* common variables */
5810         TALLOC_CTX* mem_ctx;
5811         struct cli_state *cli = NULL;
5812         struct rpc_pipe_client *pipe_hnd = NULL;
5813         NTSTATUS nt_status;
5814         const char *domain_name = NULL;
5815         DOM_SID *queried_dom_sid;
5816         POLICY_HND connect_hnd;
5817         union lsa_PolicyInformation *info = NULL;
5818
5819         /* trusted domains listing variables */
5820         unsigned int enum_ctx = 0;
5821         int i;
5822         struct lsa_DomainList dom_list;
5823         fstring pdc_name;
5824
5825         if (c->display_usage) {
5826                 d_printf("Usage:\n"
5827                          "net rpc trustdom vampire\n"
5828                          "  Vampire trust relationship from remote server\n");
5829                 return 0;
5830         }
5831
5832         /*
5833          * Listing trusted domains (stored in secrets.tdb, if local)
5834          */
5835
5836         mem_ctx = talloc_init("trust relationships vampire");
5837
5838         /*
5839          * set domain and pdc name to local samba server (default)
5840          * or to remote one given in command line
5841          */
5842
5843         if (StrCaseCmp(c->opt_workgroup, lp_workgroup())) {
5844                 domain_name = c->opt_workgroup;
5845                 c->opt_target_workgroup = c->opt_workgroup;
5846         } else {
5847                 fstrcpy(pdc_name, global_myname());
5848                 domain_name = talloc_strdup(mem_ctx, lp_workgroup());
5849                 c->opt_target_workgroup = domain_name;
5850         };
5851
5852         /* open \PIPE\lsarpc and open policy handle */
5853         nt_status = net_make_ipc_connection(c, NET_FLAGS_PDC, &cli);
5854         if (!NT_STATUS_IS_OK(nt_status)) {
5855                 DEBUG(0, ("Couldn't connect to domain controller: %s\n",
5856                           nt_errstr(nt_status)));
5857                 talloc_destroy(mem_ctx);
5858                 return -1;
5859         };
5860
5861         nt_status = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
5862                                              &pipe_hnd);
5863         if (!NT_STATUS_IS_OK(nt_status)) {
5864                 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n",
5865                         nt_errstr(nt_status) ));
5866                 cli_shutdown(cli);
5867                 talloc_destroy(mem_ctx);
5868                 return -1;
5869         };
5870
5871         nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, false, SEC_RIGHTS_QUERY_VALUE,
5872                                         &connect_hnd);
5873         if (NT_STATUS_IS_ERR(nt_status)) {
5874                 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
5875                         nt_errstr(nt_status)));
5876                 cli_shutdown(cli);
5877                 talloc_destroy(mem_ctx);
5878                 return -1;
5879         };
5880
5881         /* query info level 5 to obtain sid of a domain being queried */
5882         nt_status = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
5883                                                &connect_hnd,
5884                                                LSA_POLICY_INFO_ACCOUNT_DOMAIN,
5885                                                &info);
5886
5887         if (NT_STATUS_IS_ERR(nt_status)) {
5888                 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
5889                         nt_errstr(nt_status)));
5890                 cli_shutdown(cli);
5891                 talloc_destroy(mem_ctx);
5892                 return -1;
5893         }
5894
5895         queried_dom_sid = info->account_domain.sid;
5896
5897         /*
5898          * Keep calling LsaEnumTrustdom over opened pipe until
5899          * the end of enumeration is reached
5900          */
5901
5902         d_printf("Vampire trusted domains:\n\n");
5903
5904         do {
5905                 nt_status = rpccli_lsa_EnumTrustDom(pipe_hnd, mem_ctx,
5906                                                     &connect_hnd,
5907                                                     &enum_ctx,
5908                                                     &dom_list,
5909                                                     (uint32_t)-1);
5910                 if (NT_STATUS_IS_ERR(nt_status)) {
5911                         DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
5912                                 nt_errstr(nt_status)));
5913                         cli_shutdown(cli);
5914                         talloc_destroy(mem_ctx);
5915                         return -1;
5916                 };
5917
5918                 for (i = 0; i < dom_list.count; i++) {
5919
5920                         print_trusted_domain(dom_list.domains[i].sid,
5921                                              dom_list.domains[i].name.string);
5922
5923                         nt_status = vampire_trusted_domain(pipe_hnd, mem_ctx, &connect_hnd, 
5924                                                            *dom_list.domains[i].sid,
5925                                                            dom_list.domains[i].name.string);
5926                         if (!NT_STATUS_IS_OK(nt_status)) {
5927                                 cli_shutdown(cli);
5928                                 talloc_destroy(mem_ctx);
5929                                 return -1;
5930                         }
5931                 };
5932
5933                 /*
5934                  * in case of no trusted domains say something rather
5935                  * than just display blank line
5936                  */
5937                 if (!dom_list.count) d_printf("none\n");
5938
5939         } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
5940
5941         /* close this connection before doing next one */
5942         nt_status = rpccli_lsa_Close(pipe_hnd, mem_ctx, &connect_hnd);
5943         if (NT_STATUS_IS_ERR(nt_status)) {
5944                 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
5945                         nt_errstr(nt_status)));
5946                 cli_shutdown(cli);
5947                 talloc_destroy(mem_ctx);
5948                 return -1;
5949         };
5950
5951         /* close lsarpc pipe and connection to IPC$ */
5952         cli_shutdown(cli);
5953
5954         talloc_destroy(mem_ctx);
5955         return 0;
5956 }
5957
5958 static int rpc_trustdom_list(struct net_context *c, int argc, const char **argv)
5959 {
5960         /* common variables */
5961         TALLOC_CTX* mem_ctx;
5962         struct cli_state *cli = NULL, *remote_cli = NULL;
5963         struct rpc_pipe_client *pipe_hnd = NULL;
5964         NTSTATUS nt_status;
5965         const char *domain_name = NULL;
5966         DOM_SID *queried_dom_sid;
5967         fstring padding;
5968         int ascii_dom_name_len;
5969         POLICY_HND connect_hnd;
5970         union lsa_PolicyInformation *info = NULL;
5971
5972         /* trusted domains listing variables */
5973         unsigned int num_domains, enum_ctx = 0;
5974         int i, pad_len, col_len = 20;
5975         struct lsa_DomainList dom_list;
5976         fstring pdc_name;
5977
5978         /* trusting domains listing variables */
5979         POLICY_HND domain_hnd;
5980         struct samr_SamArray *trusts = NULL;
5981
5982         if (c->display_usage) {
5983                 d_printf("Usage:\n"
5984                          "net rpc trustdom list\n"
5985                          "    List trust relationships\n");
5986                 return 0;
5987         }
5988
5989         /*
5990          * Listing trusted domains (stored in secrets.tdb, if local)
5991          */
5992
5993         mem_ctx = talloc_init("trust relationships listing");
5994
5995         /*
5996          * set domain and pdc name to local samba server (default)
5997          * or to remote one given in command line
5998          */
5999
6000         if (StrCaseCmp(c->opt_workgroup, lp_workgroup())) {
6001                 domain_name = c->opt_workgroup;
6002                 c->opt_target_workgroup = c->opt_workgroup;
6003         } else {
6004                 fstrcpy(pdc_name, global_myname());
6005                 domain_name = talloc_strdup(mem_ctx, lp_workgroup());
6006                 c->opt_target_workgroup = domain_name;
6007         };
6008
6009         /* open \PIPE\lsarpc and open policy handle */
6010         nt_status = net_make_ipc_connection(c, NET_FLAGS_PDC, &cli);
6011         if (!NT_STATUS_IS_OK(nt_status)) {
6012                 DEBUG(0, ("Couldn't connect to domain controller: %s\n",
6013                           nt_errstr(nt_status)));
6014                 talloc_destroy(mem_ctx);
6015                 return -1;
6016         };
6017
6018         nt_status = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
6019                                              &pipe_hnd);
6020         if (!NT_STATUS_IS_OK(nt_status)) {
6021                 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n",
6022                         nt_errstr(nt_status) ));
6023                 cli_shutdown(cli);
6024                 talloc_destroy(mem_ctx);
6025                 return -1;
6026         };
6027
6028         nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, false, SEC_RIGHTS_QUERY_VALUE,
6029                                         &connect_hnd);
6030         if (NT_STATUS_IS_ERR(nt_status)) {
6031                 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
6032                         nt_errstr(nt_status)));
6033                 cli_shutdown(cli);
6034                 talloc_destroy(mem_ctx);
6035                 return -1;
6036         };
6037         
6038         /* query info level 5 to obtain sid of a domain being queried */
6039         nt_status = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
6040                                                &connect_hnd,
6041                                                LSA_POLICY_INFO_ACCOUNT_DOMAIN,
6042                                                &info);
6043
6044         if (NT_STATUS_IS_ERR(nt_status)) {
6045                 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6046                         nt_errstr(nt_status)));
6047                 cli_shutdown(cli);
6048                 talloc_destroy(mem_ctx);
6049                 return -1;
6050         }
6051
6052         queried_dom_sid = info->account_domain.sid;
6053
6054         /*
6055          * Keep calling LsaEnumTrustdom over opened pipe until
6056          * the end of enumeration is reached
6057          */
6058          
6059         d_printf("Trusted domains list:\n\n");
6060
6061         do {
6062                 nt_status = rpccli_lsa_EnumTrustDom(pipe_hnd, mem_ctx,
6063                                                     &connect_hnd,
6064                                                     &enum_ctx,
6065                                                     &dom_list,
6066                                                     (uint32_t)-1);
6067                 if (NT_STATUS_IS_ERR(nt_status)) {
6068                         DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
6069                                 nt_errstr(nt_status)));
6070                         cli_shutdown(cli);
6071                         talloc_destroy(mem_ctx);
6072                         return -1;
6073                 };
6074
6075                 for (i = 0; i < dom_list.count; i++) {
6076                         print_trusted_domain(dom_list.domains[i].sid,
6077                                              dom_list.domains[i].name.string);
6078                 };
6079
6080                 /*
6081                  * in case of no trusted domains say something rather
6082                  * than just display blank line
6083                  */
6084                 if (!dom_list.count) d_printf("none\n");
6085
6086         } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
6087
6088         /* close this connection before doing next one */
6089         nt_status = rpccli_lsa_Close(pipe_hnd, mem_ctx, &connect_hnd);
6090         if (NT_STATUS_IS_ERR(nt_status)) {
6091                 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
6092                         nt_errstr(nt_status)));
6093                 cli_shutdown(cli);
6094                 talloc_destroy(mem_ctx);
6095                 return -1;
6096         };
6097         
6098         TALLOC_FREE(pipe_hnd);
6099
6100         /*
6101          * Listing trusting domains (stored in passdb backend, if local)
6102          */
6103         
6104         d_printf("\nTrusting domains list:\n\n");
6105
6106         /*
6107          * Open \PIPE\samr and get needed policy handles
6108          */
6109         nt_status = cli_rpc_pipe_open_noauth(cli, &ndr_table_samr.syntax_id,
6110                                              &pipe_hnd);
6111         if (!NT_STATUS_IS_OK(nt_status)) {
6112                 DEBUG(0, ("Could not initialise samr pipe. Error was %s\n", nt_errstr(nt_status)));
6113                 cli_shutdown(cli);
6114                 talloc_destroy(mem_ctx);
6115                 return -1;
6116         };
6117
6118         /* SamrConnect2 */
6119         nt_status = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
6120                                          pipe_hnd->desthost,
6121                                          SAMR_ACCESS_OPEN_DOMAIN,
6122                                          &connect_hnd);
6123         if (!NT_STATUS_IS_OK(nt_status)) {
6124                 DEBUG(0, ("Couldn't open SAMR policy handle. Error was %s\n",
6125                         nt_errstr(nt_status)));
6126                 cli_shutdown(cli);
6127                 talloc_destroy(mem_ctx);
6128                 return -1;
6129         };
6130
6131         /* SamrOpenDomain - we have to open domain policy handle in order to be
6132            able to enumerate accounts*/
6133         nt_status = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
6134                                            &connect_hnd,
6135                                            SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS,
6136                                            queried_dom_sid,
6137                                            &domain_hnd);
6138         if (!NT_STATUS_IS_OK(nt_status)) {
6139                 DEBUG(0, ("Couldn't open domain object. Error was %s\n",
6140                         nt_errstr(nt_status)));
6141                 cli_shutdown(cli);
6142                 talloc_destroy(mem_ctx);
6143                 return -1;
6144         };
6145
6146         /*
6147          * perform actual enumeration
6148          */
6149
6150         enum_ctx = 0;   /* reset enumeration context from last enumeration */
6151         do {
6152
6153                 nt_status = rpccli_samr_EnumDomainUsers(pipe_hnd, mem_ctx,
6154                                                         &domain_hnd,
6155                                                         &enum_ctx,
6156                                                         ACB_DOMTRUST,
6157                                                         &trusts,
6158                                                         0xffff,
6159                                                         &num_domains);
6160                 if (NT_STATUS_IS_ERR(nt_status)) {
6161                         DEBUG(0, ("Couldn't enumerate accounts. Error was: %s\n",
6162                                 nt_errstr(nt_status)));
6163                         cli_shutdown(cli);
6164                         talloc_destroy(mem_ctx);
6165                         return -1;
6166                 };
6167
6168                 for (i = 0; i < num_domains; i++) {
6169
6170                         char *str = CONST_DISCARD(char *, trusts->entries[i].name.string);
6171
6172                         /*
6173                          * get each single domain's sid (do we _really_ need this ?):
6174                          *  1) connect to domain's pdc
6175                          *  2) query the pdc for domain's sid
6176                          */
6177
6178                         /* get rid of '$' tail */
6179                         ascii_dom_name_len = strlen(str);
6180                         if (ascii_dom_name_len && ascii_dom_name_len < FSTRING_LEN)
6181                                 str[ascii_dom_name_len - 1] = '\0';
6182
6183                         /* calculate padding space for d_printf to look nicer */
6184                         pad_len = col_len - strlen(str);
6185                         padding[pad_len] = 0;
6186                         do padding[--pad_len] = ' '; while (pad_len);
6187
6188                         /* set opt_* variables to remote domain */
6189                         strupper_m(str);
6190                         c->opt_workgroup = talloc_strdup(mem_ctx, str);
6191                         c->opt_target_workgroup = c->opt_workgroup;
6192
6193                         d_printf("%s%s", str, padding);
6194
6195                         /* connect to remote domain controller */
6196                         nt_status = net_make_ipc_connection(c,
6197                                         NET_FLAGS_PDC | NET_FLAGS_ANONYMOUS,
6198                                         &remote_cli);
6199                         if (NT_STATUS_IS_OK(nt_status)) {
6200                                 /* query for domain's sid */
6201                                 if (run_rpc_command(
6202                                             c, remote_cli,
6203                                             &ndr_table_lsarpc.syntax_id, 0,
6204                                             rpc_query_domain_sid, argc,
6205                                             argv))
6206                                         d_fprintf(stderr, "couldn't get domain's sid\n");
6207
6208                                 cli_shutdown(remote_cli);
6209
6210                         } else {
6211                                 d_fprintf(stderr, "domain controller is not "
6212                                           "responding: %s\n",
6213                                           nt_errstr(nt_status));
6214                         };
6215                 };
6216
6217                 if (!num_domains) d_printf("none\n");
6218
6219         } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
6220
6221         /* close opened samr and domain policy handles */
6222         nt_status = rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_hnd);
6223         if (!NT_STATUS_IS_OK(nt_status)) {
6224                 DEBUG(0, ("Couldn't properly close domain policy handle for domain %s\n", domain_name));
6225         };
6226
6227         nt_status = rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_hnd);
6228         if (!NT_STATUS_IS_OK(nt_status)) {
6229                 DEBUG(0, ("Couldn't properly close samr policy handle for domain %s\n", domain_name));
6230         };
6231
6232         /* close samr pipe and connection to IPC$ */
6233         cli_shutdown(cli);
6234
6235         talloc_destroy(mem_ctx);
6236         return 0;
6237 }
6238
6239 /**
6240  * Entrypoint for 'net rpc trustdom' code.
6241  *
6242  * @param argc Standard argc.
6243  * @param argv Standard argv without initial components.
6244  *
6245  * @return Integer status (0 means success).
6246  */
6247
6248 static int rpc_trustdom(struct net_context *c, int argc, const char **argv)
6249 {
6250         struct functable func[] = {
6251                 {
6252                         "add",
6253                         rpc_trustdom_add,
6254                         NET_TRANSPORT_RPC,
6255                         "Add trusted domain's account",
6256                         "net rpc trustdom add\n"
6257                         "    Add trusted domain's account"
6258                 },
6259                 {
6260                         "del",
6261                         rpc_trustdom_del,
6262                         NET_TRANSPORT_RPC,
6263                         "Remove trusted domain's account",
6264                         "net rpc trustdom del\n"
6265                         "    Remove trusted domain's account"
6266                 },
6267                 {
6268                         "establish",
6269                         rpc_trustdom_establish,
6270                         NET_TRANSPORT_RPC,
6271                         "Establish trust relationship",
6272                         "net rpc trustdom establish\n"
6273                         "    Establish trust relationship"
6274                 },
6275                 {
6276                         "revoke",
6277                         rpc_trustdom_revoke,
6278                         NET_TRANSPORT_RPC,
6279                         "Revoke trust relationship",
6280                         "net rpc trustdom revoke\n"
6281                         "    Revoke trust relationship"
6282                 },
6283                 {
6284                         "list",
6285                         rpc_trustdom_list,
6286                         NET_TRANSPORT_RPC,
6287                         "List domain trusts",
6288                         "net rpc trustdom list\n"
6289                         "    List domain trusts"
6290                 },
6291                 {
6292                         "vampire",
6293                         rpc_trustdom_vampire,
6294                         NET_TRANSPORT_RPC,
6295                         "Vampire trusts from remote server",
6296                         "net rpc trustdom vampire\n"
6297                         "    Vampire trusts from remote server"
6298                 },
6299                 {NULL, NULL, 0, NULL, NULL}
6300         };
6301
6302         return net_run_function(c, argc, argv, "net rpc trustdom", func);
6303 }
6304
6305 /**
6306  * Check if a server will take rpc commands
6307  * @param flags Type of server to connect to (PDC, DMB, localhost)
6308  *              if the host is not explicitly specified
6309  * @return  bool (true means rpc supported)
6310  */
6311 bool net_rpc_check(struct net_context *c, unsigned flags)
6312 {
6313         struct cli_state *cli;
6314         bool ret = false;
6315         struct sockaddr_storage server_ss;
6316         char *server_name = NULL;
6317         NTSTATUS status;
6318
6319         /* flags (i.e. server type) may depend on command */
6320         if (!net_find_server(c, NULL, flags, &server_ss, &server_name))
6321                 return false;
6322
6323         if ((cli = cli_initialise()) == NULL) {
6324                 return false;
6325         }
6326
6327         status = cli_connect(cli, server_name, &server_ss);
6328         if (!NT_STATUS_IS_OK(status))
6329                 goto done;
6330         if (!attempt_netbios_session_request(&cli, global_myname(),
6331                                              server_name, &server_ss))
6332                 goto done;
6333         if (!cli_negprot(cli))
6334                 goto done;
6335         if (cli->protocol < PROTOCOL_NT1)
6336                 goto done;
6337
6338         ret = true;
6339  done:
6340         cli_shutdown(cli);
6341         return ret;
6342 }
6343
6344 /* dump sam database via samsync rpc calls */
6345 static int rpc_samdump(struct net_context *c, int argc, const char **argv) {
6346         if (c->display_usage) {
6347                 d_printf("Usage:\n"
6348                          "net rpc samdump\n"
6349                          "    Dump remote SAM database\n");
6350                 return 0;
6351         }
6352
6353         return run_rpc_command(c, NULL, &ndr_table_netlogon.syntax_id,
6354                                NET_FLAGS_ANONYMOUS,
6355                                rpc_samdump_internals, argc, argv);
6356 }
6357
6358 /* syncronise sam database via samsync rpc calls */
6359 static int rpc_vampire(struct net_context *c, int argc, const char **argv)
6360 {
6361         struct functable func[] = {
6362                 {
6363                         "ldif",
6364                         rpc_vampire_ldif,
6365                         NET_TRANSPORT_RPC,
6366                         "Dump remote SAM database to ldif",
6367                         "net rpc vampire ldif\n"
6368                         "    Dump remote SAM database to LDIF file or stdout"
6369                 },
6370                 {
6371                         "keytab",
6372                         rpc_vampire_keytab,
6373                         NET_TRANSPORT_RPC,
6374                         "Dump remote SAM database to Kerberos Keytab",
6375                         "net rpc vampire keytab\n"
6376                         "    Dump remote SAM database to Kerberos keytab file"
6377                 },
6378                 {
6379                         "passdb",
6380                         rpc_vampire_passdb,
6381                         NET_TRANSPORT_RPC,
6382                         "Dump remote SAM database to passdb",
6383                         "net rpc vampire passdb\n"
6384                         "    Dump remote SAM database to passdb"
6385                 },
6386
6387                 {NULL, NULL, 0, NULL, NULL}
6388         };
6389
6390         if (argc == 0) {
6391                 if (c->display_usage) {
6392                         d_printf("Usage:\n"
6393                                  "net rpc vampire\n"
6394                                  "    Vampire remote SAM database\n");
6395                         return 0;
6396                 }
6397
6398                 return run_rpc_command(c, NULL, &ndr_table_netlogon.syntax_id,
6399                                        NET_FLAGS_ANONYMOUS,
6400                                        rpc_vampire_internals,
6401                                        argc, argv);
6402         }
6403
6404         return net_run_function(c, argc, argv, "net rpc vampire", func);
6405 }
6406
6407 /**
6408  * Migrate everything from a print server.
6409  *
6410  * @param c     A net_context structure.
6411  * @param argc  Standard main() style argc.
6412  * @param argv  Standard main() style argv. Initial components are already
6413  *              stripped.
6414  *
6415  * @return A shell status integer (0 for success).
6416  *
6417  * The order is important !
6418  * To successfully add drivers the print queues have to exist !
6419  * Applying ACLs should be the last step, because you're easily locked out.
6420  *
6421  **/
6422 static int rpc_printer_migrate_all(struct net_context *c, int argc,
6423                                    const char **argv)
6424 {
6425         int ret;
6426
6427         if (c->display_usage) {
6428                 d_printf("Usage:\n"
6429                          "net rpc printer migrate all\n"
6430                          "    Migrate everything from a print server\n");
6431                 return 0;
6432         }
6433
6434         if (!c->opt_host) {
6435                 d_printf("no server to migrate\n");
6436                 return -1;
6437         }
6438
6439         ret = run_rpc_command(c, NULL, &syntax_spoolss, 0,
6440                               rpc_printer_migrate_printers_internals, argc,
6441                               argv);
6442         if (ret)
6443                 return ret;
6444
6445         ret = run_rpc_command(c, NULL, &syntax_spoolss, 0,
6446                               rpc_printer_migrate_drivers_internals, argc,
6447                               argv);
6448         if (ret)
6449                 return ret;
6450
6451         ret = run_rpc_command(c, NULL, &syntax_spoolss, 0,
6452                               rpc_printer_migrate_forms_internals, argc, argv);
6453         if (ret)
6454                 return ret;
6455
6456         ret = run_rpc_command(c, NULL, &syntax_spoolss, 0,
6457                               rpc_printer_migrate_settings_internals, argc,
6458                               argv);
6459         if (ret)
6460                 return ret;
6461
6462         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6463                                rpc_printer_migrate_security_internals, argc,
6464                                argv);
6465
6466 }
6467
6468 /**
6469  * Migrate print drivers from a print server.
6470  *
6471  * @param c     A net_context structure.
6472  * @param argc  Standard main() style argc.
6473  * @param argv  Standard main() style argv. Initial components are already
6474  *              stripped.
6475  *
6476  * @return A shell status integer (0 for success).
6477  **/
6478 static int rpc_printer_migrate_drivers(struct net_context *c, int argc,
6479                                        const char **argv)
6480 {
6481         if (c->display_usage) {
6482                 d_printf("Usage:\n"
6483                          "net rpc printer migrate drivers\n"
6484                          "     Migrate print-drivers from a print-server\n");
6485                 return 0;
6486         }
6487
6488         if (!c->opt_host) {
6489                 d_printf("no server to migrate\n");
6490                 return -1;
6491         }
6492
6493         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6494                                rpc_printer_migrate_drivers_internals,
6495                                argc, argv);
6496 }
6497
6498 /**
6499  * Migrate print-forms from a print-server.
6500  *
6501  * @param c     A net_context structure.
6502  * @param argc  Standard main() style argc.
6503  * @param argv  Standard main() style argv. Initial components are already
6504  *              stripped.
6505  *
6506  * @return A shell status integer (0 for success).
6507  **/
6508 static int rpc_printer_migrate_forms(struct net_context *c, int argc,
6509                                      const char **argv)
6510 {
6511         if (c->display_usage) {
6512                 d_printf("Usage:\n"
6513                          "net rpc printer migrate forms\n"
6514                          "    Migrate print-forms from a print-server\n");
6515                 return 0;
6516         }
6517
6518         if (!c->opt_host) {
6519                 d_printf("no server to migrate\n");
6520                 return -1;
6521         }
6522
6523         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6524                                rpc_printer_migrate_forms_internals,
6525                                argc, argv);
6526 }
6527
6528 /**
6529  * Migrate printers from a print-server.
6530  *
6531  * @param c     A net_context structure.
6532  * @param argc  Standard main() style argc.
6533  * @param argv  Standard main() style argv. Initial components are already
6534  *              stripped.
6535  *
6536  * @return A shell status integer (0 for success).
6537  **/
6538 static int rpc_printer_migrate_printers(struct net_context *c, int argc,
6539                                         const char **argv)
6540 {
6541         if (c->display_usage) {
6542                 d_printf("Usage:\n"
6543                          "net rpc printer migrate printers\n"
6544                          "    Migrate printers from a print-server\n");
6545                 return 0;
6546         }
6547
6548         if (!c->opt_host) {
6549                 d_printf("no server to migrate\n");
6550                 return -1;
6551         }
6552
6553         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6554                                rpc_printer_migrate_printers_internals,
6555                                argc, argv);
6556 }
6557
6558 /**
6559  * Migrate printer-ACLs from a print-server
6560  *
6561  * @param c     A net_context structure.
6562  * @param argc  Standard main() style argc.
6563  * @param argv  Standard main() style argv. Initial components are already
6564  *              stripped.
6565  *
6566  * @return A shell status integer (0 for success).
6567  **/
6568 static int rpc_printer_migrate_security(struct net_context *c, int argc,
6569                                         const char **argv)
6570 {
6571         if (c->display_usage) {
6572                 d_printf("Usage:\n"
6573                          "net rpc printer migrate security\n"
6574                          "    Migrate printer-ACLs from a print-server\n");
6575                 return 0;
6576         }
6577
6578         if (!c->opt_host) {
6579                 d_printf("no server to migrate\n");
6580                 return -1;
6581         }
6582
6583         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6584                                rpc_printer_migrate_security_internals,
6585                                argc, argv);
6586 }
6587
6588 /**
6589  * Migrate printer-settings from a print-server.
6590  *
6591  * @param c     A net_context structure.
6592  * @param argc  Standard main() style argc.
6593  * @param argv  Standard main() style argv. Initial components are already
6594  *              stripped.
6595  *
6596  * @return A shell status integer (0 for success).
6597  **/
6598 static int rpc_printer_migrate_settings(struct net_context *c, int argc,
6599                                         const char **argv)
6600 {
6601         if (c->display_usage) {
6602                 d_printf("Usage:\n"
6603                          "net rpc printer migrate settings\n"
6604                          "    Migrate printer-settings from a print-server\n");
6605                 return 0;
6606         }
6607
6608         if (!c->opt_host) {
6609                 d_printf("no server to migrate\n");
6610                 return -1;
6611         }
6612
6613         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6614                                rpc_printer_migrate_settings_internals,
6615                                argc, argv);
6616 }
6617
6618 /**
6619  * 'net rpc printer' entrypoint.
6620  *
6621  * @param c     A net_context structure.
6622  * @param argc  Standard main() style argc.
6623  * @param argv  Standard main() style argv. Initial components are already
6624  *              stripped.
6625  **/
6626
6627 int rpc_printer_migrate(struct net_context *c, int argc, const char **argv)
6628 {
6629
6630         /* ouch: when addriver and setdriver are called from within
6631            rpc_printer_migrate_drivers_internals, the printer-queue already
6632            *has* to exist */
6633
6634         struct functable func[] = {
6635                 {
6636                         "all",
6637                         rpc_printer_migrate_all,
6638                         NET_TRANSPORT_RPC,
6639                         "Migrate all from remote to local print server",
6640                         "net rpc printer migrate all\n"
6641                         "    Migrate all from remote to local print server"
6642                 },
6643                 {
6644                         "drivers",
6645                         rpc_printer_migrate_drivers,
6646                         NET_TRANSPORT_RPC,
6647                         "Migrate drivers to local server",
6648                         "net rpc printer migrate drivers\n"
6649                         "    Migrate drivers to local server"
6650                 },
6651                 {
6652                         "forms",
6653                         rpc_printer_migrate_forms,
6654                         NET_TRANSPORT_RPC,
6655                         "Migrate froms to local server",
6656                         "net rpc printer migrate forms\n"
6657                         "    Migrate froms to local server"
6658                 },
6659                 {
6660                         "printers",
6661                         rpc_printer_migrate_printers,
6662                         NET_TRANSPORT_RPC,
6663                         "Migrate printers to local server",
6664                         "net rpc printer migrate printers\n"
6665                         "    Migrate printers to local server"
6666                 },
6667                 {
6668                         "security",
6669                         rpc_printer_migrate_security,
6670                         NET_TRANSPORT_RPC,
6671                         "Mirgate printer ACLs to local server",
6672                         "net rpc printer migrate security\n"
6673                         "    Mirgate printer ACLs to local server"
6674                 },
6675                 {
6676                         "settings",
6677                         rpc_printer_migrate_settings,
6678                         NET_TRANSPORT_RPC,
6679                         "Migrate printer settings to local server",
6680                         "net rpc printer migrate settings\n"
6681                         "    Migrate printer settings to local server"
6682                 },
6683                 {NULL, NULL, 0, NULL, NULL}
6684         };
6685
6686         return net_run_function(c, argc, argv, "net rpc printer migrate",func);
6687 }
6688
6689
6690 /**
6691  * List printers on a remote RPC server.
6692  *
6693  * @param c     A net_context structure.
6694  * @param argc  Standard main() style argc.
6695  * @param argv  Standard main() style argv. Initial components are already
6696  *              stripped.
6697  *
6698  * @return A shell status integer (0 for success).
6699  **/
6700 static int rpc_printer_list(struct net_context *c, int argc, const char **argv)
6701 {
6702         if (c->display_usage) {
6703                 d_printf("Usage:\n"
6704                          "net rpc printer list\n"
6705                          "    List printers on a remote RPC server\n");
6706                 return 0;
6707         }
6708
6709         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6710                                rpc_printer_list_internals,
6711                                argc, argv);
6712 }
6713
6714 /**
6715  * List printer-drivers on a remote RPC server.
6716  *
6717  * @param c     A net_context structure.
6718  * @param argc  Standard main() style argc.
6719  * @param argv  Standard main() style argv. Initial components are already
6720  *              stripped.
6721  *
6722  * @return A shell status integer (0 for success).
6723  **/
6724 static int rpc_printer_driver_list(struct net_context *c, int argc,
6725                                    const char **argv)
6726 {
6727         if (c->display_usage) {
6728                 d_printf("Usage:\n"
6729                          "net rpc printer driver\n"
6730                          "    List printer-drivers on a remote RPC server\n");
6731                 return 0;
6732         }
6733
6734         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6735                                rpc_printer_driver_list_internals,
6736                                argc, argv);
6737 }
6738
6739 /**
6740  * Publish printer in ADS via MSRPC.
6741  *
6742  * @param c     A net_context structure.
6743  * @param argc  Standard main() style argc.
6744  * @param argv  Standard main() style argv. Initial components are already
6745  *              stripped.
6746  *
6747  * @return A shell status integer (0 for success).
6748  **/
6749 static int rpc_printer_publish_publish(struct net_context *c, int argc,
6750                                        const char **argv)
6751 {
6752         if (c->display_usage) {
6753                 d_printf("Usage:\n"
6754                          "net rpc printer publish publish\n"
6755                          "     Publish printer in ADS via MSRPC\n");
6756                 return 0;
6757         }
6758
6759         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6760                                rpc_printer_publish_publish_internals,
6761                                argc, argv);
6762 }
6763
6764 /**
6765  * Update printer in ADS via MSRPC.
6766  *
6767  * @param c     A net_context structure.
6768  * @param argc  Standard main() style argc.
6769  * @param argv  Standard main() style argv. Initial components are already
6770  *              stripped.
6771  *
6772  * @return A shell status integer (0 for success).
6773  **/
6774 static int rpc_printer_publish_update(struct net_context *c, int argc, const char **argv)
6775 {
6776         if (c->display_usage) {
6777                 d_printf("Usage:\n"
6778                          "net rpc printer publish update\n"
6779                          "    Update printer in ADS via MSRPC\n");
6780                 return 0;
6781         }
6782
6783         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6784                                rpc_printer_publish_update_internals,
6785                                argc, argv);
6786 }
6787
6788 /**
6789  * UnPublish printer in ADS via MSRPC.
6790  *
6791  * @param c     A net_context structure.
6792  * @param argc  Standard main() style argc.
6793  * @param argv  Standard main() style argv. Initial components are already
6794  *              stripped.
6795  *
6796  * @return A shell status integer (0 for success).
6797  **/
6798 static int rpc_printer_publish_unpublish(struct net_context *c, int argc,
6799                                          const char **argv)
6800 {
6801         if (c->display_usage) {
6802                 d_printf("Usage:\n"
6803                          "net rpc printer publish unpublish\n"
6804                          "    UnPublish printer in ADS via MSRPC\n");
6805                 return 0;
6806         }
6807
6808         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6809                                rpc_printer_publish_unpublish_internals,
6810                                argc, argv);
6811 }
6812
6813 /**
6814  * List published printers via MSRPC.
6815  *
6816  * @param c     A net_context structure.
6817  * @param argc  Standard main() style argc.
6818  * @param argv  Standard main() style argv. Initial components are already
6819  *              stripped.
6820  *
6821  * @return A shell status integer (0 for success).
6822  **/
6823 static int rpc_printer_publish_list(struct net_context *c, int argc,
6824                                     const char **argv)
6825 {
6826         if (c->display_usage) {
6827                 d_printf("Usage:\n"
6828                          "net rpc printer publish list\n"
6829                          "    List published printers via MSRPC\n");
6830                 return 0;
6831         }
6832
6833         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6834                                rpc_printer_publish_list_internals,
6835                                argc, argv);
6836 }
6837
6838
6839 /**
6840  * Publish printer in ADS.
6841  *
6842  * @param c     A net_context structure.
6843  * @param argc  Standard main() style argc.
6844  * @param argv  Standard main() style argv. Initial components are already
6845  *              stripped.
6846  *
6847  * @return A shell status integer (0 for success).
6848  **/
6849 static int rpc_printer_publish(struct net_context *c, int argc,
6850                                const char **argv)
6851 {
6852
6853         struct functable func[] = {
6854                 {
6855                         "publish",
6856                         rpc_printer_publish_publish,
6857                         NET_TRANSPORT_RPC,
6858                         "Publish printer in AD",
6859                         "net rpc printer publish publish\n"
6860                         "    Publish printer in AD"
6861                 },
6862                 {
6863                         "update",
6864                         rpc_printer_publish_update,
6865                         NET_TRANSPORT_RPC,
6866                         "Update printer in AD",
6867                         "net rpc printer publish update\n"
6868                         "    Update printer in AD"
6869                 },
6870                 {
6871                         "unpublish",
6872                         rpc_printer_publish_unpublish,
6873                         NET_TRANSPORT_RPC,
6874                         "Unpublish printer",
6875                         "net rpc printer publish unpublish\n"
6876                         "    Unpublish printer"
6877                 },
6878                 {
6879                         "list",
6880                         rpc_printer_publish_list,
6881                         NET_TRANSPORT_RPC,
6882                         "List published printers",
6883                         "net rpc printer publish list\n"
6884                         "    List published printers"
6885                 },
6886                 {NULL, NULL, 0, NULL, NULL}
6887         };
6888
6889         if (argc == 0) {
6890                 if (c->display_usage) {
6891                         d_printf("Usage:\n");
6892                         d_printf("net rpc printer publish\n"
6893                                  "    List published printers\n"
6894                                  "    Alias of net rpc printer publish list\n");
6895                         net_display_usage_from_functable(func);
6896                         return 0;
6897                 }
6898                 return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6899                                rpc_printer_publish_list_internals,
6900                                argc, argv);
6901         }
6902
6903         return net_run_function(c, argc, argv, "net rpc printer publish",func);
6904
6905 }
6906
6907
6908 /**
6909  * Display rpc printer help page.
6910  *
6911  * @param c     A net_context structure.
6912  * @param argc  Standard main() style argc.
6913  * @param argv  Standard main() style argv. Initial components are already
6914  *              stripped.
6915  **/
6916 int rpc_printer_usage(struct net_context *c, int argc, const char **argv)
6917 {
6918         d_printf("net rpc printer LIST [printer] [misc. options] [targets]\n"
6919                  "\tlists all printers on print-server\n\n");
6920         d_printf("net rpc printer DRIVER [printer] [misc. options] [targets]\n"
6921                  "\tlists all printer-drivers on print-server\n\n");
6922         d_printf("net rpc printer PUBLISH action [printer] [misc. options] [targets]\n"
6923                  "\tpublishes printer settings in Active Directory\n"
6924                  "\taction can be one of PUBLISH, UPDATE, UNPUBLISH or LIST\n\n");
6925         d_printf("net rpc printer MIGRATE PRINTERS [printer] [misc. options] [targets]"
6926                  "\n\tmigrates printers from remote to local server\n\n");
6927         d_printf("net rpc printer MIGRATE SETTINGS [printer] [misc. options] [targets]"
6928                  "\n\tmigrates printer-settings from remote to local server\n\n");
6929         d_printf("net rpc printer MIGRATE DRIVERS [printer] [misc. options] [targets]"
6930                  "\n\tmigrates printer-drivers from remote to local server\n\n");
6931         d_printf("net rpc printer MIGRATE FORMS [printer] [misc. options] [targets]"
6932                  "\n\tmigrates printer-forms from remote to local server\n\n");
6933         d_printf("net rpc printer MIGRATE SECURITY [printer] [misc. options] [targets]"
6934                  "\n\tmigrates printer-ACLs from remote to local server\n\n");
6935         d_printf("net rpc printer MIGRATE ALL [printer] [misc. options] [targets]"
6936                  "\n\tmigrates drivers, forms, queues, settings and acls from\n"
6937                  "\tremote to local print-server\n\n");
6938         net_common_methods_usage(c, argc, argv);
6939         net_common_flags_usage(c, argc, argv);
6940         d_printf(
6941          "\t-v or --verbose\t\t\tgive verbose output\n"
6942          "\t      --destination\t\tmigration target server (default: localhost)\n");
6943
6944         return -1;
6945 }
6946
6947 /**
6948  * 'net rpc printer' entrypoint.
6949  *
6950  * @param c     A net_context structure.
6951  * @param argc  Standard main() style argc.
6952  * @param argv  Standard main() style argv. Initial components are already
6953  *              stripped.
6954  **/
6955 int net_rpc_printer(struct net_context *c, int argc, const char **argv)
6956 {
6957         struct functable func[] = {
6958                 {
6959                         "list",
6960                         rpc_printer_list,
6961                         NET_TRANSPORT_RPC,
6962                         "List all printers on print server",
6963                         "net rpc printer list\n"
6964                         "    List all printers on print server"
6965                 },
6966                 {
6967                         "migrate",
6968                         rpc_printer_migrate,
6969                         NET_TRANSPORT_RPC,
6970                         "Migrate printer to local server",
6971                         "net rpc printer migrate\n"
6972                         "    Migrate printer to local server"
6973                 },
6974                 {
6975                         "driver",
6976                         rpc_printer_driver_list,
6977                         NET_TRANSPORT_RPC,
6978                         "List printer drivers",
6979                         "net rpc printer driver\n"
6980                         "    List printer drivers"
6981                 },
6982                 {
6983                         "publish",
6984                         rpc_printer_publish,
6985                         NET_TRANSPORT_RPC,
6986                         "Publish printer in AD",
6987                         "net rpc printer publish\n"
6988                         "    Publish printer in AD"
6989                 },
6990                 {NULL, NULL, 0, NULL, NULL}
6991         };
6992
6993         if (argc == 0) {
6994                 if (c->display_usage) {
6995                         d_printf("Usage:\n");
6996                         d_printf("net rpc printer\n"
6997                                  "    List printers\n");
6998                         net_display_usage_from_functable(func);
6999                         return 0;
7000                 }
7001                 return run_rpc_command(c, NULL, &syntax_spoolss, 0,
7002                                rpc_printer_list_internals,
7003                                argc, argv);
7004         }
7005
7006         return net_run_function(c, argc, argv, "net rpc printer", func);
7007 }
7008
7009 /**
7010  * 'net rpc' entrypoint.
7011  *
7012  * @param c     A net_context structure.
7013  * @param argc  Standard main() style argc.
7014  * @param argv  Standard main() style argv. Initial components are already
7015  *              stripped.
7016  **/
7017
7018 int net_rpc(struct net_context *c, int argc, const char **argv)
7019 {
7020         struct functable func[] = {
7021                 {
7022                         "audit",
7023                         net_rpc_audit,
7024                         NET_TRANSPORT_RPC,
7025                         "Modify global audit settings",
7026                         "net rpc audit\n"
7027                         "    Modify global audit settings"
7028                 },
7029                 {
7030                         "info",
7031                         net_rpc_info,
7032                         NET_TRANSPORT_RPC,
7033                         "Show basic info about a domain",
7034                         "net rpc info\n"
7035                         "    Show basic info about a domain"
7036                 },
7037                 {
7038                         "join",
7039                         net_rpc_join,
7040                         NET_TRANSPORT_RPC,
7041                         "Join a domain",
7042                         "net rpc join\n"
7043                         "    Join a domain"
7044                 },
7045                 {
7046                         "oldjoin",
7047                         net_rpc_oldjoin,
7048                         NET_TRANSPORT_RPC,
7049                         "Join a domain created in server manager",
7050                         "net rpc oldjoin\n"
7051                         "    Join a domain created in server manager"
7052                 },
7053                 {
7054                         "testjoin",
7055                         net_rpc_testjoin,
7056                         NET_TRANSPORT_RPC,
7057                         "Test that a join is valid",
7058                         "net rpc testjoin\n"
7059                         "    Test that a join is valid"
7060                 },
7061                 {
7062                         "user",
7063                         net_rpc_user,
7064                         NET_TRANSPORT_RPC,
7065                         "List/modify users",
7066                         "net rpc user\n"
7067                         "    List/modify users"
7068                 },
7069                 {
7070                         "password",
7071                         rpc_user_password,
7072                         NET_TRANSPORT_RPC,
7073                         "Change a user password",
7074                         "net rpc password\n"
7075                         "    Change a user password\n"
7076                         "    Alias for net rpc user password"
7077                 },
7078                 {
7079                         "group",
7080                         net_rpc_group,
7081                         NET_TRANSPORT_RPC,
7082                         "List/modify groups",
7083                         "net rpc group\n"
7084                         "    List/modify groups"
7085                 },
7086                 {
7087                         "share",
7088                         net_rpc_share,
7089                         NET_TRANSPORT_RPC,
7090                         "List/modify shares",
7091                         "net rpc share\n"
7092                         "    List/modify shares"
7093                 },
7094                 {
7095                         "file",
7096                         net_rpc_file,
7097                         NET_TRANSPORT_RPC,
7098                         "List open files",
7099                         "net rpc file\n"
7100                         "    List open files"
7101                 },
7102                 {
7103                         "printer",
7104                         net_rpc_printer,
7105                         NET_TRANSPORT_RPC,
7106                         "List/modify printers",
7107                         "net rpc printer\n"
7108                         "    List/modify printers"
7109                 },
7110                 {
7111                         "changetrustpw",
7112                         net_rpc_changetrustpw,
7113                         NET_TRANSPORT_RPC,
7114                         "Change trust account password",
7115                         "net rpc changetrustpw\n"
7116                         "    Change trust account password"
7117                 },
7118                 {
7119                         "trustdom",
7120                         rpc_trustdom,
7121                         NET_TRANSPORT_RPC,
7122                         "Modify domain trusts",
7123                         "net rpc trustdom\n"
7124                         "    Modify domain trusts"
7125                 },
7126                 {
7127                         "abortshutdown",
7128                         rpc_shutdown_abort,
7129                         NET_TRANSPORT_RPC,
7130                         "Abort a remote shutdown",
7131                         "net rpc abortshutdown\n"
7132                         "    Abort a remote shutdown"
7133                 },
7134                 {
7135                         "shutdown",
7136                         rpc_shutdown,
7137                         NET_TRANSPORT_RPC,
7138                         "Shutdown a remote server",
7139                         "net rpc shutdown\n"
7140                         "    Shutdown a remote server"
7141                 },
7142                 {
7143                         "samdump",
7144                         rpc_samdump,
7145                         NET_TRANSPORT_RPC,
7146                         "Dump SAM data of remote NT PDC",
7147                         "net rpc samdump\n"
7148                         "    Dump SAM data of remote NT PDC"
7149                 },
7150                 {
7151                         "vampire",
7152                         rpc_vampire,
7153                         NET_TRANSPORT_RPC,
7154                         "Sync a remote NT PDC's data into local passdb",
7155                         "net rpc vampire\n"
7156                         "    Sync a remote NT PDC's data into local passdb"
7157                 },
7158                 {
7159                         "getsid",
7160                         net_rpc_getsid,
7161                         NET_TRANSPORT_RPC,
7162                         "Fetch the domain sid into local secrets.tdb",
7163                         "net rpc getsid\n"
7164                         "    Fetch the domain sid into local secrets.tdb"
7165                 },
7166                 {
7167                         "rights",
7168                         net_rpc_rights,
7169                         NET_TRANSPORT_RPC,
7170                         "Manage privileges assigned to SID",
7171                         "net rpc rights\n"
7172                         "    Manage privileges assigned to SID"
7173                 },
7174                 {
7175                         "service",
7176                         net_rpc_service,
7177                         NET_TRANSPORT_RPC,
7178                         "Start/stop/query remote services",
7179                         "net rpc service\n"
7180                         "    Start/stop/query remote services"
7181                 },
7182                 {
7183                         "registry",
7184                         net_rpc_registry,
7185                         NET_TRANSPORT_RPC,
7186                         "Manage registry hives",
7187                         "net rpc registry\n"
7188                         "    Manage registry hives"
7189                 },
7190                 {
7191                         "shell",
7192                         net_rpc_shell,
7193                         NET_TRANSPORT_RPC,
7194                         "Open interactive shell on remote server",
7195                         "net rpc shell\n"
7196                         "    Open interactive shell on remote server"
7197                 },
7198                 {NULL, NULL, 0, NULL, NULL}
7199         };
7200         return net_run_function(c, argc, argv, "net rpc", func);
7201 }