net: use netapi for rpc_sh_share_add as well.
[metze/samba/wip.git] / source3 / 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  * All parameters are provided by the run_rpc_command function, except for
2850  * argc, argv which are passed through.
2851  *
2852  * @param domain_sid The domain sid acquired from the remote server.
2853  * @param cli A cli_state connected to the server.
2854  * @param mem_ctx Talloc context, destroyed on completion of the function.
2855  * @param argc  Standard main() style argc.
2856  * @param argv  Standard main() style argv. Initial components are already
2857  *              stripped.
2858  *
2859  * @return Normal NTSTATUS return.
2860  **/
2861 static NTSTATUS rpc_share_del_internals(struct net_context *c,
2862                                         const DOM_SID *domain_sid,
2863                                         const char *domain_name,
2864                                         struct cli_state *cli,
2865                                         struct rpc_pipe_client *pipe_hnd,
2866                                         TALLOC_CTX *mem_ctx,
2867                                         int argc,
2868                                         const char **argv)
2869 {
2870         WERROR result;
2871
2872         return rpccli_srvsvc_NetShareDel(pipe_hnd, mem_ctx,
2873                                          pipe_hnd->desthost,
2874                                          argv[0],
2875                                          0,
2876                                          &result);
2877 }
2878
2879 /**
2880  * Delete a share on a remote RPC server.
2881  *
2882  * @param domain_sid The domain sid acquired from the remote server.
2883  * @param argc  Standard main() style argc.
2884  * @param argv  Standard main() style argv. Initial components are already
2885  *              stripped.
2886  *
2887  * @return A shell status integer (0 for success).
2888  **/
2889 static int rpc_share_delete(struct net_context *c, int argc, const char **argv)
2890 {
2891         if (argc < 1 || c->display_usage) {
2892                 return rpc_share_usage(c, argc, argv);
2893         }
2894         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
2895                                rpc_share_del_internals,
2896                                argc, argv);
2897 }
2898
2899 /**
2900  * Formatted print of share info
2901  *
2902  * @param info1  pointer to SRV_SHARE_INFO_1 to format
2903  **/
2904
2905 static void display_share_info_1(struct net_context *c,
2906                                  struct srvsvc_NetShareInfo1 *r)
2907 {
2908         if (c->opt_long_list_entries) {
2909                 d_printf("%-12s %-8.8s %-50s\n",
2910                          r->name,
2911                          c->share_type[r->type & ~(STYPE_TEMPORARY|STYPE_HIDDEN)],
2912                          r->comment);
2913         } else {
2914                 d_printf("%s\n", r->name);
2915         }
2916 }
2917
2918 static WERROR get_share_info(struct net_context *c,
2919                              struct rpc_pipe_client *pipe_hnd,
2920                              TALLOC_CTX *mem_ctx,
2921                              uint32 level,
2922                              int argc,
2923                              const char **argv,
2924                              struct srvsvc_NetShareInfoCtr *info_ctr)
2925 {
2926         WERROR result;
2927         NTSTATUS status;
2928         union srvsvc_NetShareInfo info;
2929
2930         /* no specific share requested, enumerate all */
2931         if (argc == 0) {
2932
2933                 uint32_t preferred_len = 0xffffffff;
2934                 uint32_t total_entries = 0;
2935                 uint32_t resume_handle = 0;
2936
2937                 info_ctr->level = level;
2938
2939                 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, mem_ctx,
2940                                                        pipe_hnd->desthost,
2941                                                        info_ctr,
2942                                                        preferred_len,
2943                                                        &total_entries,
2944                                                        &resume_handle,
2945                                                        &result);
2946                 return result;
2947         }
2948
2949         /* request just one share */
2950         status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
2951                                                pipe_hnd->desthost,
2952                                                argv[0],
2953                                                level,
2954                                                &info,
2955                                                &result);
2956
2957         if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
2958                 goto done;
2959         }
2960
2961         /* construct ctr */
2962         ZERO_STRUCTP(info_ctr);
2963
2964         info_ctr->level = level;
2965
2966         switch (level) {
2967         case 1:
2968         {
2969                 struct srvsvc_NetShareCtr1 *ctr1;
2970
2971                 ctr1 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr1);
2972                 W_ERROR_HAVE_NO_MEMORY(ctr1);
2973
2974                 ctr1->count = 1;
2975                 ctr1->array = info.info1;
2976
2977                 info_ctr->ctr.ctr1 = ctr1;
2978         }
2979         case 2:
2980         {
2981                 struct srvsvc_NetShareCtr2 *ctr2;
2982
2983                 ctr2 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr2);
2984                 W_ERROR_HAVE_NO_MEMORY(ctr2);
2985
2986                 ctr2->count = 1;
2987                 ctr2->array = info.info2;
2988
2989                 info_ctr->ctr.ctr2 = ctr2;
2990         }
2991         case 502:
2992         {
2993                 struct srvsvc_NetShareCtr502 *ctr502;
2994
2995                 ctr502 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr502);
2996                 W_ERROR_HAVE_NO_MEMORY(ctr502);
2997
2998                 ctr502->count = 1;
2999                 ctr502->array = info.info502;
3000
3001                 info_ctr->ctr.ctr502 = ctr502;
3002         }
3003         } /* switch */
3004 done:
3005         return result;
3006 }
3007
3008 /**
3009  * List shares on a remote RPC server.
3010  *
3011  * All parameters are provided by the run_rpc_command function, except for
3012  * argc, argv which are passed through.
3013  *
3014  * @param domain_sid The domain sid acquired from the remote server.
3015  * @param cli A cli_state connected to the server.
3016  * @param mem_ctx Talloc context, destroyed on completion of the function.
3017  * @param argc  Standard main() style argc.
3018  * @param argv  Standard main() style argv. Initial components are already
3019  *              stripped.
3020  *
3021  * @return Normal NTSTATUS return.
3022  **/
3023
3024 static NTSTATUS rpc_share_list_internals(struct net_context *c,
3025                                         const DOM_SID *domain_sid,
3026                                         const char *domain_name,
3027                                         struct cli_state *cli,
3028                                         struct rpc_pipe_client *pipe_hnd,
3029                                         TALLOC_CTX *mem_ctx,
3030                                         int argc,
3031                                         const char **argv)
3032 {
3033         struct srvsvc_NetShareInfoCtr info_ctr;
3034         struct srvsvc_NetShareCtr1 ctr1;
3035         WERROR result;
3036         uint32 i, level = 1;
3037
3038         ZERO_STRUCT(info_ctr);
3039         ZERO_STRUCT(ctr1);
3040
3041         info_ctr.level = 1;
3042         info_ctr.ctr.ctr1 = &ctr1;
3043
3044         result = get_share_info(c, pipe_hnd, mem_ctx, level, argc, argv,
3045                                 &info_ctr);
3046         if (!W_ERROR_IS_OK(result))
3047                 goto done;
3048
3049         /* Display results */
3050
3051         if (c->opt_long_list_entries) {
3052                 d_printf(
3053         "\nEnumerating shared resources (exports) on remote server:\n\n"
3054         "\nShare name   Type     Description\n"
3055         "----------   ----     -----------\n");
3056         }
3057         for (i = 0; i < info_ctr.ctr.ctr1->count; i++)
3058                 display_share_info_1(c, &info_ctr.ctr.ctr1->array[i]);
3059  done:
3060         return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
3061 }
3062
3063 /***
3064  * 'net rpc share list' entrypoint.
3065  * @param argc  Standard main() style argc.
3066  * @param argv  Standard main() style argv. Initial components are already
3067  *              stripped.
3068  **/
3069 static int rpc_share_list(struct net_context *c, int argc, const char **argv)
3070 {
3071         if (c->display_usage) {
3072                 d_printf("Usage\n"
3073                          "net rpc share list\n"
3074                          "    List shares on remote server\n");
3075                 return 0;
3076         }
3077
3078         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3079                                rpc_share_list_internals, argc, argv);
3080 }
3081
3082 static bool check_share_availability(struct cli_state *cli, const char *netname)
3083 {
3084         if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
3085                 d_printf("skipping   [%s]: not a file share.\n", netname);
3086                 return false;
3087         }
3088
3089         if (!cli_tdis(cli))
3090                 return false;
3091
3092         return true;
3093 }
3094
3095 static bool check_share_sanity(struct net_context *c, struct cli_state *cli,
3096                                const char *netname, uint32 type)
3097 {
3098         /* only support disk shares */
3099         if (! ( type == STYPE_DISKTREE || type == (STYPE_DISKTREE | STYPE_HIDDEN)) ) {
3100                 printf("share [%s] is not a diskshare (type: %x)\n", netname, type);
3101                 return false;
3102         }
3103
3104         /* skip builtin shares */
3105         /* FIXME: should print$ be added too ? */
3106         if (strequal(netname,"IPC$") || strequal(netname,"ADMIN$") ||
3107             strequal(netname,"global"))
3108                 return false;
3109
3110         if (c->opt_exclude && in_list(netname, c->opt_exclude, false)) {
3111                 printf("excluding  [%s]\n", netname);
3112                 return false;
3113         }
3114
3115         return check_share_availability(cli, netname);
3116 }
3117
3118 /**
3119  * Migrate shares from a remote RPC server to the local RPC server.
3120  *
3121  * All parameters are provided by the run_rpc_command function, except for
3122  * argc, argv which are passed through.
3123  *
3124  * @param domain_sid The domain sid acquired from the remote server.
3125  * @param cli A cli_state connected to the server.
3126  * @param mem_ctx Talloc context, destroyed on completion of the function.
3127  * @param argc  Standard main() style argc.
3128  * @param argv  Standard main() style argv. Initial components are already
3129  *              stripped.
3130  *
3131  * @return Normal NTSTATUS return.
3132  **/
3133
3134 static NTSTATUS rpc_share_migrate_shares_internals(struct net_context *c,
3135                                                 const DOM_SID *domain_sid,
3136                                                 const char *domain_name,
3137                                                 struct cli_state *cli,
3138                                                 struct rpc_pipe_client *pipe_hnd,
3139                                                 TALLOC_CTX *mem_ctx,
3140                                                 int argc,
3141                                                 const char **argv)
3142 {
3143         WERROR result;
3144         NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3145         struct srvsvc_NetShareInfoCtr ctr_src;
3146         uint32 i;
3147         struct rpc_pipe_client *srvsvc_pipe = NULL;
3148         struct cli_state *cli_dst = NULL;
3149         uint32 level = 502; /* includes secdesc */
3150         uint32_t parm_error = 0;
3151
3152         result = get_share_info(c, pipe_hnd, mem_ctx, level, argc, argv,
3153                                 &ctr_src);
3154         if (!W_ERROR_IS_OK(result))
3155                 goto done;
3156
3157         /* connect destination PI_SRVSVC */
3158         nt_status = connect_dst_pipe(c, &cli_dst, &srvsvc_pipe,
3159                                      &ndr_table_srvsvc.syntax_id);
3160         if (!NT_STATUS_IS_OK(nt_status))
3161                 return nt_status;
3162
3163
3164         for (i = 0; i < ctr_src.ctr.ctr502->count; i++) {
3165
3166                 union srvsvc_NetShareInfo info;
3167                 struct srvsvc_NetShareInfo502 info502 =
3168                         ctr_src.ctr.ctr502->array[i];
3169
3170                 /* reset error-code */
3171                 nt_status = NT_STATUS_UNSUCCESSFUL;
3172
3173                 if (!check_share_sanity(c, cli, info502.name, info502.type))
3174                         continue;
3175
3176                 /* finally add the share on the dst server */
3177
3178                 printf("migrating: [%s], path: %s, comment: %s, without share-ACLs\n", 
3179                         info502.name, info502.path, info502.comment);
3180
3181                 info.info502 = &info502;
3182
3183                 nt_status = rpccli_srvsvc_NetShareAdd(srvsvc_pipe, mem_ctx,
3184                                                       srvsvc_pipe->desthost,
3185                                                       502,
3186                                                       &info,
3187                                                       &parm_error,
3188                                                       &result);
3189
3190                 if (W_ERROR_V(result) == W_ERROR_V(WERR_ALREADY_EXISTS)) {
3191                         printf("           [%s] does already exist\n",
3192                                 info502.name);
3193                         continue;
3194                 }
3195
3196                 if (!NT_STATUS_IS_OK(nt_status) || !W_ERROR_IS_OK(result)) {
3197                         printf("cannot add share: %s\n", dos_errstr(result));
3198                         goto done;
3199                 }
3200
3201         }
3202
3203         nt_status = NT_STATUS_OK;
3204
3205 done:
3206         if (cli_dst) {
3207                 cli_shutdown(cli_dst);
3208         }
3209
3210         return nt_status;
3211
3212 }
3213
3214 /**
3215  * Migrate shares from a RPC server to another.
3216  *
3217  * @param argc  Standard main() style argc.
3218  * @param argv  Standard main() style argv. Initial components are already
3219  *              stripped.
3220  *
3221  * @return A shell status integer (0 for success).
3222  **/
3223 static int rpc_share_migrate_shares(struct net_context *c, int argc,
3224                                     const char **argv)
3225 {
3226         if (c->display_usage) {
3227                 d_printf("Usage:\n"
3228                          "net rpc share migrate shares\n"
3229                          "    Migrate shares to local server\n");
3230                 return 0;
3231         }
3232
3233         if (!c->opt_host) {
3234                 printf("no server to migrate\n");
3235                 return -1;
3236         }
3237
3238         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3239                                rpc_share_migrate_shares_internals,
3240                                argc, argv);
3241 }
3242
3243 /**
3244  * Copy a file/dir
3245  *
3246  * @param f     file_info
3247  * @param mask  current search mask
3248  * @param state arg-pointer
3249  *
3250  **/
3251 static void copy_fn(const char *mnt, file_info *f,
3252                     const char *mask, void *state)
3253 {
3254         static NTSTATUS nt_status;
3255         static struct copy_clistate *local_state;
3256         static fstring filename, new_mask;
3257         fstring dir;
3258         char *old_dir;
3259         struct net_context *c;
3260
3261         local_state = (struct copy_clistate *)state;
3262         nt_status = NT_STATUS_UNSUCCESSFUL;
3263
3264         c = local_state->c;
3265
3266         if (strequal(f->name, ".") || strequal(f->name, ".."))
3267                 return;
3268
3269         DEBUG(3,("got mask: %s, name: %s\n", mask, f->name));
3270
3271         /* DIRECTORY */
3272         if (f->mode & aDIR) {
3273
3274                 DEBUG(3,("got dir: %s\n", f->name));
3275
3276                 fstrcpy(dir, local_state->cwd);
3277                 fstrcat(dir, "\\");
3278                 fstrcat(dir, f->name);
3279
3280                 switch (net_mode_share)
3281                 {
3282                 case NET_MODE_SHARE_MIGRATE:
3283                         /* create that directory */
3284                         nt_status = net_copy_file(c, local_state->mem_ctx,
3285                                                   local_state->cli_share_src,
3286                                                   local_state->cli_share_dst,
3287                                                   dir, dir,
3288                                                   c->opt_acls? true : false,
3289                                                   c->opt_attrs? true : false,
3290                                                   c->opt_timestamps? true:false,
3291                                                   false);
3292                         break;
3293                 default:
3294                         d_fprintf(stderr, "Unsupported mode %d\n", net_mode_share);
3295                         return;
3296                 }
3297
3298                 if (!NT_STATUS_IS_OK(nt_status))
3299                         printf("could not handle dir %s: %s\n",
3300                                 dir, nt_errstr(nt_status));
3301
3302                 /* search below that directory */
3303                 fstrcpy(new_mask, dir);
3304                 fstrcat(new_mask, "\\*");
3305
3306                 old_dir = local_state->cwd;
3307                 local_state->cwd = dir;
3308                 if (!sync_files(local_state, new_mask))
3309                         printf("could not handle files\n");
3310                 local_state->cwd = old_dir;
3311
3312                 return;
3313         }
3314
3315
3316         /* FILE */
3317         fstrcpy(filename, local_state->cwd);
3318         fstrcat(filename, "\\");
3319         fstrcat(filename, f->name);
3320
3321         DEBUG(3,("got file: %s\n", filename));
3322
3323         switch (net_mode_share)
3324         {
3325         case NET_MODE_SHARE_MIGRATE:
3326                 nt_status = net_copy_file(c, local_state->mem_ctx,
3327                                           local_state->cli_share_src,
3328                                           local_state->cli_share_dst,
3329                                           filename, filename,
3330                                           c->opt_acls? true : false,
3331                                           c->opt_attrs? true : false,
3332                                           c->opt_timestamps? true: false,
3333                                           true);
3334                 break;
3335         default:
3336                 d_fprintf(stderr, "Unsupported file mode %d\n", net_mode_share);
3337                 return;
3338         }
3339
3340         if (!NT_STATUS_IS_OK(nt_status))
3341                 printf("could not handle file %s: %s\n",
3342                         filename, nt_errstr(nt_status));
3343
3344 }
3345
3346 /**
3347  * sync files, can be called recursivly to list files
3348  * and then call copy_fn for each file
3349  *
3350  * @param cp_clistate   pointer to the copy_clistate we work with
3351  * @param mask          the current search mask
3352  *
3353  * @return              Boolean result
3354  **/
3355 static bool sync_files(struct copy_clistate *cp_clistate, const char *mask)
3356 {
3357         struct cli_state *targetcli;
3358         char *targetpath = NULL;
3359
3360         DEBUG(3,("calling cli_list with mask: %s\n", mask));
3361
3362         if ( !cli_resolve_path(talloc_tos(), "", cp_clistate->cli_share_src,
3363                                 mask, &targetcli, &targetpath ) ) {
3364                 d_fprintf(stderr, "cli_resolve_path %s failed with error: %s\n", 
3365                         mask, cli_errstr(cp_clistate->cli_share_src));
3366                 return false;
3367         }
3368
3369         if (cli_list(targetcli, targetpath, cp_clistate->attribute, copy_fn, cp_clistate) == -1) {
3370                 d_fprintf(stderr, "listing %s failed with error: %s\n",
3371                         mask, cli_errstr(targetcli));
3372                 return false;
3373         }
3374
3375         return true;
3376 }
3377
3378
3379 /**
3380  * Set the top level directory permissions before we do any further copies.
3381  * Should set up ACL inheritance.
3382  **/
3383
3384 bool copy_top_level_perms(struct net_context *c,
3385                                 struct copy_clistate *cp_clistate,
3386                                 const char *sharename)
3387 {
3388         NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3389
3390         switch (net_mode_share) {
3391         case NET_MODE_SHARE_MIGRATE:
3392                 DEBUG(3,("calling net_copy_fileattr for '.' directory in share %s\n", sharename));
3393                 nt_status = net_copy_fileattr(c,
3394                                                 cp_clistate->mem_ctx,
3395                                                 cp_clistate->cli_share_src,
3396                                                 cp_clistate->cli_share_dst,
3397                                                 "\\", "\\",
3398                                                 c->opt_acls? true : false,
3399                                                 c->opt_attrs? true : false,
3400                                                 c->opt_timestamps? true: false,
3401                                                 false);
3402                 break;
3403         default:
3404                 d_fprintf(stderr, "Unsupported mode %d\n", net_mode_share);
3405                 break;
3406         }
3407
3408         if (!NT_STATUS_IS_OK(nt_status))  {
3409                 printf("Could handle directory attributes for top level directory of share %s. Error %s\n", 
3410                         sharename, nt_errstr(nt_status));
3411                 return false;
3412         }
3413
3414         return true;
3415 }
3416
3417 /**
3418  * Sync all files inside a remote share to another share (over smb).
3419  *
3420  * All parameters are provided by the run_rpc_command function, except for
3421  * argc, argv which are passed through.
3422  *
3423  * @param domain_sid The domain sid acquired from the remote server.
3424  * @param cli A cli_state connected to the server.
3425  * @param mem_ctx Talloc context, destroyed on completion of the function.
3426  * @param argc  Standard main() style argc.
3427  * @param argv  Standard main() style argv. Initial components are already
3428  *              stripped.
3429  *
3430  * @return Normal NTSTATUS return.
3431  **/
3432
3433 static NTSTATUS rpc_share_migrate_files_internals(struct net_context *c,
3434                                                 const DOM_SID *domain_sid,
3435                                                 const char *domain_name,
3436                                                 struct cli_state *cli,
3437                                                 struct rpc_pipe_client *pipe_hnd,
3438                                                 TALLOC_CTX *mem_ctx,
3439                                                 int argc,
3440                                                 const char **argv)
3441 {
3442         WERROR result;
3443         NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3444         struct srvsvc_NetShareInfoCtr ctr_src;
3445         uint32 i;
3446         uint32 level = 502;
3447         struct copy_clistate cp_clistate;
3448         bool got_src_share = false;
3449         bool got_dst_share = false;
3450         const char *mask = "\\*";
3451         char *dst = NULL;
3452
3453         dst = SMB_STRDUP(c->opt_destination?c->opt_destination:"127.0.0.1");
3454         if (dst == NULL) {
3455                 nt_status = NT_STATUS_NO_MEMORY;
3456                 goto done;
3457         }
3458
3459         result = get_share_info(c, pipe_hnd, mem_ctx, level, argc, argv,
3460                                 &ctr_src);
3461
3462         if (!W_ERROR_IS_OK(result))
3463                 goto done;
3464
3465         for (i = 0; i < ctr_src.ctr.ctr502->count; i++) {
3466
3467                 struct srvsvc_NetShareInfo502 info502 =
3468                         ctr_src.ctr.ctr502->array[i];
3469
3470                 if (!check_share_sanity(c, cli, info502.name, info502.type))
3471                         continue;
3472
3473                 /* one might not want to mirror whole discs :) */
3474                 if (strequal(info502.name, "print$") || info502.name[1] == '$') {
3475                         d_printf("skipping   [%s]: builtin/hidden share\n", info502.name);
3476                         continue;
3477                 }
3478
3479                 switch (net_mode_share)
3480                 {
3481                 case NET_MODE_SHARE_MIGRATE:
3482                         printf("syncing");
3483                         break;
3484                 default:
3485                         d_fprintf(stderr, "Unsupported mode %d\n", net_mode_share);
3486                         break;
3487                 }
3488                 printf("    [%s] files and directories %s ACLs, %s DOS Attributes %s\n", 
3489                         info502.name,
3490                         c->opt_acls ? "including" : "without",
3491                         c->opt_attrs ? "including" : "without",
3492                         c->opt_timestamps ? "(preserving timestamps)" : "");
3493
3494                 cp_clistate.mem_ctx = mem_ctx;
3495                 cp_clistate.cli_share_src = NULL;
3496                 cp_clistate.cli_share_dst = NULL;
3497                 cp_clistate.cwd = NULL;
3498                 cp_clistate.attribute = aSYSTEM | aHIDDEN | aDIR;
3499                 cp_clistate.c = c;
3500
3501                 /* open share source */
3502                 nt_status = connect_to_service(c, &cp_clistate.cli_share_src,
3503                                                &cli->dest_ss, cli->desthost,
3504                                                info502.name, "A:");
3505                 if (!NT_STATUS_IS_OK(nt_status))
3506                         goto done;
3507
3508                 got_src_share = true;
3509
3510                 if (net_mode_share == NET_MODE_SHARE_MIGRATE) {
3511                         /* open share destination */
3512                         nt_status = connect_to_service(c, &cp_clistate.cli_share_dst,
3513                                                        NULL, dst, info502.name, "A:");
3514                         if (!NT_STATUS_IS_OK(nt_status))
3515                                 goto done;
3516
3517                         got_dst_share = true;
3518                 }
3519
3520                 if (!copy_top_level_perms(c, &cp_clistate, info502.name)) {
3521                         d_fprintf(stderr, "Could not handle the top level directory permissions for the share: %s\n", info502.name);
3522                         nt_status = NT_STATUS_UNSUCCESSFUL;
3523                         goto done;
3524                 }
3525
3526                 if (!sync_files(&cp_clistate, mask)) {
3527                         d_fprintf(stderr, "could not handle files for share: %s\n", info502.name);
3528                         nt_status = NT_STATUS_UNSUCCESSFUL;
3529                         goto done;
3530                 }
3531         }
3532
3533         nt_status = NT_STATUS_OK;
3534
3535 done:
3536
3537         if (got_src_share)
3538                 cli_shutdown(cp_clistate.cli_share_src);
3539
3540         if (got_dst_share)
3541                 cli_shutdown(cp_clistate.cli_share_dst);
3542
3543         SAFE_FREE(dst);
3544         return nt_status;
3545
3546 }
3547
3548 static int rpc_share_migrate_files(struct net_context *c, int argc, const char **argv)
3549 {
3550         if (c->display_usage) {
3551                 d_printf("Usage:\n"
3552                          "net share migrate files\n"
3553                          "    Migrate files to local server\n");
3554                 return 0;
3555         }
3556
3557         if (!c->opt_host) {
3558                 d_printf("no server to migrate\n");
3559                 return -1;
3560         }
3561
3562         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3563                                rpc_share_migrate_files_internals,
3564                                argc, argv);
3565 }
3566
3567 /**
3568  * Migrate share-ACLs from a remote RPC server to the local RPC server.
3569  *
3570  * All parameters are provided by the run_rpc_command function, except for
3571  * argc, argv which are passed through.
3572  *
3573  * @param domain_sid The domain sid acquired from the remote server.
3574  * @param cli A cli_state connected to the server.
3575  * @param mem_ctx Talloc context, destroyed on completion of the function.
3576  * @param argc  Standard main() style argc.
3577  * @param argv  Standard main() style argv. Initial components are already
3578  *              stripped.
3579  *
3580  * @return Normal NTSTATUS return.
3581  **/
3582
3583 static NTSTATUS rpc_share_migrate_security_internals(struct net_context *c,
3584                                                 const DOM_SID *domain_sid,
3585                                                 const char *domain_name,
3586                                                 struct cli_state *cli,
3587                                                 struct rpc_pipe_client *pipe_hnd,
3588                                                 TALLOC_CTX *mem_ctx,
3589                                                 int argc,
3590                                                 const char **argv)
3591 {
3592         WERROR result;
3593         NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3594         struct srvsvc_NetShareInfoCtr ctr_src;
3595         union srvsvc_NetShareInfo info;
3596         uint32 i;
3597         struct rpc_pipe_client *srvsvc_pipe = NULL;
3598         struct cli_state *cli_dst = NULL;
3599         uint32 level = 502; /* includes secdesc */
3600         uint32_t parm_error = 0;
3601
3602         result = get_share_info(c, pipe_hnd, mem_ctx, level, argc, argv,
3603                                 &ctr_src);
3604
3605         if (!W_ERROR_IS_OK(result))
3606                 goto done;
3607
3608         /* connect destination PI_SRVSVC */
3609         nt_status = connect_dst_pipe(c, &cli_dst, &srvsvc_pipe,
3610                                      &ndr_table_srvsvc.syntax_id);
3611         if (!NT_STATUS_IS_OK(nt_status))
3612                 return nt_status;
3613
3614
3615         for (i = 0; i < ctr_src.ctr.ctr502->count; i++) {
3616
3617                 struct srvsvc_NetShareInfo502 info502 =
3618                         ctr_src.ctr.ctr502->array[i];
3619
3620                 /* reset error-code */
3621                 nt_status = NT_STATUS_UNSUCCESSFUL;
3622
3623                 if (!check_share_sanity(c, cli, info502.name, info502.type))
3624                         continue;
3625
3626                 printf("migrating: [%s], path: %s, comment: %s, including share-ACLs\n", 
3627                         info502.name, info502.path, info502.comment);
3628
3629                 if (c->opt_verbose)
3630                         display_sec_desc(info502.sd_buf.sd);
3631
3632                 /* FIXME: shouldn't we be able to just set the security descriptor ? */
3633                 info.info502 = &info502;
3634
3635                 /* finally modify the share on the dst server */
3636                 nt_status = rpccli_srvsvc_NetShareSetInfo(srvsvc_pipe, mem_ctx,
3637                                                           srvsvc_pipe->desthost,
3638                                                           info502.name,
3639                                                           level,
3640                                                           &info,
3641                                                           &parm_error,
3642                                                           &result);
3643                 if (!NT_STATUS_IS_OK(nt_status) || !W_ERROR_IS_OK(result)) {
3644                         printf("cannot set share-acl: %s\n", dos_errstr(result));
3645                         goto done;
3646                 }
3647
3648         }
3649
3650         nt_status = NT_STATUS_OK;
3651
3652 done:
3653         if (cli_dst) {
3654                 cli_shutdown(cli_dst);
3655         }
3656
3657         return nt_status;
3658
3659 }
3660
3661 /**
3662  * Migrate share-acls from a RPC server to another.
3663  *
3664  * @param argc  Standard main() style argc.
3665  * @param argv  Standard main() style argv. Initial components are already
3666  *              stripped.
3667  *
3668  * @return A shell status integer (0 for success).
3669  **/
3670 static int rpc_share_migrate_security(struct net_context *c, int argc,
3671                                       const char **argv)
3672 {
3673         if (c->display_usage) {
3674                 d_printf("Usage:\n"
3675                          "net rpc share migrate security\n"
3676                          "    Migrate share-acls to local server\n");
3677                 return 0;
3678         }
3679
3680         if (!c->opt_host) {
3681                 d_printf("no server to migrate\n");
3682                 return -1;
3683         }
3684
3685         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3686                                rpc_share_migrate_security_internals,
3687                                argc, argv);
3688 }
3689
3690 /**
3691  * Migrate shares (including share-definitions, share-acls and files with acls/attrs)
3692  * from one server to another.
3693  *
3694  * @param argc  Standard main() style argc.
3695  * @param argv  Standard main() style argv. Initial components are already
3696  *              stripped.
3697  *
3698  * @return A shell status integer (0 for success).
3699  *
3700  **/
3701 static int rpc_share_migrate_all(struct net_context *c, int argc,
3702                                  const char **argv)
3703 {
3704         int ret;
3705
3706         if (c->display_usage) {
3707                 d_printf("Usage:\n"
3708                          "net rpc share migrate all\n"
3709                          "    Migrates shares including all share settings\n");
3710                 return 0;
3711         }
3712
3713         if (!c->opt_host) {
3714                 d_printf("no server to migrate\n");
3715                 return -1;
3716         }
3717
3718         /* order is important. we don't want to be locked out by the share-acl
3719          * before copying files - gd */
3720
3721         ret = run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3722                               rpc_share_migrate_shares_internals, argc, argv);
3723         if (ret)
3724                 return ret;
3725
3726         ret = run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3727                               rpc_share_migrate_files_internals, argc, argv);
3728         if (ret)
3729                 return ret;
3730
3731         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
3732                                rpc_share_migrate_security_internals, argc,
3733                                argv);
3734 }
3735
3736
3737 /**
3738  * 'net rpc share migrate' entrypoint.
3739  * @param argc  Standard main() style argc.
3740  * @param argv  Standard main() style argv. Initial components are already
3741  *              stripped.
3742  **/
3743 static int rpc_share_migrate(struct net_context *c, int argc, const char **argv)
3744 {
3745
3746         struct functable func[] = {
3747                 {
3748                         "all",
3749                         rpc_share_migrate_all,
3750                         NET_TRANSPORT_RPC,
3751                         "Migrate shares from remote to local server",
3752                         "net rpc share migrate all\n"
3753                         "    Migrate shares from remote to local server"
3754                 },
3755                 {
3756                         "files",
3757                         rpc_share_migrate_files,
3758                         NET_TRANSPORT_RPC,
3759                         "Migrate files from remote to local server",
3760                         "net rpc share migrate files\n"
3761                         "    Migrate files from remote to local server"
3762                 },
3763                 {
3764                         "security",
3765                         rpc_share_migrate_security,
3766                         NET_TRANSPORT_RPC,
3767                         "Migrate share-ACLs from remote to local server",
3768                         "net rpc share migrate security\n"
3769                         "    Migrate share-ACLs from remote to local server"
3770                 },
3771                 {
3772                         "shares",
3773                         rpc_share_migrate_shares,
3774                         NET_TRANSPORT_RPC,
3775                         "Migrate shares from remote to local server",
3776                         "net rpc share migrate shares\n"
3777                         "    Migrate shares from remote to local server"
3778                 },
3779                 {NULL, NULL, 0, NULL, NULL}
3780         };
3781
3782         net_mode_share = NET_MODE_SHARE_MIGRATE;
3783
3784         return net_run_function(c, argc, argv, "net rpc share migrate", func);
3785 }
3786
3787 struct full_alias {
3788         DOM_SID sid;
3789         uint32 num_members;
3790         DOM_SID *members;
3791 };
3792
3793 static int num_server_aliases;
3794 static struct full_alias *server_aliases;
3795
3796 /*
3797  * Add an alias to the static list.
3798  */
3799 static void push_alias(TALLOC_CTX *mem_ctx, struct full_alias *alias)
3800 {
3801         if (server_aliases == NULL)
3802                 server_aliases = SMB_MALLOC_ARRAY(struct full_alias, 100);
3803
3804         server_aliases[num_server_aliases] = *alias;
3805         num_server_aliases += 1;
3806 }
3807
3808 /*
3809  * For a specific domain on the server, fetch all the aliases
3810  * and their members. Add all of them to the server_aliases.
3811  */
3812
3813 static NTSTATUS rpc_fetch_domain_aliases(struct rpc_pipe_client *pipe_hnd,
3814                                         TALLOC_CTX *mem_ctx,
3815                                         POLICY_HND *connect_pol,
3816                                         const DOM_SID *domain_sid)
3817 {
3818         uint32 start_idx, max_entries, num_entries, i;
3819         struct samr_SamArray *groups = NULL;
3820         NTSTATUS result;
3821         POLICY_HND domain_pol;
3822
3823         /* Get domain policy handle */
3824
3825         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
3826                                         connect_pol,
3827                                         MAXIMUM_ALLOWED_ACCESS,
3828                                         CONST_DISCARD(struct dom_sid2 *, domain_sid),
3829                                         &domain_pol);
3830         if (!NT_STATUS_IS_OK(result))
3831                 return result;
3832
3833         start_idx = 0;
3834         max_entries = 250;
3835
3836         do {
3837                 result = rpccli_samr_EnumDomainAliases(pipe_hnd, mem_ctx,
3838                                                        &domain_pol,
3839                                                        &start_idx,
3840                                                        &groups,
3841                                                        max_entries,
3842                                                        &num_entries);
3843                 for (i = 0; i < num_entries; i++) {
3844
3845                         POLICY_HND alias_pol;
3846                         struct full_alias alias;
3847                         struct lsa_SidArray sid_array;
3848                         int j;
3849
3850                         result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
3851                                                        &domain_pol,
3852                                                        MAXIMUM_ALLOWED_ACCESS,
3853                                                        groups->entries[i].idx,
3854                                                        &alias_pol);
3855                         if (!NT_STATUS_IS_OK(result))
3856                                 goto done;
3857
3858                         result = rpccli_samr_GetMembersInAlias(pipe_hnd, mem_ctx,
3859                                                                &alias_pol,
3860                                                                &sid_array);
3861                         if (!NT_STATUS_IS_OK(result))
3862                                 goto done;
3863
3864                         alias.num_members = sid_array.num_sids;
3865
3866                         result = rpccli_samr_Close(pipe_hnd, mem_ctx, &alias_pol);
3867                         if (!NT_STATUS_IS_OK(result))
3868                                 goto done;
3869
3870                         alias.members = NULL;
3871
3872                         if (alias.num_members > 0) {
3873                                 alias.members = SMB_MALLOC_ARRAY(DOM_SID, alias.num_members);
3874
3875                                 for (j = 0; j < alias.num_members; j++)
3876                                         sid_copy(&alias.members[j],
3877                                                  sid_array.sids[j].sid);
3878                         }
3879
3880                         sid_copy(&alias.sid, domain_sid);
3881                         sid_append_rid(&alias.sid, groups->entries[i].idx);
3882
3883                         push_alias(mem_ctx, &alias);
3884                 }
3885         } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
3886
3887         result = NT_STATUS_OK;
3888
3889  done:
3890         rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
3891
3892         return result;
3893 }
3894
3895 /*
3896  * Dump server_aliases as names for debugging purposes.
3897  */
3898
3899 static NTSTATUS rpc_aliaslist_dump(struct net_context *c,
3900                                 const DOM_SID *domain_sid,
3901                                 const char *domain_name,
3902                                 struct cli_state *cli,
3903                                 struct rpc_pipe_client *pipe_hnd,
3904                                 TALLOC_CTX *mem_ctx,
3905                                 int argc,
3906                                 const char **argv)
3907 {
3908         int i;
3909         NTSTATUS result;
3910         POLICY_HND lsa_pol;
3911
3912         result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, true,
3913                                      SEC_RIGHTS_MAXIMUM_ALLOWED,
3914                                      &lsa_pol);
3915         if (!NT_STATUS_IS_OK(result))
3916                 return result;
3917
3918         for (i=0; i<num_server_aliases; i++) {
3919                 char **names;
3920                 char **domains;
3921                 enum lsa_SidType *types;
3922                 int j;
3923
3924                 struct full_alias *alias = &server_aliases[i];
3925
3926                 result = rpccli_lsa_lookup_sids(pipe_hnd, mem_ctx, &lsa_pol, 1,
3927                                              &alias->sid,
3928                                              &domains, &names, &types);
3929                 if (!NT_STATUS_IS_OK(result))
3930                         continue;
3931
3932                 DEBUG(1, ("%s\\%s %d: ", domains[0], names[0], types[0]));
3933
3934                 if (alias->num_members == 0) {
3935                         DEBUG(1, ("\n"));
3936                         continue;
3937                 }
3938
3939                 result = rpccli_lsa_lookup_sids(pipe_hnd, mem_ctx, &lsa_pol,
3940                                              alias->num_members,
3941                                              alias->members,
3942                                              &domains, &names, &types);
3943
3944                 if (!NT_STATUS_IS_OK(result) &&
3945                     !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED))
3946                         continue;
3947
3948                 for (j=0; j<alias->num_members; j++)
3949                         DEBUG(1, ("%s\\%s (%d); ",
3950                                   domains[j] ? domains[j] : "*unknown*", 
3951                                   names[j] ? names[j] : "*unknown*",types[j]));
3952                 DEBUG(1, ("\n"));
3953         }
3954
3955         rpccli_lsa_Close(pipe_hnd, mem_ctx, &lsa_pol);
3956
3957         return NT_STATUS_OK;
3958 }
3959
3960 /*
3961  * Fetch a list of all server aliases and their members into
3962  * server_aliases.
3963  */
3964
3965 static NTSTATUS rpc_aliaslist_internals(struct net_context *c,
3966                                         const DOM_SID *domain_sid,
3967                                         const char *domain_name,
3968                                         struct cli_state *cli,
3969                                         struct rpc_pipe_client *pipe_hnd,
3970                                         TALLOC_CTX *mem_ctx,
3971                                         int argc,
3972                                         const char **argv)
3973 {
3974         NTSTATUS result;
3975         POLICY_HND connect_pol;
3976
3977         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
3978                                       pipe_hnd->desthost,
3979                                       MAXIMUM_ALLOWED_ACCESS,
3980                                       &connect_pol);
3981
3982         if (!NT_STATUS_IS_OK(result))
3983                 goto done;
3984
3985         result = rpc_fetch_domain_aliases(pipe_hnd, mem_ctx, &connect_pol,
3986                                           &global_sid_Builtin);
3987
3988         if (!NT_STATUS_IS_OK(result))
3989                 goto done;
3990
3991         result = rpc_fetch_domain_aliases(pipe_hnd, mem_ctx, &connect_pol,
3992                                           domain_sid);
3993
3994         rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
3995  done:
3996         return result;
3997 }
3998
3999 static void init_user_token(NT_USER_TOKEN *token, DOM_SID *user_sid)
4000 {
4001         token->num_sids = 4;
4002
4003         if (!(token->user_sids = SMB_MALLOC_ARRAY(DOM_SID, 4))) {
4004                 d_fprintf(stderr, "malloc failed\n");
4005                 token->num_sids = 0;
4006                 return;
4007         }
4008
4009         token->user_sids[0] = *user_sid;
4010         sid_copy(&token->user_sids[1], &global_sid_World);
4011         sid_copy(&token->user_sids[2], &global_sid_Network);
4012         sid_copy(&token->user_sids[3], &global_sid_Authenticated_Users);
4013 }
4014
4015 static void free_user_token(NT_USER_TOKEN *token)
4016 {
4017         SAFE_FREE(token->user_sids);
4018 }
4019
4020 static bool is_sid_in_token(NT_USER_TOKEN *token, DOM_SID *sid)
4021 {
4022         int i;
4023
4024         for (i=0; i<token->num_sids; i++) {
4025                 if (sid_compare(sid, &token->user_sids[i]) == 0)
4026                         return true;
4027         }
4028         return false;
4029 }
4030
4031 static void add_sid_to_token(NT_USER_TOKEN *token, DOM_SID *sid)
4032 {
4033         if (is_sid_in_token(token, sid))
4034                 return;
4035
4036         token->user_sids = SMB_REALLOC_ARRAY(token->user_sids, DOM_SID, token->num_sids+1);
4037         if (!token->user_sids) {
4038                 return;
4039         }
4040
4041         sid_copy(&token->user_sids[token->num_sids], sid);
4042
4043         token->num_sids += 1;
4044 }
4045
4046 struct user_token {
4047         fstring name;
4048         NT_USER_TOKEN token;
4049 };
4050
4051 static void dump_user_token(struct user_token *token)
4052 {
4053         int i;
4054
4055         d_printf("%s\n", token->name);
4056
4057         for (i=0; i<token->token.num_sids; i++) {
4058                 d_printf(" %s\n", sid_string_tos(&token->token.user_sids[i]));
4059         }
4060 }
4061
4062 static bool is_alias_member(DOM_SID *sid, struct full_alias *alias)
4063 {
4064         int i;
4065
4066         for (i=0; i<alias->num_members; i++) {
4067                 if (sid_compare(sid, &alias->members[i]) == 0)
4068                         return true;
4069         }
4070
4071         return false;
4072 }
4073
4074 static void collect_sid_memberships(NT_USER_TOKEN *token, DOM_SID sid)
4075 {
4076         int i;
4077
4078         for (i=0; i<num_server_aliases; i++) {
4079                 if (is_alias_member(&sid, &server_aliases[i]))
4080                         add_sid_to_token(token, &server_aliases[i].sid);
4081         }
4082 }
4083
4084 /*
4085  * We got a user token with all the SIDs we can know about without asking the
4086  * server directly. These are the user and domain group sids. All of these can
4087  * be members of aliases. So scan the list of aliases for each of the SIDs and
4088  * add them to the token.
4089  */
4090
4091 static void collect_alias_memberships(NT_USER_TOKEN *token)
4092 {
4093         int num_global_sids = token->num_sids;
4094         int i;
4095
4096         for (i=0; i<num_global_sids; i++) {
4097                 collect_sid_memberships(token, token->user_sids[i]);
4098         }
4099 }
4100
4101 static bool get_user_sids(const char *domain, const char *user, NT_USER_TOKEN *token)
4102 {
4103         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
4104         enum wbcSidType type;
4105         fstring full_name;
4106         struct wbcDomainSid wsid;
4107         char *sid_str = NULL;
4108         DOM_SID user_sid;
4109         uint32_t num_groups;
4110         gid_t *groups = NULL;
4111         uint32_t i;
4112
4113         fstr_sprintf(full_name, "%s%c%s",
4114                      domain, *lp_winbind_separator(), user);
4115
4116         /* First let's find out the user sid */
4117
4118         wbc_status = wbcLookupName(domain, user, &wsid, &type);
4119
4120         if (!WBC_ERROR_IS_OK(wbc_status)) {
4121                 DEBUG(1, ("winbind could not find %s: %s\n",
4122                           full_name, wbcErrorString(wbc_status)));
4123                 return false;
4124         }
4125
4126         wbc_status = wbcSidToString(&wsid, &sid_str);
4127         if (!WBC_ERROR_IS_OK(wbc_status)) {
4128                 return false;
4129         }
4130
4131         if (type != SID_NAME_USER) {
4132                 wbcFreeMemory(sid_str);
4133                 DEBUG(1, ("%s is not a user\n", full_name));
4134                 return false;
4135         }
4136
4137         string_to_sid(&user_sid, sid_str);
4138         wbcFreeMemory(sid_str);
4139         sid_str = NULL;
4140
4141         init_user_token(token, &user_sid);
4142
4143         /* And now the groups winbind knows about */
4144
4145         wbc_status = wbcGetGroups(full_name, &num_groups, &groups);
4146         if (!WBC_ERROR_IS_OK(wbc_status)) {
4147                 DEBUG(1, ("winbind could not get groups of %s: %s\n",
4148                         full_name, wbcErrorString(wbc_status)));
4149                 return false;
4150         }
4151
4152         for (i = 0; i < num_groups; i++) {
4153                 gid_t gid = groups[i];
4154                 DOM_SID sid;
4155
4156                 wbc_status = wbcGidToSid(gid, &wsid);
4157                 if (!WBC_ERROR_IS_OK(wbc_status)) {
4158                         DEBUG(1, ("winbind could not find SID of gid %d: %s\n",
4159                                   gid, wbcErrorString(wbc_status)));
4160                         wbcFreeMemory(groups);
4161                         return false;
4162                 }
4163
4164                 wbc_status = wbcSidToString(&wsid, &sid_str);
4165                 if (!WBC_ERROR_IS_OK(wbc_status)) {
4166                         wbcFreeMemory(groups);
4167                         return false;
4168                 }
4169
4170                 DEBUG(3, (" %s\n", sid_str));
4171
4172                 string_to_sid(&sid, sid_str);
4173                 wbcFreeMemory(sid_str);
4174                 sid_str = NULL;
4175
4176                 add_sid_to_token(token, &sid);
4177         }
4178         wbcFreeMemory(groups);
4179
4180         return true;
4181 }
4182
4183 /**
4184  * Get a list of all user tokens we want to look at
4185  **/
4186
4187 static bool get_user_tokens(struct net_context *c, int *num_tokens,
4188                             struct user_token **user_tokens)
4189 {
4190         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
4191         uint32_t i, num_users;
4192         const char **users;
4193         struct user_token *result;
4194         TALLOC_CTX *frame = NULL;
4195
4196         if (lp_winbind_use_default_domain() &&
4197             (c->opt_target_workgroup == NULL)) {
4198                 d_fprintf(stderr, "winbind use default domain = yes set, "
4199                          "please specify a workgroup\n");
4200                 return false;
4201         }
4202
4203         /* Send request to winbind daemon */
4204
4205         wbc_status = wbcListUsers(NULL, &num_users, &users);
4206         if (!WBC_ERROR_IS_OK(wbc_status)) {
4207                 DEBUG(1, ("winbind could not list users: %s\n",
4208                           wbcErrorString(wbc_status)));
4209                 return false;
4210         }
4211
4212         result = SMB_MALLOC_ARRAY(struct user_token, num_users);
4213
4214         if (result == NULL) {
4215                 DEBUG(1, ("Could not malloc sid array\n"));
4216                 wbcFreeMemory(users);
4217                 return false;
4218         }
4219
4220         frame = talloc_stackframe();
4221         for (i=0; i < num_users; i++) {
4222                 fstring domain, user;
4223                 char *p;
4224
4225                 fstrcpy(result[i].name, users[i]);
4226
4227                 p = strchr(users[i], *lp_winbind_separator());
4228
4229                 DEBUG(3, ("%s\n", users[i]));
4230
4231                 if (p == NULL) {
4232                         fstrcpy(domain, c->opt_target_workgroup);
4233                         fstrcpy(user, users[i]);
4234                 } else {
4235                         *p++ = '\0';
4236                         fstrcpy(domain, users[i]);
4237                         strupper_m(domain);
4238                         fstrcpy(user, p);
4239                 }
4240
4241                 get_user_sids(domain, user, &(result[i].token));
4242                 i+=1;
4243         }
4244         TALLOC_FREE(frame);
4245         wbcFreeMemory(users);
4246
4247         *num_tokens = num_users;
4248         *user_tokens = result;
4249
4250         return true;
4251 }
4252
4253 static bool get_user_tokens_from_file(FILE *f,
4254                                       int *num_tokens,
4255                                       struct user_token **tokens)
4256 {
4257         struct user_token *token = NULL;
4258
4259         while (!feof(f)) {
4260                 fstring line;
4261
4262                 if (fgets(line, sizeof(line)-1, f) == NULL) {
4263                         return true;
4264                 }
4265
4266                 if (line[strlen(line)-1] == '\n')
4267                         line[strlen(line)-1] = '\0';
4268
4269                 if (line[0] == ' ') {
4270                         /* We have a SID */
4271
4272                         DOM_SID sid;
4273                         string_to_sid(&sid, &line[1]);
4274
4275                         if (token == NULL) {
4276                                 DEBUG(0, ("File does not begin with username"));
4277                                 return false;
4278                         }
4279
4280                         add_sid_to_token(&token->token, &sid);
4281                         continue;
4282                 }
4283
4284                 /* And a new user... */
4285
4286                 *num_tokens += 1;
4287                 *tokens = SMB_REALLOC_ARRAY(*tokens, struct user_token, *num_tokens);
4288                 if (*tokens == NULL) {
4289                         DEBUG(0, ("Could not realloc tokens\n"));
4290                         return false;
4291                 }
4292
4293                 token = &((*tokens)[*num_tokens-1]);
4294
4295                 fstrcpy(token->name, line);
4296                 token->token.num_sids = 0;
4297                 token->token.user_sids = NULL;
4298                 continue;
4299         }
4300         
4301         return false;
4302 }
4303
4304
4305 /*
4306  * Show the list of all users that have access to a share
4307  */
4308
4309 static void show_userlist(struct rpc_pipe_client *pipe_hnd,
4310                         TALLOC_CTX *mem_ctx,
4311                         const char *netname,
4312                         int num_tokens,
4313                         struct user_token *tokens)
4314 {
4315         int fnum;
4316         SEC_DESC *share_sd = NULL;
4317         SEC_DESC *root_sd = NULL;
4318         struct cli_state *cli = rpc_pipe_np_smb_conn(pipe_hnd);
4319         int i;
4320         union srvsvc_NetShareInfo info;
4321         WERROR result;
4322         NTSTATUS status;
4323         uint16 cnum;
4324
4325         status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
4326                                                pipe_hnd->desthost,
4327                                                netname,
4328                                                502,
4329                                                &info,
4330                                                &result);
4331
4332         if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
4333                 DEBUG(1, ("Coult not query secdesc for share %s\n",
4334                           netname));
4335                 return;
4336         }
4337
4338         share_sd = info.info502->sd_buf.sd;
4339         if (share_sd == NULL) {
4340                 DEBUG(1, ("Got no secdesc for share %s\n",
4341                           netname));
4342         }
4343
4344         cnum = cli->cnum;
4345
4346         if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
4347                 return;
4348         }
4349
4350         fnum = cli_nt_create(cli, "\\", READ_CONTROL_ACCESS);
4351
4352         if (fnum != -1) {
4353                 root_sd = cli_query_secdesc(cli, fnum, mem_ctx);
4354         }
4355
4356         for (i=0; i<num_tokens; i++) {
4357                 uint32 acc_granted;
4358
4359                 if (share_sd != NULL) {
4360                         if (!se_access_check(share_sd, &tokens[i].token,
4361                                              1, &acc_granted, &status)) {
4362                                 DEBUG(1, ("Could not check share_sd for "
4363                                           "user %s\n",
4364                                           tokens[i].name));
4365                                 continue;
4366                         }
4367
4368                         if (!NT_STATUS_IS_OK(status))
4369                                 continue;
4370                 }
4371
4372                 if (root_sd == NULL) {
4373                         d_printf(" %s\n", tokens[i].name);
4374                         continue;
4375                 }
4376
4377                 if (!se_access_check(root_sd, &tokens[i].token,
4378                                      1, &acc_granted, &status)) {
4379                         DEBUG(1, ("Could not check root_sd for user %s\n",
4380                                   tokens[i].name));
4381                         continue;
4382                 }
4383
4384                 if (!NT_STATUS_IS_OK(status))
4385                         continue;
4386
4387                 d_printf(" %s\n", tokens[i].name);
4388         }
4389
4390         if (fnum != -1)
4391                 cli_close(cli, fnum);
4392         cli_tdis(cli);
4393         cli->cnum = cnum;
4394         
4395         return;
4396 }
4397
4398 struct share_list {
4399         int num_shares;
4400         char **shares;
4401 };
4402
4403 static void collect_share(const char *name, uint32 m,
4404                           const char *comment, void *state)
4405 {
4406         struct share_list *share_list = (struct share_list *)state;
4407
4408         if (m != STYPE_DISKTREE)
4409                 return;
4410
4411         share_list->num_shares += 1;
4412         share_list->shares = SMB_REALLOC_ARRAY(share_list->shares, char *, share_list->num_shares);
4413         if (!share_list->shares) {
4414                 share_list->num_shares = 0;
4415                 return;
4416         }
4417         share_list->shares[share_list->num_shares-1] = SMB_STRDUP(name);
4418 }
4419
4420 /**
4421  * List shares on a remote RPC server, including the security descriptors.
4422  *
4423  * All parameters are provided by the run_rpc_command function, except for
4424  * argc, argv which are passed through.
4425  *
4426  * @param domain_sid The domain sid acquired from the remote server.
4427  * @param cli A cli_state connected to the server.
4428  * @param mem_ctx Talloc context, destroyed on completion of the function.
4429  * @param argc  Standard main() style argc.
4430  * @param argv  Standard main() style argv. Initial components are already
4431  *              stripped.
4432  *
4433  * @return Normal NTSTATUS return.
4434  **/
4435
4436 static NTSTATUS rpc_share_allowedusers_internals(struct net_context *c,
4437                                                 const DOM_SID *domain_sid,
4438                                                 const char *domain_name,
4439                                                 struct cli_state *cli,
4440                                                 struct rpc_pipe_client *pipe_hnd,
4441                                                 TALLOC_CTX *mem_ctx,
4442                                                 int argc,
4443                                                 const char **argv)
4444 {
4445         int ret;
4446         bool r;
4447         ENUM_HND hnd;
4448         uint32 i;
4449         FILE *f;
4450
4451         struct user_token *tokens = NULL;
4452         int num_tokens = 0;
4453
4454         struct share_list share_list;
4455
4456         if (argc == 0) {
4457                 f = stdin;
4458         } else {
4459                 f = fopen(argv[0], "r");
4460         }
4461
4462         if (f == NULL) {
4463                 DEBUG(0, ("Could not open userlist: %s\n", strerror(errno)));
4464                 return NT_STATUS_UNSUCCESSFUL;
4465         }
4466
4467         r = get_user_tokens_from_file(f, &num_tokens, &tokens);
4468
4469         if (f != stdin)
4470                 fclose(f);
4471
4472         if (!r) {
4473                 DEBUG(0, ("Could not read users from file\n"));
4474                 return NT_STATUS_UNSUCCESSFUL;
4475         }
4476
4477         for (i=0; i<num_tokens; i++)
4478                 collect_alias_memberships(&tokens[i].token);
4479
4480         init_enum_hnd(&hnd, 0);
4481
4482         share_list.num_shares = 0;
4483         share_list.shares = NULL;
4484
4485         ret = cli_RNetShareEnum(cli, collect_share, &share_list);
4486
4487         if (ret == -1) {
4488                 DEBUG(0, ("Error returning browse list: %s\n",
4489                           cli_errstr(cli)));
4490                 goto done;
4491         }
4492
4493         for (i = 0; i < share_list.num_shares; i++) {
4494                 char *netname = share_list.shares[i];
4495
4496                 if (netname[strlen(netname)-1] == '$')
4497                         continue;
4498
4499                 d_printf("%s\n", netname);
4500
4501                 show_userlist(pipe_hnd, mem_ctx, netname,
4502                               num_tokens, tokens);
4503         }
4504  done:
4505         for (i=0; i<num_tokens; i++) {
4506                 free_user_token(&tokens[i].token);
4507         }
4508         SAFE_FREE(tokens);
4509         SAFE_FREE(share_list.shares);
4510
4511         return NT_STATUS_OK;
4512 }
4513
4514 static int rpc_share_allowedusers(struct net_context *c, int argc,
4515                                   const char **argv)
4516 {
4517         int result;
4518
4519         if (c->display_usage) {
4520                 d_printf("Usage:\n"
4521                          "net rpc share allowedusers\n"
4522                          "    List allowed users\n");
4523                 return 0;
4524         }
4525
4526         result = run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
4527                                  rpc_aliaslist_internals,
4528                                  argc, argv);
4529         if (result != 0)
4530                 return result;
4531
4532         result = run_rpc_command(c, NULL, &ndr_table_lsarpc.syntax_id, 0,
4533                                  rpc_aliaslist_dump,
4534                                  argc, argv);
4535         if (result != 0)
4536                 return result;
4537
4538         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
4539                                rpc_share_allowedusers_internals,
4540                                argc, argv);
4541 }
4542
4543 int net_usersidlist(struct net_context *c, int argc, const char **argv)
4544 {
4545         int num_tokens = 0;
4546         struct user_token *tokens = NULL;
4547         int i;
4548
4549         if (argc != 0) {
4550                 net_usersidlist_usage(c, argc, argv);
4551                 return 0;
4552         }
4553
4554         if (!get_user_tokens(c, &num_tokens, &tokens)) {
4555                 DEBUG(0, ("Could not get the user/sid list\n"));
4556                 return 0;
4557         }
4558
4559         for (i=0; i<num_tokens; i++) {
4560                 dump_user_token(&tokens[i]);
4561                 free_user_token(&tokens[i].token);
4562         }
4563
4564         SAFE_FREE(tokens);
4565         return 1;
4566 }
4567
4568 int net_usersidlist_usage(struct net_context *c, int argc, const char **argv)
4569 {
4570         d_printf("net usersidlist\n"
4571                  "\tprints out a list of all users the running winbind knows\n"
4572                  "\tabout, together with all their SIDs. This is used as\n"
4573                  "\tinput to the 'net rpc share allowedusers' command.\n\n");
4574
4575         net_common_flags_usage(c, argc, argv);
4576         return -1;
4577 }
4578
4579 /**
4580  * 'net rpc share' entrypoint.
4581  * @param argc  Standard main() style argc.
4582  * @param argv  Standard main() style argv. Initial components are already
4583  *              stripped.
4584  **/
4585
4586 int net_rpc_share(struct net_context *c, int argc, const char **argv)
4587 {
4588         NET_API_STATUS status;
4589
4590         struct functable func[] = {
4591                 {
4592                         "add",
4593                         rpc_share_add,
4594                         NET_TRANSPORT_RPC,
4595                         "Add share",
4596                         "net rpc share add\n"
4597                         "    Add share"
4598                 },
4599                 {
4600                         "delete",
4601                         rpc_share_delete,
4602                         NET_TRANSPORT_RPC,
4603                         "Remove share",
4604                         "net rpc share delete\n"
4605                         "    Remove share"
4606                 },
4607                 {
4608                         "allowedusers",
4609                         rpc_share_allowedusers,
4610                         NET_TRANSPORT_RPC,
4611                         "Modify allowed users",
4612                         "net rpc share allowedusers\n"
4613                         "    Modify allowed users"
4614                 },
4615                 {
4616                         "migrate",
4617                         rpc_share_migrate,
4618                         NET_TRANSPORT_RPC,
4619                         "Migrate share to local server",
4620                         "net rpc share migrate\n"
4621                         "    Migrate share to local server"
4622                 },
4623                 {
4624                         "list",
4625                         rpc_share_list,
4626                         NET_TRANSPORT_RPC,
4627                         "List shares",
4628                         "net rpc share list\n"
4629                         "    List shares"
4630                 },
4631                 {NULL, NULL, 0, NULL, NULL}
4632         };
4633
4634         status = libnetapi_init(&c->netapi_ctx);
4635         if (status != 0) {
4636                 return -1;
4637         }
4638         libnetapi_set_username(c->netapi_ctx, c->opt_user_name);
4639         libnetapi_set_password(c->netapi_ctx, c->opt_password);
4640         if (c->opt_kerberos) {
4641                 libnetapi_set_use_kerberos(c->netapi_ctx);
4642         }
4643
4644         if (argc == 0) {
4645                 if (c->display_usage) {
4646                         d_printf("Usage:\n"
4647                                  "net rpc share\n"
4648                                  "    List shares\n"
4649                                  "    Alias for net rpc share list\n");
4650                         net_display_usage_from_functable(func);
4651                         return 0;
4652                 }
4653
4654                 return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
4655                                        rpc_share_list_internals,
4656                                        argc, argv);
4657         }
4658
4659         return net_run_function(c, argc, argv, "net rpc share", func);
4660 }
4661
4662 static NTSTATUS rpc_sh_share_list(struct net_context *c,
4663                                   TALLOC_CTX *mem_ctx,
4664                                   struct rpc_sh_ctx *ctx,
4665                                   struct rpc_pipe_client *pipe_hnd,
4666                                   int argc, const char **argv)
4667 {
4668         return rpc_share_list_internals(c, ctx->domain_sid, ctx->domain_name,
4669                                         ctx->cli, pipe_hnd, mem_ctx,
4670                                         argc, argv);
4671 }
4672
4673 static NTSTATUS rpc_sh_share_add(struct net_context *c,
4674                                  TALLOC_CTX *mem_ctx,
4675                                  struct rpc_sh_ctx *ctx,
4676                                  struct rpc_pipe_client *pipe_hnd,
4677                                  int argc, const char **argv)
4678 {
4679         NET_API_STATUS status;
4680         uint32_t parm_err = 0;
4681         struct SHARE_INFO_2 i2;
4682
4683         if ((argc < 2) || (argc > 3)) {
4684                 d_fprintf(stderr, "usage: %s <share> <path> [comment]\n",
4685                           ctx->whoami);
4686                 return NT_STATUS_INVALID_PARAMETER;
4687         }
4688
4689         i2.shi2_netname         = argv[0];
4690         i2.shi2_type            = STYPE_DISKTREE;
4691         i2.shi2_remark          = (argc == 3) ? argv[2] : "";
4692         i2.shi2_permissions     = 0;
4693         i2.shi2_max_uses        = 0;
4694         i2.shi2_current_uses    = 0;
4695         i2.shi2_path            = argv[1];
4696         i2.shi2_passwd          = NULL;
4697
4698         status = NetShareAdd(pipe_hnd->desthost,
4699                              2,
4700                              (uint8_t *)&i2,
4701                              &parm_err);
4702
4703         return werror_to_ntstatus(W_ERROR(status));
4704 }
4705
4706 static NTSTATUS rpc_sh_share_delete(struct net_context *c,
4707                                     TALLOC_CTX *mem_ctx,
4708                                     struct rpc_sh_ctx *ctx,
4709                                     struct rpc_pipe_client *pipe_hnd,
4710                                     int argc, const char **argv)
4711 {
4712         WERROR result;
4713         NTSTATUS status;
4714
4715         if (argc != 1) {
4716                 d_fprintf(stderr, "usage: %s <share>\n", ctx->whoami);
4717                 return NT_STATUS_INVALID_PARAMETER;
4718         }
4719
4720         status = rpccli_srvsvc_NetShareDel(pipe_hnd, mem_ctx,
4721                                            pipe_hnd->desthost,
4722                                            argv[0],
4723                                            0,
4724                                            &result);
4725
4726         return status;
4727 }
4728
4729 static NTSTATUS rpc_sh_share_info(struct net_context *c,
4730                                   TALLOC_CTX *mem_ctx,
4731                                   struct rpc_sh_ctx *ctx,
4732                                   struct rpc_pipe_client *pipe_hnd,
4733                                   int argc, const char **argv)
4734 {
4735         union srvsvc_NetShareInfo info;
4736         WERROR result;
4737         NTSTATUS status;
4738
4739         if (argc != 1) {
4740                 d_fprintf(stderr, "usage: %s <share>\n", ctx->whoami);
4741                 return NT_STATUS_INVALID_PARAMETER;
4742         }
4743
4744         status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
4745                                                pipe_hnd->desthost,
4746                                                argv[0],
4747                                                2,
4748                                                &info,
4749                                                &result);
4750         if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
4751                 goto done;
4752         }
4753
4754         d_printf("Name:     %s\n", info.info2->name);
4755         d_printf("Comment:  %s\n", info.info2->comment);
4756         d_printf("Path:     %s\n", info.info2->path);
4757         d_printf("Password: %s\n", info.info2->password);
4758
4759  done:
4760         return werror_to_ntstatus(result);
4761 }
4762
4763 struct rpc_sh_cmd *net_rpc_share_cmds(struct net_context *c, TALLOC_CTX *mem_ctx,
4764                                       struct rpc_sh_ctx *ctx)
4765 {
4766         static struct rpc_sh_cmd cmds[] = {
4767
4768         { "list", NULL, &ndr_table_srvsvc.syntax_id, rpc_sh_share_list,
4769           "List available shares" },
4770
4771         { "add", NULL, &ndr_table_srvsvc.syntax_id, rpc_sh_share_add,
4772           "Add a share" },
4773
4774         { "delete", NULL, &ndr_table_srvsvc.syntax_id, rpc_sh_share_delete,
4775           "Delete a share" },
4776
4777         { "info", NULL, &ndr_table_srvsvc.syntax_id, rpc_sh_share_info,
4778           "Get information about a share" },
4779
4780         { NULL, NULL, 0, NULL, NULL }
4781         };
4782
4783         return cmds;
4784 }
4785
4786 /****************************************************************************/
4787
4788 static int rpc_file_usage(struct net_context *c, int argc, const char **argv)
4789 {
4790         return net_file_usage(c, argc, argv);
4791 }
4792
4793 /**
4794  * Close a file on a remote RPC server.
4795  *
4796  * All parameters are provided by the run_rpc_command function, except for
4797  * argc, argv which are passed through.
4798  *
4799  * @param c     A net_context structure.
4800  * @param domain_sid The domain sid acquired from the remote server.
4801  * @param cli A cli_state connected to the server.
4802  * @param mem_ctx Talloc context, destroyed on completion of the function.
4803  * @param argc  Standard main() style argc.
4804  * @param argv  Standard main() style argv. Initial components are already
4805  *              stripped.
4806  *
4807  * @return Normal NTSTATUS return.
4808  **/
4809 static NTSTATUS rpc_file_close_internals(struct net_context *c,
4810                                         const DOM_SID *domain_sid,
4811                                         const char *domain_name,
4812                                         struct cli_state *cli,
4813                                         struct rpc_pipe_client *pipe_hnd,
4814                                         TALLOC_CTX *mem_ctx,
4815                                         int argc,
4816                                         const char **argv)
4817 {
4818         return rpccli_srvsvc_NetFileClose(pipe_hnd, mem_ctx,
4819                                             pipe_hnd->desthost,
4820                                             atoi(argv[0]), NULL);
4821 }
4822
4823 /**
4824  * Close a file on a remote RPC server.
4825  *
4826  * @param argc  Standard main() style argc.
4827  * @param argv  Standard main() style argv. Initial components are already
4828  *              stripped.
4829  *
4830  * @return A shell status integer (0 for success).
4831  **/
4832 static int rpc_file_close(struct net_context *c, int argc, const char **argv)
4833 {
4834         if (argc < 1 || c->display_usage) {
4835                 return rpc_file_usage(c, argc, argv);
4836         }
4837
4838         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
4839                                rpc_file_close_internals,
4840                                argc, argv);
4841 }
4842
4843 /**
4844  * Formatted print of open file info
4845  *
4846  * @param r  struct srvsvc_NetFileInfo3 contents
4847  **/
4848
4849 static void display_file_info_3(struct srvsvc_NetFileInfo3 *r)
4850 {
4851         d_printf("%-7.1d %-20.20s 0x%-4.2x %-6.1d %s\n",
4852                  r->fid, r->user, r->permissions, r->num_locks, r->path);
4853 }
4854
4855 /**
4856  * List open files on a remote RPC server.
4857  *
4858  * All parameters are provided by the run_rpc_command function, except for
4859  * argc, argv which are passed through.
4860  *
4861  * @param c     A net_context structure.
4862  * @param domain_sid The domain sid acquired from the remote server.
4863  * @param cli A cli_state connected to the server.
4864  * @param mem_ctx Talloc context, destroyed on completion of the function.
4865  * @param argc  Standard main() style argc.
4866  * @param argv  Standard main() style argv. Initial components are already
4867  *              stripped.
4868  *
4869  * @return Normal NTSTATUS return.
4870  **/
4871
4872 static NTSTATUS rpc_file_list_internals(struct net_context *c,
4873                                         const DOM_SID *domain_sid,
4874                                         const char *domain_name,
4875                                         struct cli_state *cli,
4876                                         struct rpc_pipe_client *pipe_hnd,
4877                                         TALLOC_CTX *mem_ctx,
4878                                         int argc,
4879                                         const char **argv)
4880 {
4881         struct srvsvc_NetFileInfoCtr info_ctr;
4882         struct srvsvc_NetFileCtr3 ctr3;
4883         WERROR result;
4884         NTSTATUS status;
4885         uint32 preferred_len = 0xffffffff, i;
4886         const char *username=NULL;
4887         uint32_t total_entries = 0;
4888         uint32_t resume_handle = 0;
4889
4890         /* if argc > 0, must be user command */
4891         if (argc > 0)
4892                 username = smb_xstrdup(argv[0]);
4893
4894         ZERO_STRUCT(info_ctr);
4895         ZERO_STRUCT(ctr3);
4896
4897         info_ctr.level = 3;
4898         info_ctr.ctr.ctr3 = &ctr3;
4899
4900         status = rpccli_srvsvc_NetFileEnum(pipe_hnd, mem_ctx,
4901                                            pipe_hnd->desthost,
4902                                            NULL,
4903                                            username,
4904                                            &info_ctr,
4905                                            preferred_len,
4906                                            &total_entries,
4907                                            &resume_handle,
4908                                            &result);
4909
4910         if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result))
4911                 goto done;
4912
4913         /* Display results */
4914
4915         d_printf(
4916                  "\nEnumerating open files on remote server:\n\n"
4917                  "\nFileId  Opened by            Perms  Locks  Path"
4918                  "\n------  ---------            -----  -----  ---- \n");
4919         for (i = 0; i < total_entries; i++)
4920                 display_file_info_3(&info_ctr.ctr.ctr3->array[i]);
4921  done:
4922         return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
4923 }
4924
4925 /**
4926  * List files for a user on a remote RPC server.
4927  *
4928  * @param argc  Standard main() style argc.
4929  * @param argv  Standard main() style argv. Initial components are already
4930  *              stripped.
4931  *
4932  * @return A shell status integer (0 for success)..
4933  **/
4934
4935 static int rpc_file_user(struct net_context *c, int argc, const char **argv)
4936 {
4937         if (argc < 1 || c->display_usage) {
4938                 return rpc_file_usage(c, argc, argv);
4939         }
4940
4941         return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
4942                                rpc_file_list_internals,
4943                                argc, argv);
4944 }
4945
4946 /**
4947  * 'net rpc file' entrypoint.
4948  * @param argc  Standard main() style argc.
4949  * @param argv  Standard main() style argv. Initial components are already
4950  *              stripped.
4951  **/
4952
4953 int net_rpc_file(struct net_context *c, int argc, const char **argv)
4954 {
4955         struct functable func[] = {
4956                 {
4957                         "close",
4958                         rpc_file_close,
4959                         NET_TRANSPORT_RPC,
4960                         "Close opened file",
4961                         "net rpc file close\n"
4962                         "    Close opened file"
4963                 },
4964                 {
4965                         "user",
4966                         rpc_file_user,
4967                         NET_TRANSPORT_RPC,
4968                         "List files opened by user",
4969                         "net rpc file user\n"
4970                         "    List files opened by user"
4971                 },
4972 #if 0
4973                 {
4974                         "info",
4975                         rpc_file_info,
4976                         NET_TRANSPORT_RPC,
4977                         "Display information about opened file",
4978                         "net rpc file info\n"
4979                         "    Display information about opened file"
4980                 },
4981 #endif
4982                 {NULL, NULL, 0, NULL, NULL}
4983         };
4984
4985         if (argc == 0) {
4986                 if (c->display_usage) {
4987                         d_printf("Usage:\n");
4988                         d_printf("net rpc file\n"
4989                                  "    List opened files\n");
4990                         net_display_usage_from_functable(func);
4991                         return 0;
4992                 }
4993
4994                 return run_rpc_command(c, NULL, &ndr_table_srvsvc.syntax_id, 0,
4995                                        rpc_file_list_internals,
4996                                        argc, argv);
4997         }
4998
4999         return net_run_function(c, argc, argv, "net rpc file", func);
5000 }
5001
5002 /**
5003  * ABORT the shutdown of a remote RPC Server, over initshutdown pipe.
5004  *
5005  * All parameters are provided by the run_rpc_command function, except for
5006  * argc, argv which are passed through.
5007  *
5008  * @param c     A net_context structure.
5009  * @param domain_sid The domain sid acquired from the remote server.
5010  * @param cli A cli_state connected to the server.
5011  * @param mem_ctx Talloc context, destroyed on completion of the function.
5012  * @param argc  Standard main() style argc.
5013  * @param argv  Standard main() style argv. Initial components are already
5014  *              stripped.
5015  *
5016  * @return Normal NTSTATUS return.
5017  **/
5018
5019 static NTSTATUS rpc_shutdown_abort_internals(struct net_context *c,
5020                                         const DOM_SID *domain_sid,
5021                                         const char *domain_name,
5022                                         struct cli_state *cli,
5023                                         struct rpc_pipe_client *pipe_hnd,
5024                                         TALLOC_CTX *mem_ctx,
5025                                         int argc,
5026                                         const char **argv)
5027 {
5028         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5029
5030         result = rpccli_initshutdown_Abort(pipe_hnd, mem_ctx, NULL, NULL);
5031
5032         if (NT_STATUS_IS_OK(result)) {
5033                 d_printf("\nShutdown successfully aborted\n");
5034                 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
5035         } else
5036                 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
5037
5038         return result;
5039 }
5040
5041 /**
5042  * ABORT the shutdown of a remote RPC Server, over winreg pipe.
5043  *
5044  * All parameters are provided by the run_rpc_command function, except for
5045  * argc, argv which are passed through.
5046  *
5047  * @param c     A net_context structure.
5048  * @param domain_sid The domain sid acquired from the remote server.
5049  * @param cli A cli_state connected to the server.
5050  * @param mem_ctx Talloc context, destroyed on completion of the function.
5051  * @param argc  Standard main() style argc.
5052  * @param argv  Standard main() style argv. Initial components are already
5053  *              stripped.
5054  *
5055  * @return Normal NTSTATUS return.
5056  **/
5057
5058 static NTSTATUS rpc_reg_shutdown_abort_internals(struct net_context *c,
5059                                                 const DOM_SID *domain_sid,
5060                                                 const char *domain_name,
5061                                                 struct cli_state *cli,
5062                                                 struct rpc_pipe_client *pipe_hnd,
5063                                                 TALLOC_CTX *mem_ctx,
5064                                                 int argc,
5065                                                 const char **argv)
5066 {
5067         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5068
5069         result = rpccli_winreg_AbortSystemShutdown(pipe_hnd, mem_ctx, NULL, NULL);
5070
5071         if (NT_STATUS_IS_OK(result)) {
5072                 d_printf("\nShutdown successfully aborted\n");
5073                 DEBUG(5,("cmd_reg_abort_shutdown: query succeeded\n"));
5074         } else
5075                 DEBUG(5,("cmd_reg_abort_shutdown: query failed\n"));
5076
5077         return result;
5078 }
5079
5080 /**
5081  * ABORT the shutdown of a remote RPC server.
5082  *
5083  * @param argc  Standard main() style argc.
5084  * @param argv  Standard main() style argv. Initial components are already
5085  *              stripped.
5086  *
5087  * @return A shell status integer (0 for success).
5088  **/
5089
5090 static int rpc_shutdown_abort(struct net_context *c, int argc,
5091                               const char **argv)
5092 {
5093         int rc = -1;
5094
5095         if (c->display_usage) {
5096                 d_printf("Usage:\n"
5097                          "net rpc abortshutdown\n"
5098                          "    Abort a scheduled shutdown\n");
5099                 return 0;
5100         }
5101
5102         rc = run_rpc_command(c, NULL, &ndr_table_initshutdown.syntax_id, 0,
5103                              rpc_shutdown_abort_internals, argc, argv);
5104
5105         if (rc == 0)
5106                 return rc;
5107
5108         DEBUG(1, ("initshutdown pipe didn't work, trying winreg pipe\n"));
5109
5110         return run_rpc_command(c, NULL, &ndr_table_winreg.syntax_id, 0,
5111                                rpc_reg_shutdown_abort_internals,
5112                                argc, argv);
5113 }
5114
5115 /**
5116  * Shut down a remote RPC Server via initshutdown pipe.
5117  *
5118  * All parameters are provided by the run_rpc_command function, except for
5119  * argc, argv which are passed through.
5120  *
5121  * @param c     A net_context structure.
5122  * @param domain_sid The domain sid acquired from the remote server.
5123  * @param cli A cli_state connected to the server.
5124  * @param mem_ctx Talloc context, destroyed on completion of the function.
5125  * @param argc  Standard main() style argc.
5126  * @param argv  Standard main() style argv. Initial components are already
5127  *              stripped.
5128  *
5129  * @return Normal NTSTATUS return.
5130  **/
5131
5132 NTSTATUS rpc_init_shutdown_internals(struct net_context *c,
5133                                      const DOM_SID *domain_sid,
5134                                      const char *domain_name,
5135                                      struct cli_state *cli,
5136                                      struct rpc_pipe_client *pipe_hnd,
5137                                      TALLOC_CTX *mem_ctx,
5138                                      int argc,
5139                                      const char **argv)
5140 {
5141         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5142         const char *msg = "This machine will be shutdown shortly";
5143         uint32 timeout = 20;
5144         struct initshutdown_String msg_string;
5145         struct initshutdown_String_sub s;
5146
5147         if (c->opt_comment) {
5148                 msg = c->opt_comment;
5149         }
5150         if (c->opt_timeout) {
5151                 timeout = c->opt_timeout;
5152         }
5153
5154         s.name = msg;
5155         msg_string.name = &s;
5156
5157         /* create an entry */
5158         result = rpccli_initshutdown_Init(pipe_hnd, mem_ctx, NULL,
5159                         &msg_string, timeout, c->opt_force, c->opt_reboot,
5160                         NULL);
5161
5162         if (NT_STATUS_IS_OK(result)) {
5163                 d_printf("\nShutdown of remote machine succeeded\n");
5164                 DEBUG(5,("Shutdown of remote machine succeeded\n"));
5165         } else {
5166                 DEBUG(1,("Shutdown of remote machine failed!\n"));
5167         }
5168         return result;
5169 }
5170
5171 /**
5172  * Shut down a remote RPC Server via winreg pipe.
5173  *
5174  * All parameters are provided by the run_rpc_command function, except for
5175  * argc, argv which are passed through.
5176  *
5177  * @param c     A net_context structure.
5178  * @param domain_sid The domain sid acquired from the remote server.
5179  * @param cli A cli_state connected to the server.
5180  * @param mem_ctx Talloc context, destroyed on completion of the function.
5181  * @param argc  Standard main() style argc.
5182  * @param argv  Standard main() style argv. Initial components are already
5183  *              stripped.
5184  *
5185  * @return Normal NTSTATUS return.
5186  **/
5187
5188 NTSTATUS rpc_reg_shutdown_internals(struct net_context *c,
5189                                     const DOM_SID *domain_sid,
5190                                     const char *domain_name,
5191                                     struct cli_state *cli,
5192                                     struct rpc_pipe_client *pipe_hnd,
5193                                     TALLOC_CTX *mem_ctx,
5194                                     int argc,
5195                                     const char **argv)
5196 {
5197         const char *msg = "This machine will be shutdown shortly";
5198         uint32 timeout = 20;
5199         struct initshutdown_String msg_string;
5200         struct initshutdown_String_sub s;
5201         NTSTATUS result;
5202         WERROR werr;
5203
5204         if (c->opt_comment) {
5205                 msg = c->opt_comment;
5206         }
5207         s.name = msg;
5208         msg_string.name = &s;
5209
5210         if (c->opt_timeout) {
5211                 timeout = c->opt_timeout;
5212         }
5213
5214         /* create an entry */
5215         result = rpccli_winreg_InitiateSystemShutdown(pipe_hnd, mem_ctx, NULL,
5216                         &msg_string, timeout, c->opt_force, c->opt_reboot,
5217                         &werr);
5218
5219         if (NT_STATUS_IS_OK(result)) {
5220                 d_printf("\nShutdown of remote machine succeeded\n");
5221         } else {
5222                 d_fprintf(stderr, "\nShutdown of remote machine failed\n");
5223                 if ( W_ERROR_EQUAL(werr, WERR_MACHINE_LOCKED) )
5224                         d_fprintf(stderr, "\nMachine locked, use -f switch to force\n");
5225                 else
5226                         d_fprintf(stderr, "\nresult was: %s\n", dos_errstr(werr));
5227         }
5228
5229         return result;
5230 }
5231
5232 /**
5233  * Shut down a remote RPC server.
5234  *
5235  * @param argc  Standard main() style argc.
5236  * @param argv  Standard main() style argv. Initial components are already
5237  *              stripped.
5238  *
5239  * @return A shell status integer (0 for success).
5240  **/
5241
5242 static int rpc_shutdown(struct net_context *c, int argc, const char **argv)
5243 {
5244         int rc =  -1;
5245
5246         if (c->display_usage) {
5247                 d_printf("Usage:\n"
5248                          "net rpc shutdown\n"
5249                          "    Shut down a remote RPC server\n");
5250                 return 0;
5251         }
5252
5253         rc = run_rpc_command(c, NULL, &ndr_table_initshutdown.syntax_id, 0,
5254                              rpc_init_shutdown_internals, argc, argv);
5255
5256         if (rc) {
5257                 DEBUG(1, ("initshutdown pipe failed, trying winreg pipe\n"));
5258                 rc = run_rpc_command(c, NULL, &ndr_table_winreg.syntax_id, 0,
5259                                      rpc_reg_shutdown_internals, argc, argv);
5260         }
5261
5262         return rc;
5263 }
5264
5265 /***************************************************************************
5266   NT Domain trusts code (i.e. 'net rpc trustdom' functionality)
5267  ***************************************************************************/
5268
5269 /**
5270  * Add interdomain trust account to the RPC server.
5271  * All parameters (except for argc and argv) are passed by run_rpc_command
5272  * function.
5273  *
5274  * @param c     A net_context structure.
5275  * @param domain_sid The domain sid acquired from the server.
5276  * @param cli A cli_state connected to the server.
5277  * @param mem_ctx Talloc context, destroyed on completion of the function.
5278  * @param argc  Standard main() style argc.
5279  * @param argv  Standard main() style argv. Initial components are already
5280  *              stripped.
5281  *
5282  * @return normal NTSTATUS return code.
5283  */
5284
5285 static NTSTATUS rpc_trustdom_add_internals(struct net_context *c,
5286                                                 const DOM_SID *domain_sid,
5287                                                 const char *domain_name,
5288                                                 struct cli_state *cli,
5289                                                 struct rpc_pipe_client *pipe_hnd,
5290                                                 TALLOC_CTX *mem_ctx,
5291                                                 int argc,
5292                                                 const char **argv)
5293 {
5294         POLICY_HND connect_pol, domain_pol, user_pol;
5295         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5296         char *acct_name;
5297         struct lsa_String lsa_acct_name;
5298         uint32 acb_info;
5299         uint32 acct_flags=0;
5300         uint32 user_rid;
5301         uint32_t access_granted = 0;
5302         union samr_UserInfo info;
5303         unsigned int orig_timeout;
5304
5305         if (argc != 2) {
5306                 d_printf("Usage: net rpc trustdom add <domain_name> "
5307                          "<trust password>\n");
5308                 return NT_STATUS_INVALID_PARAMETER;
5309         }
5310
5311         /* 
5312          * Make valid trusting domain account (ie. uppercased and with '$' appended)
5313          */
5314
5315         if (asprintf(&acct_name, "%s$", argv[0]) < 0) {
5316                 return NT_STATUS_NO_MEMORY;
5317         }
5318
5319         strupper_m(acct_name);
5320
5321         init_lsa_String(&lsa_acct_name, acct_name);
5322
5323         /* Get samr policy handle */
5324         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
5325                                       pipe_hnd->desthost,
5326                                       MAXIMUM_ALLOWED_ACCESS,
5327                                       &connect_pol);
5328         if (!NT_STATUS_IS_OK(result)) {
5329                 goto done;
5330         }
5331
5332         /* Get domain policy handle */
5333         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
5334                                         &connect_pol,
5335                                         MAXIMUM_ALLOWED_ACCESS,
5336                                         CONST_DISCARD(struct dom_sid2 *, domain_sid),
5337                                         &domain_pol);
5338         if (!NT_STATUS_IS_OK(result)) {
5339                 goto done;
5340         }
5341
5342         /* This call can take a long time - allow the server to time out.
5343          * 35 seconds should do it. */
5344
5345         orig_timeout = rpccli_set_timeout(pipe_hnd, 35000);
5346
5347         /* Create trusting domain's account */
5348         acb_info = ACB_NORMAL;
5349         acct_flags = SEC_GENERIC_READ | SEC_GENERIC_WRITE | SEC_GENERIC_EXECUTE |
5350                      SEC_STD_WRITE_DAC | SEC_STD_DELETE |
5351                      SAMR_USER_ACCESS_SET_PASSWORD |
5352                      SAMR_USER_ACCESS_GET_ATTRIBUTES |
5353                      SAMR_USER_ACCESS_SET_ATTRIBUTES;
5354
5355         result = rpccli_samr_CreateUser2(pipe_hnd, mem_ctx,
5356                                          &domain_pol,
5357                                          &lsa_acct_name,
5358                                          acb_info,
5359                                          acct_flags,
5360                                          &user_pol,
5361                                          &access_granted,
5362                                          &user_rid);
5363
5364         /* And restore our original timeout. */
5365         rpccli_set_timeout(pipe_hnd, orig_timeout);
5366
5367         if (!NT_STATUS_IS_OK(result)) {
5368                 d_printf("net rpc trustdom add: create user %s failed %s\n",
5369                         acct_name, nt_errstr(result));
5370                 goto done;
5371         }
5372
5373         {
5374                 NTTIME notime;
5375                 struct samr_LogonHours hours;
5376                 struct lsa_BinaryString parameters;
5377                 const int units_per_week = 168;
5378                 struct samr_CryptPassword crypt_pwd;
5379
5380                 ZERO_STRUCT(notime);
5381                 ZERO_STRUCT(hours);
5382                 ZERO_STRUCT(parameters);
5383
5384                 hours.bits = talloc_array(mem_ctx, uint8_t, units_per_week);
5385                 if (!hours.bits) {
5386                         result = NT_STATUS_NO_MEMORY;
5387                         goto done;
5388                 }
5389                 hours.units_per_week = units_per_week;
5390                 memset(hours.bits, 0xFF, units_per_week);
5391
5392                 init_samr_CryptPassword(argv[1],
5393                                         &cli->user_session_key,
5394                                         &crypt_pwd);
5395
5396                 init_samr_user_info23(&info.info23,
5397                                       notime, notime, notime,
5398                                       notime, notime, notime,
5399                                       NULL, NULL, NULL, NULL, NULL,
5400                                       NULL, NULL, NULL, NULL, &parameters,
5401                                       0, 0, ACB_DOMTRUST, SAMR_FIELD_ACCT_FLAGS,
5402                                       hours,
5403                                       0, 0, 0, 0, 0, 0, 0,
5404                                       crypt_pwd.data, 24);
5405
5406                 result = rpccli_samr_SetUserInfo2(pipe_hnd, mem_ctx,
5407                                                   &user_pol,
5408                                                   23,
5409                                                   &info);
5410
5411                 if (!NT_STATUS_IS_OK(result)) {
5412                         DEBUG(0,("Could not set trust account password: %s\n",
5413                                  nt_errstr(result)));
5414                         goto done;
5415                 }
5416         }
5417
5418  done:
5419         SAFE_FREE(acct_name);
5420         return result;
5421 }
5422
5423 /**
5424  * Create interdomain trust account for a remote domain.
5425  *
5426  * @param argc Standard argc.
5427  * @param argv Standard argv without initial components.
5428  *
5429  * @return Integer status (0 means success).
5430  **/
5431
5432 static int rpc_trustdom_add(struct net_context *c, int argc, const char **argv)
5433 {
5434         if (argc > 0 && !c->display_usage) {
5435                 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
5436                                        rpc_trustdom_add_internals, argc, argv);
5437         } else {
5438                 d_printf("Usage:\n"
5439                         "net rpc trustdom add <domain_name> <trust password>\n");
5440                 return -1;
5441         }
5442 }
5443
5444
5445 /**
5446  * Remove interdomain trust account from the RPC server.
5447  * All parameters (except for argc and argv) are passed by run_rpc_command
5448  * function.
5449  *
5450  * @param c     A net_context structure.
5451  * @param domain_sid The domain sid acquired from the server.
5452  * @param cli A cli_state connected to the server.
5453  * @param mem_ctx Talloc context, destroyed on completion of the function.
5454  * @param argc  Standard main() style argc.
5455  * @param argv  Standard main() style argv. Initial components are already
5456  *              stripped.
5457  *
5458  * @return normal NTSTATUS return code.
5459  */
5460
5461 static NTSTATUS rpc_trustdom_del_internals(struct net_context *c,
5462                                         const DOM_SID *domain_sid,
5463                                         const char *domain_name,
5464                                         struct cli_state *cli,
5465                                         struct rpc_pipe_client *pipe_hnd,
5466                                         TALLOC_CTX *mem_ctx,
5467                                         int argc,
5468                                         const char **argv)
5469 {
5470         POLICY_HND connect_pol, domain_pol, user_pol;
5471         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5472         char *acct_name;
5473         DOM_SID trust_acct_sid;
5474         struct samr_Ids user_rids, name_types;
5475         struct lsa_String lsa_acct_name;
5476
5477         if (argc != 1) {
5478                 d_printf("Usage: net rpc trustdom del <domain_name>\n");
5479                 return NT_STATUS_INVALID_PARAMETER;
5480         }
5481
5482         /*
5483          * Make valid trusting domain account (ie. uppercased and with '$' appended)
5484          */
5485         acct_name = talloc_asprintf(mem_ctx, "%s$", argv[0]);
5486
5487         if (acct_name == NULL)
5488                 return NT_STATUS_NO_MEMORY;
5489
5490         strupper_m(acct_name);
5491
5492         /* Get samr policy handle */
5493         result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
5494                                       pipe_hnd->desthost,
5495                                       MAXIMUM_ALLOWED_ACCESS,
5496                                       &connect_pol);
5497         if (!NT_STATUS_IS_OK(result)) {
5498                 goto done;
5499         }
5500
5501         /* Get domain policy handle */
5502         result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
5503                                         &connect_pol,
5504                                         MAXIMUM_ALLOWED_ACCESS,
5505                                         CONST_DISCARD(struct dom_sid2 *, domain_sid),
5506                                         &domain_pol);
5507         if (!NT_STATUS_IS_OK(result)) {
5508                 goto done;
5509         }
5510
5511         init_lsa_String(&lsa_acct_name, acct_name);
5512
5513         result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
5514                                          &domain_pol,
5515                                          1,
5516                                          &lsa_acct_name,
5517                                          &user_rids,
5518                                          &name_types);
5519
5520         if (!NT_STATUS_IS_OK(result)) {
5521                 d_printf("net rpc trustdom del: LookupNames on user %s failed %s\n",
5522                         acct_name, nt_errstr(result) );
5523                 goto done;
5524         }
5525
5526         result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
5527                                       &domain_pol,
5528                                       MAXIMUM_ALLOWED_ACCESS,
5529                                       user_rids.ids[0],
5530                                       &user_pol);
5531
5532         if (!NT_STATUS_IS_OK(result)) {
5533                 d_printf("net rpc trustdom del: OpenUser on user %s failed %s\n",
5534                         acct_name, nt_errstr(result) );
5535                 goto done;
5536         }
5537
5538         /* append the rid to the domain sid */
5539         sid_copy(&trust_acct_sid, domain_sid);
5540         if (!sid_append_rid(&trust_acct_sid, user_rids.ids[0])) {
5541                 goto done;
5542         }
5543
5544         /* remove the sid */
5545
5546         result = rpccli_samr_RemoveMemberFromForeignDomain(pipe_hnd, mem_ctx,
5547                                                            &user_pol,
5548                                                            &trust_acct_sid);
5549         if (!NT_STATUS_IS_OK(result)) {
5550                 d_printf("net rpc trustdom del: RemoveMemberFromForeignDomain on user %s failed %s\n",
5551                         acct_name, nt_errstr(result) );
5552                 goto done;
5553         }
5554
5555         /* Delete user */
5556
5557         result = rpccli_samr_DeleteUser(pipe_hnd, mem_ctx,
5558                                         &user_pol);
5559
5560         if (!NT_STATUS_IS_OK(result)) {
5561                 d_printf("net rpc trustdom del: DeleteUser on user %s failed %s\n",
5562                         acct_name, nt_errstr(result) );
5563                 goto done;
5564         }
5565
5566         if (!NT_STATUS_IS_OK(result)) {
5567                 d_printf("Could not set trust account password: %s\n",
5568                    nt_errstr(result));
5569                 goto done;
5570         }
5571
5572  done:
5573         return result;
5574 }
5575
5576 /**
5577  * Delete interdomain trust account for a remote domain.
5578  *
5579  * @param argc Standard argc.
5580  * @param argv Standard argv without initial components.
5581  *
5582  * @return Integer status (0 means success).
5583  **/
5584
5585 static int rpc_trustdom_del(struct net_context *c, int argc, const char **argv)
5586 {
5587         if (argc > 0 && !c->display_usage) {
5588                 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
5589                                        rpc_trustdom_del_internals, argc, argv);
5590         } else {
5591                 d_printf("Usage:\n"
5592                          "net rpc trustdom del <domain>\n");
5593                 return -1;
5594         }
5595 }
5596
5597 static NTSTATUS rpc_trustdom_get_pdc(struct net_context *c,
5598                                      struct cli_state *cli,
5599                                      TALLOC_CTX *mem_ctx,
5600                                      const char *domain_name)
5601 {
5602         char *dc_name = NULL;
5603         const char *buffer = NULL;
5604         struct rpc_pipe_client *netr;
5605         NTSTATUS status;
5606
5607         /* Use NetServerEnum2 */
5608
5609         if (cli_get_pdc_name(cli, domain_name, &dc_name)) {
5610                 SAFE_FREE(dc_name);
5611                 return NT_STATUS_OK;
5612         }
5613
5614         DEBUG(1,("NetServerEnum2 error: Couldn't find primary domain controller\
5615                  for domain %s\n", domain_name));
5616
5617         /* Try netr_GetDcName */
5618
5619         status = cli_rpc_pipe_open_noauth(cli, &ndr_table_netlogon.syntax_id,
5620                                           &netr);
5621         if (!NT_STATUS_IS_OK(status)) {
5622                 return status;
5623         }
5624
5625         status = rpccli_netr_GetDcName(netr, mem_ctx,
5626                                        cli->desthost,
5627                                        domain_name,
5628                                        &buffer,
5629                                        NULL);
5630         TALLOC_FREE(netr);
5631
5632         if (NT_STATUS_IS_OK(status)) {
5633                 return status;
5634         }
5635
5636         DEBUG(1,("netr_GetDcName error: Couldn't find primary domain controller\
5637                  for domain %s\n", domain_name));
5638
5639         return status;
5640 }
5641
5642 /**
5643  * Establish trust relationship to a trusting domain.
5644  * Interdomain account must already be created on remote PDC.
5645  *
5646  * @param c    A net_context structure.
5647  * @param argc Standard argc.
5648  * @param argv Standard argv without initial components.
5649  *
5650  * @return Integer status (0 means success).
5651  **/
5652
5653 static int rpc_trustdom_establish(struct net_context *c, int argc,
5654                                   const char **argv)
5655 {
5656         struct cli_state *cli = NULL;
5657         struct sockaddr_storage server_ss;
5658         struct rpc_pipe_client *pipe_hnd = NULL;
5659         POLICY_HND connect_hnd;
5660         TALLOC_CTX *mem_ctx;
5661         NTSTATUS nt_status;
5662         DOM_SID *domain_sid;
5663
5664         char* domain_name;
5665         char* acct_name;
5666         fstring pdc_name;
5667         union lsa_PolicyInformation *info = NULL;
5668
5669         /*
5670          * Connect to \\server\ipc$ as 'our domain' account with password
5671          */
5672
5673         if (argc != 1 || c->display_usage) {
5674                 d_printf("Usage:\n"
5675                          "net rpc trustdom establish <domain_name>\n");
5676                 return -1;
5677         }
5678
5679         domain_name = smb_xstrdup(argv[0]);
5680         strupper_m(domain_name);
5681
5682         /* account name used at first is our domain's name with '$' */
5683         asprintf(&acct_name, "%s$", lp_workgroup());
5684         strupper_m(acct_name);
5685
5686         /*
5687          * opt_workgroup will be used by connection functions further,
5688          * hence it should be set to remote domain name instead of ours
5689          */
5690         if (c->opt_workgroup) {
5691                 c->opt_workgroup = smb_xstrdup(domain_name);
5692         };
5693
5694         c->opt_user_name = acct_name;
5695
5696         /* find the domain controller */
5697         if (!net_find_pdc(&server_ss, pdc_name, domain_name)) {
5698                 DEBUG(0, ("Couldn't find domain controller for domain %s\n", domain_name));
5699                 return -1;
5700         }
5701
5702         /* connect to ipc$ as username/password */
5703         nt_status = connect_to_ipc(c, &cli, &server_ss, pdc_name);
5704         if (!NT_STATUS_EQUAL(nt_status, NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT)) {
5705
5706                 /* Is it trusting domain account for sure ? */
5707                 DEBUG(0, ("Couldn't verify trusting domain account. Error was %s\n",
5708                         nt_errstr(nt_status)));
5709                 return -1;
5710         }
5711
5712         /* store who we connected to */
5713
5714         saf_store( domain_name, pdc_name );
5715
5716         /*
5717          * Connect to \\server\ipc$ again (this time anonymously)
5718          */
5719
5720         nt_status = connect_to_ipc_anonymous(c, &cli, &server_ss,
5721                                              (char*)pdc_name);
5722
5723         if (NT_STATUS_IS_ERR(nt_status)) {
5724                 DEBUG(0, ("Couldn't connect to domain %s controller. Error was %s.\n",
5725                         domain_name, nt_errstr(nt_status)));
5726                 return -1;
5727         }
5728
5729         if (!(mem_ctx = talloc_init("establishing trust relationship to "
5730                                     "domain %s", domain_name))) {
5731                 DEBUG(0, ("talloc_init() failed\n"));
5732                 cli_shutdown(cli);
5733                 return -1;
5734         }
5735
5736         /* Make sure we're talking to a proper server */
5737
5738         nt_status = rpc_trustdom_get_pdc(c, cli, mem_ctx, domain_name);
5739         if (!NT_STATUS_IS_OK(nt_status)) {
5740                 cli_shutdown(cli);
5741                 talloc_destroy(mem_ctx);
5742                 return -1;
5743         }
5744
5745         /*
5746          * Call LsaOpenPolicy and LsaQueryInfo
5747          */
5748
5749         nt_status = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
5750                                              &pipe_hnd);
5751         if (!NT_STATUS_IS_OK(nt_status)) {
5752                 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n", nt_errstr(nt_status) ));
5753                 cli_shutdown(cli);
5754                 talloc_destroy(mem_ctx);
5755                 return -1;
5756         }
5757
5758         nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, true, SEC_RIGHTS_QUERY_VALUE,
5759                                          &connect_hnd);
5760         if (NT_STATUS_IS_ERR(nt_status)) {
5761                 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
5762                         nt_errstr(nt_status)));
5763                 cli_shutdown(cli);
5764                 talloc_destroy(mem_ctx);
5765                 return -1;
5766         }
5767
5768         /* Querying info level 5 */
5769
5770         nt_status = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
5771                                                &connect_hnd,
5772                                                LSA_POLICY_INFO_ACCOUNT_DOMAIN,
5773                                                &info);
5774         if (NT_STATUS_IS_ERR(nt_status)) {
5775                 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
5776                         nt_errstr(nt_status)));
5777                 cli_shutdown(cli);
5778                 talloc_destroy(mem_ctx);
5779                 return -1;
5780         }
5781
5782         domain_sid = info->account_domain.sid;
5783
5784         /* There should be actually query info level 3 (following nt serv behaviour),
5785            but I still don't know if it's _really_ necessary */
5786
5787         /*
5788          * Store the password in secrets db
5789          */
5790
5791         if (!pdb_set_trusteddom_pw(domain_name, c->opt_password, domain_sid)) {
5792                 DEBUG(0, ("Storing password for trusted domain failed.\n"));
5793                 cli_shutdown(cli);
5794                 talloc_destroy(mem_ctx);
5795                 return -1;
5796         }
5797
5798         /*
5799          * Close the pipes and clean up
5800          */
5801
5802         nt_status = rpccli_lsa_Close(pipe_hnd, mem_ctx, &connect_hnd);
5803         if (NT_STATUS_IS_ERR(nt_status)) {
5804                 DEBUG(0, ("Couldn't close LSA pipe. Error was %s\n",
5805                         nt_errstr(nt_status)));
5806                 cli_shutdown(cli);
5807                 talloc_destroy(mem_ctx);
5808                 return -1;
5809         }
5810
5811         cli_shutdown(cli);
5812
5813         talloc_destroy(mem_ctx);
5814
5815         d_printf("Trust to domain %s established\n", domain_name);
5816         return 0;
5817 }
5818
5819 /**
5820  * Revoke trust relationship to the remote domain.
5821  *
5822  * @param c    A net_context structure.
5823  * @param argc Standard argc.
5824  * @param argv Standard argv without initial components.
5825  *
5826  * @return Integer status (0 means success).
5827  **/
5828
5829 static int rpc_trustdom_revoke(struct net_context *c, int argc,
5830                                const char **argv)
5831 {
5832         char* domain_name;
5833         int rc = -1;
5834
5835         if (argc < 1 || c->display_usage) {
5836                 d_printf("Usage:\n"
5837                          "net rpc trustdom revoke <domain_name>\n"
5838                          "  Revoke trust relationship\n"
5839                          "    domain_name\tName of domain to revoke trust\n");
5840                 return -1;
5841         }
5842
5843         /* generate upper cased domain name */
5844         domain_name = smb_xstrdup(argv[0]);
5845         strupper_m(domain_name);
5846
5847         /* delete password of the trust */
5848         if (!pdb_del_trusteddom_pw(domain_name)) {
5849                 DEBUG(0, ("Failed to revoke relationship to the trusted domain %s\n",
5850                           domain_name));
5851                 goto done;
5852         };
5853
5854         rc = 0;
5855 done:
5856         SAFE_FREE(domain_name);
5857         return rc;
5858 }
5859
5860 static NTSTATUS rpc_query_domain_sid(struct net_context *c,
5861                                         const DOM_SID *domain_sid,
5862                                         const char *domain_name,
5863                                         struct cli_state *cli,
5864                                         struct rpc_pipe_client *pipe_hnd,
5865                                         TALLOC_CTX *mem_ctx,
5866                                         int argc,
5867                                         const char **argv)
5868 {
5869         fstring str_sid;
5870         sid_to_fstring(str_sid, domain_sid);
5871         d_printf("%s\n", str_sid);
5872         return NT_STATUS_OK;
5873 }
5874
5875 static void print_trusted_domain(DOM_SID *dom_sid, const char *trusted_dom_name)
5876 {
5877         fstring ascii_sid, padding;
5878         int pad_len, col_len = 20;
5879
5880         /* convert sid into ascii string */
5881         sid_to_fstring(ascii_sid, dom_sid);
5882
5883         /* calculate padding space for d_printf to look nicer */
5884         pad_len = col_len - strlen(trusted_dom_name);
5885         padding[pad_len] = 0;
5886         do padding[--pad_len] = ' '; while (pad_len);
5887
5888         d_printf("%s%s%s\n", trusted_dom_name, padding, ascii_sid);
5889 }
5890
5891 static NTSTATUS vampire_trusted_domain(struct rpc_pipe_client *pipe_hnd,
5892                                       TALLOC_CTX *mem_ctx,
5893                                       POLICY_HND *pol,
5894                                       DOM_SID dom_sid,
5895                                       const char *trusted_dom_name)
5896 {
5897         NTSTATUS nt_status;
5898         union lsa_TrustedDomainInfo *info = NULL;
5899         char *cleartextpwd = NULL;
5900         uint8_t nt_hash[16];
5901         DATA_BLOB data;
5902
5903         nt_status = rpccli_lsa_QueryTrustedDomainInfoBySid(pipe_hnd, mem_ctx,
5904                                                            pol,
5905                                                            &dom_sid,
5906                                                            LSA_TRUSTED_DOMAIN_INFO_PASSWORD,
5907                                                            &info);
5908         if (NT_STATUS_IS_ERR(nt_status)) {
5909                 DEBUG(0,("Could not query trusted domain info. Error was %s\n",
5910                 nt_errstr(nt_status)));
5911                 goto done;
5912         }
5913
5914         data = data_blob(info->password.password->data,
5915                          info->password.password->length);
5916
5917         if (!rpccli_get_pwd_hash(pipe_hnd, nt_hash)) {
5918                 DEBUG(0, ("Could not retrieve password hash\n"));
5919                 goto done;
5920         }
5921
5922         cleartextpwd = decrypt_trustdom_secret(nt_hash, &data);
5923
5924         if (cleartextpwd == NULL) {
5925                 DEBUG(0,("retrieved NULL password\n"));
5926                 nt_status = NT_STATUS_UNSUCCESSFUL;
5927                 goto done;
5928         }
5929
5930         if (!pdb_set_trusteddom_pw(trusted_dom_name, cleartextpwd, &dom_sid)) {
5931                 DEBUG(0, ("Storing password for trusted domain failed.\n"));
5932                 nt_status = NT_STATUS_UNSUCCESSFUL;
5933                 goto done;
5934         }
5935
5936 #ifdef DEBUG_PASSWORD
5937         DEBUG(100,("successfully vampired trusted domain [%s], sid: [%s], "
5938                    "password: [%s]\n", trusted_dom_name,
5939                    sid_string_dbg(&dom_sid), cleartextpwd));
5940 #endif
5941
5942 done:
5943         SAFE_FREE(cleartextpwd);
5944         data_blob_free(&data);
5945
5946         return nt_status;
5947 }
5948
5949 static int rpc_trustdom_vampire(struct net_context *c, int argc,
5950                                 const char **argv)
5951 {
5952         /* common variables */
5953         TALLOC_CTX* mem_ctx;
5954         struct cli_state *cli = NULL;
5955         struct rpc_pipe_client *pipe_hnd = NULL;
5956         NTSTATUS nt_status;
5957         const char *domain_name = NULL;
5958         DOM_SID *queried_dom_sid;
5959         POLICY_HND connect_hnd;
5960         union lsa_PolicyInformation *info = NULL;
5961
5962         /* trusted domains listing variables */
5963         unsigned int enum_ctx = 0;
5964         int i;
5965         struct lsa_DomainList dom_list;
5966         fstring pdc_name;
5967
5968         if (c->display_usage) {
5969                 d_printf("Usage:\n"
5970                          "net rpc trustdom vampire\n"
5971                          "  Vampire trust relationship from remote server\n");
5972                 return 0;
5973         }
5974
5975         /*
5976          * Listing trusted domains (stored in secrets.tdb, if local)
5977          */
5978
5979         mem_ctx = talloc_init("trust relationships vampire");
5980
5981         /*
5982          * set domain and pdc name to local samba server (default)
5983          * or to remote one given in command line
5984          */
5985
5986         if (StrCaseCmp(c->opt_workgroup, lp_workgroup())) {
5987                 domain_name = c->opt_workgroup;
5988                 c->opt_target_workgroup = c->opt_workgroup;
5989         } else {
5990                 fstrcpy(pdc_name, global_myname());
5991                 domain_name = talloc_strdup(mem_ctx, lp_workgroup());
5992                 c->opt_target_workgroup = domain_name;
5993         };
5994
5995         /* open \PIPE\lsarpc and open policy handle */
5996         nt_status = net_make_ipc_connection(c, NET_FLAGS_PDC, &cli);
5997         if (!NT_STATUS_IS_OK(nt_status)) {
5998                 DEBUG(0, ("Couldn't connect to domain controller: %s\n",
5999                           nt_errstr(nt_status)));
6000                 talloc_destroy(mem_ctx);
6001                 return -1;
6002         };
6003
6004         nt_status = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
6005                                              &pipe_hnd);
6006         if (!NT_STATUS_IS_OK(nt_status)) {
6007                 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n",
6008                         nt_errstr(nt_status) ));
6009                 cli_shutdown(cli);
6010                 talloc_destroy(mem_ctx);
6011                 return -1;
6012         };
6013
6014         nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, false, SEC_RIGHTS_QUERY_VALUE,
6015                                         &connect_hnd);
6016         if (NT_STATUS_IS_ERR(nt_status)) {
6017                 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
6018                         nt_errstr(nt_status)));
6019                 cli_shutdown(cli);
6020                 talloc_destroy(mem_ctx);
6021                 return -1;
6022         };
6023
6024         /* query info level 5 to obtain sid of a domain being queried */
6025         nt_status = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
6026                                                &connect_hnd,
6027                                                LSA_POLICY_INFO_ACCOUNT_DOMAIN,
6028                                                &info);
6029
6030         if (NT_STATUS_IS_ERR(nt_status)) {
6031                 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6032                         nt_errstr(nt_status)));
6033                 cli_shutdown(cli);
6034                 talloc_destroy(mem_ctx);
6035                 return -1;
6036         }
6037
6038         queried_dom_sid = info->account_domain.sid;
6039
6040         /*
6041          * Keep calling LsaEnumTrustdom over opened pipe until
6042          * the end of enumeration is reached
6043          */
6044
6045         d_printf("Vampire trusted domains:\n\n");
6046
6047         do {
6048                 nt_status = rpccli_lsa_EnumTrustDom(pipe_hnd, mem_ctx,
6049                                                     &connect_hnd,
6050                                                     &enum_ctx,
6051                                                     &dom_list,
6052                                                     (uint32_t)-1);
6053                 if (NT_STATUS_IS_ERR(nt_status)) {
6054                         DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
6055                                 nt_errstr(nt_status)));
6056                         cli_shutdown(cli);
6057                         talloc_destroy(mem_ctx);
6058                         return -1;
6059                 };
6060
6061                 for (i = 0; i < dom_list.count; i++) {
6062
6063                         print_trusted_domain(dom_list.domains[i].sid,
6064                                              dom_list.domains[i].name.string);
6065
6066                         nt_status = vampire_trusted_domain(pipe_hnd, mem_ctx, &connect_hnd, 
6067                                                            *dom_list.domains[i].sid,
6068                                                            dom_list.domains[i].name.string);
6069                         if (!NT_STATUS_IS_OK(nt_status)) {
6070                                 cli_shutdown(cli);
6071                                 talloc_destroy(mem_ctx);
6072                                 return -1;
6073                         }
6074                 };
6075
6076                 /*
6077                  * in case of no trusted domains say something rather
6078                  * than just display blank line
6079                  */
6080                 if (!dom_list.count) d_printf("none\n");
6081
6082         } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
6083
6084         /* close this connection before doing next one */
6085         nt_status = rpccli_lsa_Close(pipe_hnd, mem_ctx, &connect_hnd);
6086         if (NT_STATUS_IS_ERR(nt_status)) {
6087                 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
6088                         nt_errstr(nt_status)));
6089                 cli_shutdown(cli);
6090                 talloc_destroy(mem_ctx);
6091                 return -1;
6092         };
6093
6094         /* close lsarpc pipe and connection to IPC$ */
6095         cli_shutdown(cli);
6096
6097         talloc_destroy(mem_ctx);
6098         return 0;
6099 }
6100
6101 static int rpc_trustdom_list(struct net_context *c, int argc, const char **argv)
6102 {
6103         /* common variables */
6104         TALLOC_CTX* mem_ctx;
6105         struct cli_state *cli = NULL, *remote_cli = NULL;
6106         struct rpc_pipe_client *pipe_hnd = NULL;
6107         NTSTATUS nt_status;
6108         const char *domain_name = NULL;
6109         DOM_SID *queried_dom_sid;
6110         fstring padding;
6111         int ascii_dom_name_len;
6112         POLICY_HND connect_hnd;
6113         union lsa_PolicyInformation *info = NULL;
6114
6115         /* trusted domains listing variables */
6116         unsigned int num_domains, enum_ctx = 0;
6117         int i, pad_len, col_len = 20;
6118         struct lsa_DomainList dom_list;
6119         fstring pdc_name;
6120
6121         /* trusting domains listing variables */
6122         POLICY_HND domain_hnd;
6123         struct samr_SamArray *trusts = NULL;
6124
6125         if (c->display_usage) {
6126                 d_printf("Usage:\n"
6127                          "net rpc trustdom list\n"
6128                          "    List trust relationships\n");
6129                 return 0;
6130         }
6131
6132         /*
6133          * Listing trusted domains (stored in secrets.tdb, if local)
6134          */
6135
6136         mem_ctx = talloc_init("trust relationships listing");
6137
6138         /*
6139          * set domain and pdc name to local samba server (default)
6140          * or to remote one given in command line
6141          */
6142
6143         if (StrCaseCmp(c->opt_workgroup, lp_workgroup())) {
6144                 domain_name = c->opt_workgroup;
6145                 c->opt_target_workgroup = c->opt_workgroup;
6146         } else {
6147                 fstrcpy(pdc_name, global_myname());
6148                 domain_name = talloc_strdup(mem_ctx, lp_workgroup());
6149                 c->opt_target_workgroup = domain_name;
6150         };
6151
6152         /* open \PIPE\lsarpc and open policy handle */
6153         nt_status = net_make_ipc_connection(c, NET_FLAGS_PDC, &cli);
6154         if (!NT_STATUS_IS_OK(nt_status)) {
6155                 DEBUG(0, ("Couldn't connect to domain controller: %s\n",
6156                           nt_errstr(nt_status)));
6157                 talloc_destroy(mem_ctx);
6158                 return -1;
6159         };
6160
6161         nt_status = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
6162                                              &pipe_hnd);
6163         if (!NT_STATUS_IS_OK(nt_status)) {
6164                 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n",
6165                         nt_errstr(nt_status) ));
6166                 cli_shutdown(cli);
6167                 talloc_destroy(mem_ctx);
6168                 return -1;
6169         };
6170
6171         nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, false, SEC_RIGHTS_QUERY_VALUE,
6172                                         &connect_hnd);
6173         if (NT_STATUS_IS_ERR(nt_status)) {
6174                 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
6175                         nt_errstr(nt_status)));
6176                 cli_shutdown(cli);
6177                 talloc_destroy(mem_ctx);
6178                 return -1;
6179         };
6180         
6181         /* query info level 5 to obtain sid of a domain being queried */
6182         nt_status = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
6183                                                &connect_hnd,
6184                                                LSA_POLICY_INFO_ACCOUNT_DOMAIN,
6185                                                &info);
6186
6187         if (NT_STATUS_IS_ERR(nt_status)) {
6188                 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6189                         nt_errstr(nt_status)));
6190                 cli_shutdown(cli);
6191                 talloc_destroy(mem_ctx);
6192                 return -1;
6193         }
6194
6195         queried_dom_sid = info->account_domain.sid;
6196
6197         /*
6198          * Keep calling LsaEnumTrustdom over opened pipe until
6199          * the end of enumeration is reached
6200          */
6201          
6202         d_printf("Trusted domains list:\n\n");
6203
6204         do {
6205                 nt_status = rpccli_lsa_EnumTrustDom(pipe_hnd, mem_ctx,
6206                                                     &connect_hnd,
6207                                                     &enum_ctx,
6208                                                     &dom_list,
6209                                                     (uint32_t)-1);
6210                 if (NT_STATUS_IS_ERR(nt_status)) {
6211                         DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
6212                                 nt_errstr(nt_status)));
6213                         cli_shutdown(cli);
6214                         talloc_destroy(mem_ctx);
6215                         return -1;
6216                 };
6217
6218                 for (i = 0; i < dom_list.count; i++) {
6219                         print_trusted_domain(dom_list.domains[i].sid,
6220                                              dom_list.domains[i].name.string);
6221                 };
6222
6223                 /*
6224                  * in case of no trusted domains say something rather
6225                  * than just display blank line
6226                  */
6227                 if (!dom_list.count) d_printf("none\n");
6228
6229         } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
6230
6231         /* close this connection before doing next one */
6232         nt_status = rpccli_lsa_Close(pipe_hnd, mem_ctx, &connect_hnd);
6233         if (NT_STATUS_IS_ERR(nt_status)) {
6234                 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
6235                         nt_errstr(nt_status)));
6236                 cli_shutdown(cli);
6237                 talloc_destroy(mem_ctx);
6238                 return -1;
6239         };
6240         
6241         TALLOC_FREE(pipe_hnd);
6242
6243         /*
6244          * Listing trusting domains (stored in passdb backend, if local)
6245          */
6246         
6247         d_printf("\nTrusting domains list:\n\n");
6248
6249         /*
6250          * Open \PIPE\samr and get needed policy handles
6251          */
6252         nt_status = cli_rpc_pipe_open_noauth(cli, &ndr_table_samr.syntax_id,
6253                                              &pipe_hnd);
6254         if (!NT_STATUS_IS_OK(nt_status)) {
6255                 DEBUG(0, ("Could not initialise samr pipe. Error was %s\n", nt_errstr(nt_status)));
6256                 cli_shutdown(cli);
6257                 talloc_destroy(mem_ctx);
6258                 return -1;
6259         };
6260
6261         /* SamrConnect2 */
6262         nt_status = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
6263                                          pipe_hnd->desthost,
6264                                          SA_RIGHT_SAM_OPEN_DOMAIN,
6265                                          &connect_hnd);
6266         if (!NT_STATUS_IS_OK(nt_status)) {
6267                 DEBUG(0, ("Couldn't open SAMR policy handle. Error was %s\n",
6268                         nt_errstr(nt_status)));
6269                 cli_shutdown(cli);
6270                 talloc_destroy(mem_ctx);
6271                 return -1;
6272         };
6273
6274         /* SamrOpenDomain - we have to open domain policy handle in order to be
6275            able to enumerate accounts*/
6276         nt_status = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
6277                                            &connect_hnd,
6278                                            SA_RIGHT_DOMAIN_ENUM_ACCOUNTS,
6279                                            queried_dom_sid,
6280                                            &domain_hnd);
6281         if (!NT_STATUS_IS_OK(nt_status)) {
6282                 DEBUG(0, ("Couldn't open domain object. Error was %s\n",
6283                         nt_errstr(nt_status)));
6284                 cli_shutdown(cli);
6285                 talloc_destroy(mem_ctx);
6286                 return -1;
6287         };
6288
6289         /*
6290          * perform actual enumeration
6291          */
6292
6293         enum_ctx = 0;   /* reset enumeration context from last enumeration */
6294         do {
6295
6296                 nt_status = rpccli_samr_EnumDomainUsers(pipe_hnd, mem_ctx,
6297                                                         &domain_hnd,
6298                                                         &enum_ctx,
6299                                                         ACB_DOMTRUST,
6300                                                         &trusts,
6301                                                         0xffff,
6302                                                         &num_domains);
6303                 if (NT_STATUS_IS_ERR(nt_status)) {
6304                         DEBUG(0, ("Couldn't enumerate accounts. Error was: %s\n",
6305                                 nt_errstr(nt_status)));
6306                         cli_shutdown(cli);
6307                         talloc_destroy(mem_ctx);
6308                         return -1;
6309                 };
6310
6311                 for (i = 0; i < num_domains; i++) {
6312
6313                         char *str = CONST_DISCARD(char *, trusts->entries[i].name.string);
6314
6315                         /*
6316                          * get each single domain's sid (do we _really_ need this ?):
6317                          *  1) connect to domain's pdc
6318                          *  2) query the pdc for domain's sid
6319                          */
6320
6321                         /* get rid of '$' tail */
6322                         ascii_dom_name_len = strlen(str);
6323                         if (ascii_dom_name_len && ascii_dom_name_len < FSTRING_LEN)
6324                                 str[ascii_dom_name_len - 1] = '\0';
6325
6326                         /* calculate padding space for d_printf to look nicer */
6327                         pad_len = col_len - strlen(str);
6328                         padding[pad_len] = 0;
6329                         do padding[--pad_len] = ' '; while (pad_len);
6330
6331                         /* set opt_* variables to remote domain */
6332                         strupper_m(str);
6333                         c->opt_workgroup = talloc_strdup(mem_ctx, str);
6334                         c->opt_target_workgroup = c->opt_workgroup;
6335
6336                         d_printf("%s%s", str, padding);
6337
6338                         /* connect to remote domain controller */
6339                         nt_status = net_make_ipc_connection(c,
6340                                         NET_FLAGS_PDC | NET_FLAGS_ANONYMOUS,
6341                                         &remote_cli);
6342                         if (NT_STATUS_IS_OK(nt_status)) {
6343                                 /* query for domain's sid */
6344                                 if (run_rpc_command(
6345                                             c, remote_cli,
6346                                             &ndr_table_lsarpc.syntax_id, 0,
6347                                             rpc_query_domain_sid, argc,
6348                                             argv))
6349                                         d_fprintf(stderr, "couldn't get domain's sid\n");
6350
6351                                 cli_shutdown(remote_cli);
6352
6353                         } else {
6354                                 d_fprintf(stderr, "domain controller is not "
6355                                           "responding: %s\n",
6356                                           nt_errstr(nt_status));
6357                         };
6358                 };
6359
6360                 if (!num_domains) d_printf("none\n");
6361
6362         } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
6363
6364         /* close opened samr and domain policy handles */
6365         nt_status = rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_hnd);
6366         if (!NT_STATUS_IS_OK(nt_status)) {
6367                 DEBUG(0, ("Couldn't properly close domain policy handle for domain %s\n", domain_name));
6368         };
6369
6370         nt_status = rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_hnd);
6371         if (!NT_STATUS_IS_OK(nt_status)) {
6372                 DEBUG(0, ("Couldn't properly close samr policy handle for domain %s\n", domain_name));
6373         };
6374
6375         /* close samr pipe and connection to IPC$ */
6376         cli_shutdown(cli);
6377
6378         talloc_destroy(mem_ctx);
6379         return 0;
6380 }
6381
6382 /**
6383  * Entrypoint for 'net rpc trustdom' code.
6384  *
6385  * @param argc Standard argc.
6386  * @param argv Standard argv without initial components.
6387  *
6388  * @return Integer status (0 means success).
6389  */
6390
6391 static int rpc_trustdom(struct net_context *c, int argc, const char **argv)
6392 {
6393         struct functable func[] = {
6394                 {
6395                         "add",
6396                         rpc_trustdom_add,
6397                         NET_TRANSPORT_RPC,
6398                         "Add trusted domain's account",
6399                         "net rpc trustdom add\n"
6400                         "    Add trusted domain's account"
6401                 },
6402                 {
6403                         "del",
6404                         rpc_trustdom_del,
6405                         NET_TRANSPORT_RPC,
6406                         "Remove trusted domain's account",
6407                         "net rpc trustdom del\n"
6408                         "    Remove trusted domain's account"
6409                 },
6410                 {
6411                         "establish",
6412                         rpc_trustdom_establish,
6413                         NET_TRANSPORT_RPC,
6414                         "Establish trust relationship",
6415                         "net rpc trustdom establish\n"
6416                         "    Establish trust relationship"
6417                 },
6418                 {
6419                         "revoke",
6420                         rpc_trustdom_revoke,
6421                         NET_TRANSPORT_RPC,
6422                         "Revoke trust relationship",
6423                         "net rpc trustdom revoke\n"
6424                         "    Revoke trust relationship"
6425                 },
6426                 {
6427                         "list",
6428                         rpc_trustdom_list,
6429                         NET_TRANSPORT_RPC,
6430                         "List domain trusts",
6431                         "net rpc trustdom list\n"
6432                         "    List domain trusts"
6433                 },
6434                 {
6435                         "vampire",
6436                         rpc_trustdom_vampire,
6437                         NET_TRANSPORT_RPC,
6438                         "Vampire trusts from remote server",
6439                         "net rpc trustdom vampire\n"
6440                         "    Vampire trusts from remote server"
6441                 },
6442                 {NULL, NULL, 0, NULL, NULL}
6443         };
6444
6445         return net_run_function(c, argc, argv, "net rpc trustdom", func);
6446 }
6447
6448 /**
6449  * Check if a server will take rpc commands
6450  * @param flags Type of server to connect to (PDC, DMB, localhost)
6451  *              if the host is not explicitly specified
6452  * @return  bool (true means rpc supported)
6453  */
6454 bool net_rpc_check(struct net_context *c, unsigned flags)
6455 {
6456         struct cli_state *cli;
6457         bool ret = false;
6458         struct sockaddr_storage server_ss;
6459         char *server_name = NULL;
6460         NTSTATUS status;
6461
6462         /* flags (i.e. server type) may depend on command */
6463         if (!net_find_server(c, NULL, flags, &server_ss, &server_name))
6464                 return false;
6465
6466         if ((cli = cli_initialise()) == NULL) {
6467                 return false;
6468         }
6469
6470         status = cli_connect(cli, server_name, &server_ss);
6471         if (!NT_STATUS_IS_OK(status))
6472                 goto done;
6473         if (!attempt_netbios_session_request(&cli, global_myname(),
6474                                              server_name, &server_ss))
6475                 goto done;
6476         if (!cli_negprot(cli))
6477                 goto done;
6478         if (cli->protocol < PROTOCOL_NT1)
6479                 goto done;
6480
6481         ret = true;
6482  done:
6483         cli_shutdown(cli);
6484         return ret;
6485 }
6486
6487 /* dump sam database via samsync rpc calls */
6488 static int rpc_samdump(struct net_context *c, int argc, const char **argv) {
6489         if (c->display_usage) {
6490                 d_printf("Usage:\n"
6491                          "net rpc samdump\n"
6492                          "    Dump remote SAM database\n");
6493                 return 0;
6494         }
6495
6496         return run_rpc_command(c, NULL, &ndr_table_netlogon.syntax_id,
6497                                NET_FLAGS_ANONYMOUS,
6498                                rpc_samdump_internals, argc, argv);
6499 }
6500
6501 /* syncronise sam database via samsync rpc calls */
6502 static int rpc_vampire(struct net_context *c, int argc, const char **argv)
6503 {
6504         struct functable func[] = {
6505                 {
6506                         "ldif",
6507                         rpc_vampire_ldif,
6508                         NET_TRANSPORT_RPC,
6509                         "Dump remote SAM database to ldif",
6510                         "net rpc vampire ldif\n"
6511                         "    Dump remote SAM database to LDIF file or stdout"
6512                 },
6513                 {
6514                         "keytab",
6515                         rpc_vampire_keytab,
6516                         NET_TRANSPORT_RPC,
6517                         "Dump remote SAM database to Kerberos Keytab",
6518                         "net rpc vampire keytab\n"
6519                         "    Dump remote SAM database to Kerberos keytab file"
6520                 },
6521
6522                 {NULL, NULL, 0, NULL, NULL}
6523         };
6524
6525         if (argc == 0) {
6526                 if (c->display_usage) {
6527                         d_printf("Usage:\n"
6528                                  "net rpc vampire\n"
6529                                  "    Vampire remote SAM database\n");
6530                         return 0;
6531                 }
6532
6533                 return run_rpc_command(c, NULL, &ndr_table_netlogon.syntax_id,
6534                                        NET_FLAGS_ANONYMOUS,
6535                                        rpc_vampire_internals,
6536                                        argc, argv);
6537         }
6538
6539         return net_run_function(c, argc, argv, "net rpc vampire", func);
6540 }
6541
6542 /**
6543  * Migrate everything from a print server.
6544  *
6545  * @param c     A net_context structure.
6546  * @param argc  Standard main() style argc.
6547  * @param argv  Standard main() style argv. Initial components are already
6548  *              stripped.
6549  *
6550  * @return A shell status integer (0 for success).
6551  *
6552  * The order is important !
6553  * To successfully add drivers the print queues have to exist !
6554  * Applying ACLs should be the last step, because you're easily locked out.
6555  *
6556  **/
6557 static int rpc_printer_migrate_all(struct net_context *c, int argc,
6558                                    const char **argv)
6559 {
6560         int ret;
6561
6562         if (c->display_usage) {
6563                 d_printf("Usage:\n"
6564                          "net rpc printer migrate all\n"
6565                          "    Migrate everything from a print server\n");
6566                 return 0;
6567         }
6568
6569         if (!c->opt_host) {
6570                 d_printf("no server to migrate\n");
6571                 return -1;
6572         }
6573
6574         ret = run_rpc_command(c, NULL, &syntax_spoolss, 0,
6575                               rpc_printer_migrate_printers_internals, argc,
6576                               argv);
6577         if (ret)
6578                 return ret;
6579
6580         ret = run_rpc_command(c, NULL, &syntax_spoolss, 0,
6581                               rpc_printer_migrate_drivers_internals, argc,
6582                               argv);
6583         if (ret)
6584                 return ret;
6585
6586         ret = run_rpc_command(c, NULL, &syntax_spoolss, 0,
6587                               rpc_printer_migrate_forms_internals, argc, argv);
6588         if (ret)
6589                 return ret;
6590
6591         ret = run_rpc_command(c, NULL, &syntax_spoolss, 0,
6592                               rpc_printer_migrate_settings_internals, argc,
6593                               argv);
6594         if (ret)
6595                 return ret;
6596
6597         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6598                                rpc_printer_migrate_security_internals, argc,
6599                                argv);
6600
6601 }
6602
6603 /**
6604  * Migrate print drivers from a print server.
6605  *
6606  * @param c     A net_context structure.
6607  * @param argc  Standard main() style argc.
6608  * @param argv  Standard main() style argv. Initial components are already
6609  *              stripped.
6610  *
6611  * @return A shell status integer (0 for success).
6612  **/
6613 static int rpc_printer_migrate_drivers(struct net_context *c, int argc,
6614                                        const char **argv)
6615 {
6616         if (c->display_usage) {
6617                 d_printf("Usage:\n"
6618                          "net rpc printer migrate drivers\n"
6619                          "     Migrate print-drivers from a print-server\n");
6620                 return 0;
6621         }
6622
6623         if (!c->opt_host) {
6624                 d_printf("no server to migrate\n");
6625                 return -1;
6626         }
6627
6628         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6629                                rpc_printer_migrate_drivers_internals,
6630                                argc, argv);
6631 }
6632
6633 /**
6634  * Migrate print-forms from a print-server.
6635  *
6636  * @param c     A net_context structure.
6637  * @param argc  Standard main() style argc.
6638  * @param argv  Standard main() style argv. Initial components are already
6639  *              stripped.
6640  *
6641  * @return A shell status integer (0 for success).
6642  **/
6643 static int rpc_printer_migrate_forms(struct net_context *c, int argc,
6644                                      const char **argv)
6645 {
6646         if (c->display_usage) {
6647                 d_printf("Usage:\n"
6648                          "net rpc printer migrate forms\n"
6649                          "    Migrate print-forms from a print-server\n");
6650                 return 0;
6651         }
6652
6653         if (!c->opt_host) {
6654                 d_printf("no server to migrate\n");
6655                 return -1;
6656         }
6657
6658         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6659                                rpc_printer_migrate_forms_internals,
6660                                argc, argv);
6661 }
6662
6663 /**
6664  * Migrate printers from a print-server.
6665  *
6666  * @param c     A net_context structure.
6667  * @param argc  Standard main() style argc.
6668  * @param argv  Standard main() style argv. Initial components are already
6669  *              stripped.
6670  *
6671  * @return A shell status integer (0 for success).
6672  **/
6673 static int rpc_printer_migrate_printers(struct net_context *c, int argc,
6674                                         const char **argv)
6675 {
6676         if (c->display_usage) {
6677                 d_printf("Usage:\n"
6678                          "net rpc printer migrate printers\n"
6679                          "    Migrate printers from a print-server\n");
6680                 return 0;
6681         }
6682
6683         if (!c->opt_host) {
6684                 d_printf("no server to migrate\n");
6685                 return -1;
6686         }
6687
6688         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6689                                rpc_printer_migrate_printers_internals,
6690                                argc, argv);
6691 }
6692
6693 /**
6694  * Migrate printer-ACLs from a print-server
6695  *
6696  * @param c     A net_context structure.
6697  * @param argc  Standard main() style argc.
6698  * @param argv  Standard main() style argv. Initial components are already
6699  *              stripped.
6700  *
6701  * @return A shell status integer (0 for success).
6702  **/
6703 static int rpc_printer_migrate_security(struct net_context *c, int argc,
6704                                         const char **argv)
6705 {
6706         if (c->display_usage) {
6707                 d_printf("Usage:\n"
6708                          "net rpc printer migrate security\n"
6709                          "    Migrate printer-ACLs from a print-server\n");
6710                 return 0;
6711         }
6712
6713         if (!c->opt_host) {
6714                 d_printf("no server to migrate\n");
6715                 return -1;
6716         }
6717
6718         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6719                                rpc_printer_migrate_security_internals,
6720                                argc, argv);
6721 }
6722
6723 /**
6724  * Migrate printer-settings from a print-server.
6725  *
6726  * @param c     A net_context structure.
6727  * @param argc  Standard main() style argc.
6728  * @param argv  Standard main() style argv. Initial components are already
6729  *              stripped.
6730  *
6731  * @return A shell status integer (0 for success).
6732  **/
6733 static int rpc_printer_migrate_settings(struct net_context *c, int argc,
6734                                         const char **argv)
6735 {
6736         if (c->display_usage) {
6737                 d_printf("Usage:\n"
6738                          "net rpc printer migrate settings\n"
6739                          "    Migrate printer-settings from a print-server\n");
6740                 return 0;
6741         }
6742
6743         if (!c->opt_host) {
6744                 d_printf("no server to migrate\n");
6745                 return -1;
6746         }
6747
6748         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6749                                rpc_printer_migrate_settings_internals,
6750                                argc, argv);
6751 }
6752
6753 /**
6754  * 'net rpc printer' entrypoint.
6755  *
6756  * @param c     A net_context structure.
6757  * @param argc  Standard main() style argc.
6758  * @param argv  Standard main() style argv. Initial components are already
6759  *              stripped.
6760  **/
6761
6762 int rpc_printer_migrate(struct net_context *c, int argc, const char **argv)
6763 {
6764
6765         /* ouch: when addriver and setdriver are called from within
6766            rpc_printer_migrate_drivers_internals, the printer-queue already
6767            *has* to exist */
6768
6769         struct functable func[] = {
6770                 {
6771                         "all",
6772                         rpc_printer_migrate_all,
6773                         NET_TRANSPORT_RPC,
6774                         "Migrate all from remote to local print server",
6775                         "net rpc printer migrate all\n"
6776                         "    Migrate all from remote to local print server"
6777                 },
6778                 {
6779                         "drivers",
6780                         rpc_printer_migrate_drivers,
6781                         NET_TRANSPORT_RPC,
6782                         "Migrate drivers to local server",
6783                         "net rpc printer migrate drivers\n"
6784                         "    Migrate drivers to local server"
6785                 },
6786                 {
6787                         "forms",
6788                         rpc_printer_migrate_forms,
6789                         NET_TRANSPORT_RPC,
6790                         "Migrate froms to local server",
6791                         "net rpc printer migrate forms\n"
6792                         "    Migrate froms to local server"
6793                 },
6794                 {
6795                         "printers",
6796                         rpc_printer_migrate_printers,
6797                         NET_TRANSPORT_RPC,
6798                         "Migrate printers to local server",
6799                         "net rpc printer migrate printers\n"
6800                         "    Migrate printers to local server"
6801                 },
6802                 {
6803                         "security",
6804                         rpc_printer_migrate_security,
6805                         NET_TRANSPORT_RPC,
6806                         "Mirgate printer ACLs to local server",
6807                         "net rpc printer migrate security\n"
6808                         "    Mirgate printer ACLs to local server"
6809                 },
6810                 {
6811                         "settings",
6812                         rpc_printer_migrate_settings,
6813                         NET_TRANSPORT_RPC,
6814                         "Migrate printer settings to local server",
6815                         "net rpc printer migrate settings\n"
6816                         "    Migrate printer settings to local server"
6817                 },
6818                 {NULL, NULL, 0, NULL, NULL}
6819         };
6820
6821         return net_run_function(c, argc, argv, "net rpc printer migrate",func);
6822 }
6823
6824
6825 /**
6826  * List printers on a remote RPC server.
6827  *
6828  * @param c     A net_context structure.
6829  * @param argc  Standard main() style argc.
6830  * @param argv  Standard main() style argv. Initial components are already
6831  *              stripped.
6832  *
6833  * @return A shell status integer (0 for success).
6834  **/
6835 static int rpc_printer_list(struct net_context *c, int argc, const char **argv)
6836 {
6837         if (c->display_usage) {
6838                 d_printf("Usage:\n"
6839                          "net rpc printer list\n"
6840                          "    List printers on a remote RPC server\n");
6841                 return 0;
6842         }
6843
6844         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6845                                rpc_printer_list_internals,
6846                                argc, argv);
6847 }
6848
6849 /**
6850  * List printer-drivers on a remote RPC server.
6851  *
6852  * @param c     A net_context structure.
6853  * @param argc  Standard main() style argc.
6854  * @param argv  Standard main() style argv. Initial components are already
6855  *              stripped.
6856  *
6857  * @return A shell status integer (0 for success).
6858  **/
6859 static int rpc_printer_driver_list(struct net_context *c, int argc,
6860                                    const char **argv)
6861 {
6862         if (c->display_usage) {
6863                 d_printf("Usage:\n"
6864                          "net rpc printer driver\n"
6865                          "    List printer-drivers on a remote RPC server\n");
6866                 return 0;
6867         }
6868
6869         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6870                                rpc_printer_driver_list_internals,
6871                                argc, argv);
6872 }
6873
6874 /**
6875  * Publish printer in ADS via MSRPC.
6876  *
6877  * @param c     A net_context structure.
6878  * @param argc  Standard main() style argc.
6879  * @param argv  Standard main() style argv. Initial components are already
6880  *              stripped.
6881  *
6882  * @return A shell status integer (0 for success).
6883  **/
6884 static int rpc_printer_publish_publish(struct net_context *c, int argc,
6885                                        const char **argv)
6886 {
6887         if (c->display_usage) {
6888                 d_printf("Usage:\n"
6889                          "net rpc printer publish publish\n"
6890                          "     Publish printer in ADS via MSRPC\n");
6891                 return 0;
6892         }
6893
6894         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6895                                rpc_printer_publish_publish_internals,
6896                                argc, argv);
6897 }
6898
6899 /**
6900  * Update printer in ADS via MSRPC.
6901  *
6902  * @param c     A net_context structure.
6903  * @param argc  Standard main() style argc.
6904  * @param argv  Standard main() style argv. Initial components are already
6905  *              stripped.
6906  *
6907  * @return A shell status integer (0 for success).
6908  **/
6909 static int rpc_printer_publish_update(struct net_context *c, int argc, const char **argv)
6910 {
6911         if (c->display_usage) {
6912                 d_printf("Usage:\n"
6913                          "net rpc printer publish update\n"
6914                          "    Update printer in ADS via MSRPC\n");
6915                 return 0;
6916         }
6917
6918         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6919                                rpc_printer_publish_update_internals,
6920                                argc, argv);
6921 }
6922
6923 /**
6924  * UnPublish printer in ADS via MSRPC.
6925  *
6926  * @param c     A net_context structure.
6927  * @param argc  Standard main() style argc.
6928  * @param argv  Standard main() style argv. Initial components are already
6929  *              stripped.
6930  *
6931  * @return A shell status integer (0 for success).
6932  **/
6933 static int rpc_printer_publish_unpublish(struct net_context *c, int argc,
6934                                          const char **argv)
6935 {
6936         if (c->display_usage) {
6937                 d_printf("Usage:\n"
6938                          "net rpc printer publish unpublish\n"
6939                          "    UnPublish printer in ADS via MSRPC\n");
6940                 return 0;
6941         }
6942
6943         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6944                                rpc_printer_publish_unpublish_internals,
6945                                argc, argv);
6946 }
6947
6948 /**
6949  * List published printers via MSRPC.
6950  *
6951  * @param c     A net_context structure.
6952  * @param argc  Standard main() style argc.
6953  * @param argv  Standard main() style argv. Initial components are already
6954  *              stripped.
6955  *
6956  * @return A shell status integer (0 for success).
6957  **/
6958 static int rpc_printer_publish_list(struct net_context *c, int argc,
6959                                     const char **argv)
6960 {
6961         if (c->display_usage) {
6962                 d_printf("Usage:\n"
6963                          "net rpc printer publish list\n"
6964                          "    List published printers via MSRPC\n");
6965                 return 0;
6966         }
6967
6968         return run_rpc_command(c, NULL, &syntax_spoolss, 0,
6969                                rpc_printer_publish_list_internals,
6970                                argc, argv);
6971 }
6972
6973
6974 /**
6975  * Publish printer in ADS.
6976  *
6977  * @param c     A net_context structure.
6978  * @param argc  Standard main() style argc.
6979  * @param argv  Standard main() style argv. Initial components are already
6980  *              stripped.
6981  *
6982  * @return A shell status integer (0 for success).
6983  **/
6984 static int rpc_printer_publish(struct net_context *c, int argc,
6985                                const char **argv)
6986 {
6987
6988         struct functable func[] = {
6989                 {
6990                         "publish",
6991                         rpc_printer_publish_publish,
6992                         NET_TRANSPORT_RPC,
6993                         "Publish printer in AD",
6994                         "net rpc printer publish publish\n"
6995                         "    Publish printer in AD"
6996                 },
6997                 {
6998                         "update",
6999                         rpc_printer_publish_update,
7000                         NET_TRANSPORT_RPC,
7001                         "Update printer in AD",
7002                         "net rpc printer publish update\n"
7003                         "    Update printer in AD"
7004                 },
7005                 {
7006                         "unpublish",
7007                         rpc_printer_publish_unpublish,
7008                         NET_TRANSPORT_RPC,
7009                         "Unpublish printer",
7010                         "net rpc printer publish unpublish\n"
7011                         "    Unpublish printer"
7012                 },
7013                 {
7014                         "list",
7015                         rpc_printer_publish_list,
7016                         NET_TRANSPORT_RPC,
7017                         "List published printers",
7018                         "net rpc printer publish list\n"
7019                         "    List published printers"
7020                 },
7021                 {NULL, NULL, 0, NULL, NULL}
7022         };
7023
7024         if (argc == 0) {
7025                 if (c->display_usage) {
7026                         d_printf("Usage:\n");
7027                         d_printf("net rpc printer publish\n"
7028                                  "    List published printers\n"
7029                                  "    Alias of net rpc printer publish list\n");
7030                         net_display_usage_from_functable(func);
7031                         return 0;
7032                 }
7033                 return run_rpc_command(c, NULL, &syntax_spoolss, 0,
7034                                rpc_printer_publish_list_internals,
7035                                argc, argv);
7036         }
7037
7038         return net_run_function(c, argc, argv, "net rpc printer publish",func);
7039
7040 }
7041
7042
7043 /**
7044  * Display rpc printer help page.
7045  *
7046  * @param c     A net_context structure.
7047  * @param argc  Standard main() style argc.
7048  * @param argv  Standard main() style argv. Initial components are already
7049  *              stripped.
7050  **/
7051 int rpc_printer_usage(struct net_context *c, int argc, const char **argv)
7052 {
7053         d_printf("net rpc printer LIST [printer] [misc. options] [targets]\n"
7054                  "\tlists all printers on print-server\n\n");
7055         d_printf("net rpc printer DRIVER [printer] [misc. options] [targets]\n"
7056                  "\tlists all printer-drivers on print-server\n\n");
7057         d_printf("net rpc printer PUBLISH action [printer] [misc. options] [targets]\n"
7058                  "\tpublishes printer settings in Active Directory\n"
7059                  "\taction can be one of PUBLISH, UPDATE, UNPUBLISH or LIST\n\n");
7060         d_printf("net rpc printer MIGRATE PRINTERS [printer] [misc. options] [targets]"
7061                  "\n\tmigrates printers from remote to local server\n\n");
7062         d_printf("net rpc printer MIGRATE SETTINGS [printer] [misc. options] [targets]"
7063                  "\n\tmigrates printer-settings from remote to local server\n\n");
7064         d_printf("net rpc printer MIGRATE DRIVERS [printer] [misc. options] [targets]"
7065                  "\n\tmigrates printer-drivers from remote to local server\n\n");
7066         d_printf("net rpc printer MIGRATE FORMS [printer] [misc. options] [targets]"
7067                  "\n\tmigrates printer-forms from remote to local server\n\n");
7068         d_printf("net rpc printer MIGRATE SECURITY [printer] [misc. options] [targets]"
7069                  "\n\tmigrates printer-ACLs from remote to local server\n\n");
7070         d_printf("net rpc printer MIGRATE ALL [printer] [misc. options] [targets]"
7071                  "\n\tmigrates drivers, forms, queues, settings and acls from\n"
7072                  "\tremote to local print-server\n\n");
7073         net_common_methods_usage(c, argc, argv);
7074         net_common_flags_usage(c, argc, argv);
7075         d_printf(
7076          "\t-v or --verbose\t\t\tgive verbose output\n"
7077          "\t      --destination\t\tmigration target server (default: localhost)\n");
7078
7079         return -1;
7080 }
7081
7082 /**
7083  * 'net rpc printer' entrypoint.
7084  *
7085  * @param c     A net_context structure.
7086  * @param argc  Standard main() style argc.
7087  * @param argv  Standard main() style argv. Initial components are already
7088  *              stripped.
7089  **/
7090 int net_rpc_printer(struct net_context *c, int argc, const char **argv)
7091 {
7092         struct functable func[] = {
7093                 {
7094                         "list",
7095                         rpc_printer_list,
7096                         NET_TRANSPORT_RPC,
7097                         "List all printers on print server",
7098                         "net rpc printer list\n"
7099                         "    List all printers on print server"
7100                 },
7101                 {
7102                         "migrate",
7103                         rpc_printer_migrate,
7104                         NET_TRANSPORT_RPC,
7105                         "Migrate printer to local server",
7106                         "net rpc printer migrate\n"
7107                         "    Migrate printer to local server"
7108                 },
7109                 {
7110                         "driver",
7111                         rpc_printer_driver_list,
7112                         NET_TRANSPORT_RPC,
7113                         "List printer drivers",
7114                         "net rpc printer driver\n"
7115                         "    List printer drivers"
7116                 },
7117                 {
7118                         "publish",
7119                         rpc_printer_publish,
7120                         NET_TRANSPORT_RPC,
7121                         "Publish printer in AD",
7122                         "net rpc printer publish\n"
7123                         "    Publish printer in AD"
7124                 },
7125                 {NULL, NULL, 0, NULL, NULL}
7126         };
7127
7128         if (argc == 0) {
7129                 if (c->display_usage) {
7130                         d_printf("Usage:\n");
7131                         d_printf("net rpc printer\n"
7132                                  "    List printers\n");
7133                         net_display_usage_from_functable(func);
7134                         return 0;
7135                 }
7136                 return run_rpc_command(c, NULL, &syntax_spoolss, 0,
7137                                rpc_printer_list_internals,
7138                                argc, argv);
7139         }
7140
7141         return net_run_function(c, argc, argv, "net rpc printer", func);
7142 }
7143
7144 /**
7145  * 'net rpc' entrypoint.
7146  *
7147  * @param c     A net_context structure.
7148  * @param argc  Standard main() style argc.
7149  * @param argv  Standard main() style argv. Initial components are already
7150  *              stripped.
7151  **/
7152
7153 int net_rpc(struct net_context *c, int argc, const char **argv)
7154 {
7155         struct functable func[] = {
7156                 {
7157                         "audit",
7158                         net_rpc_audit,
7159                         NET_TRANSPORT_RPC,
7160                         "Modify global audit settings",
7161                         "net rpc audit\n"
7162                         "    Modify global audit settings"
7163                 },
7164                 {
7165                         "info",
7166                         net_rpc_info,
7167                         NET_TRANSPORT_RPC,
7168                         "Show basic info about a domain",
7169                         "net rpc info\n"
7170                         "    Show basic info about a domain"
7171                 },
7172                 {
7173                         "join",
7174                         net_rpc_join,
7175                         NET_TRANSPORT_RPC,
7176                         "Join a domain",
7177                         "net rpc join\n"
7178                         "    Join a domain"
7179                 },
7180                 {
7181                         "oldjoin",
7182                         net_rpc_oldjoin,
7183                         NET_TRANSPORT_RPC,
7184                         "Join a domain created in server manager",
7185                         "net rpc oldjoin\n"
7186                         "    Join a domain created in server manager"
7187                 },
7188                 {
7189                         "testjoin",
7190                         net_rpc_testjoin,
7191                         NET_TRANSPORT_RPC,
7192                         "Test that a join is valid",
7193                         "net rpc testjoin\n"
7194                         "    Test that a join is valid"
7195                 },
7196                 {
7197                         "user",
7198                         net_rpc_user,
7199                         NET_TRANSPORT_RPC,
7200                         "List/modify users",
7201                         "net rpc user\n"
7202                         "    List/modify users"
7203                 },
7204                 {
7205                         "password",
7206                         rpc_user_password,
7207                         NET_TRANSPORT_RPC,
7208                         "Change a user password",
7209                         "net rpc password\n"
7210                         "    Change a user password\n"
7211                         "    Alias for net rpc user password"
7212                 },
7213                 {
7214                         "group",
7215                         net_rpc_group,
7216                         NET_TRANSPORT_RPC,
7217                         "List/modify groups",
7218                         "net rpc group\n"
7219                         "    List/modify groups"
7220                 },
7221                 {
7222                         "share",
7223                         net_rpc_share,
7224                         NET_TRANSPORT_RPC,
7225                         "List/modify shares",
7226                         "net rpc share\n"
7227                         "    List/modify shares"
7228                 },
7229                 {
7230                         "file",
7231                         net_rpc_file,
7232                         NET_TRANSPORT_RPC,
7233                         "List open files",
7234                         "net rpc file\n"
7235                         "    List open files"
7236                 },
7237                 {
7238                         "printer",
7239                         net_rpc_printer,
7240                         NET_TRANSPORT_RPC,
7241                         "List/modify printers",
7242                         "net rpc printer\n"
7243                         "    List/modify printers"
7244                 },
7245                 {
7246                         "changetrustpw",
7247                         net_rpc_changetrustpw,
7248                         NET_TRANSPORT_RPC,
7249                         "Change trust account password",
7250                         "net rpc changetrustpw\n"
7251                         "    Change trust account password"
7252                 },
7253                 {
7254                         "trustdom",
7255                         rpc_trustdom,
7256                         NET_TRANSPORT_RPC,
7257                         "Modify domain trusts",
7258                         "net rpc trustdom\n"
7259                         "    Modify domain trusts"
7260                 },
7261                 {
7262                         "abortshutdown",
7263                         rpc_shutdown_abort,
7264                         NET_TRANSPORT_RPC,
7265                         "Abort a remote shutdown",
7266                         "net rpc abortshutdown\n"
7267                         "    Abort a remote shutdown"
7268                 },
7269                 {
7270                         "shutdown",
7271                         rpc_shutdown,
7272                         NET_TRANSPORT_RPC,
7273                         "Shutdown a remote server",
7274                         "net rpc shutdown\n"
7275                         "    Shutdown a remote server"
7276                 },
7277                 {
7278                         "samdump",
7279                         rpc_samdump,
7280                         NET_TRANSPORT_RPC,
7281                         "Dump SAM data of remote NT PDC",
7282                         "net rpc samdump\n"
7283                         "    Dump SAM data of remote NT PDC"
7284                 },
7285                 {
7286                         "vampire",
7287                         rpc_vampire,
7288                         NET_TRANSPORT_RPC,
7289                         "Sync a remote NT PDC's data into local passdb",
7290                         "net rpc vampire\n"
7291                         "    Sync a remote NT PDC's data into local passdb"
7292                 },
7293                 {
7294                         "getsid",
7295                         net_rpc_getsid,
7296                         NET_TRANSPORT_RPC,
7297                         "Fetch the domain sid into local secrets.tdb",
7298                         "net rpc getsid\n"
7299                         "    Fetch the domain sid into local secrets.tdb"
7300                 },
7301                 {
7302                         "rights",
7303                         net_rpc_rights,
7304                         NET_TRANSPORT_RPC,
7305                         "Manage privileges assigned to SID",
7306                         "net rpc rights\n"
7307                         "    Manage privileges assigned to SID"
7308                 },
7309                 {
7310                         "service",
7311                         net_rpc_service,
7312                         NET_TRANSPORT_RPC,
7313                         "Start/stop/query remote services",
7314                         "net rpc service\n"
7315                         "    Start/stop/query remote services"
7316                 },
7317                 {
7318                         "registry",
7319                         net_rpc_registry,
7320                         NET_TRANSPORT_RPC,
7321                         "Manage registry hives",
7322                         "net rpc registry\n"
7323                         "    Manage registry hives"
7324                 },
7325                 {
7326                         "shell",
7327                         net_rpc_shell,
7328                         NET_TRANSPORT_RPC,
7329                         "Open interactive shell on remote server",
7330                         "net rpc shell\n"
7331                         "    Open interactive shell on remote server"
7332                 },
7333                 {NULL, NULL, 0, NULL, NULL}
7334         };
7335         return net_run_function(c, argc, argv, "net rpc", func);
7336 }