r5614: fix proto for copy_fn() after changes to cli_list()
[Samba/gebeck_regimport.git] / source3 / utils / net_rpc.c
blob1a5e98b34e930a5adf3749850ae62fdcaa3e88af
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 Guenther Deschner (gd@samba.org)
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
22 #include "includes.h"
23 #include "utils/net.h"
25 /**
26 * @file net_rpc.c
28 * @brief RPC based subcommands for the 'net' utility.
30 * This file should contain much of the functionality that used to
31 * be found in rpcclient, execpt that the commands should change
32 * less often, and the fucntionality should be sane (the user is not
33 * expected to know a rid/sid before they conduct an operation etc.)
35 * @todo Perhaps eventually these should be split out into a number
36 * of files, as this could get quite big.
37 **/
40 /**
41 * Many of the RPC functions need the domain sid. This function gets
42 * it at the start of every run
44 * @param cli A cli_state already connected to the remote machine
46 * @return The Domain SID of the remote machine.
47 **/
49 static DOM_SID *net_get_remote_domain_sid(struct cli_state *cli, TALLOC_CTX *mem_ctx, char **domain_name)
51 DOM_SID *domain_sid;
52 POLICY_HND pol;
53 NTSTATUS result = NT_STATUS_OK;
54 uint32 info_class = 5;
56 if (!cli_nt_session_open (cli, PI_LSARPC)) {
57 fprintf(stderr, "could not initialise lsa pipe\n");
58 goto error;
61 result = cli_lsa_open_policy(cli, mem_ctx, False,
62 SEC_RIGHTS_MAXIMUM_ALLOWED,
63 &pol);
64 if (!NT_STATUS_IS_OK(result)) {
65 goto error;
68 result = cli_lsa_query_info_policy(cli, mem_ctx, &pol, info_class,
69 domain_name, &domain_sid);
70 if (!NT_STATUS_IS_OK(result)) {
71 error:
72 fprintf(stderr, "could not obtain sid for domain %s\n", cli->domain);
74 if (!NT_STATUS_IS_OK(result)) {
75 fprintf(stderr, "error: %s\n", nt_errstr(result));
78 exit(1);
81 cli_lsa_close(cli, mem_ctx, &pol);
82 cli_nt_session_close(cli);
84 return domain_sid;
87 /**
88 * Run a single RPC command, from start to finish.
90 * @param pipe_name the pipe to connect to (usually a PIPE_ constant)
91 * @param conn_flag a NET_FLAG_ combination. Passed to
92 * net_make_ipc_connection.
93 * @param argc Standard main() style argc
94 * @param argc Standard main() style argv. Initial components are already
95 * stripped
96 * @return A shell status integer (0 for success)
99 int run_rpc_command(struct cli_state *cli_arg, const int pipe_idx, int conn_flags,
100 rpc_command_fn fn,
101 int argc, const char **argv)
103 struct cli_state *cli = NULL;
104 TALLOC_CTX *mem_ctx;
105 NTSTATUS nt_status;
106 DOM_SID *domain_sid;
107 char *domain_name;
109 /* make use of cli_state handed over as an argument, if possible */
110 if (!cli_arg)
111 cli = net_make_ipc_connection(conn_flags);
112 else
113 cli = cli_arg;
115 if (!cli) {
116 return -1;
119 /* Create mem_ctx */
121 if (!(mem_ctx = talloc_init("run_rpc_command"))) {
122 DEBUG(0, ("talloc_init() failed\n"));
123 cli_shutdown(cli);
124 return -1;
127 domain_sid = net_get_remote_domain_sid(cli, mem_ctx, &domain_name);
129 if (!(conn_flags & NET_FLAGS_NO_PIPE)) {
130 if (!cli_nt_session_open(cli, pipe_idx)) {
131 DEBUG(0, ("Could not initialise pipe\n"));
135 nt_status = fn(domain_sid, domain_name, cli, mem_ctx, argc, argv);
137 if (!NT_STATUS_IS_OK(nt_status)) {
138 DEBUG(1, ("rpc command function failed! (%s)\n", nt_errstr(nt_status)));
139 } else {
140 DEBUG(5, ("rpc command function succedded\n"));
143 if (!(conn_flags & NET_FLAGS_NO_PIPE)) {
144 if (cli->nt_pipe_fnum[cli->pipe_idx])
145 cli_nt_session_close(cli);
148 /* close the connection only if it was opened here */
149 if (!cli_arg)
150 cli_shutdown(cli);
152 talloc_destroy(mem_ctx);
154 return (!NT_STATUS_IS_OK(nt_status));
158 /****************************************************************************/
161 /**
162 * Force a change of the trust acccount password.
164 * All parameters are provided by the run_rpc_command function, except for
165 * argc, argv which are passes through.
167 * @param domain_sid The domain sid aquired from the remote server
168 * @param cli A cli_state connected to the server.
169 * @param mem_ctx Talloc context, destoyed on compleation of the function.
170 * @param argc Standard main() style argc
171 * @param argc Standard main() style argv. Initial components are already
172 * stripped
174 * @return Normal NTSTATUS return.
177 static NTSTATUS rpc_changetrustpw_internals(const DOM_SID *domain_sid, const char *domain_name,
178 struct cli_state *cli, TALLOC_CTX *mem_ctx,
179 int argc, const char **argv) {
181 return trust_pw_find_change_and_store_it(cli, mem_ctx, opt_target_workgroup);
184 /**
185 * Force a change of the trust acccount password.
187 * @param argc Standard main() style argc
188 * @param argc Standard main() style argv. Initial components are already
189 * stripped
191 * @return A shell status integer (0 for success)
194 int net_rpc_changetrustpw(int argc, const char **argv)
196 return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
197 rpc_changetrustpw_internals,
198 argc, argv);
202 /****************************************************************************/
205 /**
206 * Join a domain, the old way.
208 * This uses 'machinename' as the inital password, and changes it.
210 * The password should be created with 'server manager' or equiv first.
212 * All parameters are provided by the run_rpc_command function, except for
213 * argc, argv which are passes through.
215 * @param domain_sid The domain sid aquired from the remote server
216 * @param cli A cli_state connected to the server.
217 * @param mem_ctx Talloc context, destoyed on compleation of the function.
218 * @param argc Standard main() style argc
219 * @param argc Standard main() style argv. Initial components are already
220 * stripped
222 * @return Normal NTSTATUS return.
225 static NTSTATUS rpc_oldjoin_internals(const DOM_SID *domain_sid, const char *domain_name,
226 struct cli_state *cli,
227 TALLOC_CTX *mem_ctx,
228 int argc, const char **argv) {
230 fstring trust_passwd;
231 unsigned char orig_trust_passwd_hash[16];
232 NTSTATUS result;
233 uint32 sec_channel_type;
236 check what type of join - if the user want's to join as
237 a BDC, the server must agree that we are a BDC.
239 if (argc >= 0) {
240 sec_channel_type = get_sec_channel_type(argv[0]);
241 } else {
242 sec_channel_type = get_sec_channel_type(NULL);
245 fstrcpy(trust_passwd, global_myname());
246 strlower_m(trust_passwd);
249 * Machine names can be 15 characters, but the max length on
250 * a password is 14. --jerry
253 trust_passwd[14] = '\0';
255 E_md4hash(trust_passwd, orig_trust_passwd_hash);
257 result = trust_pw_change_and_store_it(cli, mem_ctx, opt_target_workgroup,
258 orig_trust_passwd_hash,
259 sec_channel_type);
261 if (NT_STATUS_IS_OK(result))
262 printf("Joined domain %s.\n",opt_target_workgroup);
265 if (!secrets_store_domain_sid(opt_target_workgroup, domain_sid)) {
266 DEBUG(0, ("error storing domain sid for %s\n", opt_target_workgroup));
267 result = NT_STATUS_UNSUCCESSFUL;
270 return result;
273 /**
274 * Join a domain, the old way.
276 * @param argc Standard main() style argc
277 * @param argc Standard main() style argv. Initial components are already
278 * stripped
280 * @return A shell status integer (0 for success)
283 static int net_rpc_perform_oldjoin(int argc, const char **argv)
285 return run_rpc_command(NULL, PI_NETLOGON,
286 NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
287 rpc_oldjoin_internals,
288 argc, argv);
291 /**
292 * Join a domain, the old way. This function exists to allow
293 * the message to be displayed when oldjoin was explicitly
294 * requested, but not when it was implied by "net rpc join"
296 * @param argc Standard main() style argc
297 * @param argc Standard main() style argv. Initial components are already
298 * stripped
300 * @return A shell status integer (0 for success)
303 static int net_rpc_oldjoin(int argc, const char **argv)
305 int rc = net_rpc_perform_oldjoin(argc, argv);
307 if (rc) {
308 d_printf("Failed to join domain\n");
311 return rc;
314 /**
315 * Basic usage function for 'net rpc join'
316 * @param argc Standard main() style argc
317 * @param argc Standard main() style argv. Initial components are already
318 * stripped
321 static int rpc_join_usage(int argc, const char **argv)
323 d_printf("net rpc join -U <username>[%%password] <type>[options]\n"\
324 "\t to join a domain with admin username & password\n"\
325 "\t\t password will be prompted if needed and none is specified\n"\
326 "\t <type> can be (default MEMBER)\n"\
327 "\t\t BDC - Join as a BDC\n"\
328 "\t\t PDC - Join as a PDC\n"\
329 "\t\t MEMBER - Join as a MEMBER server\n");
331 net_common_flags_usage(argc, argv);
332 return -1;
335 /**
336 * 'net rpc join' entrypoint.
337 * @param argc Standard main() style argc
338 * @param argc Standard main() style argv. Initial components are already
339 * stripped
341 * Main 'net_rpc_join()' (where the admain username/password is used) is
342 * in net_rpc_join.c
343 * Try to just change the password, but if that doesn't work, use/prompt
344 * for a username/password.
347 int net_rpc_join(int argc, const char **argv)
349 if ((net_rpc_perform_oldjoin(argc, argv) == 0))
350 return 0;
352 return net_rpc_join_newstyle(argc, argv);
357 /**
358 * display info about a rpc domain
360 * All parameters are provided by the run_rpc_command function, except for
361 * argc, argv which are passed through.
363 * @param domain_sid The domain sid acquired from the remote server
364 * @param cli A cli_state connected to the server.
365 * @param mem_ctx Talloc context, destoyed on completion of the function.
366 * @param argc Standard main() style argc
367 * @param argv Standard main() style argv. Initial components are already
368 * stripped
370 * @return Normal NTSTATUS return.
373 static NTSTATUS
374 rpc_info_internals(const DOM_SID *domain_sid, const char *domain_name,
375 struct cli_state *cli,
376 TALLOC_CTX *mem_ctx, int argc, const char **argv)
378 POLICY_HND connect_pol, domain_pol;
379 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
380 SAM_UNK_CTR ctr;
381 fstring sid_str;
383 sid_to_string(sid_str, domain_sid);
385 /* Get sam policy handle */
386 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
387 &connect_pol);
388 if (!NT_STATUS_IS_OK(result)) {
389 goto done;
392 /* Get domain policy handle */
393 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
394 MAXIMUM_ALLOWED_ACCESS,
395 domain_sid, &domain_pol);
396 if (!NT_STATUS_IS_OK(result)) {
397 goto done;
400 ZERO_STRUCT(ctr);
401 result = cli_samr_query_dom_info(cli, mem_ctx, &domain_pol,
402 2, &ctr);
403 if (NT_STATUS_IS_OK(result)) {
404 TALLOC_CTX *ctx = talloc_init("rpc_info_internals");
405 d_printf("Domain Name: %s\n", unistr2_tdup(ctx, &ctr.info.inf2.uni_domain));
406 d_printf("Domain SID: %s\n", sid_str);
407 d_printf("Sequence number: %u\n", ctr.info.inf2.seq_num.low);
408 d_printf("Num users: %u\n", ctr.info.inf2.num_domain_usrs);
409 d_printf("Num domain groups: %u\n", ctr.info.inf2.num_domain_grps);
410 d_printf("Num local groups: %u\n", ctr.info.inf2.num_local_grps);
411 talloc_destroy(ctx);
414 done:
415 return result;
419 /**
420 * 'net rpc info' entrypoint.
421 * @param argc Standard main() style argc
422 * @param argc Standard main() style argv. Initial components are already
423 * stripped
425 int net_rpc_info(int argc, const char **argv)
427 return run_rpc_command(NULL, PI_SAMR, NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
428 rpc_info_internals,
429 argc, argv);
433 /**
434 * Fetch domain SID into the local secrets.tdb
436 * All parameters are provided by the run_rpc_command function, except for
437 * argc, argv which are passes through.
439 * @param domain_sid The domain sid acquired from the remote server
440 * @param cli A cli_state connected to the server.
441 * @param mem_ctx Talloc context, destoyed on completion of the function.
442 * @param argc Standard main() style argc
443 * @param argv Standard main() style argv. Initial components are already
444 * stripped
446 * @return Normal NTSTATUS return.
449 static NTSTATUS
450 rpc_getsid_internals(const DOM_SID *domain_sid, const char *domain_name,
451 struct cli_state *cli,
452 TALLOC_CTX *mem_ctx, int argc, const char **argv)
454 fstring sid_str;
456 sid_to_string(sid_str, domain_sid);
457 d_printf("Storing SID %s for Domain %s in secrets.tdb\n",
458 sid_str, domain_name);
460 if (!secrets_store_domain_sid(domain_name, domain_sid)) {
461 DEBUG(0,("Can't store domain SID\n"));
462 return NT_STATUS_UNSUCCESSFUL;
465 return NT_STATUS_OK;
469 /**
470 * 'net rpc getsid' entrypoint.
471 * @param argc Standard main() style argc
472 * @param argc Standard main() style argv. Initial components are already
473 * stripped
475 int net_rpc_getsid(int argc, const char **argv)
477 return run_rpc_command(NULL, PI_SAMR, NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
478 rpc_getsid_internals,
479 argc, argv);
483 /****************************************************************************/
486 * Basic usage function for 'net rpc user'
487 * @param argc Standard main() style argc.
488 * @param argv Standard main() style argv. Initial components are already
489 * stripped.
492 static int rpc_user_usage(int argc, const char **argv)
494 return net_help_user(argc, argv);
497 /**
498 * Add a new user to a remote RPC server
500 * All parameters are provided by the run_rpc_command function, except for
501 * argc, argv which are passes through.
503 * @param domain_sid The domain sid acquired from the remote server
504 * @param cli A cli_state connected to the server.
505 * @param mem_ctx Talloc context, destoyed on completion of the function.
506 * @param argc Standard main() style argc
507 * @param argv Standard main() style argv. Initial components are already
508 * stripped
510 * @return Normal NTSTATUS return.
513 static NTSTATUS rpc_user_add_internals(const DOM_SID *domain_sid, const char *domain_name,
514 struct cli_state *cli, TALLOC_CTX *mem_ctx,
515 int argc, const char **argv) {
517 POLICY_HND connect_pol, domain_pol, user_pol;
518 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
519 const char *acct_name;
520 uint16 acb_info;
521 uint32 unknown, user_rid;
523 if (argc != 1) {
524 d_printf("User must be specified\n");
525 rpc_user_usage(argc, argv);
526 return NT_STATUS_OK;
529 acct_name = argv[0];
531 /* Get sam policy handle */
533 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
534 &connect_pol);
535 if (!NT_STATUS_IS_OK(result)) {
536 goto done;
539 /* Get domain policy handle */
541 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
542 MAXIMUM_ALLOWED_ACCESS,
543 domain_sid, &domain_pol);
544 if (!NT_STATUS_IS_OK(result)) {
545 goto done;
548 /* Create domain user */
550 acb_info = ACB_NORMAL;
551 unknown = 0xe005000b; /* No idea what this is - a permission mask? */
553 result = cli_samr_create_dom_user(cli, mem_ctx, &domain_pol,
554 acct_name, acb_info, unknown,
555 &user_pol, &user_rid);
556 if (!NT_STATUS_IS_OK(result)) {
557 goto done;
560 done:
561 if (!NT_STATUS_IS_OK(result)) {
562 d_printf("Failed to add user %s - %s\n", acct_name,
563 nt_errstr(result));
564 } else {
565 d_printf("Added user %s\n", acct_name);
567 return result;
570 /**
571 * Add a new user to a remote RPC server
573 * @param argc Standard main() style argc
574 * @param argv Standard main() style argv. Initial components are already
575 * stripped
577 * @return A shell status integer (0 for success)
580 static int rpc_user_add(int argc, const char **argv)
582 return run_rpc_command(NULL, PI_SAMR, 0, rpc_user_add_internals,
583 argc, argv);
586 /**
587 * Delete a user from a remote RPC server
589 * All parameters are provided by the run_rpc_command function, except for
590 * argc, argv which are passes through.
592 * @param domain_sid The domain sid acquired from the remote server
593 * @param cli A cli_state connected to the server.
594 * @param mem_ctx Talloc context, destoyed on completion of the function.
595 * @param argc Standard main() style argc
596 * @param argv Standard main() style argv. Initial components are already
597 * stripped
599 * @return Normal NTSTATUS return.
602 static NTSTATUS rpc_user_del_internals(const DOM_SID *domain_sid,
603 const char *domain_name,
604 struct cli_state *cli,
605 TALLOC_CTX *mem_ctx,
606 int argc, const char **argv)
608 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
609 POLICY_HND connect_pol, domain_pol, user_pol;
611 if (argc < 1) {
612 d_printf("User must be specified\n");
613 rpc_user_usage(argc, argv);
614 return NT_STATUS_OK;
616 /* Get sam policy and domain handles */
618 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
619 &connect_pol);
621 if (!NT_STATUS_IS_OK(result)) {
622 goto done;
625 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
626 MAXIMUM_ALLOWED_ACCESS,
627 domain_sid, &domain_pol);
629 if (!NT_STATUS_IS_OK(result)) {
630 goto done;
633 /* Get handle on user */
636 uint32 *user_rids, num_rids, *name_types;
637 uint32 flags = 0x000003e8; /* Unknown */
639 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol,
640 flags, 1, &argv[0],
641 &num_rids, &user_rids,
642 &name_types);
644 if (!NT_STATUS_IS_OK(result)) {
645 goto done;
648 result = cli_samr_open_user(cli, mem_ctx, &domain_pol,
649 MAXIMUM_ALLOWED_ACCESS,
650 user_rids[0], &user_pol);
652 if (!NT_STATUS_IS_OK(result)) {
653 goto done;
657 /* Delete user */
659 result = cli_samr_delete_dom_user(cli, mem_ctx, &user_pol);
661 if (!NT_STATUS_IS_OK(result)) {
662 goto done;
665 /* Display results */
667 done:
668 return result;
672 /**
673 * Rename a user on a remote RPC server
675 * All parameters are provided by the run_rpc_command function, except for
676 * argc, argv which are passes through.
678 * @param domain_sid The domain sid acquired from the remote server
679 * @param cli A cli_state connected to the server.
680 * @param mem_ctx Talloc context, destoyed on completion of the function.
681 * @param argc Standard main() style argc
682 * @param argv Standard main() style argv. Initial components are already
683 * stripped
685 * @return Normal NTSTATUS return.
688 static NTSTATUS rpc_user_rename_internals(const DOM_SID *domain_sid, const char *domain_name,
689 struct cli_state *cli, TALLOC_CTX *mem_ctx,
690 int argc, const char **argv) {
692 POLICY_HND connect_pol, domain_pol, user_pol;
693 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
694 uint32 info_level = 7;
695 const char *old_name, *new_name;
696 uint32 *user_rid;
697 uint32 flags = 0x000003e8; /* Unknown */
698 uint32 num_rids, *name_types;
699 uint32 num_names = 1;
700 const char **names;
701 SAM_USERINFO_CTR *user_ctr;
702 SAM_USERINFO_CTR ctr;
703 SAM_USER_INFO_7 info7;
705 if (argc != 2) {
706 d_printf("New and old username must be specified\n");
707 rpc_user_usage(argc, argv);
708 return NT_STATUS_OK;
711 old_name = argv[0];
712 new_name = argv[1];
714 ZERO_STRUCT(ctr);
715 ZERO_STRUCT(user_ctr);
717 /* Get sam policy handle */
719 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
720 &connect_pol);
721 if (!NT_STATUS_IS_OK(result)) {
722 goto done;
725 /* Get domain policy handle */
727 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
728 MAXIMUM_ALLOWED_ACCESS,
729 domain_sid, &domain_pol);
730 if (!NT_STATUS_IS_OK(result)) {
731 goto done;
734 names = TALLOC_ARRAY(mem_ctx, const char *, num_names);
735 names[0] = old_name;
736 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol,
737 flags, num_names, names,
738 &num_rids, &user_rid, &name_types);
739 if (!NT_STATUS_IS_OK(result)) {
740 goto done;
743 /* Open domain user */
744 result = cli_samr_open_user(cli, mem_ctx, &domain_pol,
745 MAXIMUM_ALLOWED_ACCESS, user_rid[0], &user_pol);
747 if (!NT_STATUS_IS_OK(result)) {
748 goto done;
751 /* Query user info */
752 result = cli_samr_query_userinfo(cli, mem_ctx, &user_pol,
753 info_level, &user_ctr);
755 if (!NT_STATUS_IS_OK(result)) {
756 goto done;
759 ctr.switch_value = info_level;
760 ctr.info.id7 = &info7;
762 init_sam_user_info7(&info7, new_name);
764 /* Set new name */
765 result = cli_samr_set_userinfo(cli, mem_ctx, &user_pol,
766 info_level, &cli->user_session_key, &ctr);
768 if (!NT_STATUS_IS_OK(result)) {
769 goto done;
772 done:
773 if (!NT_STATUS_IS_OK(result)) {
774 d_printf("Failed to rename user from %s to %s - %s\n", old_name, new_name,
775 nt_errstr(result));
776 } else {
777 d_printf("Renamed user from %s to %s\n", old_name, new_name);
779 return result;
783 /**
784 * Rename a user on a remote RPC server
786 * @param argc Standard main() style argc
787 * @param argv Standard main() style argv. Initial components are already
788 * stripped
790 * @return A shell status integer (0 for success)
793 static int rpc_user_rename(int argc, const char **argv)
795 return run_rpc_command(NULL, PI_SAMR, 0, rpc_user_rename_internals,
796 argc, argv);
799 /**
800 * Delete a user from a remote RPC server
802 * @param argc Standard main() style argc
803 * @param argv Standard main() style argv. Initial components are already
804 * stripped
806 * @return A shell status integer (0 for success)
809 static int rpc_user_delete(int argc, const char **argv)
811 return run_rpc_command(NULL, PI_SAMR, 0, rpc_user_del_internals,
812 argc, argv);
815 /**
816 * Set a password for a user on a remote RPC server
818 * All parameters are provided by the run_rpc_command function, except for
819 * argc, argv which are passes through.
821 * @param domain_sid The domain sid acquired from the remote server
822 * @param cli A cli_state connected to the server.
823 * @param mem_ctx Talloc context, destoyed on completion of the function.
824 * @param argc Standard main() style argc
825 * @param argv Standard main() style argv. Initial components are already
826 * stripped
828 * @return Normal NTSTATUS return.
831 static NTSTATUS rpc_user_password_internals(const DOM_SID *domain_sid,
832 const char *domain_name,
833 struct cli_state *cli,
834 TALLOC_CTX *mem_ctx,
835 int argc, const char **argv)
837 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
838 POLICY_HND connect_pol, domain_pol, user_pol;
839 SAM_USERINFO_CTR ctr;
840 SAM_USER_INFO_24 p24;
841 uchar pwbuf[516];
842 const char *user;
843 const char *new_password;
844 char *prompt = NULL;
846 if (argc < 1) {
847 d_printf("User must be specified\n");
848 rpc_user_usage(argc, argv);
849 return NT_STATUS_OK;
852 user = argv[0];
854 if (argv[1]) {
855 new_password = argv[1];
856 } else {
857 asprintf(&prompt, "Enter new password for %s:", user);
858 new_password = getpass(prompt);
859 SAFE_FREE(prompt);
862 /* Get sam policy and domain handles */
864 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
865 &connect_pol);
867 if (!NT_STATUS_IS_OK(result)) {
868 goto done;
871 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
872 MAXIMUM_ALLOWED_ACCESS,
873 domain_sid, &domain_pol);
875 if (!NT_STATUS_IS_OK(result)) {
876 goto done;
879 /* Get handle on user */
882 uint32 *user_rids, num_rids, *name_types;
883 uint32 flags = 0x000003e8; /* Unknown */
885 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol,
886 flags, 1, &user,
887 &num_rids, &user_rids,
888 &name_types);
890 if (!NT_STATUS_IS_OK(result)) {
891 goto done;
894 result = cli_samr_open_user(cli, mem_ctx, &domain_pol,
895 MAXIMUM_ALLOWED_ACCESS,
896 user_rids[0], &user_pol);
898 if (!NT_STATUS_IS_OK(result)) {
899 goto done;
903 /* Set password on account */
905 ZERO_STRUCT(ctr);
906 ZERO_STRUCT(p24);
908 encode_pw_buffer(pwbuf, new_password, STR_UNICODE);
910 init_sam_user_info24(&p24, (char *)pwbuf,24);
912 ctr.switch_value = 24;
913 ctr.info.id24 = &p24;
915 result = cli_samr_set_userinfo(cli, mem_ctx, &user_pol, 24,
916 &cli->user_session_key, &ctr);
918 if (!NT_STATUS_IS_OK(result)) {
919 goto done;
922 /* Display results */
924 done:
925 return result;
929 /**
930 * Set a user's password on a remote RPC server
932 * @param argc Standard main() style argc
933 * @param argv Standard main() style argv. Initial components are already
934 * stripped
936 * @return A shell status integer (0 for success)
939 static int rpc_user_password(int argc, const char **argv)
941 return run_rpc_command(NULL, PI_SAMR, 0, rpc_user_password_internals,
942 argc, argv);
945 /**
946 * List user's groups on a remote RPC server
948 * All parameters are provided by the run_rpc_command function, except for
949 * argc, argv which are passes through.
951 * @param domain_sid The domain sid acquired from the remote server
952 * @param cli A cli_state connected to the server.
953 * @param mem_ctx Talloc context, destoyed on completion of the function.
954 * @param argc Standard main() style argc
955 * @param argv Standard main() style argv. Initial components are already
956 * stripped
958 * @return Normal NTSTATUS return.
961 static NTSTATUS
962 rpc_user_info_internals(const DOM_SID *domain_sid, const char *domain_name,
963 struct cli_state *cli,
964 TALLOC_CTX *mem_ctx, int argc, const char **argv)
966 POLICY_HND connect_pol, domain_pol, user_pol;
967 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
968 uint32 *rids, num_rids, *name_types, num_names;
969 uint32 flags = 0x000003e8; /* Unknown */
970 int i;
971 char **names;
972 DOM_GID *user_gids;
974 if (argc < 1) {
975 d_printf("User must be specified\n");
976 rpc_user_usage(argc, argv);
977 return NT_STATUS_OK;
979 /* Get sam policy handle */
981 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
982 &connect_pol);
983 if (!NT_STATUS_IS_OK(result)) goto done;
985 /* Get domain policy handle */
987 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
988 MAXIMUM_ALLOWED_ACCESS,
989 domain_sid, &domain_pol);
990 if (!NT_STATUS_IS_OK(result)) goto done;
992 /* Get handle on user */
994 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol,
995 flags, 1, &argv[0],
996 &num_rids, &rids, &name_types);
998 if (!NT_STATUS_IS_OK(result)) goto done;
1000 result = cli_samr_open_user(cli, mem_ctx, &domain_pol,
1001 MAXIMUM_ALLOWED_ACCESS,
1002 rids[0], &user_pol);
1003 if (!NT_STATUS_IS_OK(result)) goto done;
1005 result = cli_samr_query_usergroups(cli, mem_ctx, &user_pol,
1006 &num_rids, &user_gids);
1008 if (!NT_STATUS_IS_OK(result)) goto done;
1010 /* Look up rids */
1012 if (rids) {
1013 rids = TALLOC_ARRAY(mem_ctx, uint32, num_rids);
1015 for (i = 0; i < num_rids; i++)
1016 rids[i] = user_gids[i].g_rid;
1018 result = cli_samr_lookup_rids(cli, mem_ctx, &domain_pol,
1019 num_rids, rids,
1020 &num_names, &names, &name_types);
1022 if (!NT_STATUS_IS_OK(result)) {
1023 goto done;
1026 /* Display results */
1028 for (i = 0; i < num_names; i++)
1029 printf("%s\n", names[i]);
1031 else {
1032 printf("no groups\n");
1034 done:
1035 return result;
1038 /**
1039 * List a user's groups from a remote RPC server
1041 * @param argc Standard main() style argc
1042 * @param argv Standard main() style argv. Initial components are already
1043 * stripped
1045 * @return A shell status integer (0 for success)
1048 static int rpc_user_info(int argc, const char **argv)
1050 return run_rpc_command(NULL, PI_SAMR, 0, rpc_user_info_internals,
1051 argc, argv);
1054 /**
1055 * List users on a remote RPC server
1057 * All parameters are provided by the run_rpc_command function, except for
1058 * argc, argv which are passes through.
1060 * @param domain_sid The domain sid acquired from the remote server
1061 * @param cli A cli_state connected to the server.
1062 * @param mem_ctx Talloc context, destoyed on completion of the function.
1063 * @param argc Standard main() style argc
1064 * @param argv Standard main() style argv. Initial components are already
1065 * stripped
1067 * @return Normal NTSTATUS return.
1070 static NTSTATUS
1071 rpc_user_list_internals(const DOM_SID *domain_sid, const char *domain_name,
1072 struct cli_state *cli,
1073 TALLOC_CTX *mem_ctx, int argc, const char **argv)
1075 POLICY_HND connect_pol, domain_pol;
1076 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1077 uint32 start_idx=0, num_entries, i, loop_count = 0;
1078 SAM_DISPINFO_CTR ctr;
1079 SAM_DISPINFO_1 info1;
1081 /* Get sam policy handle */
1083 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
1084 &connect_pol);
1085 if (!NT_STATUS_IS_OK(result)) {
1086 goto done;
1089 /* Get domain policy handle */
1091 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1092 MAXIMUM_ALLOWED_ACCESS,
1093 domain_sid, &domain_pol);
1094 if (!NT_STATUS_IS_OK(result)) {
1095 goto done;
1098 /* Query domain users */
1099 ZERO_STRUCT(ctr);
1100 ZERO_STRUCT(info1);
1101 ctr.sam.info1 = &info1;
1102 if (opt_long_list_entries)
1103 d_printf("\nUser name Comment"\
1104 "\n-----------------------------\n");
1105 do {
1106 fstring user, desc;
1107 uint32 max_entries, max_size;
1109 get_query_dispinfo_params(
1110 loop_count, &max_entries, &max_size);
1112 result = cli_samr_query_dispinfo(cli, mem_ctx, &domain_pol,
1113 &start_idx, 1, &num_entries,
1114 max_entries, max_size, &ctr);
1115 loop_count++;
1117 for (i = 0; i < num_entries; i++) {
1118 unistr2_to_ascii(user, &(&ctr.sam.info1->str[i])->uni_acct_name, sizeof(user)-1);
1119 if (opt_long_list_entries)
1120 unistr2_to_ascii(desc, &(&ctr.sam.info1->str[i])->uni_acct_desc, sizeof(desc)-1);
1122 if (opt_long_list_entries)
1123 printf("%-21.21s %s\n", user, desc);
1124 else
1125 printf("%s\n", user);
1127 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
1129 done:
1130 return result;
1133 /**
1134 * 'net rpc user' entrypoint.
1135 * @param argc Standard main() style argc
1136 * @param argc Standard main() style argv. Initial components are already
1137 * stripped
1140 int net_rpc_user(int argc, const char **argv)
1142 struct functable func[] = {
1143 {"add", rpc_user_add},
1144 {"info", rpc_user_info},
1145 {"delete", rpc_user_delete},
1146 {"password", rpc_user_password},
1147 {"rename", rpc_user_rename},
1148 {NULL, NULL}
1151 if (argc == 0) {
1152 if (opt_long_list_entries) {
1153 } else {
1155 return run_rpc_command(NULL,PI_SAMR, 0,
1156 rpc_user_list_internals,
1157 argc, argv);
1160 return net_run_function(argc, argv, func, rpc_user_usage);
1164 /****************************************************************************/
1167 * Basic usage function for 'net rpc group'
1168 * @param argc Standard main() style argc.
1169 * @param argv Standard main() style argv. Initial components are already
1170 * stripped.
1173 static int rpc_group_usage(int argc, const char **argv)
1175 return net_help_group(argc, argv);
1179 * Delete group on a remote RPC server
1181 * All parameters are provided by the run_rpc_command function, except for
1182 * argc, argv which are passes through.
1184 * @param domain_sid The domain sid acquired from the remote server
1185 * @param cli A cli_state connected to the server.
1186 * @param mem_ctx Talloc context, destoyed on completion of the function.
1187 * @param argc Standard main() style argc
1188 * @param argv Standard main() style argv. Initial components are already
1189 * stripped
1191 * @return Normal NTSTATUS return.
1194 static NTSTATUS rpc_group_delete_internals(const DOM_SID *domain_sid,
1195 const char *domain_name,
1196 struct cli_state *cli,
1197 TALLOC_CTX *mem_ctx,
1198 int argc, const char **argv)
1200 POLICY_HND connect_pol, domain_pol, group_pol, user_pol;
1201 BOOL group_is_primary = False;
1202 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1204 uint32 *group_rids, num_rids, *name_types, num_members,
1205 *group_attrs, group_rid;
1206 uint32 flags = 0x000003e8; /* Unknown */
1207 /* char **names; */
1208 int i;
1209 /* DOM_GID *user_gids; */
1210 SAM_USERINFO_CTR *user_ctr;
1211 fstring temp;
1213 if (argc < 1) {
1214 d_printf("specify group\n");
1215 rpc_group_usage(argc,argv);
1216 return NT_STATUS_OK; /* ok? */
1219 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
1220 &connect_pol);
1222 if (!NT_STATUS_IS_OK(result)) {
1223 d_printf("Request samr_connect failed\n");
1224 goto done;
1227 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1228 MAXIMUM_ALLOWED_ACCESS,
1229 domain_sid, &domain_pol);
1231 if (!NT_STATUS_IS_OK(result)) {
1232 d_printf("Request open_domain failed\n");
1233 goto done;
1236 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol,
1237 flags, 1, &argv[0],
1238 &num_rids, &group_rids,
1239 &name_types);
1241 if (!NT_STATUS_IS_OK(result)) {
1242 d_printf("Lookup of '%s' failed\n",argv[0]);
1243 goto done;
1246 switch (name_types[0])
1248 case SID_NAME_DOM_GRP:
1249 result = cli_samr_open_group(cli, mem_ctx, &domain_pol,
1250 MAXIMUM_ALLOWED_ACCESS,
1251 group_rids[0], &group_pol);
1252 if (!NT_STATUS_IS_OK(result)) {
1253 d_printf("Request open_group failed");
1254 goto done;
1257 group_rid = group_rids[0];
1259 result = cli_samr_query_groupmem(cli, mem_ctx, &group_pol,
1260 &num_members, &group_rids,
1261 &group_attrs);
1263 if (!NT_STATUS_IS_OK(result)) {
1264 d_printf("Unable to query group members of %s",argv[0]);
1265 goto done;
1268 if (opt_verbose) {
1269 d_printf("Domain Group %s (rid: %d) has %d members\n",
1270 argv[0],group_rid,num_members);
1273 /* Check if group is anyone's primary group */
1274 for (i = 0; i < num_members; i++)
1276 result = cli_samr_open_user(cli, mem_ctx, &domain_pol,
1277 MAXIMUM_ALLOWED_ACCESS,
1278 group_rids[i], &user_pol);
1280 if (!NT_STATUS_IS_OK(result)) {
1281 d_printf("Unable to open group member %d\n",group_rids[i]);
1282 goto done;
1285 ZERO_STRUCT(user_ctr);
1287 result = cli_samr_query_userinfo(cli, mem_ctx, &user_pol,
1288 21, &user_ctr);
1290 if (!NT_STATUS_IS_OK(result)) {
1291 d_printf("Unable to lookup userinfo for group member %d\n",group_rids[i]);
1292 goto done;
1295 if (user_ctr->info.id21->group_rid == group_rid) {
1296 unistr2_to_ascii(temp, &(user_ctr->info.id21)->uni_user_name,
1297 sizeof(temp)-1);
1298 if (opt_verbose)
1299 d_printf("Group is primary group of %s\n",temp);
1300 group_is_primary = True;
1303 cli_samr_close(cli, mem_ctx, &user_pol);
1306 if (group_is_primary) {
1307 d_printf("Unable to delete group because some of it's "
1308 "members have it as primary group\n");
1309 result = NT_STATUS_MEMBERS_PRIMARY_GROUP;
1310 goto done;
1313 /* remove all group members */
1314 for (i = 0; i < num_members; i++)
1316 if (opt_verbose)
1317 d_printf("Remove group member %d...",group_rids[i]);
1318 result = cli_samr_del_groupmem(cli, mem_ctx, &group_pol, group_rids[i]);
1320 if (NT_STATUS_IS_OK(result)) {
1321 if (opt_verbose)
1322 d_printf("ok\n");
1323 } else {
1324 if (opt_verbose)
1325 d_printf("failed\n");
1326 goto done;
1330 result = cli_samr_delete_dom_group(cli, mem_ctx, &group_pol);
1332 break;
1333 /* removing a local group is easier... */
1334 case SID_NAME_ALIAS:
1335 result = cli_samr_open_alias(cli, mem_ctx, &domain_pol,
1336 MAXIMUM_ALLOWED_ACCESS,
1337 group_rids[0], &group_pol);
1339 if (!NT_STATUS_IS_OK(result)) {
1340 d_printf("Request open_alias failed\n");
1341 goto done;
1344 result = cli_samr_delete_dom_alias(cli, mem_ctx, &group_pol);
1345 break;
1346 default:
1347 d_printf("%s is of type %s. This command is only for deleting local or global groups\n",
1348 argv[0],sid_type_lookup(name_types[0]));
1349 result = NT_STATUS_UNSUCCESSFUL;
1350 goto done;
1354 if (NT_STATUS_IS_OK(result)) {
1355 if (opt_verbose)
1356 d_printf("Deleted %s '%s'\n",sid_type_lookup(name_types[0]),argv[0]);
1357 } else {
1358 d_printf("Deleting of %s failed: %s\n",argv[0],
1359 get_friendly_nt_error_msg(result));
1362 done:
1363 return result;
1367 static int rpc_group_delete(int argc, const char **argv)
1369 return run_rpc_command(NULL, PI_SAMR, 0, rpc_group_delete_internals,
1370 argc,argv);
1373 static NTSTATUS
1374 rpc_group_add_internals(const DOM_SID *domain_sid, const char *domain_name,
1375 struct cli_state *cli,
1376 TALLOC_CTX *mem_ctx, int argc, const char **argv)
1378 POLICY_HND connect_pol, domain_pol, group_pol;
1379 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1380 GROUP_INFO_CTR group_info;
1382 if (argc != 1) {
1383 d_printf("Group name must be specified\n");
1384 rpc_group_usage(argc, argv);
1385 return NT_STATUS_OK;
1388 /* Get sam policy handle */
1390 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
1391 &connect_pol);
1392 if (!NT_STATUS_IS_OK(result)) goto done;
1394 /* Get domain policy handle */
1396 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1397 MAXIMUM_ALLOWED_ACCESS,
1398 domain_sid, &domain_pol);
1399 if (!NT_STATUS_IS_OK(result)) goto done;
1401 /* Create the group */
1403 result = cli_samr_create_dom_group(cli, mem_ctx, &domain_pol,
1404 argv[0], MAXIMUM_ALLOWED_ACCESS,
1405 &group_pol);
1406 if (!NT_STATUS_IS_OK(result)) goto done;
1408 if (strlen(opt_comment) == 0) goto done;
1410 /* We've got a comment to set */
1412 group_info.switch_value1 = 4;
1413 init_samr_group_info4(&group_info.group.info4, opt_comment);
1415 result = cli_samr_set_groupinfo(cli, mem_ctx, &group_pol, &group_info);
1416 if (!NT_STATUS_IS_OK(result)) goto done;
1418 done:
1419 if (NT_STATUS_IS_OK(result))
1420 DEBUG(5, ("add group succeeded\n"));
1421 else
1422 d_printf("add group failed: %s\n", nt_errstr(result));
1424 return result;
1427 static NTSTATUS
1428 rpc_alias_add_internals(const DOM_SID *domain_sid, const char *domain_name,
1429 struct cli_state *cli,
1430 TALLOC_CTX *mem_ctx, int argc, const char **argv)
1432 POLICY_HND connect_pol, domain_pol, alias_pol;
1433 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1434 ALIAS_INFO_CTR alias_info;
1436 if (argc != 1) {
1437 d_printf("Alias name must be specified\n");
1438 rpc_group_usage(argc, argv);
1439 return NT_STATUS_OK;
1442 /* Get sam policy handle */
1444 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
1445 &connect_pol);
1446 if (!NT_STATUS_IS_OK(result)) goto done;
1448 /* Get domain policy handle */
1450 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1451 MAXIMUM_ALLOWED_ACCESS,
1452 domain_sid, &domain_pol);
1453 if (!NT_STATUS_IS_OK(result)) goto done;
1455 /* Create the group */
1457 result = cli_samr_create_dom_alias(cli, mem_ctx, &domain_pol,
1458 argv[0], &alias_pol);
1459 if (!NT_STATUS_IS_OK(result)) goto done;
1461 if (strlen(opt_comment) == 0) goto done;
1463 /* We've got a comment to set */
1465 alias_info.switch_value1 = 3;
1466 alias_info.switch_value2 = 3;
1467 init_samr_alias_info3(&alias_info.alias.info3, opt_comment);
1469 result = cli_samr_set_aliasinfo(cli, mem_ctx, &alias_pol, &alias_info);
1470 if (!NT_STATUS_IS_OK(result)) goto done;
1472 done:
1473 if (NT_STATUS_IS_OK(result))
1474 DEBUG(5, ("add alias succeeded\n"));
1475 else
1476 d_printf("add alias failed: %s\n", nt_errstr(result));
1478 return result;
1481 static int rpc_group_add(int argc, const char **argv)
1483 if (opt_localgroup)
1484 return run_rpc_command(NULL, PI_SAMR, 0,
1485 rpc_alias_add_internals,
1486 argc, argv);
1488 return run_rpc_command(NULL, PI_SAMR, 0,
1489 rpc_group_add_internals,
1490 argc, argv);
1493 static NTSTATUS
1494 get_sid_from_name(struct cli_state *cli, TALLOC_CTX *mem_ctx, const char *name,
1495 DOM_SID *sid, enum SID_NAME_USE *type)
1497 int current_pipe = cli->pipe_idx;
1499 DOM_SID *sids = NULL;
1500 uint32 *types = NULL;
1501 POLICY_HND lsa_pol;
1502 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1504 if (current_pipe != PI_LSARPC) {
1506 if (current_pipe != -1)
1507 cli_nt_session_close(cli);
1509 if (!cli_nt_session_open(cli, PI_LSARPC))
1510 goto done;
1513 result = cli_lsa_open_policy(cli, mem_ctx, False,
1514 SEC_RIGHTS_MAXIMUM_ALLOWED, &lsa_pol);
1516 if (!NT_STATUS_IS_OK(result))
1517 goto done;
1519 result = cli_lsa_lookup_names(cli, mem_ctx, &lsa_pol, 1,
1520 &name, &sids, &types);
1522 if (NT_STATUS_IS_OK(result)) {
1523 sid_copy(sid, &sids[0]);
1524 *type = types[0];
1527 cli_lsa_close(cli, mem_ctx, &lsa_pol);
1529 done:
1530 if (current_pipe != PI_LSARPC) {
1531 cli_nt_session_close(cli);
1532 if (current_pipe != -1)
1533 cli_nt_session_open(cli, current_pipe);
1536 if (!NT_STATUS_IS_OK(result) && (StrnCaseCmp(name, "S-", 2) == 0)) {
1538 /* Try as S-1-5-whatever */
1540 DOM_SID tmp_sid;
1542 if (string_to_sid(&tmp_sid, name)) {
1543 sid_copy(sid, &tmp_sid);
1544 *type = SID_NAME_UNKNOWN;
1545 result = NT_STATUS_OK;
1549 return result;
1552 static NTSTATUS
1553 rpc_add_groupmem(struct cli_state *cli, TALLOC_CTX *mem_ctx,
1554 const DOM_SID *group_sid, const char *member)
1556 POLICY_HND connect_pol, domain_pol;
1557 NTSTATUS result;
1558 uint32 group_rid;
1559 POLICY_HND group_pol;
1561 uint32 num_rids;
1562 uint32 *rids = NULL;
1563 uint32 *rid_types = NULL;
1565 DOM_SID sid;
1567 sid_copy(&sid, group_sid);
1569 if (!sid_split_rid(&sid, &group_rid))
1570 return NT_STATUS_UNSUCCESSFUL;
1572 /* Get sam policy handle */
1573 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
1574 &connect_pol);
1575 if (!NT_STATUS_IS_OK(result))
1576 return result;
1578 /* Get domain policy handle */
1579 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1580 MAXIMUM_ALLOWED_ACCESS,
1581 &sid, &domain_pol);
1582 if (!NT_STATUS_IS_OK(result))
1583 return result;
1585 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol, 1000,
1586 1, &member,
1587 &num_rids, &rids, &rid_types);
1589 if (!NT_STATUS_IS_OK(result)) {
1590 d_printf("Could not lookup up group member %s\n", member);
1591 goto done;
1594 result = cli_samr_open_group(cli, mem_ctx, &domain_pol,
1595 MAXIMUM_ALLOWED_ACCESS,
1596 group_rid, &group_pol);
1598 if (!NT_STATUS_IS_OK(result))
1599 goto done;
1601 result = cli_samr_add_groupmem(cli, mem_ctx, &group_pol, rids[0]);
1603 done:
1604 cli_samr_close(cli, mem_ctx, &connect_pol);
1605 return result;
1608 static NTSTATUS
1609 rpc_add_aliasmem(struct cli_state *cli, TALLOC_CTX *mem_ctx,
1610 const DOM_SID *alias_sid, const char *member)
1612 POLICY_HND connect_pol, domain_pol;
1613 NTSTATUS result;
1614 uint32 alias_rid;
1615 POLICY_HND alias_pol;
1617 DOM_SID member_sid;
1618 enum SID_NAME_USE member_type;
1620 DOM_SID sid;
1622 sid_copy(&sid, alias_sid);
1624 if (!sid_split_rid(&sid, &alias_rid))
1625 return NT_STATUS_UNSUCCESSFUL;
1627 result = get_sid_from_name(cli, mem_ctx, member,
1628 &member_sid, &member_type);
1630 if (!NT_STATUS_IS_OK(result)) {
1631 d_printf("Could not lookup up group member %s\n", member);
1632 return result;
1635 /* Get sam policy handle */
1636 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
1637 &connect_pol);
1638 if (!NT_STATUS_IS_OK(result)) {
1639 goto done;
1642 /* Get domain policy handle */
1643 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1644 MAXIMUM_ALLOWED_ACCESS,
1645 &sid, &domain_pol);
1646 if (!NT_STATUS_IS_OK(result)) {
1647 goto done;
1650 result = cli_samr_open_alias(cli, mem_ctx, &domain_pol,
1651 MAXIMUM_ALLOWED_ACCESS,
1652 alias_rid, &alias_pol);
1654 if (!NT_STATUS_IS_OK(result))
1655 return result;
1657 result = cli_samr_add_aliasmem(cli, mem_ctx, &alias_pol, &member_sid);
1659 if (!NT_STATUS_IS_OK(result))
1660 return result;
1662 done:
1663 cli_samr_close(cli, mem_ctx, &connect_pol);
1664 return result;
1667 static NTSTATUS
1668 rpc_group_addmem_internals(const DOM_SID *domain_sid, const char *domain_name,
1669 struct cli_state *cli,
1670 TALLOC_CTX *mem_ctx, int argc, const char **argv)
1672 DOM_SID group_sid;
1673 enum SID_NAME_USE group_type;
1675 if (argc != 2) {
1676 d_printf("Usage: 'net rpc group addmem <group> <member>\n");
1677 return NT_STATUS_UNSUCCESSFUL;
1680 if (!NT_STATUS_IS_OK(get_sid_from_name(cli, mem_ctx, argv[0],
1681 &group_sid, &group_type))) {
1682 d_printf("Could not lookup group name %s\n", argv[0]);
1683 return NT_STATUS_UNSUCCESSFUL;
1686 if (group_type == SID_NAME_DOM_GRP) {
1687 NTSTATUS result = rpc_add_groupmem(cli, mem_ctx,
1688 &group_sid, argv[1]);
1690 if (!NT_STATUS_IS_OK(result)) {
1691 d_printf("Could not add %s to %s: %s\n",
1692 argv[1], argv[0], nt_errstr(result));
1694 return result;
1697 if (group_type == SID_NAME_ALIAS) {
1698 NTSTATUS result = rpc_add_aliasmem(cli, mem_ctx,
1699 &group_sid, argv[1]);
1701 if (!NT_STATUS_IS_OK(result)) {
1702 d_printf("Could not add %s to %s: %s\n",
1703 argv[1], argv[0], nt_errstr(result));
1705 return result;
1708 d_printf("Can only add members to global or local groups which "
1709 "%s is not\n", argv[0]);
1711 return NT_STATUS_UNSUCCESSFUL;
1714 static int rpc_group_addmem(int argc, const char **argv)
1716 return run_rpc_command(NULL, PI_SAMR, 0,
1717 rpc_group_addmem_internals,
1718 argc, argv);
1721 static NTSTATUS
1722 rpc_del_groupmem(struct cli_state *cli, TALLOC_CTX *mem_ctx,
1723 const DOM_SID *group_sid, const char *member)
1725 POLICY_HND connect_pol, domain_pol;
1726 NTSTATUS result;
1727 uint32 group_rid;
1728 POLICY_HND group_pol;
1730 uint32 num_rids;
1731 uint32 *rids = NULL;
1732 uint32 *rid_types = NULL;
1734 DOM_SID sid;
1736 sid_copy(&sid, group_sid);
1738 if (!sid_split_rid(&sid, &group_rid))
1739 return NT_STATUS_UNSUCCESSFUL;
1741 /* Get sam policy handle */
1742 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
1743 &connect_pol);
1744 if (!NT_STATUS_IS_OK(result))
1745 return result;
1747 /* Get domain policy handle */
1748 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1749 MAXIMUM_ALLOWED_ACCESS,
1750 &sid, &domain_pol);
1751 if (!NT_STATUS_IS_OK(result))
1752 return result;
1754 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol, 1000,
1755 1, &member,
1756 &num_rids, &rids, &rid_types);
1758 if (!NT_STATUS_IS_OK(result)) {
1759 d_printf("Could not lookup up group member %s\n", member);
1760 goto done;
1763 result = cli_samr_open_group(cli, mem_ctx, &domain_pol,
1764 MAXIMUM_ALLOWED_ACCESS,
1765 group_rid, &group_pol);
1767 if (!NT_STATUS_IS_OK(result))
1768 goto done;
1770 result = cli_samr_del_groupmem(cli, mem_ctx, &group_pol, rids[0]);
1772 done:
1773 cli_samr_close(cli, mem_ctx, &connect_pol);
1774 return result;
1777 static NTSTATUS
1778 rpc_del_aliasmem(struct cli_state *cli, TALLOC_CTX *mem_ctx,
1779 const DOM_SID *alias_sid, const char *member)
1781 POLICY_HND connect_pol, domain_pol;
1782 NTSTATUS result;
1783 uint32 alias_rid;
1784 POLICY_HND alias_pol;
1786 DOM_SID member_sid;
1787 enum SID_NAME_USE member_type;
1789 DOM_SID sid;
1791 sid_copy(&sid, alias_sid);
1793 if (!sid_split_rid(&sid, &alias_rid))
1794 return NT_STATUS_UNSUCCESSFUL;
1796 result = get_sid_from_name(cli, mem_ctx, member,
1797 &member_sid, &member_type);
1799 if (!NT_STATUS_IS_OK(result)) {
1800 d_printf("Could not lookup up group member %s\n", member);
1801 return result;
1804 /* Get sam policy handle */
1805 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
1806 &connect_pol);
1807 if (!NT_STATUS_IS_OK(result)) {
1808 goto done;
1811 /* Get domain policy handle */
1812 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1813 MAXIMUM_ALLOWED_ACCESS,
1814 &sid, &domain_pol);
1815 if (!NT_STATUS_IS_OK(result)) {
1816 goto done;
1819 result = cli_samr_open_alias(cli, mem_ctx, &domain_pol,
1820 MAXIMUM_ALLOWED_ACCESS,
1821 alias_rid, &alias_pol);
1823 if (!NT_STATUS_IS_OK(result))
1824 return result;
1826 result = cli_samr_del_aliasmem(cli, mem_ctx, &alias_pol, &member_sid);
1828 if (!NT_STATUS_IS_OK(result))
1829 return result;
1831 done:
1832 cli_samr_close(cli, mem_ctx, &connect_pol);
1833 return result;
1836 static NTSTATUS
1837 rpc_group_delmem_internals(const DOM_SID *domain_sid, const char *domain_name,
1838 struct cli_state *cli,
1839 TALLOC_CTX *mem_ctx, int argc, const char **argv)
1841 DOM_SID group_sid;
1842 enum SID_NAME_USE group_type;
1844 if (argc != 2) {
1845 d_printf("Usage: 'net rpc group delmem <group> <member>\n");
1846 return NT_STATUS_UNSUCCESSFUL;
1849 if (!NT_STATUS_IS_OK(get_sid_from_name(cli, mem_ctx, argv[0],
1850 &group_sid, &group_type))) {
1851 d_printf("Could not lookup group name %s\n", argv[0]);
1852 return NT_STATUS_UNSUCCESSFUL;
1855 if (group_type == SID_NAME_DOM_GRP) {
1856 NTSTATUS result = rpc_del_groupmem(cli, mem_ctx,
1857 &group_sid, argv[1]);
1859 if (!NT_STATUS_IS_OK(result)) {
1860 d_printf("Could not del %s from %s: %s\n",
1861 argv[1], argv[0], nt_errstr(result));
1863 return result;
1866 if (group_type == SID_NAME_ALIAS) {
1867 NTSTATUS result = rpc_del_aliasmem(cli, mem_ctx,
1868 &group_sid, argv[1]);
1870 if (!NT_STATUS_IS_OK(result)) {
1871 d_printf("Could not del %s from %s: %s\n",
1872 argv[1], argv[0], nt_errstr(result));
1874 return result;
1877 d_printf("Can only delete members from global or local groups which "
1878 "%s is not\n", argv[0]);
1880 return NT_STATUS_UNSUCCESSFUL;
1883 static int rpc_group_delmem(int argc, const char **argv)
1885 return run_rpc_command(NULL, PI_SAMR, 0,
1886 rpc_group_delmem_internals,
1887 argc, argv);
1890 /**
1891 * List groups on a remote RPC server
1893 * All parameters are provided by the run_rpc_command function, except for
1894 * argc, argv which are passes through.
1896 * @param domain_sid The domain sid acquired from the remote server
1897 * @param cli A cli_state connected to the server.
1898 * @param mem_ctx Talloc context, destoyed on completion of the function.
1899 * @param argc Standard main() style argc
1900 * @param argv Standard main() style argv. Initial components are already
1901 * stripped
1903 * @return Normal NTSTATUS return.
1906 static NTSTATUS
1907 rpc_group_list_internals(const DOM_SID *domain_sid, const char *domain_name,
1908 struct cli_state *cli,
1909 TALLOC_CTX *mem_ctx, int argc, const char **argv)
1911 POLICY_HND connect_pol, domain_pol;
1912 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1913 uint32 start_idx=0, max_entries=250, num_entries, i, loop_count = 0;
1914 struct acct_info *groups;
1915 DOM_SID global_sid_Builtin;
1916 BOOL global = False;
1917 BOOL local = False;
1918 BOOL builtin = False;
1920 if (argc == 0) {
1921 global = True;
1922 local = True;
1923 builtin = True;
1926 for (i=0; i<argc; i++) {
1927 if (strequal(argv[i], "global"))
1928 global = True;
1930 if (strequal(argv[i], "local"))
1931 local = True;
1933 if (strequal(argv[i], "builtin"))
1934 builtin = True;
1937 string_to_sid(&global_sid_Builtin, "S-1-5-32");
1939 /* Get sam policy handle */
1941 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
1942 &connect_pol);
1943 if (!NT_STATUS_IS_OK(result)) {
1944 goto done;
1947 /* Get domain policy handle */
1949 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
1950 MAXIMUM_ALLOWED_ACCESS,
1951 domain_sid, &domain_pol);
1952 if (!NT_STATUS_IS_OK(result)) {
1953 goto done;
1956 /* Query domain groups */
1957 if (opt_long_list_entries)
1958 d_printf("\nGroup name Comment"\
1959 "\n-----------------------------\n");
1960 do {
1961 SAM_DISPINFO_CTR ctr;
1962 SAM_DISPINFO_3 info3;
1963 uint32 max_size;
1965 ZERO_STRUCT(ctr);
1966 ZERO_STRUCT(info3);
1967 ctr.sam.info3 = &info3;
1969 if (!global) break;
1971 get_query_dispinfo_params(
1972 loop_count, &max_entries, &max_size);
1974 result = cli_samr_query_dispinfo(cli, mem_ctx, &domain_pol,
1975 &start_idx, 3, &num_entries,
1976 max_entries, max_size, &ctr);
1978 if (!NT_STATUS_IS_OK(result) &&
1979 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
1980 break;
1982 for (i = 0; i < num_entries; i++) {
1984 fstring group, desc;
1986 unistr2_to_ascii(group, &(&ctr.sam.info3->str[i])->uni_grp_name, sizeof(group)-1);
1987 unistr2_to_ascii(desc, &(&ctr.sam.info3->str[i])->uni_grp_desc, sizeof(desc)-1);
1989 if (opt_long_list_entries)
1990 printf("%-21.21s %-50.50s\n",
1991 group, desc);
1992 else
1993 printf("%s\n", group);
1995 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
1996 /* query domain aliases */
1997 start_idx = 0;
1998 do {
1999 if (!local) break;
2001 /* The max_size field in cli_samr_enum_als_groups is more like
2002 * an account_control field with indiviual bits what to
2003 * retrieve. Set this to 0xffff as NT4 usrmgr.exe does to get
2004 * everything. I'm too lazy (sorry) to get this through to
2005 * rpc_parse/ etc. Volker */
2007 result = cli_samr_enum_als_groups(cli, mem_ctx, &domain_pol,
2008 &start_idx, 0xffff,
2009 &groups, &num_entries);
2011 if (!NT_STATUS_IS_OK(result) &&
2012 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2013 break;
2015 for (i = 0; i < num_entries; i++) {
2017 char *description = NULL;
2019 if (opt_long_list_entries) {
2021 POLICY_HND alias_pol;
2022 ALIAS_INFO_CTR ctr;
2024 if ((NT_STATUS_IS_OK(cli_samr_open_alias(cli, mem_ctx,
2025 &domain_pol,
2026 0x8,
2027 groups[i].rid,
2028 &alias_pol))) &&
2029 (NT_STATUS_IS_OK(cli_samr_query_alias_info(cli, mem_ctx,
2030 &alias_pol, 3,
2031 &ctr))) &&
2032 (NT_STATUS_IS_OK(cli_samr_close(cli, mem_ctx,
2033 &alias_pol)))) {
2034 description = unistr2_tdup(mem_ctx,
2035 &ctr.alias.info3.uni_acct_desc);
2039 if (description != NULL) {
2040 printf("%-21.21s %-50.50s\n",
2041 groups[i].acct_name,
2042 description);
2043 } else {
2044 printf("%s\n", groups[i].acct_name);
2047 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2048 cli_samr_close(cli, mem_ctx, &domain_pol);
2049 /* Get builtin policy handle */
2051 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
2052 MAXIMUM_ALLOWED_ACCESS,
2053 &global_sid_Builtin, &domain_pol);
2054 if (!NT_STATUS_IS_OK(result)) {
2055 goto done;
2057 /* query builtin aliases */
2058 start_idx = 0;
2059 do {
2060 if (!builtin) break;
2062 result = cli_samr_enum_als_groups(cli, mem_ctx, &domain_pol,
2063 &start_idx, max_entries,
2064 &groups, &num_entries);
2066 if (!NT_STATUS_IS_OK(result) &&
2067 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2068 break;
2070 for (i = 0; i < num_entries; i++) {
2072 char *description = NULL;
2074 if (opt_long_list_entries) {
2076 POLICY_HND alias_pol;
2077 ALIAS_INFO_CTR ctr;
2079 if ((NT_STATUS_IS_OK(cli_samr_open_alias(cli, mem_ctx,
2080 &domain_pol,
2081 0x8,
2082 groups[i].rid,
2083 &alias_pol))) &&
2084 (NT_STATUS_IS_OK(cli_samr_query_alias_info(cli, mem_ctx,
2085 &alias_pol, 3,
2086 &ctr))) &&
2087 (NT_STATUS_IS_OK(cli_samr_close(cli, mem_ctx,
2088 &alias_pol)))) {
2089 description = unistr2_tdup(mem_ctx,
2090 &ctr.alias.info3.uni_acct_desc);
2094 if (description != NULL) {
2095 printf("%-21.21s %-50.50s\n",
2096 groups[i].acct_name,
2097 description);
2098 } else {
2099 printf("%s\n", groups[i].acct_name);
2102 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2104 done:
2105 return result;
2108 static int rpc_group_list(int argc, const char **argv)
2110 return run_rpc_command(NULL, PI_SAMR, 0,
2111 rpc_group_list_internals,
2112 argc, argv);
2115 static NTSTATUS
2116 rpc_list_group_members(struct cli_state *cli, TALLOC_CTX *mem_ctx,
2117 const char *domain_name, const DOM_SID *domain_sid,
2118 POLICY_HND *domain_pol, uint32 rid)
2120 NTSTATUS result;
2121 POLICY_HND group_pol;
2122 uint32 num_members, *group_rids, *group_attrs;
2123 uint32 num_names;
2124 char **names;
2125 uint32 *name_types;
2126 int i;
2128 fstring sid_str;
2129 sid_to_string(sid_str, domain_sid);
2131 result = cli_samr_open_group(cli, mem_ctx, domain_pol,
2132 MAXIMUM_ALLOWED_ACCESS,
2133 rid, &group_pol);
2135 if (!NT_STATUS_IS_OK(result))
2136 return result;
2138 result = cli_samr_query_groupmem(cli, mem_ctx, &group_pol,
2139 &num_members, &group_rids,
2140 &group_attrs);
2142 if (!NT_STATUS_IS_OK(result))
2143 return result;
2145 while (num_members > 0) {
2146 int this_time = 512;
2148 if (num_members < this_time)
2149 this_time = num_members;
2151 result = cli_samr_lookup_rids(cli, mem_ctx, domain_pol,
2152 this_time, group_rids,
2153 &num_names, &names, &name_types);
2155 if (!NT_STATUS_IS_OK(result))
2156 return result;
2158 /* We only have users as members, but make the output
2159 the same as the output of alias members */
2161 for (i = 0; i < this_time; i++) {
2163 if (opt_long_list_entries) {
2164 printf("%s-%d %s\\%s %d\n", sid_str,
2165 group_rids[i], domain_name, names[i],
2166 SID_NAME_USER);
2167 } else {
2168 printf("%s\\%s\n", domain_name, names[i]);
2172 num_members -= this_time;
2173 group_rids += 512;
2176 return NT_STATUS_OK;
2179 static NTSTATUS
2180 rpc_list_alias_members(struct cli_state *cli, TALLOC_CTX *mem_ctx,
2181 POLICY_HND *domain_pol, uint32 rid)
2183 NTSTATUS result;
2184 POLICY_HND alias_pol, lsa_pol;
2185 uint32 num_members;
2186 DOM_SID *alias_sids;
2187 char **domains;
2188 char **names;
2189 uint32 *types;
2190 int i;
2192 result = cli_samr_open_alias(cli, mem_ctx, domain_pol,
2193 MAXIMUM_ALLOWED_ACCESS, rid, &alias_pol);
2195 if (!NT_STATUS_IS_OK(result))
2196 return result;
2198 result = cli_samr_query_aliasmem(cli, mem_ctx, &alias_pol,
2199 &num_members, &alias_sids);
2201 if (!NT_STATUS_IS_OK(result)) {
2202 d_printf("Couldn't list alias members\n");
2203 return result;
2206 if (num_members == 0) {
2207 return NT_STATUS_OK;
2210 cli_nt_session_close(cli);
2212 if (!cli_nt_session_open(cli, PI_LSARPC)) {
2213 d_printf("Couldn't open LSA pipe\n");
2214 return result;
2217 result = cli_lsa_open_policy(cli, mem_ctx, True,
2218 SEC_RIGHTS_MAXIMUM_ALLOWED, &lsa_pol);
2220 if (!NT_STATUS_IS_OK(result)) {
2221 d_printf("Couldn't open LSA policy handle\n");
2222 return result;
2225 result = cli_lsa_lookup_sids(cli, mem_ctx, &lsa_pol, num_members,
2226 alias_sids,
2227 &domains, &names, &types);
2229 if (!NT_STATUS_IS_OK(result) &&
2230 !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED)) {
2231 d_printf("Couldn't lookup SIDs\n");
2232 return result;
2235 for (i = 0; i < num_members; i++) {
2236 fstring sid_str;
2237 sid_to_string(sid_str, &alias_sids[i]);
2239 if (opt_long_list_entries) {
2240 printf("%s %s\\%s %d\n", sid_str,
2241 domains[i] ? domains[i] : "*unknown*",
2242 names[i] ? names[i] : "*unknown*", types[i]);
2243 } else {
2244 if (domains[i])
2245 printf("%s\\%s\n", domains[i], names[i]);
2246 else
2247 printf("%s\n", sid_str);
2251 return NT_STATUS_OK;
2254 static NTSTATUS
2255 rpc_group_members_internals(const DOM_SID *domain_sid,
2256 const char *domain_name,
2257 struct cli_state *cli,
2258 TALLOC_CTX *mem_ctx, int argc, const char **argv)
2260 NTSTATUS result;
2261 POLICY_HND connect_pol, domain_pol;
2262 uint32 num_rids, *rids, *rid_types;
2264 /* Get sam policy handle */
2266 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
2267 &connect_pol);
2269 if (!NT_STATUS_IS_OK(result))
2270 return result;
2272 /* Get domain policy handle */
2274 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
2275 MAXIMUM_ALLOWED_ACCESS,
2276 domain_sid, &domain_pol);
2278 if (!NT_STATUS_IS_OK(result))
2279 return result;
2281 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol, 1000,
2282 1, argv, &num_rids, &rids, &rid_types);
2284 if (!NT_STATUS_IS_OK(result)) {
2286 /* Ok, did not find it in the global sam, try with builtin */
2288 DOM_SID sid_Builtin;
2290 cli_samr_close(cli, mem_ctx, &domain_pol);
2292 string_to_sid(&sid_Builtin, "S-1-5-32");
2294 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
2295 MAXIMUM_ALLOWED_ACCESS,
2296 &sid_Builtin, &domain_pol);
2298 if (!NT_STATUS_IS_OK(result)) {
2299 d_printf("Couldn't find group %s\n", argv[0]);
2300 return result;
2303 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol, 1000,
2304 1, argv, &num_rids,
2305 &rids, &rid_types);
2307 if (!NT_STATUS_IS_OK(result)) {
2308 d_printf("Couldn't find group %s\n", argv[0]);
2309 return result;
2313 if (num_rids != 1) {
2314 d_printf("Couldn't find group %s\n", argv[0]);
2315 return result;
2318 if (rid_types[0] == SID_NAME_DOM_GRP) {
2319 return rpc_list_group_members(cli, mem_ctx, domain_name,
2320 domain_sid, &domain_pol,
2321 rids[0]);
2324 if (rid_types[0] == SID_NAME_ALIAS) {
2325 return rpc_list_alias_members(cli, mem_ctx, &domain_pol,
2326 rids[0]);
2329 return NT_STATUS_NO_SUCH_GROUP;
2332 static int rpc_group_members(int argc, const char **argv)
2334 if (argc != 1) {
2335 return rpc_group_usage(argc, argv);
2338 return run_rpc_command(NULL, PI_SAMR, 0,
2339 rpc_group_members_internals,
2340 argc, argv);
2343 static NTSTATUS
2344 rpc_group_rename_internals(const DOM_SID *domain_sid,
2345 const char *domain_name,
2346 struct cli_state *cli,
2347 TALLOC_CTX *mem_ctx, int argc, const char **argv)
2349 NTSTATUS result;
2350 POLICY_HND connect_pol, domain_pol, group_pol;
2351 uint32 num_rids, *rids, *rid_types;
2352 GROUP_INFO_CTR ctr;
2354 if (argc != 2) {
2355 d_printf("Usage: 'net rpc group rename group newname'\n");
2356 return NT_STATUS_UNSUCCESSFUL;
2359 /* Get sam policy handle */
2361 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
2362 &connect_pol);
2364 if (!NT_STATUS_IS_OK(result))
2365 return result;
2367 /* Get domain policy handle */
2369 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
2370 MAXIMUM_ALLOWED_ACCESS,
2371 domain_sid, &domain_pol);
2373 if (!NT_STATUS_IS_OK(result))
2374 return result;
2376 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol, 1000,
2377 1, argv, &num_rids, &rids, &rid_types);
2379 if (num_rids != 1) {
2380 d_printf("Couldn't find group %s\n", argv[0]);
2381 return result;
2384 if (rid_types[0] != SID_NAME_DOM_GRP) {
2385 d_printf("Can only rename domain groups\n");
2386 return NT_STATUS_UNSUCCESSFUL;
2389 result = cli_samr_open_group(cli, mem_ctx, &domain_pol,
2390 MAXIMUM_ALLOWED_ACCESS,
2391 rids[0], &group_pol);
2393 if (!NT_STATUS_IS_OK(result))
2394 return result;
2396 ZERO_STRUCT(ctr);
2398 ctr.switch_value1 = 2;
2399 init_samr_group_info2(&ctr.group.info2, argv[1]);
2401 result = cli_samr_set_groupinfo(cli, mem_ctx, &group_pol, &ctr);
2403 if (!NT_STATUS_IS_OK(result))
2404 return result;
2406 return NT_STATUS_NO_SUCH_GROUP;
2409 static int rpc_group_rename(int argc, const char **argv)
2411 if (argc != 2) {
2412 return rpc_group_usage(argc, argv);
2415 return run_rpc_command(NULL, PI_SAMR, 0,
2416 rpc_group_rename_internals,
2417 argc, argv);
2420 /**
2421 * 'net rpc group' entrypoint.
2422 * @param argc Standard main() style argc
2423 * @param argc Standard main() style argv. Initial components are already
2424 * stripped
2427 int net_rpc_group(int argc, const char **argv)
2429 struct functable func[] = {
2430 {"add", rpc_group_add},
2431 {"delete", rpc_group_delete},
2432 {"addmem", rpc_group_addmem},
2433 {"delmem", rpc_group_delmem},
2434 {"list", rpc_group_list},
2435 {"members", rpc_group_members},
2436 {"rename", rpc_group_rename},
2437 {NULL, NULL}
2440 if (argc == 0) {
2441 if (opt_long_list_entries) {
2442 } else {
2444 return run_rpc_command(NULL, PI_SAMR, 0,
2445 rpc_group_list_internals,
2446 argc, argv);
2449 return net_run_function(argc, argv, func, rpc_group_usage);
2452 /****************************************************************************/
2454 static int rpc_share_usage(int argc, const char **argv)
2456 return net_help_share(argc, argv);
2459 /**
2460 * Add a share on a remote RPC server
2462 * All parameters are provided by the run_rpc_command function, except for
2463 * argc, argv which are passes through.
2465 * @param domain_sid The domain sid acquired from the remote server
2466 * @param cli A cli_state connected to the server.
2467 * @param mem_ctx Talloc context, destoyed on completion of the function.
2468 * @param argc Standard main() style argc
2469 * @param argv Standard main() style argv. Initial components are already
2470 * stripped
2472 * @return Normal NTSTATUS return.
2474 static NTSTATUS
2475 rpc_share_add_internals(const DOM_SID *domain_sid, const char *domain_name,
2476 struct cli_state *cli,
2477 TALLOC_CTX *mem_ctx,int argc, const char **argv)
2479 WERROR result;
2480 char *sharename=talloc_strdup(mem_ctx, argv[0]);
2481 char *path;
2482 uint32 type=0; /* only allow disk shares to be added */
2483 uint32 num_users=0, perms=0;
2484 char *password=NULL; /* don't allow a share password */
2485 uint32 level = 2;
2487 path = strchr(sharename, '=');
2488 if (!path)
2489 return NT_STATUS_UNSUCCESSFUL;
2490 *path++ = '\0';
2492 result = cli_srvsvc_net_share_add(cli, mem_ctx, sharename, type,
2493 opt_comment, perms, opt_maxusers,
2494 num_users, path, password,
2495 level, NULL);
2496 return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
2499 static int rpc_share_add(int argc, const char **argv)
2501 if ((argc < 1) || !strchr(argv[0], '=')) {
2502 DEBUG(1,("Sharename or path not specified on add\n"));
2503 return rpc_share_usage(argc, argv);
2505 return run_rpc_command(NULL, PI_SRVSVC, 0,
2506 rpc_share_add_internals,
2507 argc, argv);
2510 /**
2511 * Delete a share on a remote RPC server
2513 * All parameters are provided by the run_rpc_command function, except for
2514 * argc, argv which are passes through.
2516 * @param domain_sid The domain sid acquired from the remote server
2517 * @param cli A cli_state connected to the server.
2518 * @param mem_ctx Talloc context, destoyed on completion of the function.
2519 * @param argc Standard main() style argc
2520 * @param argv Standard main() style argv. Initial components are already
2521 * stripped
2523 * @return Normal NTSTATUS return.
2525 static NTSTATUS
2526 rpc_share_del_internals(const DOM_SID *domain_sid, const char *domain_name,
2527 struct cli_state *cli,
2528 TALLOC_CTX *mem_ctx,int argc, const char **argv)
2530 WERROR result;
2532 result = cli_srvsvc_net_share_del(cli, mem_ctx, argv[0]);
2533 return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
2536 /**
2537 * Delete a share on a remote RPC server
2539 * @param domain_sid The domain sid acquired from the remote server
2540 * @param argc Standard main() style argc
2541 * @param argv Standard main() style argv. Initial components are already
2542 * stripped
2544 * @return A shell status integer (0 for success)
2546 static int rpc_share_delete(int argc, const char **argv)
2548 if (argc < 1) {
2549 DEBUG(1,("Sharename not specified on delete\n"));
2550 return rpc_share_usage(argc, argv);
2552 return run_rpc_command(NULL, PI_SRVSVC, 0,
2553 rpc_share_del_internals,
2554 argc, argv);
2558 * Formatted print of share info
2560 * @param info1 pointer to SRV_SHARE_INFO_1 to format
2563 static void display_share_info_1(SRV_SHARE_INFO_1 *info1)
2565 fstring netname = "", remark = "";
2567 rpcstr_pull_unistr2_fstring(netname, &info1->info_1_str.uni_netname);
2568 rpcstr_pull_unistr2_fstring(remark, &info1->info_1_str.uni_remark);
2570 if (opt_long_list_entries) {
2571 d_printf("%-12s %-8.8s %-50s\n",
2572 netname, share_type[info1->info_1.type], remark);
2573 } else {
2574 d_printf("%s\n", netname);
2579 /**
2580 * List shares on a remote RPC server
2582 * All parameters are provided by the run_rpc_command function, except for
2583 * argc, argv which are passes through.
2585 * @param domain_sid The domain sid acquired from the remote server
2586 * @param cli A cli_state connected to the server.
2587 * @param mem_ctx Talloc context, destoyed on completion of the function.
2588 * @param argc Standard main() style argc
2589 * @param argv Standard main() style argv. Initial components are already
2590 * stripped
2592 * @return Normal NTSTATUS return.
2595 static NTSTATUS
2596 rpc_share_list_internals(const DOM_SID *domain_sid, const char *domain_name,
2597 struct cli_state *cli,
2598 TALLOC_CTX *mem_ctx, int argc, const char **argv)
2600 SRV_SHARE_INFO_CTR ctr;
2601 WERROR result;
2602 ENUM_HND hnd;
2603 uint32 preferred_len = 0xffffffff, i;
2605 init_enum_hnd(&hnd, 0);
2607 result = cli_srvsvc_net_share_enum(
2608 cli, mem_ctx, 1, &ctr, preferred_len, &hnd);
2610 if (!W_ERROR_IS_OK(result))
2611 goto done;
2613 /* Display results */
2615 if (opt_long_list_entries) {
2616 d_printf(
2617 "\nEnumerating shared resources (exports) on remote server:\n\n"\
2618 "\nShare name Type Description\n"\
2619 "---------- ---- -----------\n");
2621 for (i = 0; i < ctr.num_entries; i++)
2622 display_share_info_1(&ctr.share.info1[i]);
2623 done:
2624 return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
2627 /**
2628 * Migrate shares from a remote RPC server to the local RPC srever
2630 * All parameters are provided by the run_rpc_command function, except for
2631 * argc, argv which are passes through.
2633 * @param domain_sid The domain sid acquired from the remote server
2634 * @param cli A cli_state connected to the server.
2635 * @param mem_ctx Talloc context, destoyed on completion of the function.
2636 * @param argc Standard main() style argc
2637 * @param argv Standard main() style argv. Initial components are already
2638 * stripped
2640 * @return Normal NTSTATUS return.
2642 static NTSTATUS
2643 rpc_share_migrate_shares_internals(const DOM_SID *domain_sid, const char *domain_name,
2644 struct cli_state *cli, TALLOC_CTX *mem_ctx,
2645 int argc, const char **argv)
2647 WERROR result;
2648 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
2649 SRV_SHARE_INFO_CTR ctr_src;
2650 ENUM_HND hnd;
2651 uint32 type = 0; /* only allow disk shares to be added */
2652 uint32 num_uses = 0, perms = 0, max_uses = 0;
2653 char *password = NULL; /* don't allow a share password */
2654 uint32 preferred_len = 0xffffffff, i;
2655 BOOL got_dst_srvsvc_pipe = False;
2656 struct cli_state *cli_dst = NULL;
2657 uint32 level = 502; /* includes secdesc */
2658 SEC_DESC *share_sd = NULL;
2660 init_enum_hnd(&hnd, 0);
2662 result = cli_srvsvc_net_share_enum(
2663 cli, mem_ctx, level, &ctr_src, preferred_len, &hnd);
2664 if (!W_ERROR_IS_OK(result))
2665 goto done;
2667 /* connect local PI_SRVSVC */
2668 nt_status = connect_pipe(&cli_dst, PI_SRVSVC, &got_dst_srvsvc_pipe);
2669 if (!NT_STATUS_IS_OK(nt_status))
2670 return nt_status;
2673 for (i = 0; i < ctr_src.num_entries; i++) {
2675 fstring netname = "", remark = "", path = "";
2676 /* reset error-code */
2677 nt_status = NT_STATUS_UNSUCCESSFUL;
2679 rpcstr_pull_unistr2_fstring(
2680 netname, &ctr_src.share.info502[i].info_502_str.uni_netname);
2681 rpcstr_pull_unistr2_fstring(
2682 remark, &ctr_src.share.info502[i].info_502_str.uni_remark);
2683 rpcstr_pull_unistr2_fstring(
2684 path, &ctr_src.share.info502[i].info_502_str.uni_path);
2685 num_uses = ctr_src.share.info502[i].info_502.num_uses;
2686 max_uses = ctr_src.share.info502[i].info_502.max_uses;
2687 perms = ctr_src.share.info502[i].info_502.perms;
2690 if (opt_acls)
2691 share_sd = dup_sec_desc(
2692 mem_ctx, ctr_src.share.info502[i].info_502_str.sd);
2694 /* since we do not have NetShareGetInfo implemented in samba3 we
2695 only can skip inside the enum-ctr_src */
2696 if (argc == 1) {
2697 char *one_share = talloc_strdup(mem_ctx, argv[0]);
2698 if (!strequal(netname, one_share))
2699 continue;
2702 /* skip builtin shares */
2703 /* FIXME: should print$ be added too ? */
2704 if (strequal(netname,"IPC$") || strequal(netname,"ADMIN$") ||
2705 strequal(netname,"global"))
2706 continue;
2708 /* only work with file-shares */
2709 if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
2710 d_printf("skipping [%s]: not a file share.\n", netname);
2711 continue;
2714 if (!cli_tdis(cli))
2715 goto done;
2718 /* finallly add the share on the dst server
2719 please note that samba currently does not allow to
2720 add a share without existing directory */
2722 printf("migrating: [%s], path: %s, comment: %s, %s share-ACLs\n",
2723 netname, path, remark, opt_acls ? "including" : "without" );
2725 if (opt_verbose && opt_acls)
2726 display_sec_desc(share_sd);
2728 result = cli_srvsvc_net_share_add(cli_dst, mem_ctx, netname, type,
2729 remark, perms, max_uses,
2730 num_uses, path, password,
2731 level, share_sd);
2733 if (W_ERROR_V(result) == W_ERROR_V(WERR_ALREADY_EXISTS)) {
2734 printf(" [%s] does already exist\n", netname);
2735 continue;
2738 if (!W_ERROR_IS_OK(result)) {
2739 printf("cannot add share: %s\n", dos_errstr(result));
2740 goto done;
2745 nt_status = NT_STATUS_OK;
2747 done:
2748 if (got_dst_srvsvc_pipe) {
2749 cli_nt_session_close(cli_dst);
2750 cli_shutdown(cli_dst);
2753 return nt_status;
2757 /**
2758 * Migrate shares from a rpc-server to another
2760 * @param argc Standard main() style argc
2761 * @param argv Standard main() style argv. Initial components are already
2762 * stripped
2764 * @return A shell status integer (0 for success)
2766 static int rpc_share_migrate_shares(int argc, const char **argv)
2769 if (!opt_host) {
2770 printf("no server to migrate\n");
2771 return -1;
2774 return run_rpc_command(NULL, PI_SRVSVC, 0,
2775 rpc_share_migrate_shares_internals,
2776 argc, argv);
2779 typedef struct copy_clistate {
2780 TALLOC_CTX *mem_ctx;
2781 struct cli_state *cli_share_src;
2782 struct cli_state *cli_share_dst;
2783 const char *cwd;
2784 } copy_clistate;
2788 * Copy a file/dir
2790 * @param f file_info
2791 * @param mask current search mask
2792 * @param state arg-pointer
2795 static void copy_fn(const char *mnt, file_info *f, const char *mask, void *state)
2797 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
2798 struct copy_clistate *local_state = (struct copy_clistate *)state;
2799 fstring filename, new_mask, dir;
2801 if (strequal(f->name, ".") || strequal(f->name, ".."))
2802 return;
2804 DEBUG(3,("got mask: %s, name: %s\n", mask, f->name));
2806 /* DIRECTORY */
2807 if (f->mode & aDIR) {
2809 DEBUG(3,("got dir: %s\n", f->name));
2811 fstrcpy(dir, local_state->cwd);
2812 fstrcat(dir, "\\");
2813 fstrcat(dir, f->name);
2815 /* create that directory */
2816 nt_status = net_copy_file(local_state->mem_ctx,
2817 local_state->cli_share_src,
2818 local_state->cli_share_dst,
2819 dir, dir,
2820 opt_acls? True : False,
2821 opt_attrs? True : False,
2822 opt_timestamps? True : False,
2823 False);
2825 if (!NT_STATUS_IS_OK(nt_status))
2826 printf("could not copy dir %s: %s\n",
2827 dir, nt_errstr(nt_status));
2829 /* search below that directory */
2830 fstrcpy(new_mask, dir);
2831 fstrcat(new_mask, "\\*");
2833 if (!sync_files(local_state->mem_ctx,
2834 local_state->cli_share_src,
2835 local_state->cli_share_dst,
2836 new_mask, dir))
2838 printf("could not sync files\n");
2840 return;
2844 /* FILE */
2845 fstrcpy(filename, local_state->cwd);
2846 fstrcat(filename, "\\");
2847 fstrcat(filename, f->name);
2849 DEBUG(3,("got file: %s\n", filename));
2851 nt_status = net_copy_file(local_state->mem_ctx,
2852 local_state->cli_share_src,
2853 local_state->cli_share_dst,
2854 filename, filename,
2855 opt_acls? True : False,
2856 opt_attrs? True : False,
2857 opt_timestamps? True: False,
2858 True);
2860 if (!NT_STATUS_IS_OK(nt_status))
2861 printf("could not copy file %s: %s\n",
2862 filename, nt_errstr(nt_status));
2867 * sync files, can be called recursivly to list files
2868 * and then call copy_fn for each file
2870 * @param mem_ctx TALLOC_CTX
2871 * @param cli_share_src a connected share on the originating server
2872 * @param cli_share_dst a connected share on the destination server
2873 * @param mask the current search mask
2874 * @param cwd the current path
2876 * @return Boolean result
2878 BOOL sync_files(TALLOC_CTX *mem_ctx,
2879 struct cli_state *cli_share_src,
2880 struct cli_state *cli_share_dst,
2881 pstring mask, fstring cwd)
2885 uint16 attribute = aSYSTEM | aHIDDEN | aDIR;
2886 struct copy_clistate clistate;
2888 clistate.mem_ctx = mem_ctx;
2889 clistate.cli_share_src = cli_share_src;
2890 clistate.cli_share_dst = cli_share_dst;
2891 clistate.cwd = cwd;
2893 DEBUG(3,("calling cli_list with mask: %s\n", mask));
2895 if (cli_list(cli_share_src, mask, attribute, copy_fn, &clistate) == -1) {
2896 d_printf("listing %s failed with error: %s\n",
2897 mask, cli_errstr(cli_share_src));
2898 return False;
2901 return True;
2905 /**
2906 * Sync all files inside a remote share to another share (over smb)
2908 * All parameters are provided by the run_rpc_command function, except for
2909 * argc, argv which are passes through.
2911 * @param domain_sid The domain sid acquired from the remote server
2912 * @param cli A cli_state connected to the server.
2913 * @param mem_ctx Talloc context, destoyed on completion of the function.
2914 * @param argc Standard main() style argc
2915 * @param argv Standard main() style argv. Initial components are already
2916 * stripped
2918 * @return Normal NTSTATUS return.
2920 static NTSTATUS
2921 rpc_share_migrate_files_internals(const DOM_SID *domain_sid, const char *domain_name,
2922 struct cli_state *cli, TALLOC_CTX *mem_ctx,
2923 int argc, const char **argv)
2925 WERROR result;
2926 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
2927 SRV_SHARE_INFO_CTR ctr_src;
2928 ENUM_HND hnd;
2929 uint32 preferred_len = 0xffffffff, i;
2930 uint32 level = 2;
2931 struct cli_state *cli_share_src = NULL;
2932 struct cli_state *cli_share_dst = NULL;
2933 BOOL got_src_share = False;
2934 BOOL got_dst_share = False;
2935 pstring mask;
2936 char *dst = NULL;
2938 dst = SMB_STRDUP(opt_destination?opt_destination:"127.0.0.1");
2940 init_enum_hnd(&hnd, 0);
2942 result = cli_srvsvc_net_share_enum(
2943 cli, mem_ctx, level, &ctr_src, preferred_len, &hnd);
2945 if (!W_ERROR_IS_OK(result))
2946 goto done;
2948 for (i = 0; i < ctr_src.num_entries; i++) {
2950 fstring netname = "", remark = "", path = "";
2952 rpcstr_pull_unistr2_fstring(
2953 netname, &ctr_src.share.info2[i].info_2_str.uni_netname);
2954 rpcstr_pull_unistr2_fstring(
2955 remark, &ctr_src.share.info2[i].info_2_str.uni_remark);
2956 rpcstr_pull_unistr2_fstring(
2957 path, &ctr_src.share.info2[i].info_2_str.uni_path);
2959 /* since we do not have NetShareGetInfo implemented in samba3 we
2960 only can skip inside the enum-ctr_src */
2961 if (argc == 1) {
2962 char *one_share = talloc_strdup(mem_ctx, argv[0]);
2963 if (!strequal(netname, one_share))
2964 continue;
2967 /* skip builtin and hidden shares
2968 In particular, one might not want to mirror whole discs :) */
2969 if (strequal(netname,"IPC$") || strequal(netname,"ADMIN$"))
2970 continue;
2972 if (strequal(netname, "print$") || netname[1] == '$') {
2973 d_printf("skipping [%s]: builtin/hidden share\n", netname);
2974 continue;
2977 if (opt_exclude && in_list(netname, (char *)opt_exclude, False)) {
2978 printf("excluding [%s]\n", netname);
2979 continue;
2982 /* only work with file-shares */
2983 if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
2984 d_printf("skipping [%s]: not a file share.\n", netname);
2985 continue;
2988 if (!cli_tdis(cli))
2989 return NT_STATUS_UNSUCCESSFUL;
2991 printf("syncing [%s] files and directories %s ACLs, %s DOS Attributes %s\n",
2992 netname,
2993 opt_acls ? "including" : "without",
2994 opt_attrs ? "including" : "without",
2995 opt_timestamps ? "(preserving timestamps)" : "");
2998 /* open share source */
2999 nt_status = connect_to_service(&cli_share_src, &cli->dest_ip,
3000 cli->desthost, netname, "A:");
3001 if (!NT_STATUS_IS_OK(nt_status))
3002 goto done;
3004 got_src_share = True;
3007 /* open share destination */
3008 nt_status = connect_to_service(&cli_share_dst, NULL,
3009 dst, netname, "A:");
3010 if (!NT_STATUS_IS_OK(nt_status))
3011 goto done;
3013 got_dst_share = True;
3016 /* now call the filesync */
3017 pstrcpy(mask, "\\*");
3019 if (!sync_files(mem_ctx, cli_share_src, cli_share_dst, mask, NULL)) {
3020 d_printf("could not sync files for share: %s\n", netname);
3021 nt_status = NT_STATUS_UNSUCCESSFUL;
3022 goto done;
3027 nt_status = NT_STATUS_OK;
3029 done:
3031 if (got_src_share)
3032 cli_shutdown(cli_share_src);
3034 if (got_dst_share)
3035 cli_shutdown(cli_share_dst);
3037 return nt_status;
3041 static int rpc_share_migrate_files(int argc, const char **argv)
3044 if (!opt_host) {
3045 printf("no server to migrate\n");
3046 return -1;
3049 return run_rpc_command(NULL, PI_SRVSVC, 0,
3050 rpc_share_migrate_files_internals,
3051 argc, argv);
3054 /**
3055 * Migrate shares (including share-definitions, share-acls and files with acls/attrs)
3056 * from one server to another
3058 * @param argc Standard main() style argc
3059 * @param argv Standard main() style argv. Initial components are already
3060 * stripped
3062 * @return A shell status integer (0 for success)
3065 static int rpc_share_migrate_all(int argc, const char **argv)
3067 int ret;
3069 if (!opt_host) {
3070 printf("no server to migrate\n");
3071 return -1;
3074 ret = run_rpc_command(NULL, PI_SRVSVC, 0, rpc_share_migrate_shares_internals, argc, argv);
3075 if (ret)
3076 return ret;
3077 #if 0
3078 ret = run_rpc_command(NULL, PI_SRVSVC, 0, rpc_share_migrate_shares_security_internals, argc, argv);
3079 if (ret)
3080 return ret;
3081 #endif
3082 return run_rpc_command(NULL, PI_SRVSVC, 0, rpc_share_migrate_files_internals, argc, argv);
3086 /**
3087 * 'net rpc share migrate' entrypoint.
3088 * @param argc Standard main() style argc
3089 * @param argv Standard main() style argv. Initial components are already
3090 * stripped
3092 static int rpc_share_migrate(int argc, const char **argv)
3095 struct functable func[] = {
3096 {"all", rpc_share_migrate_all},
3097 {"files", rpc_share_migrate_files},
3098 {"help", rpc_share_usage},
3099 /* {"security", rpc_share_migrate_security},*/
3100 {"shares", rpc_share_migrate_shares},
3101 {NULL, NULL}
3104 return net_run_function(argc, argv, func, rpc_share_usage);
3107 struct full_alias {
3108 DOM_SID sid;
3109 int num_members;
3110 DOM_SID *members;
3113 static int num_server_aliases;
3114 static struct full_alias *server_aliases;
3117 * Add an alias to the static list.
3119 static void push_alias(TALLOC_CTX *mem_ctx, struct full_alias *alias)
3121 if (server_aliases == NULL)
3122 server_aliases = SMB_MALLOC_ARRAY(struct full_alias, 100);
3124 server_aliases[num_server_aliases] = *alias;
3125 num_server_aliases += 1;
3129 * For a specific domain on the server, fetch all the aliases
3130 * and their members. Add all of them to the server_aliases.
3132 static NTSTATUS
3133 rpc_fetch_domain_aliases(struct cli_state *cli, TALLOC_CTX *mem_ctx,
3134 POLICY_HND *connect_pol,
3135 const DOM_SID *domain_sid)
3137 uint32 start_idx, max_entries, num_entries, i;
3138 struct acct_info *groups;
3139 NTSTATUS result;
3140 POLICY_HND domain_pol;
3142 /* Get domain policy handle */
3144 result = cli_samr_open_domain(cli, mem_ctx, connect_pol,
3145 MAXIMUM_ALLOWED_ACCESS,
3146 domain_sid, &domain_pol);
3147 if (!NT_STATUS_IS_OK(result))
3148 return result;
3150 start_idx = 0;
3151 max_entries = 250;
3153 do {
3154 result = cli_samr_enum_als_groups(cli, mem_ctx, &domain_pol,
3155 &start_idx, max_entries,
3156 &groups, &num_entries);
3158 for (i = 0; i < num_entries; i++) {
3160 POLICY_HND alias_pol;
3161 struct full_alias alias;
3162 DOM_SID *members;
3163 int j;
3165 result = cli_samr_open_alias(cli, mem_ctx, &domain_pol,
3166 MAXIMUM_ALLOWED_ACCESS,
3167 groups[i].rid,
3168 &alias_pol);
3169 if (!NT_STATUS_IS_OK(result))
3170 goto done;
3172 result = cli_samr_query_aliasmem(cli, mem_ctx,
3173 &alias_pol,
3174 &alias.num_members,
3175 &members);
3176 if (!NT_STATUS_IS_OK(result))
3177 goto done;
3179 result = cli_samr_close(cli, mem_ctx, &alias_pol);
3180 if (!NT_STATUS_IS_OK(result))
3181 goto done;
3183 alias.members = NULL;
3185 if (alias.num_members > 0) {
3186 alias.members = SMB_MALLOC_ARRAY(DOM_SID, alias.num_members);
3188 for (j = 0; j < alias.num_members; j++)
3189 sid_copy(&alias.members[j],
3190 &members[j]);
3193 sid_copy(&alias.sid, domain_sid);
3194 sid_append_rid(&alias.sid, groups[i].rid);
3196 push_alias(mem_ctx, &alias);
3198 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
3200 result = NT_STATUS_OK;
3202 done:
3203 cli_samr_close(cli, mem_ctx, &domain_pol);
3205 return result;
3209 * Dump server_aliases as names for debugging purposes.
3211 static NTSTATUS
3212 rpc_aliaslist_dump(const DOM_SID *domain_sid, const char *domain_name,
3213 struct cli_state *cli, TALLOC_CTX *mem_ctx,
3214 int argc, const char **argv)
3216 int i;
3217 NTSTATUS result;
3218 POLICY_HND lsa_pol;
3220 result = cli_lsa_open_policy(cli, mem_ctx, True,
3221 SEC_RIGHTS_MAXIMUM_ALLOWED,
3222 &lsa_pol);
3223 if (!NT_STATUS_IS_OK(result))
3224 return result;
3226 for (i=0; i<num_server_aliases; i++) {
3227 char **names;
3228 char **domains;
3229 uint32 *types;
3230 int j;
3232 struct full_alias *alias = &server_aliases[i];
3234 result = cli_lsa_lookup_sids(cli, mem_ctx, &lsa_pol, 1,
3235 &alias->sid,
3236 &domains, &names, &types);
3237 if (!NT_STATUS_IS_OK(result))
3238 continue;
3240 DEBUG(1, ("%s\\%s %d: ", domains[0], names[0], types[0]));
3242 if (alias->num_members == 0) {
3243 DEBUG(1, ("\n"));
3244 continue;
3247 result = cli_lsa_lookup_sids(cli, mem_ctx, &lsa_pol,
3248 alias->num_members,
3249 alias->members,
3250 &domains, &names, &types);
3252 if (!NT_STATUS_IS_OK(result) &&
3253 !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED))
3254 continue;
3256 for (j=0; j<alias->num_members; j++)
3257 DEBUG(1, ("%s\\%s (%d); ",
3258 domains[j] ? domains[j] : "*unknown*",
3259 names[j] ? names[j] : "*unknown*",types[j]));
3260 DEBUG(1, ("\n"));
3263 cli_lsa_close(cli, mem_ctx, &lsa_pol);
3265 return NT_STATUS_OK;
3269 * Fetch a list of all server aliases and their members into
3270 * server_aliases.
3272 static NTSTATUS
3273 rpc_aliaslist_internals(const DOM_SID *domain_sid, const char *domain_name,
3274 struct cli_state *cli, TALLOC_CTX *mem_ctx,
3275 int argc, const char **argv)
3277 NTSTATUS result;
3278 POLICY_HND connect_pol;
3279 DOM_SID global_sid_Builtin;
3281 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
3282 &connect_pol);
3284 if (!NT_STATUS_IS_OK(result))
3285 goto done;
3287 string_to_sid(&global_sid_Builtin, "S-1-5-32");
3289 result = rpc_fetch_domain_aliases(cli, mem_ctx, &connect_pol,
3290 &global_sid_Builtin);
3292 if (!NT_STATUS_IS_OK(result))
3293 goto done;
3295 result = rpc_fetch_domain_aliases(cli, mem_ctx, &connect_pol,
3296 domain_sid);
3298 cli_samr_close(cli, mem_ctx, &connect_pol);
3299 done:
3300 return result;
3303 static void init_user_token(NT_USER_TOKEN *token, DOM_SID *user_sid)
3305 DOM_SID global_sid_World;
3306 DOM_SID global_sid_Network;
3307 DOM_SID global_sid_Authenticated_Users;
3309 string_to_sid(&global_sid_World, "S-1-1-0");
3310 string_to_sid(&global_sid_Network, "S-1-5-2");
3311 string_to_sid(&global_sid_Authenticated_Users, "S-1-5-11");
3313 token->num_sids = 4;
3315 token->user_sids = SMB_MALLOC_ARRAY(DOM_SID, 4);
3317 token->user_sids[0] = *user_sid;
3318 sid_copy(&token->user_sids[1], &global_sid_World);
3319 sid_copy(&token->user_sids[2], &global_sid_Network);
3320 sid_copy(&token->user_sids[3], &global_sid_Authenticated_Users);
3323 static void free_user_token(NT_USER_TOKEN *token)
3325 SAFE_FREE(token->user_sids);
3328 static BOOL is_sid_in_token(NT_USER_TOKEN *token, DOM_SID *sid)
3330 int i;
3332 for (i=0; i<token->num_sids; i++) {
3333 if (sid_compare(sid, &token->user_sids[i]) == 0)
3334 return True;
3336 return False;
3339 static void add_sid_to_token(NT_USER_TOKEN *token, DOM_SID *sid)
3341 if (is_sid_in_token(token, sid))
3342 return;
3344 token->user_sids = SMB_REALLOC_ARRAY(token->user_sids, DOM_SID, token->num_sids+1);
3346 sid_copy(&token->user_sids[token->num_sids], sid);
3348 token->num_sids += 1;
3351 struct user_token {
3352 fstring name;
3353 NT_USER_TOKEN token;
3356 static void dump_user_token(struct user_token *token)
3358 int i;
3360 d_printf("%s\n", token->name);
3362 for (i=0; i<token->token.num_sids; i++) {
3363 d_printf(" %s\n", sid_string_static(&token->token.user_sids[i]));
3367 static BOOL is_alias_member(DOM_SID *sid, struct full_alias *alias)
3369 int i;
3371 for (i=0; i<alias->num_members; i++) {
3372 if (sid_compare(sid, &alias->members[i]) == 0)
3373 return True;
3376 return False;
3379 static void collect_sid_memberships(NT_USER_TOKEN *token, DOM_SID sid)
3381 int i;
3383 for (i=0; i<num_server_aliases; i++) {
3384 if (is_alias_member(&sid, &server_aliases[i]))
3385 add_sid_to_token(token, &server_aliases[i].sid);
3390 * We got a user token with all the SIDs we can know about without asking the
3391 * server directly. These are the user and domain group sids. All of these can
3392 * be members of aliases. So scan the list of aliases for each of the SIDs and
3393 * add them to the token.
3396 static void collect_alias_memberships(NT_USER_TOKEN *token)
3398 int num_global_sids = token->num_sids;
3399 int i;
3401 for (i=0; i<num_global_sids; i++) {
3402 collect_sid_memberships(token, token->user_sids[i]);
3406 static BOOL get_user_sids(const char *domain, const char *user,
3407 NT_USER_TOKEN *token)
3409 struct winbindd_request request;
3410 struct winbindd_response response;
3411 fstring full_name;
3412 NSS_STATUS result;
3414 DOM_SID user_sid;
3416 int i;
3418 fstr_sprintf(full_name, "%s%c%s",
3419 domain, *lp_winbind_separator(), user);
3421 /* First let's find out the user sid */
3423 ZERO_STRUCT(request);
3424 ZERO_STRUCT(response);
3426 fstrcpy(request.data.name.dom_name, domain);
3427 fstrcpy(request.data.name.name, user);
3429 result = winbindd_request(WINBINDD_LOOKUPNAME, &request, &response);
3431 if (result != NSS_STATUS_SUCCESS) {
3432 DEBUG(1, ("winbind could not find %s\n", full_name));
3433 return False;
3436 if (response.data.sid.type != SID_NAME_USER) {
3437 DEBUG(1, ("%s is not a user\n", full_name));
3438 return False;
3441 string_to_sid(&user_sid, response.data.sid.sid);
3443 init_user_token(token, &user_sid);
3445 /* And now the groups winbind knows about */
3447 ZERO_STRUCT(response);
3449 fstrcpy(request.data.username, full_name);
3451 result = winbindd_request(WINBINDD_GETGROUPS, &request, &response);
3453 if (result != NSS_STATUS_SUCCESS) {
3454 DEBUG(1, ("winbind could not get groups of %s\n", full_name));
3455 return False;
3458 for (i = 0; i < response.data.num_entries; i++) {
3459 gid_t gid = ((gid_t *)response.extra_data)[i];
3460 DOM_SID sid;
3462 struct winbindd_request sidrequest;
3463 struct winbindd_response sidresponse;
3465 ZERO_STRUCT(sidrequest);
3466 ZERO_STRUCT(sidresponse);
3468 sidrequest.data.gid = gid;
3470 result = winbindd_request(WINBINDD_GID_TO_SID,
3471 &sidrequest, &sidresponse);
3473 if (result != NSS_STATUS_SUCCESS) {
3474 DEBUG(1, ("winbind could not find SID of gid %d\n",
3475 gid));
3476 return False;
3479 DEBUG(3, (" %s\n", sidresponse.data.sid.sid));
3481 string_to_sid(&sid, sidresponse.data.sid.sid);
3482 add_sid_to_token(token, &sid);
3485 SAFE_FREE(response.extra_data);
3487 return True;
3491 * Get a list of all user tokens we want to look at
3493 static BOOL get_user_tokens(int *num_tokens, struct user_token **user_tokens)
3495 struct winbindd_request request;
3496 struct winbindd_response response;
3497 const char *extra_data;
3498 fstring name;
3499 int i;
3500 struct user_token *result;
3502 /* Send request to winbind daemon */
3504 ZERO_STRUCT(request);
3505 ZERO_STRUCT(response);
3507 if (winbindd_request(WINBINDD_LIST_USERS, &request, &response) !=
3508 NSS_STATUS_SUCCESS)
3509 return False;
3511 /* Look through extra data */
3513 if (!response.extra_data)
3514 return False;
3516 extra_data = (const char *)response.extra_data;
3517 *num_tokens = 0;
3519 while(next_token(&extra_data, name, ",", sizeof(fstring))) {
3520 *num_tokens += 1;
3523 result = SMB_MALLOC_ARRAY(struct user_token, *num_tokens);
3525 if (result == NULL) {
3526 DEBUG(1, ("Could not malloc sid array\n"));
3527 return False;
3530 extra_data = (const char *)response.extra_data;
3531 i=0;
3533 while(next_token(&extra_data, name, ",", sizeof(fstring))) {
3535 fstring domain, user;
3536 char *p;
3538 fstrcpy(result[i].name, name);
3540 p = strchr(name, *lp_winbind_separator());
3542 DEBUG(3, ("%s\n", name));
3544 if (p == NULL)
3545 continue;
3547 *p++ = '\0';
3549 fstrcpy(domain, name);
3550 strupper_m(domain);
3551 fstrcpy(user, p);
3553 get_user_sids(domain, user, &(result[i].token));
3554 i+=1;
3557 SAFE_FREE(response.extra_data);
3559 *user_tokens = result;
3561 return True;
3564 static BOOL get_user_tokens_from_file(FILE *f,
3565 int *num_tokens,
3566 struct user_token **tokens)
3568 struct user_token *token = NULL;
3570 while (!feof(f)) {
3571 fstring line;
3573 if (fgets(line, sizeof(line)-1, f) == NULL) {
3574 return True;
3577 if (line[strlen(line)-1] == '\n')
3578 line[strlen(line)-1] = '\0';
3580 if (line[0] == ' ') {
3581 /* We have a SID */
3583 DOM_SID sid;
3584 string_to_sid(&sid, &line[1]);
3586 if (token == NULL) {
3587 DEBUG(0, ("File does not begin with username"));
3588 return False;
3591 add_sid_to_token(&token->token, &sid);
3592 continue;
3595 /* And a new user... */
3597 *num_tokens += 1;
3598 *tokens = SMB_REALLOC_ARRAY(*tokens, struct user_token, *num_tokens);
3599 if (*tokens == NULL) {
3600 DEBUG(0, ("Could not realloc tokens\n"));
3601 return False;
3604 token = &((*tokens)[*num_tokens-1]);
3606 fstrcpy(token->name, line);
3607 token->token.num_sids = 0;
3608 token->token.user_sids = NULL;
3609 continue;
3612 return False;
3617 * Show the list of all users that have access to a share
3620 static void show_userlist(struct cli_state *cli,
3621 TALLOC_CTX *mem_ctx, const char *netname,
3622 int num_tokens, struct user_token *tokens)
3624 int fnum;
3625 SEC_DESC *share_sd = NULL;
3626 SEC_DESC *root_sd = NULL;
3627 int i;
3628 SRV_SHARE_INFO info;
3629 WERROR result;
3630 uint16 cnum;
3632 result = cli_srvsvc_net_share_get_info(cli, mem_ctx, netname,
3633 502, &info);
3635 if (!W_ERROR_IS_OK(result)) {
3636 DEBUG(1, ("Coult not query secdesc for share %s\n",
3637 netname));
3638 return;
3641 share_sd = info.share.info502.info_502_str.sd;
3642 if (share_sd == NULL) {
3643 DEBUG(1, ("Got no secdesc for share %s\n",
3644 netname));
3647 cnum = cli->cnum;
3649 if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
3650 return;
3653 fnum = cli_nt_create(cli, "\\", READ_CONTROL_ACCESS);
3655 if (fnum != -1) {
3656 root_sd = cli_query_secdesc(cli, fnum, mem_ctx);
3659 for (i=0; i<num_tokens; i++) {
3660 uint32 acc_granted;
3661 NTSTATUS status;
3663 if (share_sd != NULL) {
3664 if (!se_access_check(share_sd, &tokens[i].token,
3665 1, &acc_granted, &status)) {
3666 DEBUG(1, ("Could not check share_sd for "
3667 "user %s\n",
3668 tokens[i].name));
3669 continue;
3672 if (!NT_STATUS_IS_OK(status))
3673 continue;
3676 if (root_sd == NULL) {
3677 d_printf(" %s\n", tokens[i].name);
3678 continue;
3681 if (!se_access_check(root_sd, &tokens[i].token,
3682 1, &acc_granted, &status)) {
3683 DEBUG(1, ("Could not check root_sd for user %s\n",
3684 tokens[i].name));
3685 continue;
3688 if (!NT_STATUS_IS_OK(status))
3689 continue;
3691 d_printf(" %s\n", tokens[i].name);
3694 if (fnum != -1)
3695 cli_close(cli, fnum);
3696 cli_tdis(cli);
3697 cli->cnum = cnum;
3699 return;
3702 struct share_list {
3703 int num_shares;
3704 char **shares;
3707 static void collect_share(const char *name, uint32 m,
3708 const char *comment, void *state)
3710 struct share_list *share_list = (struct share_list *)state;
3712 if (m != STYPE_DISKTREE)
3713 return;
3715 share_list->num_shares += 1;
3716 share_list->shares = SMB_REALLOC_ARRAY(share_list->shares, char *, share_list->num_shares);
3717 share_list->shares[share_list->num_shares-1] = SMB_STRDUP(name);
3720 static void rpc_share_userlist_usage(void)
3722 return;
3725 /**
3726 * List shares on a remote RPC server, including the security descriptors
3728 * All parameters are provided by the run_rpc_command function, except for
3729 * argc, argv which are passes through.
3731 * @param domain_sid The domain sid acquired from the remote server
3732 * @param cli A cli_state connected to the server.
3733 * @param mem_ctx Talloc context, destoyed on completion of the function.
3734 * @param argc Standard main() style argc
3735 * @param argv Standard main() style argv. Initial components are already
3736 * stripped
3738 * @return Normal NTSTATUS return.
3741 static NTSTATUS
3742 rpc_share_allowedusers_internals(const DOM_SID *domain_sid,
3743 const char *domain_name,
3744 struct cli_state *cli,
3745 TALLOC_CTX *mem_ctx,
3746 int argc, const char **argv)
3748 int ret;
3749 BOOL r;
3750 ENUM_HND hnd;
3751 uint32 i;
3752 FILE *f;
3754 struct user_token *tokens = NULL;
3755 int num_tokens = 0;
3757 struct share_list share_list;
3759 if (argc > 1) {
3760 rpc_share_userlist_usage();
3761 return NT_STATUS_UNSUCCESSFUL;
3764 if (argc == 0) {
3765 f = stdin;
3766 } else {
3767 f = fopen(argv[0], "r");
3770 if (f == NULL) {
3771 DEBUG(0, ("Could not open userlist: %s\n", strerror(errno)));
3772 return NT_STATUS_UNSUCCESSFUL;
3775 r = get_user_tokens_from_file(f, &num_tokens, &tokens);
3777 if (f != stdin)
3778 fclose(f);
3780 if (!r) {
3781 DEBUG(0, ("Could not read users from file\n"));
3782 return NT_STATUS_UNSUCCESSFUL;
3785 for (i=0; i<num_tokens; i++)
3786 collect_alias_memberships(&tokens[i].token);
3788 init_enum_hnd(&hnd, 0);
3790 share_list.num_shares = 0;
3791 share_list.shares = NULL;
3793 ret = cli_RNetShareEnum(cli, collect_share, &share_list);
3795 if (ret == -1) {
3796 DEBUG(0, ("Error returning browse list: %s\n",
3797 cli_errstr(cli)));
3798 goto done;
3801 for (i = 0; i < share_list.num_shares; i++) {
3802 char *netname = share_list.shares[i];
3804 if (netname[strlen(netname)-1] == '$')
3805 continue;
3807 d_printf("%s\n", netname);
3809 show_userlist(cli, mem_ctx, netname,
3810 num_tokens, tokens);
3812 done:
3813 for (i=0; i<num_tokens; i++) {
3814 free_user_token(&tokens[i].token);
3816 SAFE_FREE(tokens);
3817 SAFE_FREE(share_list.shares);
3819 return NT_STATUS_OK;
3822 static int
3823 rpc_share_allowedusers(int argc, const char **argv)
3825 int result;
3827 result = run_rpc_command(NULL, PI_SAMR, 0,
3828 rpc_aliaslist_internals,
3829 argc, argv);
3830 if (result != 0)
3831 return result;
3833 result = run_rpc_command(NULL, PI_LSARPC, 0,
3834 rpc_aliaslist_dump,
3835 argc, argv);
3836 if (result != 0)
3837 return result;
3839 return run_rpc_command(NULL, PI_SRVSVC, 0,
3840 rpc_share_allowedusers_internals,
3841 argc, argv);
3844 int net_usersidlist(int argc, const char **argv)
3846 int num_tokens = 0;
3847 struct user_token *tokens = NULL;
3848 int i;
3850 if (argc != 0) {
3851 net_usersidlist_usage(argc, argv);
3852 return 0;
3855 if (!get_user_tokens(&num_tokens, &tokens)) {
3856 DEBUG(0, ("Could not get the user/sid list\n"));
3857 return 0;
3860 for (i=0; i<num_tokens; i++) {
3861 dump_user_token(&tokens[i]);
3862 free_user_token(&tokens[i].token);
3865 SAFE_FREE(tokens);
3866 return 1;
3869 int net_usersidlist_usage(int argc, const char **argv)
3871 d_printf("net usersidlist\n"
3872 "\tprints out a list of all users the running winbind knows\n"
3873 "\tabout, together with all their SIDs. This is used as\n"
3874 "\tinput to the 'net rpc share allowedusers' command.\n\n");
3876 net_common_flags_usage(argc, argv);
3877 return -1;
3880 /**
3881 * 'net rpc share' entrypoint.
3882 * @param argc Standard main() style argc
3883 * @param argv Standard main() style argv. Initial components are already
3884 * stripped
3887 int net_rpc_share(int argc, const char **argv)
3889 struct functable func[] = {
3890 {"add", rpc_share_add},
3891 {"delete", rpc_share_delete},
3892 {"allowedusers", rpc_share_allowedusers},
3893 {"migrate", rpc_share_migrate},
3894 {NULL, NULL}
3897 if (argc == 0)
3898 return run_rpc_command(NULL, PI_SRVSVC, 0,
3899 rpc_share_list_internals,
3900 argc, argv);
3902 return net_run_function(argc, argv, func, rpc_share_usage);
3905 /****************************************************************************/
3907 static int rpc_file_usage(int argc, const char **argv)
3909 return net_help_file(argc, argv);
3912 /**
3913 * Close a file on a remote RPC server
3915 * All parameters are provided by the run_rpc_command function, except for
3916 * argc, argv which are passes through.
3918 * @param domain_sid The domain sid acquired from the remote server
3919 * @param cli A cli_state connected to the server.
3920 * @param mem_ctx Talloc context, destoyed on completion of the function.
3921 * @param argc Standard main() style argc
3922 * @param argv Standard main() style argv. Initial components are already
3923 * stripped
3925 * @return Normal NTSTATUS return.
3927 static NTSTATUS
3928 rpc_file_close_internals(const DOM_SID *domain_sid, const char *domain_name,
3929 struct cli_state *cli,
3930 TALLOC_CTX *mem_ctx, int argc, const char **argv)
3932 WERROR result;
3933 result = cli_srvsvc_net_file_close(cli, mem_ctx, atoi(argv[0]));
3934 return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
3937 /**
3938 * Close a file on a remote RPC server
3940 * @param argc Standard main() style argc
3941 * @param argv Standard main() style argv. Initial components are already
3942 * stripped
3944 * @return A shell status integer (0 for success)
3946 static int rpc_file_close(int argc, const char **argv)
3948 if (argc < 1) {
3949 DEBUG(1, ("No fileid given on close\n"));
3950 return(rpc_file_usage(argc, argv));
3953 return run_rpc_command(NULL, PI_SRVSVC, 0,
3954 rpc_file_close_internals,
3955 argc, argv);
3958 /**
3959 * Formatted print of open file info
3961 * @param info3 FILE_INFO_3 contents
3962 * @param str3 strings for FILE_INFO_3
3965 static void display_file_info_3(FILE_INFO_3 *info3, FILE_INFO_3_STR *str3)
3967 fstring user = "", path = "";
3969 rpcstr_pull_unistr2_fstring(user, &str3->uni_user_name);
3970 rpcstr_pull_unistr2_fstring(path, &str3->uni_path_name);
3972 d_printf("%-7.1d %-20.20s 0x%-4.2x %-6.1d %s\n",
3973 info3->id, user, info3->perms, info3->num_locks, path);
3976 /**
3977 * List open files on a remote RPC server
3979 * All parameters are provided by the run_rpc_command function, except for
3980 * argc, argv which are passes through.
3982 * @param domain_sid The domain sid acquired from the remote server
3983 * @param cli A cli_state connected to the server.
3984 * @param mem_ctx Talloc context, destoyed on completion of the function.
3985 * @param argc Standard main() style argc
3986 * @param argv Standard main() style argv. Initial components are already
3987 * stripped
3989 * @return Normal NTSTATUS return.
3992 static NTSTATUS
3993 rpc_file_list_internals(const DOM_SID *domain_sid, const char *domain_name,
3994 struct cli_state *cli,
3995 TALLOC_CTX *mem_ctx, int argc, const char **argv)
3997 SRV_FILE_INFO_CTR ctr;
3998 WERROR result;
3999 ENUM_HND hnd;
4000 uint32 preferred_len = 0xffffffff, i;
4001 const char *username=NULL;
4003 init_enum_hnd(&hnd, 0);
4005 /* if argc > 0, must be user command */
4006 if (argc > 0)
4007 username = smb_xstrdup(argv[0]);
4009 result = cli_srvsvc_net_file_enum(
4010 cli, mem_ctx, 3, username, &ctr, preferred_len, &hnd);
4012 if (!W_ERROR_IS_OK(result))
4013 goto done;
4015 /* Display results */
4017 d_printf(
4018 "\nEnumerating open files on remote server:\n\n"\
4019 "\nFileId Opened by Perms Locks Path"\
4020 "\n------ --------- ----- ----- ---- \n");
4021 for (i = 0; i < ctr.num_entries; i++)
4022 display_file_info_3(&ctr.file.info3[i].info_3,
4023 &ctr.file.info3[i].info_3_str);
4024 done:
4025 return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
4029 /**
4030 * List files for a user on a remote RPC server
4032 * @param argc Standard main() style argc
4033 * @param argv Standard main() style argv. Initial components are already
4034 * stripped
4036 * @return A shell status integer (0 for success)
4038 static int rpc_file_user(int argc, const char **argv)
4040 if (argc < 1) {
4041 DEBUG(1, ("No username given\n"));
4042 return(rpc_file_usage(argc, argv));
4045 return run_rpc_command(NULL, PI_SRVSVC, 0,
4046 rpc_file_list_internals,
4047 argc, argv);
4051 /**
4052 * 'net rpc file' entrypoint.
4053 * @param argc Standard main() style argc
4054 * @param argv Standard main() style argv. Initial components are already
4055 * stripped
4058 int net_rpc_file(int argc, const char **argv)
4060 struct functable func[] = {
4061 {"close", rpc_file_close},
4062 {"user", rpc_file_user},
4063 #if 0
4064 {"info", rpc_file_info},
4065 #endif
4066 {NULL, NULL}
4069 if (argc == 0)
4070 return run_rpc_command(NULL, PI_SRVSVC, 0,
4071 rpc_file_list_internals,
4072 argc, argv);
4074 return net_run_function(argc, argv, func, rpc_file_usage);
4077 /****************************************************************************/
4081 /**
4082 * ABORT the shutdown of a remote RPC Server over, initshutdown pipe
4084 * All parameters are provided by the run_rpc_command function, except for
4085 * argc, argv which are passed through.
4087 * @param domain_sid The domain sid aquired from the remote server
4088 * @param cli A cli_state connected to the server.
4089 * @param mem_ctx Talloc context, destoyed on compleation of the function.
4090 * @param argc Standard main() style argc
4091 * @param argv Standard main() style argv. Initial components are already
4092 * stripped
4094 * @return Normal NTSTATUS return.
4097 static NTSTATUS rpc_shutdown_abort_internals(const DOM_SID *domain_sid,
4098 const char *domain_name,
4099 struct cli_state *cli,
4100 TALLOC_CTX *mem_ctx,
4101 int argc, const char **argv)
4103 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
4105 result = cli_shutdown_abort(cli, mem_ctx);
4107 if (NT_STATUS_IS_OK(result)) {
4108 d_printf("\nShutdown successfully aborted\n");
4109 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
4110 } else
4111 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
4113 return result;
4117 /**
4118 * ABORT the shutdown of a remote RPC Server, over winreg pipe
4120 * All parameters are provided by the run_rpc_command function, except for
4121 * argc, argv which are passed through.
4123 * @param domain_sid The domain sid aquired from the remote server
4124 * @param cli A cli_state connected to the server.
4125 * @param mem_ctx Talloc context, destoyed on compleation of the function.
4126 * @param argc Standard main() style argc
4127 * @param argv Standard main() style argv. Initial components are already
4128 * stripped
4130 * @return Normal NTSTATUS return.
4133 static NTSTATUS rpc_reg_shutdown_abort_internals(const DOM_SID *domain_sid,
4134 const char *domain_name,
4135 struct cli_state *cli,
4136 TALLOC_CTX *mem_ctx,
4137 int argc, const char **argv)
4139 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
4141 result = werror_to_ntstatus(cli_reg_abort_shutdown(cli, mem_ctx));
4143 if (NT_STATUS_IS_OK(result)) {
4144 d_printf("\nShutdown successfully aborted\n");
4145 DEBUG(5,("cmd_reg_abort_shutdown: query succeeded\n"));
4146 } else
4147 DEBUG(5,("cmd_reg_abort_shutdown: query failed\n"));
4149 return result;
4152 /**
4153 * ABORT the Shut down of a remote RPC server
4155 * @param argc Standard main() style argc
4156 * @param argv Standard main() style argv. Initial components are already
4157 * stripped
4159 * @return A shell status integer (0 for success)
4162 static int rpc_shutdown_abort(int argc, const char **argv)
4164 int rc = run_rpc_command(NULL, PI_SHUTDOWN, 0,
4165 rpc_shutdown_abort_internals,
4166 argc, argv);
4168 if (rc == 0)
4169 return rc;
4171 DEBUG(1, ("initshutdown pipe didn't work, trying winreg pipe\n"));
4173 return run_rpc_command(NULL, PI_WINREG, 0,
4174 rpc_reg_shutdown_abort_internals,
4175 argc, argv);
4178 /**
4179 * Shut down a remote RPC Server via initshutdown pipe
4181 * All parameters are provided by the run_rpc_command function, except for
4182 * argc, argv which are passes through.
4184 * @param domain_sid The domain sid aquired from the remote server
4185 * @param cli A cli_state connected to the server.
4186 * @param mem_ctx Talloc context, destoyed on compleation of the function.
4187 * @param argc Standard main() style argc
4188 * @param argc Standard main() style argv. Initial components are already
4189 * stripped
4191 * @return Normal NTSTATUS return.
4194 static NTSTATUS rpc_init_shutdown_internals(const DOM_SID *domain_sid,
4195 const char *domain_name,
4196 struct cli_state *cli,
4197 TALLOC_CTX *mem_ctx,
4198 int argc, const char **argv)
4200 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
4201 const char *msg = "This machine will be shutdown shortly";
4202 uint32 timeout = 20;
4204 if (opt_comment) {
4205 msg = opt_comment;
4207 if (opt_timeout) {
4208 timeout = opt_timeout;
4211 /* create an entry */
4212 result = cli_shutdown_init(cli, mem_ctx, msg, timeout, opt_reboot,
4213 opt_force);
4215 if (NT_STATUS_IS_OK(result)) {
4216 d_printf("\nShutdown of remote machine succeeded\n");
4217 DEBUG(5,("Shutdown of remote machine succeeded\n"));
4218 } else
4219 DEBUG(0,("Shutdown of remote machine failed!\n"));
4221 return result;
4224 /**
4225 * Shut down a remote RPC Server via winreg pipe
4227 * All parameters are provided by the run_rpc_command function, except for
4228 * argc, argv which are passes through.
4230 * @param domain_sid The domain sid aquired from the remote server
4231 * @param cli A cli_state connected to the server.
4232 * @param mem_ctx Talloc context, destoyed on compleation of the function.
4233 * @param argc Standard main() style argc
4234 * @param argc Standard main() style argv. Initial components are already
4235 * stripped
4237 * @return Normal NTSTATUS return.
4240 static NTSTATUS rpc_reg_shutdown_internals(const DOM_SID *domain_sid,
4241 const char *domain_name,
4242 struct cli_state *cli,
4243 TALLOC_CTX *mem_ctx,
4244 int argc, const char **argv)
4246 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
4247 const char *msg = "This machine will be shutdown shortly";
4248 uint32 timeout = 20;
4249 #if 0
4250 poptContext pc;
4251 int rc;
4253 struct poptOption long_options[] = {
4254 {"message", 'm', POPT_ARG_STRING, &msg},
4255 {"timeout", 't', POPT_ARG_INT, &timeout},
4256 {"reboot", 'r', POPT_ARG_NONE, &reboot},
4257 {"force", 'f', POPT_ARG_NONE, &force},
4258 { 0, 0, 0, 0}
4261 pc = poptGetContext(NULL, argc, (const char **) argv, long_options,
4262 POPT_CONTEXT_KEEP_FIRST);
4264 rc = poptGetNextOpt(pc);
4266 if (rc < -1) {
4267 /* an error occurred during option processing */
4268 DEBUG(0, ("%s: %s\n",
4269 poptBadOption(pc, POPT_BADOPTION_NOALIAS),
4270 poptStrerror(rc)));
4271 return NT_STATUS_INVALID_PARAMETER;
4273 #endif
4274 if (opt_comment) {
4275 msg = opt_comment;
4277 if (opt_timeout) {
4278 timeout = opt_timeout;
4281 /* create an entry */
4282 result = werror_to_ntstatus(cli_reg_shutdown(cli, mem_ctx, msg, timeout, opt_reboot, opt_force));
4284 if (NT_STATUS_IS_OK(result)) {
4285 d_printf("\nShutdown of remote machine succeeded\n");
4286 DEBUG(5,("Shutdown of remote machine succeeded\n"));
4288 else
4289 DEBUG(0,("Shutdown of remote machine failed!\n"));
4291 return result;
4294 /**
4295 * Shut down a remote RPC server
4297 * @param argc Standard main() style argc
4298 * @param argc Standard main() style argv. Initial components are already
4299 * stripped
4301 * @return A shell status integer (0 for success)
4304 static int rpc_shutdown(int argc, const char **argv)
4306 int rc = run_rpc_command(NULL, PI_SHUTDOWN, 0,
4307 rpc_init_shutdown_internals,
4308 argc, argv);
4309 if (rc == 0)
4310 return rc;
4312 DEBUG(1, ("initshutdown pipe didn't work, trying winreg pipe\n"));
4314 return run_rpc_command(NULL, PI_WINREG, 0, rpc_reg_shutdown_internals,
4315 argc, argv);
4318 /***************************************************************************
4319 NT Domain trusts code (i.e. 'net rpc trustdom' functionality)
4321 ***************************************************************************/
4324 * Add interdomain trust account to the RPC server.
4325 * All parameters (except for argc and argv) are passed by run_rpc_command
4326 * function.
4328 * @param domain_sid The domain sid acquired from the server
4329 * @param cli A cli_state connected to the server.
4330 * @param mem_ctx Talloc context, destoyed on completion of the function.
4331 * @param argc Standard main() style argc
4332 * @param argc Standard main() style argv. Initial components are already
4333 * stripped
4335 * @return normal NTSTATUS return code
4338 static NTSTATUS rpc_trustdom_add_internals(const DOM_SID *domain_sid,
4339 const char *domain_name,
4340 struct cli_state *cli, TALLOC_CTX *mem_ctx,
4341 int argc, const char **argv) {
4343 POLICY_HND connect_pol, domain_pol, user_pol;
4344 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
4345 char *acct_name;
4346 uint16 acb_info;
4347 uint32 unknown, user_rid;
4349 if (argc != 2) {
4350 d_printf("Usage: net rpc trustdom add <domain_name> <pw>\n");
4351 return NT_STATUS_INVALID_PARAMETER;
4355 * Make valid trusting domain account (ie. uppercased and with '$' appended)
4358 if (asprintf(&acct_name, "%s$", argv[0]) < 0) {
4359 return NT_STATUS_NO_MEMORY;
4362 strupper_m(acct_name);
4364 /* Get samr policy handle */
4365 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
4366 &connect_pol);
4367 if (!NT_STATUS_IS_OK(result)) {
4368 goto done;
4371 /* Get domain policy handle */
4372 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
4373 MAXIMUM_ALLOWED_ACCESS,
4374 domain_sid, &domain_pol);
4375 if (!NT_STATUS_IS_OK(result)) {
4376 goto done;
4379 /* Create trusting domain's account */
4380 acb_info = ACB_NORMAL;
4381 unknown = 0xe00500b0; /* No idea what this is - a permission mask?
4382 mimir: yes, most probably it is */
4384 result = cli_samr_create_dom_user(cli, mem_ctx, &domain_pol,
4385 acct_name, acb_info, unknown,
4386 &user_pol, &user_rid);
4387 if (!NT_STATUS_IS_OK(result)) {
4388 goto done;
4392 SAM_USERINFO_CTR ctr;
4393 SAM_USER_INFO_23 p23;
4394 NTTIME notime;
4395 char nostr[] = "";
4396 LOGON_HRS hrs;
4397 uchar pwbuf[516];
4399 encode_pw_buffer((char *)pwbuf, argv[1], STR_UNICODE);
4401 ZERO_STRUCT(ctr);
4402 ZERO_STRUCT(p23);
4403 ZERO_STRUCT(notime);
4404 hrs.max_len = 1260;
4405 hrs.offset = 0;
4406 hrs.len = 21;
4407 memset(hrs.hours, 0xFF, sizeof(hrs.hours));
4408 acb_info = ACB_DOMTRUST;
4410 init_sam_user_info23A(&p23, &notime, &notime, &notime,
4411 &notime, &notime, &notime,
4412 nostr, nostr, nostr, nostr, nostr,
4413 nostr, nostr, nostr, nostr, nostr,
4414 0, 0, acb_info, ACCT_FLAGS, 168, &hrs,
4415 0, 0, (char *)pwbuf);
4416 ctr.switch_value = 23;
4417 ctr.info.id23 = &p23;
4418 p23.passmustchange = 0;
4420 result = cli_samr_set_userinfo(cli, mem_ctx, &user_pol, 23,
4421 &cli->user_session_key, &ctr);
4423 if (!NT_STATUS_IS_OK(result)) {
4424 DEBUG(0,("Could not set trust account password: %s\n",
4425 nt_errstr(result)));
4426 goto done;
4430 done:
4431 SAFE_FREE(acct_name);
4432 return result;
4436 * Create interdomain trust account for a remote domain.
4438 * @param argc standard argc
4439 * @param argv standard argv without initial components
4441 * @return Integer status (0 means success)
4444 static int rpc_trustdom_add(int argc, const char **argv)
4446 if (argc > 0) {
4447 return run_rpc_command(NULL, PI_SAMR, 0, rpc_trustdom_add_internals,
4448 argc, argv);
4449 } else {
4450 d_printf("Usage: net rpc trustdom add <domain>\n");
4451 return -1;
4456 * Remove interdomain trust account from the RPC server.
4457 * All parameters (except for argc and argv) are passed by run_rpc_command
4458 * function.
4460 * @param domain_sid The domain sid acquired from the server
4461 * @param cli A cli_state connected to the server.
4462 * @param mem_ctx Talloc context, destoyed on completion of the function.
4463 * @param argc Standard main() style argc
4464 * @param argc Standard main() style argv. Initial components are already
4465 * stripped
4467 * @return normal NTSTATUS return code
4470 static NTSTATUS rpc_trustdom_del_internals(const DOM_SID *domain_sid,
4471 const char *domain_name,
4472 struct cli_state *cli, TALLOC_CTX *mem_ctx,
4473 int argc, const char **argv) {
4475 POLICY_HND connect_pol, domain_pol, user_pol;
4476 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
4477 char *acct_name;
4478 DOM_SID trust_acct_sid;
4479 uint32 *user_rids, num_rids, *name_types;
4480 uint32 flags = 0x000003e8; /* Unknown */
4482 if (argc != 1) {
4483 d_printf("Usage: net rpc trustdom del <domain_name>\n");
4484 return NT_STATUS_INVALID_PARAMETER;
4488 * Make valid trusting domain account (ie. uppercased and with '$' appended)
4491 if (asprintf(&acct_name, "%s$", argv[0]) < 0) {
4492 return NT_STATUS_NO_MEMORY;
4495 strupper_m(acct_name);
4497 /* Get samr policy handle */
4498 result = cli_samr_connect(cli, mem_ctx, MAXIMUM_ALLOWED_ACCESS,
4499 &connect_pol);
4500 if (!NT_STATUS_IS_OK(result)) {
4501 goto done;
4504 /* Get domain policy handle */
4505 result = cli_samr_open_domain(cli, mem_ctx, &connect_pol,
4506 MAXIMUM_ALLOWED_ACCESS,
4507 domain_sid, &domain_pol);
4508 if (!NT_STATUS_IS_OK(result)) {
4509 goto done;
4512 result = cli_samr_lookup_names(cli, mem_ctx, &domain_pol, flags, 1,
4513 &acct_name, &num_rids, &user_rids,
4514 &name_types);
4516 if (!NT_STATUS_IS_OK(result)) {
4517 goto done;
4520 result = cli_samr_open_user(cli, mem_ctx, &domain_pol,
4521 MAXIMUM_ALLOWED_ACCESS,
4522 user_rids[0], &user_pol);
4524 if (!NT_STATUS_IS_OK(result)) {
4525 goto done;
4528 /* append the rid to the domain sid */
4529 sid_copy(&trust_acct_sid, domain_sid);
4530 if (!sid_append_rid(&trust_acct_sid, user_rids[0])) {
4531 goto done;
4534 /* remove the sid */
4536 result = cli_samr_remove_sid_foreign_domain(cli, mem_ctx, &user_pol,
4537 &trust_acct_sid);
4539 if (!NT_STATUS_IS_OK(result)) {
4540 goto done;
4543 /* Delete user */
4545 result = cli_samr_delete_dom_user(cli, mem_ctx, &user_pol);
4547 if (!NT_STATUS_IS_OK(result)) {
4548 goto done;
4551 if (!NT_STATUS_IS_OK(result)) {
4552 DEBUG(0,("Could not set trust account password: %s\n",
4553 nt_errstr(result)));
4554 goto done;
4557 done:
4558 SAFE_FREE(acct_name);
4559 return result;
4563 * Delete interdomain trust account for a remote domain.
4565 * @param argc standard argc
4566 * @param argv standard argv without initial components
4568 * @return Integer status (0 means success)
4571 static int rpc_trustdom_del(int argc, const char **argv)
4573 if (argc > 0) {
4574 return run_rpc_command(NULL, PI_SAMR, 0, rpc_trustdom_del_internals,
4575 argc, argv);
4576 } else {
4577 d_printf("Usage: net rpc trustdom del <domain>\n");
4578 return -1;
4583 * Establish trust relationship to a trusting domain.
4584 * Interdomain account must already be created on remote PDC.
4586 * @param argc standard argc
4587 * @param argv standard argv without initial components
4589 * @return Integer status (0 means success)
4592 static int rpc_trustdom_establish(int argc, const char **argv)
4594 struct cli_state *cli;
4595 struct in_addr server_ip;
4596 POLICY_HND connect_hnd;
4597 TALLOC_CTX *mem_ctx;
4598 NTSTATUS nt_status;
4599 DOM_SID *domain_sid;
4600 WKS_INFO_100 wks_info;
4602 char* domain_name;
4603 char* domain_name_pol;
4604 char* acct_name;
4605 fstring pdc_name;
4608 * Connect to \\server\ipc$ as 'our domain' account with password
4611 if (argc != 1) {
4612 d_printf("Usage: net rpc trustdom establish <domain_name>\n");
4613 return -1;
4616 domain_name = smb_xstrdup(argv[0]);
4617 strupper_m(domain_name);
4619 /* account name used at first is our domain's name with '$' */
4620 asprintf(&acct_name, "%s$", lp_workgroup());
4621 strupper_m(acct_name);
4624 * opt_workgroup will be used by connection functions further,
4625 * hence it should be set to remote domain name instead of ours
4627 if (opt_workgroup) {
4628 opt_workgroup = smb_xstrdup(domain_name);
4631 opt_user_name = acct_name;
4633 /* find the domain controller */
4634 if (!net_find_pdc(&server_ip, pdc_name, domain_name)) {
4635 DEBUG(0, ("Couldn't find domain controller for domain %s\n", domain_name));
4636 return -1;
4639 /* connect to ipc$ as username/password */
4640 nt_status = connect_to_ipc(&cli, &server_ip, pdc_name);
4641 if (!NT_STATUS_EQUAL(nt_status, NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT)) {
4643 /* Is it trusting domain account for sure ? */
4644 DEBUG(0, ("Couldn't verify trusting domain account. Error was %s\n",
4645 nt_errstr(nt_status)));
4646 return -1;
4650 * Connect to \\server\ipc$ again (this time anonymously)
4653 nt_status = connect_to_ipc_anonymous(&cli, &server_ip, (char*)pdc_name);
4655 if (NT_STATUS_IS_ERR(nt_status)) {
4656 DEBUG(0, ("Couldn't connect to domain %s controller. Error was %s.\n",
4657 domain_name, nt_errstr(nt_status)));
4661 * Use NetServerEnum2 to make sure we're talking to a proper server
4664 if (!cli_get_pdc_name(cli, domain_name, (char*)pdc_name)) {
4665 DEBUG(0, ("NetServerEnum2 error: Couldn't find primary domain controller\
4666 for domain %s\n", domain_name));
4670 * Call WksQueryInfo to check remote server's capabilities
4671 * note: It is now used only to get unicode domain name
4674 if (!cli_nt_session_open(cli, PI_WKSSVC)) {
4675 DEBUG(0, ("Couldn't not initialise wkssvc pipe\n"));
4676 return -1;
4679 if (!(mem_ctx = talloc_init("establishing trust relationship to domain %s",
4680 domain_name))) {
4681 DEBUG(0, ("talloc_init() failed\n"));
4682 cli_shutdown(cli);
4683 return -1;
4686 nt_status = cli_wks_query_info(cli, mem_ctx, &wks_info);
4688 if (NT_STATUS_IS_ERR(nt_status)) {
4689 DEBUG(0, ("WksQueryInfo call failed.\n"));
4690 return -1;
4693 if (cli->nt_pipe_fnum[cli->pipe_idx])
4694 cli_nt_session_close(cli);
4698 * Call LsaOpenPolicy and LsaQueryInfo
4701 if (!(mem_ctx = talloc_init("rpc_trustdom_establish"))) {
4702 DEBUG(0, ("talloc_init() failed\n"));
4703 cli_shutdown(cli);
4704 return -1;
4707 if (!cli_nt_session_open(cli, PI_LSARPC)) {
4708 DEBUG(0, ("Could not initialise lsa pipe\n"));
4709 cli_shutdown(cli);
4710 return -1;
4713 nt_status = cli_lsa_open_policy2(cli, mem_ctx, True, SEC_RIGHTS_QUERY_VALUE,
4714 &connect_hnd);
4715 if (NT_STATUS_IS_ERR(nt_status)) {
4716 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
4717 nt_errstr(nt_status)));
4718 return -1;
4721 /* Querying info level 5 */
4723 nt_status = cli_lsa_query_info_policy(cli, mem_ctx, &connect_hnd,
4724 5 /* info level */, &domain_name_pol,
4725 &domain_sid);
4726 if (NT_STATUS_IS_ERR(nt_status)) {
4727 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
4728 nt_errstr(nt_status)));
4729 return -1;
4735 /* There should be actually query info level 3 (following nt serv behaviour),
4736 but I still don't know if it's _really_ necessary */
4739 * Store the password in secrets db
4742 if (!secrets_store_trusted_domain_password(domain_name, wks_info.uni_lan_grp.buffer,
4743 wks_info.uni_lan_grp.uni_str_len, opt_password,
4744 *domain_sid)) {
4745 DEBUG(0, ("Storing password for trusted domain failed.\n"));
4746 return -1;
4750 * Close the pipes and clean up
4753 nt_status = cli_lsa_close(cli, mem_ctx, &connect_hnd);
4754 if (NT_STATUS_IS_ERR(nt_status)) {
4755 DEBUG(0, ("Couldn't close LSA pipe. Error was %s\n",
4756 nt_errstr(nt_status)));
4757 return -1;
4760 if (cli->nt_pipe_fnum[cli->pipe_idx])
4761 cli_nt_session_close(cli);
4763 talloc_destroy(mem_ctx);
4765 d_printf("Trust to domain %s established\n", domain_name);
4766 return 0;
4770 * Revoke trust relationship to the remote domain
4772 * @param argc standard argc
4773 * @param argv standard argv without initial components
4775 * @return Integer status (0 means success)
4778 static int rpc_trustdom_revoke(int argc, const char **argv)
4780 char* domain_name;
4782 if (argc < 1) return -1;
4784 /* generate upper cased domain name */
4785 domain_name = smb_xstrdup(argv[0]);
4786 strupper_m(domain_name);
4788 /* delete password of the trust */
4789 if (!trusted_domain_password_delete(domain_name)) {
4790 DEBUG(0, ("Failed to revoke relationship to the trusted domain %s\n",
4791 domain_name));
4792 return -1;
4795 return 0;
4799 * Usage for 'net rpc trustdom' command
4801 * @param argc standard argc
4802 * @param argv standard argv without inital components
4804 * @return Integer status returned to shell
4807 static int rpc_trustdom_usage(int argc, const char **argv)
4809 d_printf(" net rpc trustdom add \t\t add trusting domain's account\n");
4810 d_printf(" net rpc trustdom del \t\t delete trusting domain's account\n");
4811 d_printf(" net rpc trustdom establish \t establish relationship to trusted domain\n");
4812 d_printf(" net rpc trustdom revoke \t abandon relationship to trusted domain\n");
4813 d_printf(" net rpc trustdom list \t show current interdomain trust relationships\n");
4814 return -1;
4818 static NTSTATUS rpc_query_domain_sid(const DOM_SID *domain_sid,
4819 const char *domain_name,
4820 struct cli_state *cli, TALLOC_CTX *mem_ctx,
4821 int argc, const char **argv)
4823 fstring str_sid;
4824 sid_to_string(str_sid, domain_sid);
4825 d_printf("%s\n", str_sid);
4826 return NT_STATUS_OK;
4830 static int rpc_trustdom_list(int argc, const char **argv)
4832 /* common variables */
4833 TALLOC_CTX* mem_ctx;
4834 struct cli_state *cli, *remote_cli;
4835 NTSTATUS nt_status;
4836 const char *domain_name = NULL;
4837 DOM_SID *queried_dom_sid;
4838 fstring ascii_sid, padding;
4839 int ascii_dom_name_len;
4840 POLICY_HND connect_hnd;
4842 /* trusted domains listing variables */
4843 unsigned int num_domains, enum_ctx = 0;
4844 int i, pad_len, col_len = 20;
4845 DOM_SID *domain_sids;
4846 char **trusted_dom_names;
4847 fstring pdc_name;
4848 char *dummy;
4850 /* trusting domains listing variables */
4851 POLICY_HND domain_hnd;
4852 char **trusting_dom_names;
4853 uint32 *trusting_dom_rids;
4856 * Listing trusted domains (stored in secrets.tdb, if local)
4859 mem_ctx = talloc_init("trust relationships listing");
4862 * set domain and pdc name to local samba server (default)
4863 * or to remote one given in command line
4866 if (StrCaseCmp(opt_workgroup, lp_workgroup())) {
4867 domain_name = opt_workgroup;
4868 opt_target_workgroup = opt_workgroup;
4869 } else {
4870 fstrcpy(pdc_name, global_myname());
4871 domain_name = talloc_strdup(mem_ctx, lp_workgroup());
4872 opt_target_workgroup = domain_name;
4875 /* open \PIPE\lsarpc and open policy handle */
4876 if (!(cli = net_make_ipc_connection(NET_FLAGS_PDC))) {
4877 DEBUG(0, ("Couldn't connect to domain controller\n"));
4878 return -1;
4881 if (!cli_nt_session_open(cli, PI_LSARPC)) {
4882 DEBUG(0, ("Could not initialise lsa pipe\n"));
4883 return -1;
4886 nt_status = cli_lsa_open_policy2(cli, mem_ctx, False, SEC_RIGHTS_QUERY_VALUE,
4887 &connect_hnd);
4888 if (NT_STATUS_IS_ERR(nt_status)) {
4889 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
4890 nt_errstr(nt_status)));
4891 return -1;
4894 /* query info level 5 to obtain sid of a domain being queried */
4895 nt_status = cli_lsa_query_info_policy(
4896 cli, mem_ctx, &connect_hnd, 5 /* info level */,
4897 &dummy, &queried_dom_sid);
4899 if (NT_STATUS_IS_ERR(nt_status)) {
4900 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
4901 nt_errstr(nt_status)));
4902 return -1;
4906 * Keep calling LsaEnumTrustdom over opened pipe until
4907 * the end of enumeration is reached
4910 d_printf("Trusted domains list:\n\n");
4912 do {
4913 nt_status = cli_lsa_enum_trust_dom(cli, mem_ctx, &connect_hnd, &enum_ctx,
4914 &num_domains,
4915 &trusted_dom_names, &domain_sids);
4917 if (NT_STATUS_IS_ERR(nt_status)) {
4918 DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
4919 nt_errstr(nt_status)));
4920 return -1;
4923 for (i = 0; i < num_domains; i++) {
4924 /* convert sid into ascii string */
4925 sid_to_string(ascii_sid, &(domain_sids[i]));
4927 /* calculate padding space for d_printf to look nicer */
4928 pad_len = col_len - strlen(trusted_dom_names[i]);
4929 padding[pad_len] = 0;
4930 do padding[--pad_len] = ' '; while (pad_len);
4932 d_printf("%s%s%s\n", trusted_dom_names[i], padding, ascii_sid);
4936 * in case of no trusted domains say something rather
4937 * than just display blank line
4939 if (!num_domains) d_printf("none\n");
4941 } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
4943 /* close this connection before doing next one */
4944 nt_status = cli_lsa_close(cli, mem_ctx, &connect_hnd);
4945 if (NT_STATUS_IS_ERR(nt_status)) {
4946 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
4947 nt_errstr(nt_status)));
4948 return -1;
4951 cli_nt_session_close(cli);
4954 * Listing trusting domains (stored in passdb backend, if local)
4957 d_printf("\nTrusting domains list:\n\n");
4960 * Open \PIPE\samr and get needed policy handles
4962 if (!cli_nt_session_open(cli, PI_SAMR)) {
4963 DEBUG(0, ("Could not initialise samr pipe\n"));
4964 return -1;
4967 /* SamrConnect */
4968 nt_status = cli_samr_connect(cli, mem_ctx, SA_RIGHT_SAM_OPEN_DOMAIN,
4969 &connect_hnd);
4970 if (!NT_STATUS_IS_OK(nt_status)) {
4971 DEBUG(0, ("Couldn't open SAMR policy handle. Error was %s\n",
4972 nt_errstr(nt_status)));
4973 return -1;
4976 /* SamrOpenDomain - we have to open domain policy handle in order to be
4977 able to enumerate accounts*/
4978 nt_status = cli_samr_open_domain(cli, mem_ctx, &connect_hnd,
4979 SA_RIGHT_DOMAIN_ENUM_ACCOUNTS,
4980 queried_dom_sid, &domain_hnd);
4981 if (!NT_STATUS_IS_OK(nt_status)) {
4982 DEBUG(0, ("Couldn't open domain object. Error was %s\n",
4983 nt_errstr(nt_status)));
4984 return -1;
4988 * perform actual enumeration
4991 enum_ctx = 0; /* reset enumeration context from last enumeration */
4992 do {
4994 nt_status = cli_samr_enum_dom_users(cli, mem_ctx, &domain_hnd,
4995 &enum_ctx, ACB_DOMTRUST, 0xffff,
4996 &trusting_dom_names, &trusting_dom_rids,
4997 &num_domains);
4998 if (NT_STATUS_IS_ERR(nt_status)) {
4999 DEBUG(0, ("Couldn't enumerate accounts. Error was: %s\n",
5000 nt_errstr(nt_status)));
5001 return -1;
5004 for (i = 0; i < num_domains; i++) {
5007 * get each single domain's sid (do we _really_ need this ?):
5008 * 1) connect to domain's pdc
5009 * 2) query the pdc for domain's sid
5012 /* get rid of '$' tail */
5013 ascii_dom_name_len = strlen(trusting_dom_names[i]);
5014 if (ascii_dom_name_len && ascii_dom_name_len < FSTRING_LEN)
5015 trusting_dom_names[i][ascii_dom_name_len - 1] = '\0';
5017 /* calculate padding space for d_printf to look nicer */
5018 pad_len = col_len - strlen(trusting_dom_names[i]);
5019 padding[pad_len] = 0;
5020 do padding[--pad_len] = ' '; while (pad_len);
5022 /* set opt_* variables to remote domain */
5023 strupper_m(trusting_dom_names[i]);
5024 opt_workgroup = talloc_strdup(mem_ctx, trusting_dom_names[i]);
5025 opt_target_workgroup = opt_workgroup;
5027 d_printf("%s%s", trusting_dom_names[i], padding);
5029 /* connect to remote domain controller */
5030 remote_cli = net_make_ipc_connection(NET_FLAGS_PDC | NET_FLAGS_ANONYMOUS);
5031 if (remote_cli) {
5032 /* query for domain's sid */
5033 if (run_rpc_command(remote_cli, PI_LSARPC, 0, rpc_query_domain_sid, argc, argv))
5034 d_printf("couldn't get domain's sid\n");
5036 cli_shutdown(remote_cli);
5038 } else {
5039 d_printf("domain controller is not responding\n");
5043 if (!num_domains) d_printf("none\n");
5045 } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
5047 /* close opened samr and domain policy handles */
5048 nt_status = cli_samr_close(cli, mem_ctx, &domain_hnd);
5049 if (!NT_STATUS_IS_OK(nt_status)) {
5050 DEBUG(0, ("Couldn't properly close domain policy handle for domain %s\n", domain_name));
5053 nt_status = cli_samr_close(cli, mem_ctx, &connect_hnd);
5054 if (!NT_STATUS_IS_OK(nt_status)) {
5055 DEBUG(0, ("Couldn't properly close samr policy handle for domain %s\n", domain_name));
5058 /* close samr pipe and connection to IPC$ */
5059 cli_nt_session_close(cli);
5060 cli_shutdown(cli);
5062 talloc_destroy(mem_ctx);
5063 return 0;
5067 * Entrypoint for 'net rpc trustdom' code
5069 * @param argc standard argc
5070 * @param argv standard argv without initial components
5072 * @return Integer status (0 means success)
5075 static int rpc_trustdom(int argc, const char **argv)
5077 struct functable func[] = {
5078 {"add", rpc_trustdom_add},
5079 {"del", rpc_trustdom_del},
5080 {"establish", rpc_trustdom_establish},
5081 {"revoke", rpc_trustdom_revoke},
5082 {"help", rpc_trustdom_usage},
5083 {"list", rpc_trustdom_list},
5084 {NULL, NULL}
5087 if (argc == 0) {
5088 rpc_trustdom_usage(argc, argv);
5089 return -1;
5092 return (net_run_function(argc, argv, func, rpc_user_usage));
5096 * Check if a server will take rpc commands
5097 * @param flags Type of server to connect to (PDC, DMB, localhost)
5098 * if the host is not explicitly specified
5099 * @return BOOL (true means rpc supported)
5101 BOOL net_rpc_check(unsigned flags)
5103 struct cli_state cli;
5104 BOOL ret = False;
5105 struct in_addr server_ip;
5106 char *server_name = NULL;
5108 /* flags (i.e. server type) may depend on command */
5109 if (!net_find_server(flags, &server_ip, &server_name))
5110 return False;
5112 ZERO_STRUCT(cli);
5113 if (cli_initialise(&cli) == False)
5114 return False;
5116 if (!cli_connect(&cli, server_name, &server_ip))
5117 goto done;
5118 if (!attempt_netbios_session_request(&cli, global_myname(),
5119 server_name, &server_ip))
5120 goto done;
5121 if (!cli_negprot(&cli))
5122 goto done;
5123 if (cli.protocol < PROTOCOL_NT1)
5124 goto done;
5126 ret = True;
5127 done:
5128 cli_shutdown(&cli);
5129 return ret;
5132 /* dump sam database via samsync rpc calls */
5133 static int rpc_samdump(int argc, const char **argv) {
5134 return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS, rpc_samdump_internals,
5135 argc, argv);
5138 /* syncronise sam database via samsync rpc calls */
5139 static int rpc_vampire(int argc, const char **argv) {
5140 return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS, rpc_vampire_internals,
5141 argc, argv);
5144 /**
5145 * Migrate everything from a print-server
5147 * @param argc Standard main() style argc
5148 * @param argv Standard main() style argv. Initial components are already
5149 * stripped
5151 * @return A shell status integer (0 for success)
5153 * The order is important !
5154 * To successfully add drivers the print-queues have to exist !
5155 * Applying ACLs should be the last step, because you're easily locked out
5158 static int rpc_printer_migrate_all(int argc, const char **argv)
5160 int ret;
5162 if (!opt_host) {
5163 printf("no server to migrate\n");
5164 return -1;
5167 ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_printers_internals, argc, argv);
5168 if (ret)
5169 return ret;
5171 ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_drivers_internals, argc, argv);
5172 if (ret)
5173 return ret;
5175 ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_forms_internals, argc, argv);
5176 if (ret)
5177 return ret;
5179 ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_settings_internals, argc, argv);
5180 if (ret)
5181 return ret;
5183 return run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_security_internals, argc, argv);
5187 /**
5188 * Migrate print-drivers from a print-server
5190 * @param argc Standard main() style argc
5191 * @param argv Standard main() style argv. Initial components are already
5192 * stripped
5194 * @return A shell status integer (0 for success)
5196 static int rpc_printer_migrate_drivers(int argc, const char **argv)
5198 if (!opt_host) {
5199 printf("no server to migrate\n");
5200 return -1;
5203 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5204 rpc_printer_migrate_drivers_internals,
5205 argc, argv);
5208 /**
5209 * Migrate print-forms from a print-server
5211 * @param argc Standard main() style argc
5212 * @param argv Standard main() style argv. Initial components are already
5213 * stripped
5215 * @return A shell status integer (0 for success)
5217 static int rpc_printer_migrate_forms(int argc, const char **argv)
5219 if (!opt_host) {
5220 printf("no server to migrate\n");
5221 return -1;
5224 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5225 rpc_printer_migrate_forms_internals,
5226 argc, argv);
5229 /**
5230 * Migrate printers from a print-server
5232 * @param argc Standard main() style argc
5233 * @param argv Standard main() style argv. Initial components are already
5234 * stripped
5236 * @return A shell status integer (0 for success)
5238 static int rpc_printer_migrate_printers(int argc, const char **argv)
5240 if (!opt_host) {
5241 printf("no server to migrate\n");
5242 return -1;
5245 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5246 rpc_printer_migrate_printers_internals,
5247 argc, argv);
5250 /**
5251 * Migrate printer-ACLs from a print-server
5253 * @param argc Standard main() style argc
5254 * @param argv Standard main() style argv. Initial components are already
5255 * stripped
5257 * @return A shell status integer (0 for success)
5259 static int rpc_printer_migrate_security(int argc, const char **argv)
5261 if (!opt_host) {
5262 printf("no server to migrate\n");
5263 return -1;
5266 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5267 rpc_printer_migrate_security_internals,
5268 argc, argv);
5271 /**
5272 * Migrate printer-settings from a print-server
5274 * @param argc Standard main() style argc
5275 * @param argv Standard main() style argv. Initial components are already
5276 * stripped
5278 * @return A shell status integer (0 for success)
5280 static int rpc_printer_migrate_settings(int argc, const char **argv)
5282 if (!opt_host) {
5283 printf("no server to migrate\n");
5284 return -1;
5287 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5288 rpc_printer_migrate_settings_internals,
5289 argc, argv);
5292 /**
5293 * 'net rpc printer' entrypoint.
5294 * @param argc Standard main() style argc
5295 * @param argv Standard main() style argv. Initial components are already
5296 * stripped
5299 int rpc_printer_migrate(int argc, const char **argv)
5302 /* ouch: when addriver and setdriver are called from within
5303 rpc_printer_migrate_drivers_internals, the printer-queue already
5304 *has* to exist */
5306 struct functable func[] = {
5307 {"all", rpc_printer_migrate_all},
5308 {"drivers", rpc_printer_migrate_drivers},
5309 {"forms", rpc_printer_migrate_forms},
5310 {"help", rpc_printer_usage},
5311 {"printers", rpc_printer_migrate_printers},
5312 {"security", rpc_printer_migrate_security},
5313 {"settings", rpc_printer_migrate_settings},
5314 {NULL, NULL}
5317 return net_run_function(argc, argv, func, rpc_printer_usage);
5321 /**
5322 * List printers on a remote RPC server
5324 * @param argc Standard main() style argc
5325 * @param argv Standard main() style argv. Initial components are already
5326 * stripped
5328 * @return A shell status integer (0 for success)
5330 static int rpc_printer_list(int argc, const char **argv)
5333 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5334 rpc_printer_list_internals,
5335 argc, argv);
5338 /**
5339 * List printer-drivers on a remote RPC server
5341 * @param argc Standard main() style argc
5342 * @param argv Standard main() style argv. Initial components are already
5343 * stripped
5345 * @return A shell status integer (0 for success)
5347 static int rpc_printer_driver_list(int argc, const char **argv)
5350 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5351 rpc_printer_driver_list_internals,
5352 argc, argv);
5355 /**
5356 * Publish printer in ADS via MSRPC
5358 * @param argc Standard main() style argc
5359 * @param argv Standard main() style argv. Initial components are already
5360 * stripped
5362 * @return A shell status integer (0 for success)
5364 static int rpc_printer_publish_publish(int argc, const char **argv)
5367 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5368 rpc_printer_publish_publish_internals,
5369 argc, argv);
5372 /**
5373 * Update printer in ADS via MSRPC
5375 * @param argc Standard main() style argc
5376 * @param argv Standard main() style argv. Initial components are already
5377 * stripped
5379 * @return A shell status integer (0 for success)
5381 static int rpc_printer_publish_update(int argc, const char **argv)
5384 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5385 rpc_printer_publish_update_internals,
5386 argc, argv);
5389 /**
5390 * UnPublish printer in ADS via MSRPC
5392 * @param argc Standard main() style argc
5393 * @param argv Standard main() style argv. Initial components are already
5394 * stripped
5396 * @return A shell status integer (0 for success)
5398 static int rpc_printer_publish_unpublish(int argc, const char **argv)
5401 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5402 rpc_printer_publish_unpublish_internals,
5403 argc, argv);
5406 /**
5407 * List published printers via MSRPC
5409 * @param argc Standard main() style argc
5410 * @param argv Standard main() style argv. Initial components are already
5411 * stripped
5413 * @return A shell status integer (0 for success)
5415 static int rpc_printer_publish_list(int argc, const char **argv)
5418 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5419 rpc_printer_publish_list_internals,
5420 argc, argv);
5424 /**
5425 * Publish printer in ADS
5427 * @param argc Standard main() style argc
5428 * @param argv Standard main() style argv. Initial components are already
5429 * stripped
5431 * @return A shell status integer (0 for success)
5433 static int rpc_printer_publish(int argc, const char **argv)
5436 struct functable func[] = {
5437 {"publish", rpc_printer_publish_publish},
5438 {"update", rpc_printer_publish_update},
5439 {"unpublish", rpc_printer_publish_unpublish},
5440 {"list", rpc_printer_publish_list},
5441 {"help", rpc_printer_usage},
5442 {NULL, NULL}
5445 if (argc == 0)
5446 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5447 rpc_printer_publish_list_internals,
5448 argc, argv);
5450 return net_run_function(argc, argv, func, rpc_printer_usage);
5455 /**
5456 * Display rpc printer help page.
5457 * @param argc Standard main() style argc
5458 * @param argv Standard main() style argv. Initial components are already
5459 * stripped
5461 int rpc_printer_usage(int argc, const char **argv)
5463 return net_help_printer(argc, argv);
5466 /**
5467 * 'net rpc printer' entrypoint.
5468 * @param argc Standard main() style argc
5469 * @param argv Standard main() style argv. Initial components are already
5470 * stripped
5472 int net_rpc_printer(int argc, const char **argv)
5474 struct functable func[] = {
5475 {"list", rpc_printer_list},
5476 {"migrate", rpc_printer_migrate},
5477 {"driver", rpc_printer_driver_list},
5478 {"publish", rpc_printer_publish},
5479 {NULL, NULL}
5482 if (argc == 0)
5483 return run_rpc_command(NULL, PI_SPOOLSS, 0,
5484 rpc_printer_list_internals,
5485 argc, argv);
5487 return net_run_function(argc, argv, func, rpc_printer_usage);
5490 /****************************************************************************/
5493 /**
5494 * Basic usage function for 'net rpc'
5495 * @param argc Standard main() style argc
5496 * @param argv Standard main() style argv. Initial components are already
5497 * stripped
5500 int net_rpc_usage(int argc, const char **argv)
5502 d_printf(" net rpc info \t\t\tshow basic info about a domain \n");
5503 d_printf(" net rpc join \t\t\tto join a domain \n");
5504 d_printf(" net rpc oldjoin \t\t\tto join a domain created in server manager\n\n\n");
5505 d_printf(" net rpc testjoin \t\ttests that a join is valid\n");
5506 d_printf(" net rpc user \t\t\tto add, delete and list users\n");
5507 d_printf(" net rpc password <username> [<password>] -Uadmin_username%%admin_pass\n");
5508 d_printf(" net rpc group \t\tto list groups\n");
5509 d_printf(" net rpc share \t\tto add, delete, list and migrate shares\n");
5510 d_printf(" net rpc printer \t\tto list and migrate printers\n");
5511 d_printf(" net rpc file \t\t\tto list open files\n");
5512 d_printf(" net rpc changetrustpw \tto change the trust account password\n");
5513 d_printf(" net rpc getsid \t\tfetch the domain sid into the local secrets.tdb\n");
5514 d_printf(" net rpc vampire \t\tsyncronise an NT PDC's users and groups into the local passdb\n");
5515 d_printf(" net rpc samdump \t\tdiplay an NT PDC's users, groups and other data\n");
5516 d_printf(" net rpc trustdom \t\tto create trusting domain's account or establish trust\n");
5517 d_printf(" net rpc abortshutdown \tto abort the shutdown of a remote server\n");
5518 d_printf(" net rpc shutdown \t\tto shutdown a remote server\n");
5519 d_printf(" net rpc rights\t\tto manage privileges assigned to SIDs\n");
5520 d_printf("\n");
5521 d_printf("'net rpc shutdown' also accepts the following miscellaneous options:\n"); /* misc options */
5522 d_printf("\t-r or --reboot\trequest remote server reboot on shutdown\n");
5523 d_printf("\t-f or --force\trequest the remote server force its shutdown\n");
5524 d_printf("\t-t or --timeout=<timeout>\tnumber of seconds before shutdown\n");
5525 d_printf("\t-c or --comment=<message>\ttext message to display on impending shutdown\n");
5526 return -1;
5531 * Help function for 'net rpc'. Calls command specific help if requested
5532 * or displays usage of net rpc
5533 * @param argc Standard main() style argc
5534 * @param argv Standard main() style argv. Initial components are already
5535 * stripped
5538 int net_rpc_help(int argc, const char **argv)
5540 struct functable func[] = {
5541 {"join", rpc_join_usage},
5542 {"user", rpc_user_usage},
5543 {"group", rpc_group_usage},
5544 {"share", rpc_share_usage},
5545 /*{"changetrustpw", rpc_changetrustpw_usage}, */
5546 {"trustdom", rpc_trustdom_usage},
5547 /*{"abortshutdown", rpc_shutdown_abort_usage},*/
5548 /*{"shutdown", rpc_shutdown_usage}, */
5549 {NULL, NULL}
5552 if (argc == 0) {
5553 net_rpc_usage(argc, argv);
5554 return -1;
5557 return (net_run_function(argc, argv, func, rpc_user_usage));
5561 /**
5562 * 'net rpc' entrypoint.
5563 * @param argc Standard main() style argc
5564 * @param argv Standard main() style argv. Initial components are already
5565 * stripped
5568 int net_rpc(int argc, const char **argv)
5570 struct functable func[] = {
5571 {"info", net_rpc_info},
5572 {"join", net_rpc_join},
5573 {"oldjoin", net_rpc_oldjoin},
5574 {"testjoin", net_rpc_testjoin},
5575 {"user", net_rpc_user},
5576 {"password", rpc_user_password},
5577 {"group", net_rpc_group},
5578 {"share", net_rpc_share},
5579 {"file", net_rpc_file},
5580 {"printer", net_rpc_printer},
5581 {"changetrustpw", net_rpc_changetrustpw},
5582 {"trustdom", rpc_trustdom},
5583 {"abortshutdown", rpc_shutdown_abort},
5584 {"shutdown", rpc_shutdown},
5585 {"samdump", rpc_samdump},
5586 {"vampire", rpc_vampire},
5587 {"getsid", net_rpc_getsid},
5588 {"rights", net_rpc_rights},
5589 {"help", net_rpc_help},
5590 {NULL, NULL}
5592 return net_run_function(argc, argv, func, net_rpc_usage);