Revert "Cope with MAXIMUM_ALLOWED_ACCESS requests when opening handles."
[Samba.git] / source / utils / net_rpc.c
bloba5c2de0df32859a6af273770f2d10f83fe6a3781
1 /*
2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
4 Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
5 Copyright (C) 2002 Jim McDonough (jmcd@us.ibm.com)
6 Copyright (C) 2004,2008 Guenther Deschner (gd@samba.org)
7 Copyright (C) 2005 Jeremy Allison (jra@samba.org)
8 Copyright (C) 2006 Jelmer Vernooij (jelmer@samba.org)
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "includes.h"
24 #include "utils/net.h"
26 static int net_mode_share;
27 static bool sync_files(struct copy_clistate *cp_clistate, const char *mask);
29 /**
30 * @file net_rpc.c
32 * @brief RPC based subcommands for the 'net' utility.
34 * This file should contain much of the functionality that used to
35 * be found in rpcclient, execpt that the commands should change
36 * less often, and the fucntionality should be sane (the user is not
37 * expected to know a rid/sid before they conduct an operation etc.)
39 * @todo Perhaps eventually these should be split out into a number
40 * of files, as this could get quite big.
41 **/
44 /**
45 * Many of the RPC functions need the domain sid. This function gets
46 * it at the start of every run
48 * @param cli A cli_state already connected to the remote machine
50 * @return The Domain SID of the remote machine.
51 **/
53 NTSTATUS net_get_remote_domain_sid(struct cli_state *cli, TALLOC_CTX *mem_ctx,
54 DOM_SID **domain_sid,
55 const char **domain_name)
57 struct rpc_pipe_client *lsa_pipe;
58 POLICY_HND pol;
59 NTSTATUS result = NT_STATUS_OK;
60 union lsa_PolicyInformation *info = NULL;
62 lsa_pipe = cli_rpc_pipe_open_noauth(cli, PI_LSARPC, &result);
63 if (!lsa_pipe) {
64 d_fprintf(stderr, "Could not initialise lsa pipe\n");
65 return result;
68 result = rpccli_lsa_open_policy(lsa_pipe, mem_ctx, False,
69 SEC_RIGHTS_MAXIMUM_ALLOWED,
70 &pol);
71 if (!NT_STATUS_IS_OK(result)) {
72 d_fprintf(stderr, "open_policy failed: %s\n",
73 nt_errstr(result));
74 return result;
77 result = rpccli_lsa_QueryInfoPolicy(lsa_pipe, mem_ctx,
78 &pol,
79 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
80 &info);
81 if (!NT_STATUS_IS_OK(result)) {
82 d_fprintf(stderr, "lsaquery failed: %s\n",
83 nt_errstr(result));
84 return result;
87 *domain_name = info->account_domain.name.string;
88 *domain_sid = info->account_domain.sid;
90 rpccli_lsa_Close(lsa_pipe, mem_ctx, &pol);
91 cli_rpc_pipe_close(lsa_pipe);
93 return NT_STATUS_OK;
96 /**
97 * Run a single RPC command, from start to finish.
99 * @param pipe_name the pipe to connect to (usually a PIPE_ constant)
100 * @param conn_flag a NET_FLAG_ combination. Passed to
101 * net_make_ipc_connection.
102 * @param argc Standard main() style argc.
103 * @param argv Standard main() style argv. Initial components are already
104 * stripped.
105 * @return A shell status integer (0 for success).
108 int run_rpc_command(struct cli_state *cli_arg,
109 const int pipe_idx,
110 int conn_flags,
111 rpc_command_fn fn,
112 int argc,
113 const char **argv)
115 struct cli_state *cli = NULL;
116 struct rpc_pipe_client *pipe_hnd = NULL;
117 TALLOC_CTX *mem_ctx;
118 NTSTATUS nt_status;
119 DOM_SID *domain_sid;
120 const char *domain_name;
122 /* make use of cli_state handed over as an argument, if possible */
123 if (!cli_arg) {
124 nt_status = net_make_ipc_connection(conn_flags, &cli);
125 if (!NT_STATUS_IS_OK(nt_status)) {
126 DEBUG(1, ("failed to make ipc connection: %s\n",
127 nt_errstr(nt_status)));
128 return -1;
130 } else {
131 cli = cli_arg;
134 if (!cli) {
135 return -1;
138 /* Create mem_ctx */
140 if (!(mem_ctx = talloc_init("run_rpc_command"))) {
141 DEBUG(0, ("talloc_init() failed\n"));
142 cli_shutdown(cli);
143 return -1;
146 nt_status = net_get_remote_domain_sid(cli, mem_ctx, &domain_sid,
147 &domain_name);
148 if (!NT_STATUS_IS_OK(nt_status)) {
149 cli_shutdown(cli);
150 return -1;
153 if (!(conn_flags & NET_FLAGS_NO_PIPE)) {
154 if (lp_client_schannel() && (pipe_idx == PI_NETLOGON)) {
155 /* Always try and create an schannel netlogon pipe. */
156 pipe_hnd = cli_rpc_pipe_open_schannel(cli, pipe_idx,
157 PIPE_AUTH_LEVEL_PRIVACY,
158 domain_name,
159 &nt_status);
160 if (!pipe_hnd) {
161 DEBUG(0, ("Could not initialise schannel netlogon pipe. Error was %s\n",
162 nt_errstr(nt_status) ));
163 cli_shutdown(cli);
164 return -1;
166 } else {
167 pipe_hnd = cli_rpc_pipe_open_noauth(cli, pipe_idx, &nt_status);
168 if (!pipe_hnd) {
169 DEBUG(0, ("Could not initialise pipe %s. Error was %s\n",
170 cli_get_pipe_name(pipe_idx),
171 nt_errstr(nt_status) ));
172 cli_shutdown(cli);
173 return -1;
178 nt_status = fn(domain_sid, domain_name, cli, pipe_hnd, mem_ctx, argc, argv);
180 if (!NT_STATUS_IS_OK(nt_status)) {
181 DEBUG(1, ("rpc command function failed! (%s)\n", nt_errstr(nt_status)));
182 } else {
183 DEBUG(5, ("rpc command function succedded\n"));
186 if (!(conn_flags & NET_FLAGS_NO_PIPE)) {
187 if (pipe_hnd) {
188 cli_rpc_pipe_close(pipe_hnd);
192 /* close the connection only if it was opened here */
193 if (!cli_arg) {
194 cli_shutdown(cli);
197 talloc_destroy(mem_ctx);
198 return (!NT_STATUS_IS_OK(nt_status));
201 /**
202 * Force a change of the trust acccount password.
204 * All parameters are provided by the run_rpc_command function, except for
205 * argc, argv which are passed through.
207 * @param domain_sid The domain sid acquired from the remote server
208 * @param cli A cli_state connected to the server.
209 * @param mem_ctx Talloc context, destroyed on completion of the function.
210 * @param argc Standard main() style argc.
211 * @param argv Standard main() style argv. Initial components are already
212 * stripped.
214 * @return Normal NTSTATUS return.
217 static NTSTATUS rpc_changetrustpw_internals(const DOM_SID *domain_sid,
218 const char *domain_name,
219 struct cli_state *cli,
220 struct rpc_pipe_client *pipe_hnd,
221 TALLOC_CTX *mem_ctx,
222 int argc,
223 const char **argv)
226 return trust_pw_find_change_and_store_it(pipe_hnd, mem_ctx, opt_target_workgroup);
229 /**
230 * Force a change of the trust acccount password.
232 * @param argc Standard main() style argc.
233 * @param argv Standard main() style argv. Initial components are already
234 * stripped.
236 * @return A shell status integer (0 for success).
239 int net_rpc_changetrustpw(int argc, const char **argv)
241 return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
242 rpc_changetrustpw_internals,
243 argc, argv);
246 /**
247 * Join a domain, the old way.
249 * This uses 'machinename' as the inital password, and changes it.
251 * The password should be created with 'server manager' or equiv first.
253 * All parameters are provided by the run_rpc_command function, except for
254 * argc, argv which are passed through.
256 * @param domain_sid The domain sid acquired from the remote server.
257 * @param cli A cli_state connected to the server.
258 * @param mem_ctx Talloc context, destroyed on completion of the function.
259 * @param argc Standard main() style argc.
260 * @param argv Standard main() style argv. Initial components are already
261 * stripped.
263 * @return Normal NTSTATUS return.
266 static NTSTATUS rpc_oldjoin_internals(const DOM_SID *domain_sid,
267 const char *domain_name,
268 struct cli_state *cli,
269 struct rpc_pipe_client *pipe_hnd,
270 TALLOC_CTX *mem_ctx,
271 int argc,
272 const char **argv)
275 fstring trust_passwd;
276 unsigned char orig_trust_passwd_hash[16];
277 NTSTATUS result;
278 uint32 sec_channel_type;
280 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_NETLOGON, &result);
281 if (!pipe_hnd) {
282 DEBUG(0,("rpc_oldjoin_internals: netlogon pipe open to machine %s failed. "
283 "error was %s\n",
284 cli->desthost,
285 nt_errstr(result) ));
286 return result;
290 check what type of join - if the user want's to join as
291 a BDC, the server must agree that we are a BDC.
293 if (argc >= 0) {
294 sec_channel_type = get_sec_channel_type(argv[0]);
295 } else {
296 sec_channel_type = get_sec_channel_type(NULL);
299 fstrcpy(trust_passwd, global_myname());
300 strlower_m(trust_passwd);
303 * Machine names can be 15 characters, but the max length on
304 * a password is 14. --jerry
307 trust_passwd[14] = '\0';
309 E_md4hash(trust_passwd, orig_trust_passwd_hash);
311 result = trust_pw_change_and_store_it(pipe_hnd, mem_ctx, opt_target_workgroup,
312 orig_trust_passwd_hash,
313 sec_channel_type);
315 if (NT_STATUS_IS_OK(result))
316 printf("Joined domain %s.\n",opt_target_workgroup);
319 if (!secrets_store_domain_sid(opt_target_workgroup, domain_sid)) {
320 DEBUG(0, ("error storing domain sid for %s\n", opt_target_workgroup));
321 result = NT_STATUS_UNSUCCESSFUL;
324 return result;
327 /**
328 * Join a domain, the old way.
330 * @param argc Standard main() style argc.
331 * @param argv Standard main() style argv. Initial components are already
332 * stripped.
334 * @return A shell status integer (0 for success)
337 static int net_rpc_perform_oldjoin(int argc, const char **argv)
339 return run_rpc_command(NULL, PI_NETLOGON,
340 NET_FLAGS_NO_PIPE | NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
341 rpc_oldjoin_internals,
342 argc, argv);
345 /**
346 * Join a domain, the old way. This function exists to allow
347 * the message to be displayed when oldjoin was explicitly
348 * requested, but not when it was implied by "net rpc join".
350 * @param argc Standard main() style argc.
351 * @param argv Standard main() style argv. Initial components are already
352 * stripped.
354 * @return A shell status integer (0 for success)
357 static int net_rpc_oldjoin(int argc, const char **argv)
359 int rc = net_rpc_perform_oldjoin(argc, argv);
361 if (rc) {
362 d_fprintf(stderr, "Failed to join domain\n");
365 return rc;
368 /**
369 * Basic usage function for 'net rpc join'.
370 * @param argc Standard main() style argc.
371 * @param argv Standard main() style argv. Initial components are already
372 * stripped.
375 static int rpc_join_usage(int argc, const char **argv)
377 d_printf("net rpc join -U <username>[%%password] <type>[options]\n"\
378 "\t to join a domain with admin username & password\n"\
379 "\t\t password will be prompted if needed and none is specified\n"\
380 "\t <type> can be (default MEMBER)\n"\
381 "\t\t BDC - Join as a BDC\n"\
382 "\t\t PDC - Join as a PDC\n"\
383 "\t\t MEMBER - Join as a MEMBER server\n");
385 net_common_flags_usage(argc, argv);
386 return -1;
389 /**
390 * 'net rpc join' entrypoint.
391 * @param argc Standard main() style argc.
392 * @param argv Standard main() style argv. Initial components are already
393 * stripped.
395 * Main 'net_rpc_join()' (where the admin username/password is used) is
396 * in net_rpc_join.c.
397 * Try to just change the password, but if that doesn't work, use/prompt
398 * for a username/password.
401 int net_rpc_join(int argc, const char **argv)
403 if (lp_server_role() == ROLE_STANDALONE) {
404 d_printf("cannot join as standalone machine\n");
405 return -1;
408 if (strlen(global_myname()) > 15) {
409 d_printf("Our netbios name can be at most 15 chars long, "
410 "\"%s\" is %u chars long\n",
411 global_myname(), (unsigned int)strlen(global_myname()));
412 return -1;
415 if ((net_rpc_perform_oldjoin(argc, argv) == 0))
416 return 0;
418 return net_rpc_join_newstyle(argc, argv);
421 /**
422 * display info about a rpc domain
424 * All parameters are provided by the run_rpc_command function, except for
425 * argc, argv which are passed through.
427 * @param domain_sid The domain sid acquired from the remote server.
428 * @param cli A cli_state connected to the server.
429 * @param mem_ctx Talloc context, destroyed on completion of the function.
430 * @param argc Standard main() style argc.
431 * @param argv Standard main() style argv. Initial components are already
432 * stripped.
434 * @return Normal NTSTATUS return.
437 NTSTATUS rpc_info_internals(const DOM_SID *domain_sid,
438 const char *domain_name,
439 struct cli_state *cli,
440 struct rpc_pipe_client *pipe_hnd,
441 TALLOC_CTX *mem_ctx,
442 int argc,
443 const char **argv)
445 POLICY_HND connect_pol, domain_pol;
446 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
447 union samr_DomainInfo *info = NULL;
448 fstring sid_str;
450 sid_to_fstring(sid_str, domain_sid);
452 /* Get sam policy handle */
453 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
454 pipe_hnd->cli->desthost,
455 MAXIMUM_ALLOWED_ACCESS,
456 &connect_pol);
457 if (!NT_STATUS_IS_OK(result)) {
458 d_fprintf(stderr, "Could not connect to SAM: %s\n", nt_errstr(result));
459 goto done;
462 /* Get domain policy handle */
463 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
464 &connect_pol,
465 MAXIMUM_ALLOWED_ACCESS,
466 CONST_DISCARD(struct dom_sid2 *, domain_sid),
467 &domain_pol);
468 if (!NT_STATUS_IS_OK(result)) {
469 d_fprintf(stderr, "Could not open domain: %s\n", nt_errstr(result));
470 goto done;
473 result = rpccli_samr_QueryDomainInfo(pipe_hnd, mem_ctx,
474 &domain_pol,
476 &info);
477 if (NT_STATUS_IS_OK(result)) {
478 d_printf("Domain Name: %s\n", info->info2.domain_name.string);
479 d_printf("Domain SID: %s\n", sid_str);
480 d_printf("Sequence number: %llu\n",
481 (unsigned long long)info->info2.sequence_num);
482 d_printf("Num users: %u\n", info->info2.num_users);
483 d_printf("Num domain groups: %u\n", info->info2.num_groups);
484 d_printf("Num local groups: %u\n", info->info2.num_aliases);
487 done:
488 return result;
491 /**
492 * 'net rpc info' entrypoint.
493 * @param argc Standard main() style argc
494 * @param argv Standard main() style argv. Initial components are already
495 * stripped.
498 int net_rpc_info(int argc, const char **argv)
500 return run_rpc_command(NULL, PI_SAMR, NET_FLAGS_PDC,
501 rpc_info_internals,
502 argc, argv);
505 /**
506 * Fetch domain SID into the local secrets.tdb
508 * All parameters are provided by the run_rpc_command function, except for
509 * argc, argv which are passed through.
511 * @param domain_sid The domain sid acquired from the remote server.
512 * @param cli A cli_state connected to the server.
513 * @param mem_ctx Talloc context, destroyed on completion of the function.
514 * @param argc Standard main() style argc.
515 * @param argv Standard main() style argv. Initial components are already
516 * stripped.
518 * @return Normal NTSTATUS return.
521 static NTSTATUS rpc_getsid_internals(const DOM_SID *domain_sid,
522 const char *domain_name,
523 struct cli_state *cli,
524 struct rpc_pipe_client *pipe_hnd,
525 TALLOC_CTX *mem_ctx,
526 int argc,
527 const char **argv)
529 fstring sid_str;
531 sid_to_fstring(sid_str, domain_sid);
532 d_printf("Storing SID %s for Domain %s in secrets.tdb\n",
533 sid_str, domain_name);
535 if (!secrets_store_domain_sid(domain_name, domain_sid)) {
536 DEBUG(0,("Can't store domain SID\n"));
537 return NT_STATUS_UNSUCCESSFUL;
540 return NT_STATUS_OK;
543 /**
544 * 'net rpc getsid' entrypoint.
545 * @param argc Standard main() style argc.
546 * @param argv Standard main() style argv. Initial components are already
547 * stripped.
550 int net_rpc_getsid(int argc, const char **argv)
552 return run_rpc_command(NULL, PI_SAMR, NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
553 rpc_getsid_internals,
554 argc, argv);
557 /****************************************************************************/
560 * Basic usage function for 'net rpc user'.
561 * @param argc Standard main() style argc.
562 * @param argv Standard main() style argv. Initial components are already
563 * stripped.
566 static int rpc_user_usage(int argc, const char **argv)
568 return net_help_user(argc, argv);
571 /**
572 * Add a new user to a remote RPC server.
574 * @param argc Standard main() style argc.
575 * @param argv Standard main() style argv. Initial components are already
576 * stripped.
578 * @return A shell status integer (0 for success)
581 static int rpc_user_add(int argc, const char **argv)
583 NET_API_STATUS status;
584 struct USER_INFO_1 info1;
585 uint32_t parm_error = 0;
587 if (argc < 1) {
588 d_printf("User must be specified\n");
589 rpc_user_usage(argc, argv);
590 return 0;
593 ZERO_STRUCT(info1);
595 info1.usri1_name = argv[0];
596 if (argc == 2) {
597 info1.usri1_password = argv[1];
600 status = NetUserAdd(opt_host, 1, (uint8_t *)&info1, &parm_error);
602 if (status != 0) {
603 d_fprintf(stderr, "Failed to add user '%s' with: %s.\n",
604 argv[0], libnetapi_get_error_string(netapi_ctx, status));
605 return -1;
606 } else {
607 d_printf("Added user '%s'.\n", argv[0]);
610 return 0;
613 /**
614 * Rename a user on a remote RPC server.
616 * All parameters are provided by the run_rpc_command function, except for
617 * argc, argv which are passed through.
619 * @param domain_sid The domain sid acquired from the remote server.
620 * @param cli A cli_state connected to the server.
621 * @param mem_ctx Talloc context, destroyed on completion of the function.
622 * @param argc Standard main() style argc.
623 * @param argv Standard main() style argv. Initial components are already
624 * stripped.
626 * @return Normal NTSTATUS return.
629 static NTSTATUS rpc_user_rename_internals(const DOM_SID *domain_sid,
630 const char *domain_name,
631 struct cli_state *cli,
632 struct rpc_pipe_client *pipe_hnd,
633 TALLOC_CTX *mem_ctx,
634 int argc,
635 const char **argv)
637 POLICY_HND connect_pol, domain_pol, user_pol;
638 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
639 uint32 info_level = 7;
640 const char *old_name, *new_name;
641 struct samr_Ids user_rids, name_types;
642 struct lsa_String lsa_acct_name;
643 union samr_UserInfo *info = NULL;
645 if (argc != 2) {
646 d_printf("Old and new username must be specified\n");
647 rpc_user_usage(argc, argv);
648 return NT_STATUS_OK;
651 old_name = argv[0];
652 new_name = argv[1];
654 /* Get sam policy handle */
656 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
657 pipe_hnd->cli->desthost,
658 MAXIMUM_ALLOWED_ACCESS,
659 &connect_pol);
661 if (!NT_STATUS_IS_OK(result)) {
662 goto done;
665 /* Get domain policy handle */
667 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
668 &connect_pol,
669 MAXIMUM_ALLOWED_ACCESS,
670 CONST_DISCARD(struct dom_sid2 *, domain_sid),
671 &domain_pol);
672 if (!NT_STATUS_IS_OK(result)) {
673 goto done;
676 init_lsa_String(&lsa_acct_name, old_name);
678 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
679 &domain_pol,
681 &lsa_acct_name,
682 &user_rids,
683 &name_types);
684 if (!NT_STATUS_IS_OK(result)) {
685 goto done;
688 /* Open domain user */
689 result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
690 &domain_pol,
691 MAXIMUM_ALLOWED_ACCESS,
692 user_rids.ids[0],
693 &user_pol);
695 if (!NT_STATUS_IS_OK(result)) {
696 goto done;
699 /* Query user info */
700 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
701 &user_pol,
702 info_level,
703 &info);
705 if (!NT_STATUS_IS_OK(result)) {
706 goto done;
709 init_samr_user_info7(&info->info7, new_name);
711 /* Set new name */
712 result = rpccli_samr_SetUserInfo2(pipe_hnd, mem_ctx,
713 &user_pol,
714 info_level,
715 info);
717 if (!NT_STATUS_IS_OK(result)) {
718 goto done;
721 done:
722 if (!NT_STATUS_IS_OK(result)) {
723 d_fprintf(stderr, "Failed to rename user from %s to %s - %s\n", old_name, new_name,
724 nt_errstr(result));
725 } else {
726 d_printf("Renamed user from %s to %s\n", old_name, new_name);
728 return result;
731 /**
732 * Rename a user on a remote RPC server.
734 * @param argc Standard main() style argc.
735 * @param argv Standard main() style argv. Initial components are already
736 * stripped.
738 * @return A shell status integer (0 for success).
741 static int rpc_user_rename(int argc, const char **argv)
743 return run_rpc_command(NULL, PI_SAMR, 0, rpc_user_rename_internals,
744 argc, argv);
747 /**
748 * Delete a user from a remote RPC server.
750 * @param argc Standard main() style argc.
751 * @param argv Standard main() style argv. Initial components are already
752 * stripped.
754 * @return A shell status integer (0 for success).
757 static int rpc_user_delete(int argc, const char **argv)
759 NET_API_STATUS status;
761 if (argc < 1) {
762 d_printf("User must be specified\n");
763 rpc_user_usage(argc, argv);
764 return 0;
767 status = NetUserDel(opt_host, argv[0]);
769 if (status != 0) {
770 d_fprintf(stderr, "Failed to delete user '%s' with: %s.\n",
771 argv[0],
772 libnetapi_get_error_string(netapi_ctx, status));
773 return -1;
774 } else {
775 d_printf("Deleted user '%s'.\n", argv[0]);
778 return 0;
781 /**
782 * Set a password for a user on a remote RPC server.
784 * All parameters are provided by the run_rpc_command function, except for
785 * argc, argv which are passed through.
787 * @param domain_sid The domain sid acquired from the remote server.
788 * @param cli A cli_state connected to the server.
789 * @param mem_ctx Talloc context, destroyed on completion of the function.
790 * @param argc Standard main() style argc.
791 * @param argv Standard main() style argv. Initial components are already
792 * stripped.
794 * @return Normal NTSTATUS return.
797 static NTSTATUS rpc_user_password_internals(const DOM_SID *domain_sid,
798 const char *domain_name,
799 struct cli_state *cli,
800 struct rpc_pipe_client *pipe_hnd,
801 TALLOC_CTX *mem_ctx,
802 int argc,
803 const char **argv)
805 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
806 POLICY_HND connect_pol, domain_pol, user_pol;
807 uchar pwbuf[516];
808 const char *user;
809 const char *new_password;
810 char *prompt = NULL;
811 union samr_UserInfo info;
813 if (argc < 1) {
814 d_printf("User must be specified\n");
815 rpc_user_usage(argc, argv);
816 return NT_STATUS_OK;
819 user = argv[0];
821 if (argv[1]) {
822 new_password = argv[1];
823 } else {
824 asprintf(&prompt, "Enter new password for %s:", user);
825 new_password = getpass(prompt);
826 SAFE_FREE(prompt);
829 /* Get sam policy and domain handles */
831 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
832 pipe_hnd->cli->desthost,
833 MAXIMUM_ALLOWED_ACCESS,
834 &connect_pol);
836 if (!NT_STATUS_IS_OK(result)) {
837 goto done;
840 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
841 &connect_pol,
842 MAXIMUM_ALLOWED_ACCESS,
843 CONST_DISCARD(struct dom_sid2 *, domain_sid),
844 &domain_pol);
846 if (!NT_STATUS_IS_OK(result)) {
847 goto done;
850 /* Get handle on user */
853 struct samr_Ids user_rids, name_types;
854 struct lsa_String lsa_acct_name;
856 init_lsa_String(&lsa_acct_name, user);
858 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
859 &domain_pol,
861 &lsa_acct_name,
862 &user_rids,
863 &name_types);
864 if (!NT_STATUS_IS_OK(result)) {
865 goto done;
868 result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
869 &domain_pol,
870 MAXIMUM_ALLOWED_ACCESS,
871 user_rids.ids[0],
872 &user_pol);
874 if (!NT_STATUS_IS_OK(result)) {
875 goto done;
879 /* Set password on account */
881 encode_pw_buffer(pwbuf, new_password, STR_UNICODE);
883 init_samr_user_info24(&info.info24, pwbuf, 24);
885 SamOEMhashBlob(info.info24.password.data, 516,
886 &cli->user_session_key);
888 result = rpccli_samr_SetUserInfo2(pipe_hnd, mem_ctx,
889 &user_pol,
891 &info);
893 if (!NT_STATUS_IS_OK(result)) {
894 goto done;
897 /* Display results */
899 done:
900 return result;
904 /**
905 * Set a user's password on a remote RPC server.
907 * @param argc Standard main() style argc.
908 * @param argv Standard main() style argv. Initial components are already
909 * stripped.
911 * @return A shell status integer (0 for success).
914 static int rpc_user_password(int argc, const char **argv)
916 return run_rpc_command(NULL, PI_SAMR, 0, rpc_user_password_internals,
917 argc, argv);
920 /**
921 * List user's groups on a remote RPC server.
923 * All parameters are provided by the run_rpc_command function, except for
924 * argc, argv which are passed through.
926 * @param domain_sid The domain sid acquired from the remote server.
927 * @param cli A cli_state connected to the server.
928 * @param mem_ctx Talloc context, destroyed on completion of the function.
929 * @param argc Standard main() style argc.
930 * @param argv Standard main() style argv. Initial components are already
931 * stripped.
933 * @return Normal NTSTATUS return.
936 static NTSTATUS rpc_user_info_internals(const DOM_SID *domain_sid,
937 const char *domain_name,
938 struct cli_state *cli,
939 struct rpc_pipe_client *pipe_hnd,
940 TALLOC_CTX *mem_ctx,
941 int argc,
942 const char **argv)
944 POLICY_HND connect_pol, domain_pol, user_pol;
945 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
946 int i;
947 struct samr_RidWithAttributeArray *rid_array = NULL;
948 struct lsa_Strings names;
949 struct samr_Ids types;
950 uint32_t *lrids = NULL;
951 struct samr_Ids rids, name_types;
952 struct lsa_String lsa_acct_name;
955 if (argc < 1) {
956 d_printf("User must be specified\n");
957 rpc_user_usage(argc, argv);
958 return NT_STATUS_OK;
960 /* Get sam policy handle */
962 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
963 pipe_hnd->cli->desthost,
964 MAXIMUM_ALLOWED_ACCESS,
965 &connect_pol);
966 if (!NT_STATUS_IS_OK(result)) goto done;
968 /* Get domain policy handle */
970 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
971 &connect_pol,
972 MAXIMUM_ALLOWED_ACCESS,
973 CONST_DISCARD(struct dom_sid2 *, domain_sid),
974 &domain_pol);
975 if (!NT_STATUS_IS_OK(result)) goto done;
977 /* Get handle on user */
979 init_lsa_String(&lsa_acct_name, argv[0]);
981 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
982 &domain_pol,
984 &lsa_acct_name,
985 &rids,
986 &name_types);
988 if (!NT_STATUS_IS_OK(result)) goto done;
990 result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
991 &domain_pol,
992 MAXIMUM_ALLOWED_ACCESS,
993 rids.ids[0],
994 &user_pol);
995 if (!NT_STATUS_IS_OK(result)) goto done;
997 result = rpccli_samr_GetGroupsForUser(pipe_hnd, mem_ctx,
998 &user_pol,
999 &rid_array);
1001 if (!NT_STATUS_IS_OK(result)) goto done;
1003 /* Look up rids */
1005 if (rid_array->count) {
1006 if ((lrids = TALLOC_ARRAY(mem_ctx, uint32, rid_array->count)) == NULL) {
1007 result = NT_STATUS_NO_MEMORY;
1008 goto done;
1011 for (i = 0; i < rid_array->count; i++)
1012 lrids[i] = rid_array->rids[i].rid;
1014 result = rpccli_samr_LookupRids(pipe_hnd, mem_ctx,
1015 &domain_pol,
1016 rid_array->count,
1017 lrids,
1018 &names,
1019 &types);
1021 if (!NT_STATUS_IS_OK(result)) {
1022 goto done;
1025 /* Display results */
1027 for (i = 0; i < names.count; i++)
1028 printf("%s\n", names.names[i].string);
1030 done:
1031 return result;
1034 /**
1035 * List a user's groups from a remote RPC server.
1037 * @param argc Standard main() style argc.
1038 * @param argv Standard main() style argv. Initial components are already
1039 * stripped.
1041 * @return A shell status integer (0 for success).
1044 static int rpc_user_info(int argc, const char **argv)
1046 return run_rpc_command(NULL, PI_SAMR, 0, rpc_user_info_internals,
1047 argc, argv);
1050 /**
1051 * List users on a remote RPC server.
1053 * All parameters are provided by the run_rpc_command function, except for
1054 * argc, argv which are passed through.
1056 * @param domain_sid The domain sid acquired from the remote server.
1057 * @param cli A cli_state connected to the server.
1058 * @param mem_ctx Talloc context, destroyed on completion of the function.
1059 * @param argc Standard main() style argc.
1060 * @param argv Standard main() style argv. Initial components are already
1061 * stripped.
1063 * @return Normal NTSTATUS return.
1066 static NTSTATUS rpc_user_list_internals(const DOM_SID *domain_sid,
1067 const char *domain_name,
1068 struct cli_state *cli,
1069 struct rpc_pipe_client *pipe_hnd,
1070 TALLOC_CTX *mem_ctx,
1071 int argc,
1072 const char **argv)
1074 POLICY_HND connect_pol, domain_pol;
1075 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1076 uint32 start_idx=0, num_entries, i, loop_count = 0;
1078 /* Get sam policy handle */
1080 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1081 pipe_hnd->cli->desthost,
1082 MAXIMUM_ALLOWED_ACCESS,
1083 &connect_pol);
1084 if (!NT_STATUS_IS_OK(result)) {
1085 goto done;
1088 /* Get domain policy handle */
1090 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1091 &connect_pol,
1092 MAXIMUM_ALLOWED_ACCESS,
1093 CONST_DISCARD(struct dom_sid2 *, domain_sid),
1094 &domain_pol);
1095 if (!NT_STATUS_IS_OK(result)) {
1096 goto done;
1099 /* Query domain users */
1100 if (opt_long_list_entries)
1101 d_printf("\nUser name Comment"\
1102 "\n-----------------------------\n");
1103 do {
1104 const char *user = NULL;
1105 const char *desc = NULL;
1106 uint32 max_entries, max_size;
1107 uint32_t total_size, returned_size;
1108 union samr_DispInfo info;
1110 get_query_dispinfo_params(
1111 loop_count, &max_entries, &max_size);
1113 result = rpccli_samr_QueryDisplayInfo(pipe_hnd, mem_ctx,
1114 &domain_pol,
1116 start_idx,
1117 max_entries,
1118 max_size,
1119 &total_size,
1120 &returned_size,
1121 &info);
1122 loop_count++;
1123 start_idx += info.info1.count;
1124 num_entries = info.info1.count;
1126 for (i = 0; i < num_entries; i++) {
1127 user = info.info1.entries[i].account_name.string;
1128 if (opt_long_list_entries)
1129 desc = info.info1.entries[i].description.string;
1130 if (opt_long_list_entries)
1131 printf("%-21.21s %s\n", user, desc);
1132 else
1133 printf("%s\n", user);
1135 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
1137 done:
1138 return result;
1141 /**
1142 * 'net rpc user' entrypoint.
1143 * @param argc Standard main() style argc.
1144 * @param argv Standard main() style argv. Initial components are already
1145 * stripped.
1148 int net_rpc_user(int argc, const char **argv)
1150 NET_API_STATUS status;
1152 struct functable func[] = {
1153 {"add", rpc_user_add},
1154 {"info", rpc_user_info},
1155 {"delete", rpc_user_delete},
1156 {"password", rpc_user_password},
1157 {"rename", rpc_user_rename},
1158 {NULL, NULL}
1161 status = libnetapi_init(&netapi_ctx);
1162 if (status != 0) {
1163 return -1;
1165 libnetapi_set_username(netapi_ctx, opt_user_name);
1166 libnetapi_set_password(netapi_ctx, opt_password);
1168 if (argc == 0) {
1169 return run_rpc_command(NULL,PI_SAMR, 0,
1170 rpc_user_list_internals,
1171 argc, argv);
1174 return net_run_function(argc, argv, func, rpc_user_usage);
1177 static NTSTATUS rpc_sh_user_list(TALLOC_CTX *mem_ctx,
1178 struct rpc_sh_ctx *ctx,
1179 struct rpc_pipe_client *pipe_hnd,
1180 int argc, const char **argv)
1182 return rpc_user_list_internals(ctx->domain_sid, ctx->domain_name,
1183 ctx->cli, pipe_hnd, mem_ctx,
1184 argc, argv);
1187 static NTSTATUS rpc_sh_user_info(TALLOC_CTX *mem_ctx,
1188 struct rpc_sh_ctx *ctx,
1189 struct rpc_pipe_client *pipe_hnd,
1190 int argc, const char **argv)
1192 return rpc_user_info_internals(ctx->domain_sid, ctx->domain_name,
1193 ctx->cli, pipe_hnd, mem_ctx,
1194 argc, argv);
1197 static NTSTATUS rpc_sh_handle_user(TALLOC_CTX *mem_ctx,
1198 struct rpc_sh_ctx *ctx,
1199 struct rpc_pipe_client *pipe_hnd,
1200 int argc, const char **argv,
1201 NTSTATUS (*fn)(
1202 TALLOC_CTX *mem_ctx,
1203 struct rpc_sh_ctx *ctx,
1204 struct rpc_pipe_client *pipe_hnd,
1205 POLICY_HND *user_hnd,
1206 int argc, const char **argv))
1208 POLICY_HND connect_pol, domain_pol, user_pol;
1209 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1210 DOM_SID sid;
1211 uint32 rid;
1212 enum lsa_SidType type;
1214 if (argc == 0) {
1215 d_fprintf(stderr, "usage: %s <username>\n", ctx->whoami);
1216 return NT_STATUS_INVALID_PARAMETER;
1219 ZERO_STRUCT(connect_pol);
1220 ZERO_STRUCT(domain_pol);
1221 ZERO_STRUCT(user_pol);
1223 result = net_rpc_lookup_name(mem_ctx, pipe_hnd->cli, argv[0],
1224 NULL, NULL, &sid, &type);
1225 if (!NT_STATUS_IS_OK(result)) {
1226 d_fprintf(stderr, "Could not lookup %s: %s\n", argv[0],
1227 nt_errstr(result));
1228 goto done;
1231 if (type != SID_NAME_USER) {
1232 d_fprintf(stderr, "%s is a %s, not a user\n", argv[0],
1233 sid_type_lookup(type));
1234 result = NT_STATUS_NO_SUCH_USER;
1235 goto done;
1238 if (!sid_peek_check_rid(ctx->domain_sid, &sid, &rid)) {
1239 d_fprintf(stderr, "%s is not in our domain\n", argv[0]);
1240 result = NT_STATUS_NO_SUCH_USER;
1241 goto done;
1244 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1245 pipe_hnd->cli->desthost,
1246 MAXIMUM_ALLOWED_ACCESS,
1247 &connect_pol);
1248 if (!NT_STATUS_IS_OK(result)) {
1249 goto done;
1252 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1253 &connect_pol,
1254 MAXIMUM_ALLOWED_ACCESS,
1255 ctx->domain_sid,
1256 &domain_pol);
1257 if (!NT_STATUS_IS_OK(result)) {
1258 goto done;
1261 result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
1262 &domain_pol,
1263 MAXIMUM_ALLOWED_ACCESS,
1264 rid,
1265 &user_pol);
1266 if (!NT_STATUS_IS_OK(result)) {
1267 goto done;
1270 result = fn(mem_ctx, ctx, pipe_hnd, &user_pol, argc-1, argv+1);
1272 done:
1273 if (is_valid_policy_hnd(&user_pol)) {
1274 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
1276 if (is_valid_policy_hnd(&domain_pol)) {
1277 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
1279 if (is_valid_policy_hnd(&connect_pol)) {
1280 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1282 return result;
1285 static NTSTATUS rpc_sh_user_show_internals(TALLOC_CTX *mem_ctx,
1286 struct rpc_sh_ctx *ctx,
1287 struct rpc_pipe_client *pipe_hnd,
1288 POLICY_HND *user_hnd,
1289 int argc, const char **argv)
1291 NTSTATUS result;
1292 union samr_UserInfo *info = NULL;
1294 if (argc != 0) {
1295 d_fprintf(stderr, "usage: %s show <username>\n", ctx->whoami);
1296 return NT_STATUS_INVALID_PARAMETER;
1299 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1300 user_hnd,
1302 &info);
1303 if (!NT_STATUS_IS_OK(result)) {
1304 return result;
1307 d_printf("user rid: %d, group rid: %d\n",
1308 info->info21.rid,
1309 info->info21.primary_gid);
1311 return result;
1314 static NTSTATUS rpc_sh_user_show(TALLOC_CTX *mem_ctx,
1315 struct rpc_sh_ctx *ctx,
1316 struct rpc_pipe_client *pipe_hnd,
1317 int argc, const char **argv)
1319 return rpc_sh_handle_user(mem_ctx, ctx, pipe_hnd, argc, argv,
1320 rpc_sh_user_show_internals);
1323 #define FETCHSTR(name, rec) \
1324 do { if (strequal(ctx->thiscmd, name)) { \
1325 oldval = talloc_strdup(mem_ctx, info->info21.rec.string); } \
1326 } while (0);
1328 #define SETSTR(name, rec, flag) \
1329 do { if (strequal(ctx->thiscmd, name)) { \
1330 init_lsa_String(&(info->info21.rec), argv[0]); \
1331 info->info21.fields_present |= SAMR_FIELD_##flag; } \
1332 } while (0);
1334 static NTSTATUS rpc_sh_user_str_edit_internals(TALLOC_CTX *mem_ctx,
1335 struct rpc_sh_ctx *ctx,
1336 struct rpc_pipe_client *pipe_hnd,
1337 POLICY_HND *user_hnd,
1338 int argc, const char **argv)
1340 NTSTATUS result;
1341 const char *username;
1342 const char *oldval = "";
1343 union samr_UserInfo *info = NULL;
1345 if (argc > 1) {
1346 d_fprintf(stderr, "usage: %s <username> [new value|NULL]\n",
1347 ctx->whoami);
1348 return NT_STATUS_INVALID_PARAMETER;
1351 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1352 user_hnd,
1354 &info);
1355 if (!NT_STATUS_IS_OK(result)) {
1356 return result;
1359 username = talloc_strdup(mem_ctx, info->info21.account_name.string);
1361 FETCHSTR("fullname", full_name);
1362 FETCHSTR("homedir", home_directory);
1363 FETCHSTR("homedrive", home_drive);
1364 FETCHSTR("logonscript", logon_script);
1365 FETCHSTR("profilepath", profile_path);
1366 FETCHSTR("description", description);
1368 if (argc == 0) {
1369 d_printf("%s's %s: [%s]\n", username, ctx->thiscmd, oldval);
1370 goto done;
1373 if (strcmp(argv[0], "NULL") == 0) {
1374 argv[0] = "";
1377 ZERO_STRUCT(info->info21);
1379 SETSTR("fullname", full_name, FULL_NAME);
1380 SETSTR("homedir", home_directory, HOME_DIRECTORY);
1381 SETSTR("homedrive", home_drive, HOME_DRIVE);
1382 SETSTR("logonscript", logon_script, LOGON_SCRIPT);
1383 SETSTR("profilepath", profile_path, PROFILE_PATH);
1384 SETSTR("description", description, DESCRIPTION);
1386 result = rpccli_samr_SetUserInfo(pipe_hnd, mem_ctx,
1387 user_hnd,
1389 info);
1391 d_printf("Set %s's %s from [%s] to [%s]\n", username,
1392 ctx->thiscmd, oldval, argv[0]);
1394 done:
1396 return result;
1399 #define HANDLEFLG(name, rec) \
1400 do { if (strequal(ctx->thiscmd, name)) { \
1401 oldval = (oldflags & ACB_##rec) ? "yes" : "no"; \
1402 if (newval) { \
1403 newflags = oldflags | ACB_##rec; \
1404 } else { \
1405 newflags = oldflags & ~ACB_##rec; \
1406 } } } while (0);
1408 static NTSTATUS rpc_sh_user_str_edit(TALLOC_CTX *mem_ctx,
1409 struct rpc_sh_ctx *ctx,
1410 struct rpc_pipe_client *pipe_hnd,
1411 int argc, const char **argv)
1413 return rpc_sh_handle_user(mem_ctx, ctx, pipe_hnd, argc, argv,
1414 rpc_sh_user_str_edit_internals);
1417 static NTSTATUS rpc_sh_user_flag_edit_internals(TALLOC_CTX *mem_ctx,
1418 struct rpc_sh_ctx *ctx,
1419 struct rpc_pipe_client *pipe_hnd,
1420 POLICY_HND *user_hnd,
1421 int argc, const char **argv)
1423 NTSTATUS result;
1424 const char *username;
1425 const char *oldval = "unknown";
1426 uint32 oldflags, newflags;
1427 bool newval;
1428 union samr_UserInfo *info = NULL;
1430 if ((argc > 1) ||
1431 ((argc == 1) && !strequal(argv[0], "yes") &&
1432 !strequal(argv[0], "no"))) {
1433 d_fprintf(stderr, "usage: %s <username> [yes|no]\n",
1434 ctx->whoami);
1435 return NT_STATUS_INVALID_PARAMETER;
1438 newval = strequal(argv[0], "yes");
1440 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1441 user_hnd,
1443 &info);
1444 if (!NT_STATUS_IS_OK(result)) {
1445 return result;
1448 username = talloc_strdup(mem_ctx, info->info21.account_name.string);
1449 oldflags = info->info21.acct_flags;
1450 newflags = info->info21.acct_flags;
1452 HANDLEFLG("disabled", DISABLED);
1453 HANDLEFLG("pwnotreq", PWNOTREQ);
1454 HANDLEFLG("autolock", AUTOLOCK);
1455 HANDLEFLG("pwnoexp", PWNOEXP);
1457 if (argc == 0) {
1458 d_printf("%s's %s flag: %s\n", username, ctx->thiscmd, oldval);
1459 goto done;
1462 ZERO_STRUCT(info->info21);
1464 info->info21.acct_flags = newflags;
1465 info->info21.fields_present = SAMR_FIELD_ACCT_FLAGS;
1467 result = rpccli_samr_SetUserInfo(pipe_hnd, mem_ctx,
1468 user_hnd,
1470 info);
1472 if (NT_STATUS_IS_OK(result)) {
1473 d_printf("Set %s's %s flag from [%s] to [%s]\n", username,
1474 ctx->thiscmd, oldval, argv[0]);
1477 done:
1479 return result;
1482 static NTSTATUS rpc_sh_user_flag_edit(TALLOC_CTX *mem_ctx,
1483 struct rpc_sh_ctx *ctx,
1484 struct rpc_pipe_client *pipe_hnd,
1485 int argc, const char **argv)
1487 return rpc_sh_handle_user(mem_ctx, ctx, pipe_hnd, argc, argv,
1488 rpc_sh_user_flag_edit_internals);
1491 struct rpc_sh_cmd *net_rpc_user_edit_cmds(TALLOC_CTX *mem_ctx,
1492 struct rpc_sh_ctx *ctx)
1494 static struct rpc_sh_cmd cmds[] = {
1496 { "fullname", NULL, PI_SAMR, rpc_sh_user_str_edit,
1497 "Show/Set a user's full name" },
1499 { "homedir", NULL, PI_SAMR, rpc_sh_user_str_edit,
1500 "Show/Set a user's home directory" },
1502 { "homedrive", NULL, PI_SAMR, rpc_sh_user_str_edit,
1503 "Show/Set a user's home drive" },
1505 { "logonscript", NULL, PI_SAMR, rpc_sh_user_str_edit,
1506 "Show/Set a user's logon script" },
1508 { "profilepath", NULL, PI_SAMR, rpc_sh_user_str_edit,
1509 "Show/Set a user's profile path" },
1511 { "description", NULL, PI_SAMR, rpc_sh_user_str_edit,
1512 "Show/Set a user's description" },
1514 { "disabled", NULL, PI_SAMR, rpc_sh_user_flag_edit,
1515 "Show/Set whether a user is disabled" },
1517 { "autolock", NULL, PI_SAMR, rpc_sh_user_flag_edit,
1518 "Show/Set whether a user locked out" },
1520 { "pwnotreq", NULL, PI_SAMR, rpc_sh_user_flag_edit,
1521 "Show/Set whether a user does not need a password" },
1523 { "pwnoexp", NULL, PI_SAMR, rpc_sh_user_flag_edit,
1524 "Show/Set whether a user's password does not expire" },
1526 { NULL, NULL, 0, NULL, NULL }
1529 return cmds;
1532 struct rpc_sh_cmd *net_rpc_user_cmds(TALLOC_CTX *mem_ctx,
1533 struct rpc_sh_ctx *ctx)
1535 static struct rpc_sh_cmd cmds[] = {
1537 { "list", NULL, PI_SAMR, rpc_sh_user_list,
1538 "List available users" },
1540 { "info", NULL, PI_SAMR, rpc_sh_user_info,
1541 "List the domain groups a user is member of" },
1543 { "show", NULL, PI_SAMR, rpc_sh_user_show,
1544 "Show info about a user" },
1546 { "edit", net_rpc_user_edit_cmds, 0, NULL,
1547 "Show/Modify a user's fields" },
1549 { NULL, NULL, 0, NULL, NULL }
1552 return cmds;
1555 /****************************************************************************/
1558 * Basic usage function for 'net rpc group'.
1559 * @param argc Standard main() style argc.
1560 * @param argv Standard main() style argv. Initial components are already
1561 * stripped.
1564 static int rpc_group_usage(int argc, const char **argv)
1566 return net_help_group(argc, argv);
1570 * Delete group on a remote RPC server.
1572 * All parameters are provided by the run_rpc_command function, except for
1573 * argc, argv which are passed through.
1575 * @param domain_sid The domain sid acquired from the remote server.
1576 * @param cli A cli_state connected to the server.
1577 * @param mem_ctx Talloc context, destroyed on completion of the function.
1578 * @param argc Standard main() style argc.
1579 * @param argv Standard main() style argv. Initial components are already
1580 * stripped.
1582 * @return Normal NTSTATUS return.
1585 static NTSTATUS rpc_group_delete_internals(const DOM_SID *domain_sid,
1586 const char *domain_name,
1587 struct cli_state *cli,
1588 struct rpc_pipe_client *pipe_hnd,
1589 TALLOC_CTX *mem_ctx,
1590 int argc,
1591 const char **argv)
1593 POLICY_HND connect_pol, domain_pol, group_pol, user_pol;
1594 bool group_is_primary = False;
1595 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1596 uint32_t group_rid;
1597 struct samr_RidTypeArray *rids = NULL;
1598 /* char **names; */
1599 int i;
1600 /* DOM_GID *user_gids; */
1602 struct samr_Ids group_rids, name_types;
1603 struct lsa_String lsa_acct_name;
1604 union samr_UserInfo *info = NULL;
1606 if (argc < 1) {
1607 d_printf("specify group\n");
1608 rpc_group_usage(argc,argv);
1609 return NT_STATUS_OK; /* ok? */
1612 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1613 pipe_hnd->cli->desthost,
1614 MAXIMUM_ALLOWED_ACCESS,
1615 &connect_pol);
1617 if (!NT_STATUS_IS_OK(result)) {
1618 d_fprintf(stderr, "Request samr_Connect2 failed\n");
1619 goto done;
1622 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1623 &connect_pol,
1624 MAXIMUM_ALLOWED_ACCESS,
1625 CONST_DISCARD(struct dom_sid2 *, domain_sid),
1626 &domain_pol);
1628 if (!NT_STATUS_IS_OK(result)) {
1629 d_fprintf(stderr, "Request open_domain failed\n");
1630 goto done;
1633 init_lsa_String(&lsa_acct_name, argv[0]);
1635 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
1636 &domain_pol,
1638 &lsa_acct_name,
1639 &group_rids,
1640 &name_types);
1641 if (!NT_STATUS_IS_OK(result)) {
1642 d_fprintf(stderr, "Lookup of '%s' failed\n",argv[0]);
1643 goto done;
1646 switch (name_types.ids[0])
1648 case SID_NAME_DOM_GRP:
1649 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
1650 &domain_pol,
1651 MAXIMUM_ALLOWED_ACCESS,
1652 group_rids.ids[0],
1653 &group_pol);
1654 if (!NT_STATUS_IS_OK(result)) {
1655 d_fprintf(stderr, "Request open_group failed");
1656 goto done;
1659 group_rid = group_rids.ids[0];
1661 result = rpccli_samr_QueryGroupMember(pipe_hnd, mem_ctx,
1662 &group_pol,
1663 &rids);
1665 if (!NT_STATUS_IS_OK(result)) {
1666 d_fprintf(stderr, "Unable to query group members of %s",argv[0]);
1667 goto done;
1670 if (opt_verbose) {
1671 d_printf("Domain Group %s (rid: %d) has %d members\n",
1672 argv[0],group_rid, rids->count);
1675 /* Check if group is anyone's primary group */
1676 for (i = 0; i < rids->count; i++)
1678 result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
1679 &domain_pol,
1680 MAXIMUM_ALLOWED_ACCESS,
1681 rids->rids[i],
1682 &user_pol);
1684 if (!NT_STATUS_IS_OK(result)) {
1685 d_fprintf(stderr, "Unable to open group member %d\n",
1686 rids->rids[i]);
1687 goto done;
1690 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1691 &user_pol,
1693 &info);
1695 if (!NT_STATUS_IS_OK(result)) {
1696 d_fprintf(stderr, "Unable to lookup userinfo for group member %d\n",
1697 rids->rids[i]);
1698 goto done;
1701 if (info->info21.primary_gid == group_rid) {
1702 if (opt_verbose) {
1703 d_printf("Group is primary group of %s\n",
1704 info->info21.account_name.string);
1706 group_is_primary = True;
1709 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
1712 if (group_is_primary) {
1713 d_fprintf(stderr, "Unable to delete group because some "
1714 "of it's members have it as primary group\n");
1715 result = NT_STATUS_MEMBERS_PRIMARY_GROUP;
1716 goto done;
1719 /* remove all group members */
1720 for (i = 0; i < rids->count; i++)
1722 if (opt_verbose)
1723 d_printf("Remove group member %d...",
1724 rids->rids[i]);
1725 result = rpccli_samr_DeleteGroupMember(pipe_hnd, mem_ctx,
1726 &group_pol,
1727 rids->rids[i]);
1729 if (NT_STATUS_IS_OK(result)) {
1730 if (opt_verbose)
1731 d_printf("ok\n");
1732 } else {
1733 if (opt_verbose)
1734 d_printf("failed\n");
1735 goto done;
1739 result = rpccli_samr_DeleteDomainGroup(pipe_hnd, mem_ctx,
1740 &group_pol);
1742 break;
1743 /* removing a local group is easier... */
1744 case SID_NAME_ALIAS:
1745 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
1746 &domain_pol,
1747 MAXIMUM_ALLOWED_ACCESS,
1748 group_rids.ids[0],
1749 &group_pol);
1751 if (!NT_STATUS_IS_OK(result)) {
1752 d_fprintf(stderr, "Request open_alias failed\n");
1753 goto done;
1756 result = rpccli_samr_DeleteDomAlias(pipe_hnd, mem_ctx,
1757 &group_pol);
1758 break;
1759 default:
1760 d_fprintf(stderr, "%s is of type %s. This command is only for deleting local or global groups\n",
1761 argv[0],sid_type_lookup(name_types.ids[0]));
1762 result = NT_STATUS_UNSUCCESSFUL;
1763 goto done;
1767 if (NT_STATUS_IS_OK(result)) {
1768 if (opt_verbose)
1769 d_printf("Deleted %s '%s'\n",sid_type_lookup(name_types.ids[0]),argv[0]);
1770 } else {
1771 d_fprintf(stderr, "Deleting of %s failed: %s\n",argv[0],
1772 get_friendly_nt_error_msg(result));
1775 done:
1776 return result;
1780 static int rpc_group_delete(int argc, const char **argv)
1782 return run_rpc_command(NULL, PI_SAMR, 0, rpc_group_delete_internals,
1783 argc,argv);
1786 static NTSTATUS rpc_group_add_internals(const DOM_SID *domain_sid,
1787 const char *domain_name,
1788 struct cli_state *cli,
1789 struct rpc_pipe_client *pipe_hnd,
1790 TALLOC_CTX *mem_ctx,
1791 int argc,
1792 const char **argv)
1794 POLICY_HND connect_pol, domain_pol, group_pol;
1795 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1796 union samr_GroupInfo group_info;
1797 struct lsa_String grp_name;
1798 uint32_t rid = 0;
1800 if (argc != 1) {
1801 d_printf("Group name must be specified\n");
1802 rpc_group_usage(argc, argv);
1803 return NT_STATUS_OK;
1806 init_lsa_String(&grp_name, argv[0]);
1808 /* Get sam policy handle */
1810 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1811 pipe_hnd->cli->desthost,
1812 MAXIMUM_ALLOWED_ACCESS,
1813 &connect_pol);
1814 if (!NT_STATUS_IS_OK(result)) goto done;
1816 /* Get domain policy handle */
1818 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1819 &connect_pol,
1820 MAXIMUM_ALLOWED_ACCESS,
1821 CONST_DISCARD(struct dom_sid2 *, domain_sid),
1822 &domain_pol);
1823 if (!NT_STATUS_IS_OK(result)) goto done;
1825 /* Create the group */
1827 result = rpccli_samr_CreateDomainGroup(pipe_hnd, mem_ctx,
1828 &domain_pol,
1829 &grp_name,
1830 MAXIMUM_ALLOWED_ACCESS,
1831 &group_pol,
1832 &rid);
1833 if (!NT_STATUS_IS_OK(result)) goto done;
1835 if (strlen(opt_comment) == 0) goto done;
1837 /* We've got a comment to set */
1839 init_lsa_String(&group_info.description, opt_comment);
1841 result = rpccli_samr_SetGroupInfo(pipe_hnd, mem_ctx,
1842 &group_pol,
1844 &group_info);
1845 if (!NT_STATUS_IS_OK(result)) goto done;
1847 done:
1848 if (NT_STATUS_IS_OK(result))
1849 DEBUG(5, ("add group succeeded\n"));
1850 else
1851 d_fprintf(stderr, "add group failed: %s\n", nt_errstr(result));
1853 return result;
1856 static NTSTATUS rpc_alias_add_internals(const DOM_SID *domain_sid,
1857 const char *domain_name,
1858 struct cli_state *cli,
1859 struct rpc_pipe_client *pipe_hnd,
1860 TALLOC_CTX *mem_ctx,
1861 int argc,
1862 const char **argv)
1864 POLICY_HND connect_pol, domain_pol, alias_pol;
1865 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1866 union samr_AliasInfo alias_info;
1867 struct lsa_String alias_name;
1868 uint32_t rid = 0;
1870 if (argc != 1) {
1871 d_printf("Alias name must be specified\n");
1872 rpc_group_usage(argc, argv);
1873 return NT_STATUS_OK;
1876 init_lsa_String(&alias_name, argv[0]);
1878 /* Get sam policy handle */
1880 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1881 pipe_hnd->cli->desthost,
1882 MAXIMUM_ALLOWED_ACCESS,
1883 &connect_pol);
1884 if (!NT_STATUS_IS_OK(result)) goto done;
1886 /* Get domain policy handle */
1888 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1889 &connect_pol,
1890 MAXIMUM_ALLOWED_ACCESS,
1891 CONST_DISCARD(struct dom_sid2 *, domain_sid),
1892 &domain_pol);
1893 if (!NT_STATUS_IS_OK(result)) goto done;
1895 /* Create the group */
1897 result = rpccli_samr_CreateDomAlias(pipe_hnd, mem_ctx,
1898 &domain_pol,
1899 &alias_name,
1900 MAXIMUM_ALLOWED_ACCESS,
1901 &alias_pol,
1902 &rid);
1903 if (!NT_STATUS_IS_OK(result)) goto done;
1905 if (strlen(opt_comment) == 0) goto done;
1907 /* We've got a comment to set */
1909 init_lsa_String(&alias_info.description, opt_comment);
1911 result = rpccli_samr_SetAliasInfo(pipe_hnd, mem_ctx,
1912 &alias_pol,
1914 &alias_info);
1916 if (!NT_STATUS_IS_OK(result)) goto done;
1918 done:
1919 if (NT_STATUS_IS_OK(result))
1920 DEBUG(5, ("add alias succeeded\n"));
1921 else
1922 d_fprintf(stderr, "add alias failed: %s\n", nt_errstr(result));
1924 return result;
1927 static int rpc_group_add(int argc, const char **argv)
1929 if (opt_localgroup)
1930 return run_rpc_command(NULL, PI_SAMR, 0,
1931 rpc_alias_add_internals,
1932 argc, argv);
1934 return run_rpc_command(NULL, PI_SAMR, 0,
1935 rpc_group_add_internals,
1936 argc, argv);
1939 static NTSTATUS get_sid_from_name(struct cli_state *cli,
1940 TALLOC_CTX *mem_ctx,
1941 const char *name,
1942 DOM_SID *sid,
1943 enum lsa_SidType *type)
1945 DOM_SID *sids = NULL;
1946 enum lsa_SidType *types = NULL;
1947 struct rpc_pipe_client *pipe_hnd;
1948 POLICY_HND lsa_pol;
1949 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1951 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_LSARPC, &result);
1952 if (!pipe_hnd) {
1953 goto done;
1956 result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, False,
1957 SEC_RIGHTS_MAXIMUM_ALLOWED, &lsa_pol);
1959 if (!NT_STATUS_IS_OK(result)) {
1960 goto done;
1963 result = rpccli_lsa_lookup_names(pipe_hnd, mem_ctx, &lsa_pol, 1,
1964 &name, NULL, 1, &sids, &types);
1966 if (NT_STATUS_IS_OK(result)) {
1967 sid_copy(sid, &sids[0]);
1968 *type = types[0];
1971 rpccli_lsa_Close(pipe_hnd, mem_ctx, &lsa_pol);
1973 done:
1974 if (pipe_hnd) {
1975 cli_rpc_pipe_close(pipe_hnd);
1978 if (!NT_STATUS_IS_OK(result) && (StrnCaseCmp(name, "S-", 2) == 0)) {
1980 /* Try as S-1-5-whatever */
1982 DOM_SID tmp_sid;
1984 if (string_to_sid(&tmp_sid, name)) {
1985 sid_copy(sid, &tmp_sid);
1986 *type = SID_NAME_UNKNOWN;
1987 result = NT_STATUS_OK;
1991 return result;
1994 static NTSTATUS rpc_add_groupmem(struct rpc_pipe_client *pipe_hnd,
1995 TALLOC_CTX *mem_ctx,
1996 const DOM_SID *group_sid,
1997 const char *member)
1999 POLICY_HND connect_pol, domain_pol;
2000 NTSTATUS result;
2001 uint32 group_rid;
2002 POLICY_HND group_pol;
2004 struct samr_Ids rids, rid_types;
2005 struct lsa_String lsa_acct_name;
2007 DOM_SID sid;
2009 sid_copy(&sid, group_sid);
2011 if (!sid_split_rid(&sid, &group_rid)) {
2012 return NT_STATUS_UNSUCCESSFUL;
2015 /* Get sam policy handle */
2016 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2017 pipe_hnd->cli->desthost,
2018 MAXIMUM_ALLOWED_ACCESS,
2019 &connect_pol);
2020 if (!NT_STATUS_IS_OK(result)) {
2021 return result;
2024 /* Get domain policy handle */
2025 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2026 &connect_pol,
2027 MAXIMUM_ALLOWED_ACCESS,
2028 &sid,
2029 &domain_pol);
2030 if (!NT_STATUS_IS_OK(result)) {
2031 return result;
2034 init_lsa_String(&lsa_acct_name, member);
2036 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
2037 &domain_pol,
2039 &lsa_acct_name,
2040 &rids,
2041 &rid_types);
2043 if (!NT_STATUS_IS_OK(result)) {
2044 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
2045 goto done;
2048 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
2049 &domain_pol,
2050 MAXIMUM_ALLOWED_ACCESS,
2051 group_rid,
2052 &group_pol);
2054 if (!NT_STATUS_IS_OK(result)) {
2055 goto done;
2058 result = rpccli_samr_AddGroupMember(pipe_hnd, mem_ctx,
2059 &group_pol,
2060 rids.ids[0],
2061 0x0005); /* unknown flags */
2063 done:
2064 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
2065 return result;
2068 static NTSTATUS rpc_add_aliasmem(struct rpc_pipe_client *pipe_hnd,
2069 TALLOC_CTX *mem_ctx,
2070 const DOM_SID *alias_sid,
2071 const char *member)
2073 POLICY_HND connect_pol, domain_pol;
2074 NTSTATUS result;
2075 uint32 alias_rid;
2076 POLICY_HND alias_pol;
2078 DOM_SID member_sid;
2079 enum lsa_SidType member_type;
2081 DOM_SID sid;
2083 sid_copy(&sid, alias_sid);
2085 if (!sid_split_rid(&sid, &alias_rid)) {
2086 return NT_STATUS_UNSUCCESSFUL;
2089 result = get_sid_from_name(pipe_hnd->cli, mem_ctx, member,
2090 &member_sid, &member_type);
2092 if (!NT_STATUS_IS_OK(result)) {
2093 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
2094 return result;
2097 /* Get sam policy handle */
2098 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2099 pipe_hnd->cli->desthost,
2100 MAXIMUM_ALLOWED_ACCESS,
2101 &connect_pol);
2102 if (!NT_STATUS_IS_OK(result)) {
2103 goto done;
2106 /* Get domain policy handle */
2107 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2108 &connect_pol,
2109 MAXIMUM_ALLOWED_ACCESS,
2110 &sid,
2111 &domain_pol);
2112 if (!NT_STATUS_IS_OK(result)) {
2113 goto done;
2116 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2117 &domain_pol,
2118 MAXIMUM_ALLOWED_ACCESS,
2119 alias_rid,
2120 &alias_pol);
2122 if (!NT_STATUS_IS_OK(result)) {
2123 return result;
2126 result = rpccli_samr_AddAliasMember(pipe_hnd, mem_ctx,
2127 &alias_pol,
2128 &member_sid);
2130 if (!NT_STATUS_IS_OK(result)) {
2131 return result;
2134 done:
2135 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
2136 return result;
2139 static NTSTATUS rpc_group_addmem_internals(const DOM_SID *domain_sid,
2140 const char *domain_name,
2141 struct cli_state *cli,
2142 struct rpc_pipe_client *pipe_hnd,
2143 TALLOC_CTX *mem_ctx,
2144 int argc,
2145 const char **argv)
2147 DOM_SID group_sid;
2148 enum lsa_SidType group_type;
2150 if (argc != 2) {
2151 d_printf("Usage: 'net rpc group addmem <group> <member>\n");
2152 return NT_STATUS_UNSUCCESSFUL;
2155 if (!NT_STATUS_IS_OK(get_sid_from_name(cli, mem_ctx, argv[0],
2156 &group_sid, &group_type))) {
2157 d_fprintf(stderr, "Could not lookup group name %s\n", argv[0]);
2158 return NT_STATUS_UNSUCCESSFUL;
2161 if (group_type == SID_NAME_DOM_GRP) {
2162 NTSTATUS result = rpc_add_groupmem(pipe_hnd, mem_ctx,
2163 &group_sid, argv[1]);
2165 if (!NT_STATUS_IS_OK(result)) {
2166 d_fprintf(stderr, "Could not add %s to %s: %s\n",
2167 argv[1], argv[0], nt_errstr(result));
2169 return result;
2172 if (group_type == SID_NAME_ALIAS) {
2173 NTSTATUS result = rpc_add_aliasmem(pipe_hnd, mem_ctx,
2174 &group_sid, argv[1]);
2176 if (!NT_STATUS_IS_OK(result)) {
2177 d_fprintf(stderr, "Could not add %s to %s: %s\n",
2178 argv[1], argv[0], nt_errstr(result));
2180 return result;
2183 d_fprintf(stderr, "Can only add members to global or local groups "
2184 "which %s is not\n", argv[0]);
2186 return NT_STATUS_UNSUCCESSFUL;
2189 static int rpc_group_addmem(int argc, const char **argv)
2191 return run_rpc_command(NULL, PI_SAMR, 0,
2192 rpc_group_addmem_internals,
2193 argc, argv);
2196 static NTSTATUS rpc_del_groupmem(struct rpc_pipe_client *pipe_hnd,
2197 TALLOC_CTX *mem_ctx,
2198 const DOM_SID *group_sid,
2199 const char *member)
2201 POLICY_HND connect_pol, domain_pol;
2202 NTSTATUS result;
2203 uint32 group_rid;
2204 POLICY_HND group_pol;
2206 struct samr_Ids rids, rid_types;
2207 struct lsa_String lsa_acct_name;
2209 DOM_SID sid;
2211 sid_copy(&sid, group_sid);
2213 if (!sid_split_rid(&sid, &group_rid))
2214 return NT_STATUS_UNSUCCESSFUL;
2216 /* Get sam policy handle */
2217 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2218 pipe_hnd->cli->desthost,
2219 MAXIMUM_ALLOWED_ACCESS,
2220 &connect_pol);
2221 if (!NT_STATUS_IS_OK(result))
2222 return result;
2224 /* Get domain policy handle */
2225 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2226 &connect_pol,
2227 MAXIMUM_ALLOWED_ACCESS,
2228 &sid,
2229 &domain_pol);
2230 if (!NT_STATUS_IS_OK(result))
2231 return result;
2233 init_lsa_String(&lsa_acct_name, member);
2235 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
2236 &domain_pol,
2238 &lsa_acct_name,
2239 &rids,
2240 &rid_types);
2241 if (!NT_STATUS_IS_OK(result)) {
2242 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
2243 goto done;
2246 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
2247 &domain_pol,
2248 MAXIMUM_ALLOWED_ACCESS,
2249 group_rid,
2250 &group_pol);
2252 if (!NT_STATUS_IS_OK(result))
2253 goto done;
2255 result = rpccli_samr_DeleteGroupMember(pipe_hnd, mem_ctx,
2256 &group_pol,
2257 rids.ids[0]);
2259 done:
2260 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
2261 return result;
2264 static NTSTATUS rpc_del_aliasmem(struct rpc_pipe_client *pipe_hnd,
2265 TALLOC_CTX *mem_ctx,
2266 const DOM_SID *alias_sid,
2267 const char *member)
2269 POLICY_HND connect_pol, domain_pol;
2270 NTSTATUS result;
2271 uint32 alias_rid;
2272 POLICY_HND alias_pol;
2274 DOM_SID member_sid;
2275 enum lsa_SidType member_type;
2277 DOM_SID sid;
2279 sid_copy(&sid, alias_sid);
2281 if (!sid_split_rid(&sid, &alias_rid))
2282 return NT_STATUS_UNSUCCESSFUL;
2284 result = get_sid_from_name(pipe_hnd->cli, mem_ctx, member,
2285 &member_sid, &member_type);
2287 if (!NT_STATUS_IS_OK(result)) {
2288 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
2289 return result;
2292 /* Get sam policy handle */
2293 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2294 pipe_hnd->cli->desthost,
2295 MAXIMUM_ALLOWED_ACCESS,
2296 &connect_pol);
2297 if (!NT_STATUS_IS_OK(result)) {
2298 goto done;
2301 /* Get domain policy handle */
2302 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2303 &connect_pol,
2304 MAXIMUM_ALLOWED_ACCESS,
2305 &sid,
2306 &domain_pol);
2307 if (!NT_STATUS_IS_OK(result)) {
2308 goto done;
2311 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2312 &domain_pol,
2313 MAXIMUM_ALLOWED_ACCESS,
2314 alias_rid,
2315 &alias_pol);
2317 if (!NT_STATUS_IS_OK(result))
2318 return result;
2320 result = rpccli_samr_DeleteAliasMember(pipe_hnd, mem_ctx,
2321 &alias_pol,
2322 &member_sid);
2324 if (!NT_STATUS_IS_OK(result))
2325 return result;
2327 done:
2328 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
2329 return result;
2332 static NTSTATUS rpc_group_delmem_internals(const DOM_SID *domain_sid,
2333 const char *domain_name,
2334 struct cli_state *cli,
2335 struct rpc_pipe_client *pipe_hnd,
2336 TALLOC_CTX *mem_ctx,
2337 int argc,
2338 const char **argv)
2340 DOM_SID group_sid;
2341 enum lsa_SidType group_type;
2343 if (argc != 2) {
2344 d_printf("Usage: 'net rpc group delmem <group> <member>\n");
2345 return NT_STATUS_UNSUCCESSFUL;
2348 if (!NT_STATUS_IS_OK(get_sid_from_name(cli, mem_ctx, argv[0],
2349 &group_sid, &group_type))) {
2350 d_fprintf(stderr, "Could not lookup group name %s\n", argv[0]);
2351 return NT_STATUS_UNSUCCESSFUL;
2354 if (group_type == SID_NAME_DOM_GRP) {
2355 NTSTATUS result = rpc_del_groupmem(pipe_hnd, mem_ctx,
2356 &group_sid, argv[1]);
2358 if (!NT_STATUS_IS_OK(result)) {
2359 d_fprintf(stderr, "Could not del %s from %s: %s\n",
2360 argv[1], argv[0], nt_errstr(result));
2362 return result;
2365 if (group_type == SID_NAME_ALIAS) {
2366 NTSTATUS result = rpc_del_aliasmem(pipe_hnd, mem_ctx,
2367 &group_sid, argv[1]);
2369 if (!NT_STATUS_IS_OK(result)) {
2370 d_fprintf(stderr, "Could not del %s from %s: %s\n",
2371 argv[1], argv[0], nt_errstr(result));
2373 return result;
2376 d_fprintf(stderr, "Can only delete members from global or local groups "
2377 "which %s is not\n", argv[0]);
2379 return NT_STATUS_UNSUCCESSFUL;
2382 static int rpc_group_delmem(int argc, const char **argv)
2384 return run_rpc_command(NULL, PI_SAMR, 0,
2385 rpc_group_delmem_internals,
2386 argc, argv);
2389 /**
2390 * List groups on a remote RPC server.
2392 * All parameters are provided by the run_rpc_command function, except for
2393 * argc, argv which are passed through.
2395 * @param domain_sid The domain sid acquired from the remote server.
2396 * @param cli A cli_state connected to the server.
2397 * @param mem_ctx Talloc context, destroyed on completion of the function.
2398 * @param argc Standard main() style argc.
2399 * @param argv Standard main() style argv. Initial components are already
2400 * stripped.
2402 * @return Normal NTSTATUS return.
2405 static NTSTATUS rpc_group_list_internals(const DOM_SID *domain_sid,
2406 const char *domain_name,
2407 struct cli_state *cli,
2408 struct rpc_pipe_client *pipe_hnd,
2409 TALLOC_CTX *mem_ctx,
2410 int argc,
2411 const char **argv)
2413 POLICY_HND connect_pol, domain_pol;
2414 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2415 uint32 start_idx=0, max_entries=250, num_entries, i, loop_count = 0;
2416 struct samr_SamArray *groups = NULL;
2417 bool global = False;
2418 bool local = False;
2419 bool builtin = False;
2421 if (argc == 0) {
2422 global = True;
2423 local = True;
2424 builtin = True;
2427 for (i=0; i<argc; i++) {
2428 if (strequal(argv[i], "global"))
2429 global = True;
2431 if (strequal(argv[i], "local"))
2432 local = True;
2434 if (strequal(argv[i], "builtin"))
2435 builtin = True;
2438 /* Get sam policy handle */
2440 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2441 pipe_hnd->cli->desthost,
2442 MAXIMUM_ALLOWED_ACCESS,
2443 &connect_pol);
2444 if (!NT_STATUS_IS_OK(result)) {
2445 goto done;
2448 /* Get domain policy handle */
2450 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2451 &connect_pol,
2452 MAXIMUM_ALLOWED_ACCESS,
2453 CONST_DISCARD(struct dom_sid2 *, domain_sid),
2454 &domain_pol);
2455 if (!NT_STATUS_IS_OK(result)) {
2456 goto done;
2459 /* Query domain groups */
2460 if (opt_long_list_entries)
2461 d_printf("\nGroup name Comment"\
2462 "\n-----------------------------\n");
2463 do {
2464 uint32_t max_size, total_size, returned_size;
2465 union samr_DispInfo info;
2467 if (!global) break;
2469 get_query_dispinfo_params(
2470 loop_count, &max_entries, &max_size);
2472 result = rpccli_samr_QueryDisplayInfo(pipe_hnd, mem_ctx,
2473 &domain_pol,
2475 start_idx,
2476 max_entries,
2477 max_size,
2478 &total_size,
2479 &returned_size,
2480 &info);
2481 num_entries = info.info3.count;
2482 start_idx += info.info3.count;
2484 if (!NT_STATUS_IS_OK(result) &&
2485 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2486 break;
2488 for (i = 0; i < num_entries; i++) {
2490 const char *group = NULL;
2491 const char *desc = NULL;
2493 group = info.info3.entries[i].account_name.string;
2494 desc = info.info3.entries[i].description.string;
2496 if (opt_long_list_entries)
2497 printf("%-21.21s %-50.50s\n",
2498 group, desc);
2499 else
2500 printf("%s\n", group);
2502 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2503 /* query domain aliases */
2504 start_idx = 0;
2505 do {
2506 if (!local) break;
2508 result = rpccli_samr_EnumDomainAliases(pipe_hnd, mem_ctx,
2509 &domain_pol,
2510 &start_idx,
2511 &groups,
2512 0xffff,
2513 &num_entries);
2514 if (!NT_STATUS_IS_OK(result) &&
2515 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2516 break;
2518 for (i = 0; i < num_entries; i++) {
2520 const char *description = NULL;
2522 if (opt_long_list_entries) {
2524 POLICY_HND alias_pol;
2525 union samr_AliasInfo *info = NULL;
2527 if ((NT_STATUS_IS_OK(rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2528 &domain_pol,
2529 0x8,
2530 groups->entries[i].idx,
2531 &alias_pol))) &&
2532 (NT_STATUS_IS_OK(rpccli_samr_QueryAliasInfo(pipe_hnd, mem_ctx,
2533 &alias_pol,
2535 &info))) &&
2536 (NT_STATUS_IS_OK(rpccli_samr_Close(pipe_hnd, mem_ctx,
2537 &alias_pol)))) {
2538 description = info->description.string;
2542 if (description != NULL) {
2543 printf("%-21.21s %-50.50s\n",
2544 groups->entries[i].name.string,
2545 description);
2546 } else {
2547 printf("%s\n", groups->entries[i].name.string);
2550 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2551 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
2552 /* Get builtin policy handle */
2554 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2555 &connect_pol,
2556 MAXIMUM_ALLOWED_ACCESS,
2557 CONST_DISCARD(struct dom_sid2 *, &global_sid_Builtin),
2558 &domain_pol);
2559 if (!NT_STATUS_IS_OK(result)) {
2560 goto done;
2562 /* query builtin aliases */
2563 start_idx = 0;
2564 do {
2565 if (!builtin) break;
2567 result = rpccli_samr_EnumDomainAliases(pipe_hnd, mem_ctx,
2568 &domain_pol,
2569 &start_idx,
2570 &groups,
2571 max_entries,
2572 &num_entries);
2573 if (!NT_STATUS_IS_OK(result) &&
2574 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2575 break;
2577 for (i = 0; i < num_entries; i++) {
2579 const char *description = NULL;
2581 if (opt_long_list_entries) {
2583 POLICY_HND alias_pol;
2584 union samr_AliasInfo *info = NULL;
2586 if ((NT_STATUS_IS_OK(rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2587 &domain_pol,
2588 0x8,
2589 groups->entries[i].idx,
2590 &alias_pol))) &&
2591 (NT_STATUS_IS_OK(rpccli_samr_QueryAliasInfo(pipe_hnd, mem_ctx,
2592 &alias_pol,
2594 &info))) &&
2595 (NT_STATUS_IS_OK(rpccli_samr_Close(pipe_hnd, mem_ctx,
2596 &alias_pol)))) {
2597 description = info->description.string;
2601 if (description != NULL) {
2602 printf("%-21.21s %-50.50s\n",
2603 groups->entries[i].name.string,
2604 description);
2605 } else {
2606 printf("%s\n", groups->entries[i].name.string);
2609 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2611 done:
2612 return result;
2615 static int rpc_group_list(int argc, const char **argv)
2617 return run_rpc_command(NULL, PI_SAMR, 0,
2618 rpc_group_list_internals,
2619 argc, argv);
2622 static NTSTATUS rpc_list_group_members(struct rpc_pipe_client *pipe_hnd,
2623 TALLOC_CTX *mem_ctx,
2624 const char *domain_name,
2625 const DOM_SID *domain_sid,
2626 POLICY_HND *domain_pol,
2627 uint32 rid)
2629 NTSTATUS result;
2630 POLICY_HND group_pol;
2631 uint32 num_members, *group_rids;
2632 int i;
2633 struct samr_RidTypeArray *rids = NULL;
2634 struct lsa_Strings names;
2635 struct samr_Ids types;
2637 fstring sid_str;
2638 sid_to_fstring(sid_str, domain_sid);
2640 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
2641 domain_pol,
2642 MAXIMUM_ALLOWED_ACCESS,
2643 rid,
2644 &group_pol);
2646 if (!NT_STATUS_IS_OK(result))
2647 return result;
2649 result = rpccli_samr_QueryGroupMember(pipe_hnd, mem_ctx,
2650 &group_pol,
2651 &rids);
2653 if (!NT_STATUS_IS_OK(result))
2654 return result;
2656 num_members = rids->count;
2657 group_rids = rids->rids;
2659 while (num_members > 0) {
2660 int this_time = 512;
2662 if (num_members < this_time)
2663 this_time = num_members;
2665 result = rpccli_samr_LookupRids(pipe_hnd, mem_ctx,
2666 domain_pol,
2667 this_time,
2668 group_rids,
2669 &names,
2670 &types);
2672 if (!NT_STATUS_IS_OK(result))
2673 return result;
2675 /* We only have users as members, but make the output
2676 the same as the output of alias members */
2678 for (i = 0; i < this_time; i++) {
2680 if (opt_long_list_entries) {
2681 printf("%s-%d %s\\%s %d\n", sid_str,
2682 group_rids[i], domain_name,
2683 names.names[i].string,
2684 SID_NAME_USER);
2685 } else {
2686 printf("%s\\%s\n", domain_name,
2687 names.names[i].string);
2691 num_members -= this_time;
2692 group_rids += 512;
2695 return NT_STATUS_OK;
2698 static NTSTATUS rpc_list_alias_members(struct rpc_pipe_client *pipe_hnd,
2699 TALLOC_CTX *mem_ctx,
2700 POLICY_HND *domain_pol,
2701 uint32 rid)
2703 NTSTATUS result;
2704 struct rpc_pipe_client *lsa_pipe;
2705 POLICY_HND alias_pol, lsa_pol;
2706 uint32 num_members;
2707 DOM_SID *alias_sids;
2708 char **domains;
2709 char **names;
2710 enum lsa_SidType *types;
2711 int i;
2712 struct lsa_SidArray sid_array;
2714 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2715 domain_pol,
2716 MAXIMUM_ALLOWED_ACCESS,
2717 rid,
2718 &alias_pol);
2720 if (!NT_STATUS_IS_OK(result))
2721 return result;
2723 result = rpccli_samr_GetMembersInAlias(pipe_hnd, mem_ctx,
2724 &alias_pol,
2725 &sid_array);
2727 if (!NT_STATUS_IS_OK(result)) {
2728 d_fprintf(stderr, "Couldn't list alias members\n");
2729 return result;
2732 num_members = sid_array.num_sids;
2734 if (num_members == 0) {
2735 return NT_STATUS_OK;
2738 lsa_pipe = cli_rpc_pipe_open_noauth(pipe_hnd->cli, PI_LSARPC, &result);
2739 if (!lsa_pipe) {
2740 d_fprintf(stderr, "Couldn't open LSA pipe. Error was %s\n",
2741 nt_errstr(result) );
2742 return result;
2745 result = rpccli_lsa_open_policy(lsa_pipe, mem_ctx, True,
2746 SEC_RIGHTS_MAXIMUM_ALLOWED, &lsa_pol);
2748 if (!NT_STATUS_IS_OK(result)) {
2749 d_fprintf(stderr, "Couldn't open LSA policy handle\n");
2750 cli_rpc_pipe_close(lsa_pipe);
2751 return result;
2754 alias_sids = TALLOC_ZERO_ARRAY(mem_ctx, DOM_SID, num_members);
2755 if (!alias_sids) {
2756 d_fprintf(stderr, "Out of memory\n");
2757 cli_rpc_pipe_close(lsa_pipe);
2758 return NT_STATUS_NO_MEMORY;
2761 for (i=0; i<num_members; i++) {
2762 sid_copy(&alias_sids[i], sid_array.sids[i].sid);
2765 result = rpccli_lsa_lookup_sids(lsa_pipe, mem_ctx, &lsa_pol, num_members,
2766 alias_sids,
2767 &domains, &names, &types);
2769 if (!NT_STATUS_IS_OK(result) &&
2770 !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED)) {
2771 d_fprintf(stderr, "Couldn't lookup SIDs\n");
2772 cli_rpc_pipe_close(lsa_pipe);
2773 return result;
2776 for (i = 0; i < num_members; i++) {
2777 fstring sid_str;
2778 sid_to_fstring(sid_str, &alias_sids[i]);
2780 if (opt_long_list_entries) {
2781 printf("%s %s\\%s %d\n", sid_str,
2782 domains[i] ? domains[i] : "*unknown*",
2783 names[i] ? names[i] : "*unknown*", types[i]);
2784 } else {
2785 if (domains[i])
2786 printf("%s\\%s\n", domains[i], names[i]);
2787 else
2788 printf("%s\n", sid_str);
2792 cli_rpc_pipe_close(lsa_pipe);
2793 return NT_STATUS_OK;
2796 static NTSTATUS rpc_group_members_internals(const DOM_SID *domain_sid,
2797 const char *domain_name,
2798 struct cli_state *cli,
2799 struct rpc_pipe_client *pipe_hnd,
2800 TALLOC_CTX *mem_ctx,
2801 int argc,
2802 const char **argv)
2804 NTSTATUS result;
2805 POLICY_HND connect_pol, domain_pol;
2806 struct samr_Ids rids, rid_types;
2807 struct lsa_String lsa_acct_name;
2809 /* Get sam policy handle */
2811 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2812 pipe_hnd->cli->desthost,
2813 MAXIMUM_ALLOWED_ACCESS,
2814 &connect_pol);
2816 if (!NT_STATUS_IS_OK(result))
2817 return result;
2819 /* Get domain policy handle */
2821 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2822 &connect_pol,
2823 MAXIMUM_ALLOWED_ACCESS,
2824 CONST_DISCARD(struct dom_sid2 *, domain_sid),
2825 &domain_pol);
2827 if (!NT_STATUS_IS_OK(result))
2828 return result;
2830 init_lsa_String(&lsa_acct_name, argv[0]); /* sure? */
2832 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
2833 &domain_pol,
2835 &lsa_acct_name,
2836 &rids,
2837 &rid_types);
2839 if (!NT_STATUS_IS_OK(result)) {
2841 /* Ok, did not find it in the global sam, try with builtin */
2843 DOM_SID sid_Builtin;
2845 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
2847 sid_copy(&sid_Builtin, &global_sid_Builtin);
2849 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2850 &connect_pol,
2851 MAXIMUM_ALLOWED_ACCESS,
2852 &sid_Builtin,
2853 &domain_pol);
2855 if (!NT_STATUS_IS_OK(result)) {
2856 d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2857 return result;
2860 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
2861 &domain_pol,
2863 &lsa_acct_name,
2864 &rids,
2865 &rid_types);
2867 if (!NT_STATUS_IS_OK(result)) {
2868 d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2869 return result;
2873 if (rids.count != 1) {
2874 d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2875 return result;
2878 if (rid_types.ids[0] == SID_NAME_DOM_GRP) {
2879 return rpc_list_group_members(pipe_hnd, mem_ctx, domain_name,
2880 domain_sid, &domain_pol,
2881 rids.ids[0]);
2884 if (rid_types.ids[0] == SID_NAME_ALIAS) {
2885 return rpc_list_alias_members(pipe_hnd, mem_ctx, &domain_pol,
2886 rids.ids[0]);
2889 return NT_STATUS_NO_SUCH_GROUP;
2892 static int rpc_group_members(int argc, const char **argv)
2894 if (argc != 1) {
2895 return rpc_group_usage(argc, argv);
2898 return run_rpc_command(NULL, PI_SAMR, 0,
2899 rpc_group_members_internals,
2900 argc, argv);
2903 static NTSTATUS rpc_group_rename_internals(const DOM_SID *domain_sid,
2904 const char *domain_name,
2905 struct cli_state *cli,
2906 struct rpc_pipe_client *pipe_hnd,
2907 TALLOC_CTX *mem_ctx,
2908 int argc,
2909 const char **argv)
2911 NTSTATUS result;
2912 POLICY_HND connect_pol, domain_pol, group_pol;
2913 union samr_GroupInfo group_info;
2914 struct samr_Ids rids, rid_types;
2915 struct lsa_String lsa_acct_name;
2917 if (argc != 2) {
2918 d_printf("Usage: 'net rpc group rename group newname'\n");
2919 return NT_STATUS_UNSUCCESSFUL;
2922 /* Get sam policy handle */
2924 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2925 pipe_hnd->cli->desthost,
2926 MAXIMUM_ALLOWED_ACCESS,
2927 &connect_pol);
2929 if (!NT_STATUS_IS_OK(result))
2930 return result;
2932 /* Get domain policy handle */
2934 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2935 &connect_pol,
2936 MAXIMUM_ALLOWED_ACCESS,
2937 CONST_DISCARD(struct dom_sid2 *, domain_sid),
2938 &domain_pol);
2940 if (!NT_STATUS_IS_OK(result))
2941 return result;
2943 init_lsa_String(&lsa_acct_name, argv[0]);
2945 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
2946 &domain_pol,
2948 &lsa_acct_name,
2949 &rids,
2950 &rid_types);
2952 if (rids.count != 1) {
2953 d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2954 return result;
2957 if (rid_types.ids[0] != SID_NAME_DOM_GRP) {
2958 d_fprintf(stderr, "Can only rename domain groups\n");
2959 return NT_STATUS_UNSUCCESSFUL;
2962 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
2963 &domain_pol,
2964 MAXIMUM_ALLOWED_ACCESS,
2965 rids.ids[0],
2966 &group_pol);
2968 if (!NT_STATUS_IS_OK(result))
2969 return result;
2971 init_lsa_String(&group_info.name, argv[1]);
2973 result = rpccli_samr_SetGroupInfo(pipe_hnd, mem_ctx,
2974 &group_pol,
2976 &group_info);
2978 if (!NT_STATUS_IS_OK(result))
2979 return result;
2981 return NT_STATUS_NO_SUCH_GROUP;
2984 static int rpc_group_rename(int argc, const char **argv)
2986 if (argc != 2) {
2987 return rpc_group_usage(argc, argv);
2990 return run_rpc_command(NULL, PI_SAMR, 0,
2991 rpc_group_rename_internals,
2992 argc, argv);
2995 /**
2996 * 'net rpc group' entrypoint.
2997 * @param argc Standard main() style argc.
2998 * @param argv Standard main() style argv. Initial components are already
2999 * stripped.
3002 int net_rpc_group(int argc, const char **argv)
3004 struct functable func[] = {
3005 {"add", rpc_group_add},
3006 {"delete", rpc_group_delete},
3007 {"addmem", rpc_group_addmem},
3008 {"delmem", rpc_group_delmem},
3009 {"list", rpc_group_list},
3010 {"members", rpc_group_members},
3011 {"rename", rpc_group_rename},
3012 {NULL, NULL}
3015 if (argc == 0) {
3016 return run_rpc_command(NULL, PI_SAMR, 0,
3017 rpc_group_list_internals,
3018 argc, argv);
3021 return net_run_function(argc, argv, func, rpc_group_usage);
3024 /****************************************************************************/
3026 static int rpc_share_usage(int argc, const char **argv)
3028 return net_help_share(argc, argv);
3031 /**
3032 * Add a share on a remote RPC server.
3034 * All parameters are provided by the run_rpc_command function, except for
3035 * argc, argv which are passed through.
3037 * @param domain_sid The domain sid acquired from the remote server.
3038 * @param cli A cli_state connected to the server.
3039 * @param mem_ctx Talloc context, destroyed on completion of the function.
3040 * @param argc Standard main() style argc.
3041 * @param argv Standard main() style argv. Initial components are already
3042 * stripped.
3044 * @return Normal NTSTATUS return.
3046 static NTSTATUS rpc_share_add_internals(const DOM_SID *domain_sid,
3047 const char *domain_name,
3048 struct cli_state *cli,
3049 struct rpc_pipe_client *pipe_hnd,
3050 TALLOC_CTX *mem_ctx,int argc,
3051 const char **argv)
3053 WERROR result;
3054 NTSTATUS status;
3055 char *sharename;
3056 char *path;
3057 uint32 type = STYPE_DISKTREE; /* only allow disk shares to be added */
3058 uint32 num_users=0, perms=0;
3059 char *password=NULL; /* don't allow a share password */
3060 uint32 level = 2;
3061 union srvsvc_NetShareInfo info;
3062 struct srvsvc_NetShareInfo2 info2;
3063 uint32_t parm_error = 0;
3065 if ((sharename = talloc_strdup(mem_ctx, argv[0])) == NULL) {
3066 return NT_STATUS_NO_MEMORY;
3069 path = strchr(sharename, '=');
3070 if (!path)
3071 return NT_STATUS_UNSUCCESSFUL;
3072 *path++ = '\0';
3074 info2.name = sharename;
3075 info2.type = type;
3076 info2.comment = opt_comment;
3077 info2.permissions = perms;
3078 info2.max_users = opt_maxusers;
3079 info2.current_users = num_users;
3080 info2.path = path;
3081 info2.password = password;
3083 info.info2 = &info2;
3085 status = rpccli_srvsvc_NetShareAdd(pipe_hnd, mem_ctx,
3086 pipe_hnd->cli->desthost,
3087 level,
3088 &info,
3089 &parm_error,
3090 &result);
3091 return status;
3094 static int rpc_share_add(int argc, const char **argv)
3096 if ((argc < 1) || !strchr(argv[0], '=')) {
3097 DEBUG(1,("Sharename or path not specified on add\n"));
3098 return rpc_share_usage(argc, argv);
3100 return run_rpc_command(NULL, PI_SRVSVC, 0,
3101 rpc_share_add_internals,
3102 argc, argv);
3105 /**
3106 * Delete a share on a remote RPC server.
3108 * All parameters are provided by the run_rpc_command function, except for
3109 * argc, argv which are passed through.
3111 * @param domain_sid The domain sid acquired from the remote server.
3112 * @param cli A cli_state connected to the server.
3113 * @param mem_ctx Talloc context, destroyed on completion of the function.
3114 * @param argc Standard main() style argc.
3115 * @param argv Standard main() style argv. Initial components are already
3116 * stripped.
3118 * @return Normal NTSTATUS return.
3120 static NTSTATUS rpc_share_del_internals(const DOM_SID *domain_sid,
3121 const char *domain_name,
3122 struct cli_state *cli,
3123 struct rpc_pipe_client *pipe_hnd,
3124 TALLOC_CTX *mem_ctx,
3125 int argc,
3126 const char **argv)
3128 WERROR result;
3130 return rpccli_srvsvc_NetShareDel(pipe_hnd, mem_ctx,
3131 pipe_hnd->cli->desthost,
3132 argv[0],
3134 &result);
3137 /**
3138 * Delete a share on a remote RPC server.
3140 * @param domain_sid The domain sid acquired from the remote server.
3141 * @param argc Standard main() style argc.
3142 * @param argv Standard main() style argv. Initial components are already
3143 * stripped.
3145 * @return A shell status integer (0 for success).
3147 static int rpc_share_delete(int argc, const char **argv)
3149 if (argc < 1) {
3150 DEBUG(1,("Sharename not specified on delete\n"));
3151 return rpc_share_usage(argc, argv);
3153 return run_rpc_command(NULL, PI_SRVSVC, 0,
3154 rpc_share_del_internals,
3155 argc, argv);
3159 * Formatted print of share info
3161 * @param info1 pointer to SRV_SHARE_INFO_1 to format
3164 static void display_share_info_1(struct srvsvc_NetShareInfo1 *r)
3166 if (opt_long_list_entries) {
3167 d_printf("%-12s %-8.8s %-50s\n",
3168 r->name,
3169 share_type[r->type & ~(STYPE_TEMPORARY|STYPE_HIDDEN)],
3170 r->comment);
3171 } else {
3172 d_printf("%s\n", r->name);
3176 static WERROR get_share_info(struct rpc_pipe_client *pipe_hnd,
3177 TALLOC_CTX *mem_ctx,
3178 uint32 level,
3179 int argc,
3180 const char **argv,
3181 struct srvsvc_NetShareInfoCtr *info_ctr)
3183 WERROR result;
3184 NTSTATUS status;
3185 union srvsvc_NetShareInfo info;
3187 /* no specific share requested, enumerate all */
3188 if (argc == 0) {
3190 uint32_t preferred_len = 0xffffffff;
3191 uint32_t total_entries = 0;
3192 uint32_t resume_handle = 0;
3194 info_ctr->level = level;
3196 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, mem_ctx,
3197 pipe_hnd->cli->desthost,
3198 info_ctr,
3199 preferred_len,
3200 &total_entries,
3201 &resume_handle,
3202 &result);
3203 return result;
3206 /* request just one share */
3207 status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
3208 pipe_hnd->cli->desthost,
3209 argv[0],
3210 level,
3211 &info,
3212 &result);
3214 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
3215 goto done;
3218 /* construct ctr */
3219 ZERO_STRUCTP(info_ctr);
3221 info_ctr->level = level;
3223 switch (level) {
3224 case 1:
3226 struct srvsvc_NetShareCtr1 *ctr1;
3228 ctr1 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr1);
3229 W_ERROR_HAVE_NO_MEMORY(ctr1);
3231 ctr1->count = 1;
3232 ctr1->array = info.info1;
3234 info_ctr->ctr.ctr1 = ctr1;
3236 case 2:
3238 struct srvsvc_NetShareCtr2 *ctr2;
3240 ctr2 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr2);
3241 W_ERROR_HAVE_NO_MEMORY(ctr2);
3243 ctr2->count = 1;
3244 ctr2->array = info.info2;
3246 info_ctr->ctr.ctr2 = ctr2;
3248 case 502:
3250 struct srvsvc_NetShareCtr502 *ctr502;
3252 ctr502 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr502);
3253 W_ERROR_HAVE_NO_MEMORY(ctr502);
3255 ctr502->count = 1;
3256 ctr502->array = info.info502;
3258 info_ctr->ctr.ctr502 = ctr502;
3260 } /* switch */
3261 done:
3262 return result;
3265 /**
3266 * List shares on a remote RPC server.
3268 * All parameters are provided by the run_rpc_command function, except for
3269 * argc, argv which are passed through.
3271 * @param domain_sid The domain sid acquired from the remote server.
3272 * @param cli A cli_state connected to the server.
3273 * @param mem_ctx Talloc context, destroyed on completion of the function.
3274 * @param argc Standard main() style argc.
3275 * @param argv Standard main() style argv. Initial components are already
3276 * stripped.
3278 * @return Normal NTSTATUS return.
3281 static NTSTATUS rpc_share_list_internals(const DOM_SID *domain_sid,
3282 const char *domain_name,
3283 struct cli_state *cli,
3284 struct rpc_pipe_client *pipe_hnd,
3285 TALLOC_CTX *mem_ctx,
3286 int argc,
3287 const char **argv)
3289 struct srvsvc_NetShareInfoCtr info_ctr;
3290 struct srvsvc_NetShareCtr1 ctr1;
3291 WERROR result;
3292 uint32 i, level = 1;
3294 ZERO_STRUCT(info_ctr);
3295 ZERO_STRUCT(ctr1);
3297 info_ctr.level = 1;
3298 info_ctr.ctr.ctr1 = &ctr1;
3300 result = get_share_info(pipe_hnd, mem_ctx, level, argc, argv, &info_ctr);
3301 if (!W_ERROR_IS_OK(result))
3302 goto done;
3304 /* Display results */
3306 if (opt_long_list_entries) {
3307 d_printf(
3308 "\nEnumerating shared resources (exports) on remote server:\n\n"\
3309 "\nShare name Type Description\n"\
3310 "---------- ---- -----------\n");
3312 for (i = 0; i < info_ctr.ctr.ctr1->count; i++)
3313 display_share_info_1(&info_ctr.ctr.ctr1->array[i]);
3314 done:
3315 return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
3318 /***
3319 * 'net rpc share list' entrypoint.
3320 * @param argc Standard main() style argc
3321 * @param argv Standard main() style argv. Initial components are already
3322 * stripped.
3324 static int rpc_share_list(int argc, const char **argv)
3326 return run_rpc_command(NULL, PI_SRVSVC, 0, rpc_share_list_internals, argc, argv);
3329 static bool check_share_availability(struct cli_state *cli, const char *netname)
3331 if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
3332 d_printf("skipping [%s]: not a file share.\n", netname);
3333 return False;
3336 if (!cli_tdis(cli))
3337 return False;
3339 return True;
3342 static bool check_share_sanity(struct cli_state *cli, const char *netname, uint32 type)
3344 /* only support disk shares */
3345 if (! ( type == STYPE_DISKTREE || type == (STYPE_DISKTREE | STYPE_HIDDEN)) ) {
3346 printf("share [%s] is not a diskshare (type: %x)\n", netname, type);
3347 return False;
3350 /* skip builtin shares */
3351 /* FIXME: should print$ be added too ? */
3352 if (strequal(netname,"IPC$") || strequal(netname,"ADMIN$") ||
3353 strequal(netname,"global"))
3354 return False;
3356 if (opt_exclude && in_list(netname, opt_exclude, False)) {
3357 printf("excluding [%s]\n", netname);
3358 return False;
3361 return check_share_availability(cli, netname);
3364 /**
3365 * Migrate shares from a remote RPC server to the local RPC server.
3367 * All parameters are provided by the run_rpc_command function, except for
3368 * argc, argv which are passed through.
3370 * @param domain_sid The domain sid acquired from the remote server.
3371 * @param cli A cli_state connected to the server.
3372 * @param mem_ctx Talloc context, destroyed on completion of the function.
3373 * @param argc Standard main() style argc.
3374 * @param argv Standard main() style argv. Initial components are already
3375 * stripped.
3377 * @return Normal NTSTATUS return.
3380 static NTSTATUS rpc_share_migrate_shares_internals(const DOM_SID *domain_sid,
3381 const char *domain_name,
3382 struct cli_state *cli,
3383 struct rpc_pipe_client *pipe_hnd,
3384 TALLOC_CTX *mem_ctx,
3385 int argc,
3386 const char **argv)
3388 WERROR result;
3389 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3390 struct srvsvc_NetShareInfoCtr ctr_src;
3391 uint32 i;
3392 struct rpc_pipe_client *srvsvc_pipe = NULL;
3393 struct cli_state *cli_dst = NULL;
3394 uint32 level = 502; /* includes secdesc */
3395 uint32_t parm_error = 0;
3397 result = get_share_info(pipe_hnd, mem_ctx, level, argc, argv, &ctr_src);
3398 if (!W_ERROR_IS_OK(result))
3399 goto done;
3401 /* connect destination PI_SRVSVC */
3402 nt_status = connect_dst_pipe(&cli_dst, &srvsvc_pipe, PI_SRVSVC);
3403 if (!NT_STATUS_IS_OK(nt_status))
3404 return nt_status;
3407 for (i = 0; i < ctr_src.ctr.ctr502->count; i++) {
3409 union srvsvc_NetShareInfo info;
3410 struct srvsvc_NetShareInfo502 info502 =
3411 ctr_src.ctr.ctr502->array[i];
3413 /* reset error-code */
3414 nt_status = NT_STATUS_UNSUCCESSFUL;
3416 if (!check_share_sanity(cli, info502.name, info502.type))
3417 continue;
3419 /* finally add the share on the dst server */
3421 printf("migrating: [%s], path: %s, comment: %s, without share-ACLs\n",
3422 info502.name, info502.path, info502.comment);
3424 info.info502 = &info502;
3426 nt_status = rpccli_srvsvc_NetShareAdd(srvsvc_pipe, mem_ctx,
3427 srvsvc_pipe->cli->desthost,
3428 502,
3429 &info,
3430 &parm_error,
3431 &result);
3433 if (W_ERROR_V(result) == W_ERROR_V(WERR_ALREADY_EXISTS)) {
3434 printf(" [%s] does already exist\n",
3435 info502.name);
3436 continue;
3439 if (!NT_STATUS_IS_OK(nt_status) || !W_ERROR_IS_OK(result)) {
3440 printf("cannot add share: %s\n", dos_errstr(result));
3441 goto done;
3446 nt_status = NT_STATUS_OK;
3448 done:
3449 if (cli_dst) {
3450 cli_shutdown(cli_dst);
3453 return nt_status;
3457 /**
3458 * Migrate shares from a rpc-server to another.
3460 * @param argc Standard main() style argc.
3461 * @param argv Standard main() style argv. Initial components are already
3462 * stripped.
3464 * @return A shell status integer (0 for success).
3466 static int rpc_share_migrate_shares(int argc, const char **argv)
3469 if (!opt_host) {
3470 printf("no server to migrate\n");
3471 return -1;
3474 return run_rpc_command(NULL, PI_SRVSVC, 0,
3475 rpc_share_migrate_shares_internals,
3476 argc, argv);
3480 * Copy a file/dir
3482 * @param f file_info
3483 * @param mask current search mask
3484 * @param state arg-pointer
3487 static void copy_fn(const char *mnt, file_info *f, const char *mask, void *state)
3489 static NTSTATUS nt_status;
3490 static struct copy_clistate *local_state;
3491 static fstring filename, new_mask;
3492 fstring dir;
3493 char *old_dir;
3495 local_state = (struct copy_clistate *)state;
3496 nt_status = NT_STATUS_UNSUCCESSFUL;
3498 if (strequal(f->name, ".") || strequal(f->name, ".."))
3499 return;
3501 DEBUG(3,("got mask: %s, name: %s\n", mask, f->name));
3503 /* DIRECTORY */
3504 if (f->mode & aDIR) {
3506 DEBUG(3,("got dir: %s\n", f->name));
3508 fstrcpy(dir, local_state->cwd);
3509 fstrcat(dir, "\\");
3510 fstrcat(dir, f->name);
3512 switch (net_mode_share)
3514 case NET_MODE_SHARE_MIGRATE:
3515 /* create that directory */
3516 nt_status = net_copy_file(local_state->mem_ctx,
3517 local_state->cli_share_src,
3518 local_state->cli_share_dst,
3519 dir, dir,
3520 opt_acls? True : False,
3521 opt_attrs? True : False,
3522 opt_timestamps? True : False,
3523 False);
3524 break;
3525 default:
3526 d_fprintf(stderr, "Unsupported mode %d\n", net_mode_share);
3527 return;
3530 if (!NT_STATUS_IS_OK(nt_status))
3531 printf("could not handle dir %s: %s\n",
3532 dir, nt_errstr(nt_status));
3534 /* search below that directory */
3535 fstrcpy(new_mask, dir);
3536 fstrcat(new_mask, "\\*");
3538 old_dir = local_state->cwd;
3539 local_state->cwd = dir;
3540 if (!sync_files(local_state, new_mask))
3541 printf("could not handle files\n");
3542 local_state->cwd = old_dir;
3544 return;
3548 /* FILE */
3549 fstrcpy(filename, local_state->cwd);
3550 fstrcat(filename, "\\");
3551 fstrcat(filename, f->name);
3553 DEBUG(3,("got file: %s\n", filename));
3555 switch (net_mode_share)
3557 case NET_MODE_SHARE_MIGRATE:
3558 nt_status = net_copy_file(local_state->mem_ctx,
3559 local_state->cli_share_src,
3560 local_state->cli_share_dst,
3561 filename, filename,
3562 opt_acls? True : False,
3563 opt_attrs? True : False,
3564 opt_timestamps? True: False,
3565 True);
3566 break;
3567 default:
3568 d_fprintf(stderr, "Unsupported file mode %d\n", net_mode_share);
3569 return;
3572 if (!NT_STATUS_IS_OK(nt_status))
3573 printf("could not handle file %s: %s\n",
3574 filename, nt_errstr(nt_status));
3579 * sync files, can be called recursivly to list files
3580 * and then call copy_fn for each file
3582 * @param cp_clistate pointer to the copy_clistate we work with
3583 * @param mask the current search mask
3585 * @return Boolean result
3587 static bool sync_files(struct copy_clistate *cp_clistate, const char *mask)
3589 struct cli_state *targetcli;
3590 char *targetpath = NULL;
3592 DEBUG(3,("calling cli_list with mask: %s\n", mask));
3594 if ( !cli_resolve_path(talloc_tos(), "", cp_clistate->cli_share_src,
3595 mask, &targetcli, &targetpath ) ) {
3596 d_fprintf(stderr, "cli_resolve_path %s failed with error: %s\n",
3597 mask, cli_errstr(cp_clistate->cli_share_src));
3598 return False;
3601 if (cli_list(targetcli, targetpath, cp_clistate->attribute, copy_fn, cp_clistate) == -1) {
3602 d_fprintf(stderr, "listing %s failed with error: %s\n",
3603 mask, cli_errstr(targetcli));
3604 return False;
3607 return True;
3612 * Set the top level directory permissions before we do any further copies.
3613 * Should set up ACL inheritance.
3616 bool copy_top_level_perms(struct copy_clistate *cp_clistate,
3617 const char *sharename)
3619 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3621 switch (net_mode_share) {
3622 case NET_MODE_SHARE_MIGRATE:
3623 DEBUG(3,("calling net_copy_fileattr for '.' directory in share %s\n", sharename));
3624 nt_status = net_copy_fileattr(cp_clistate->mem_ctx,
3625 cp_clistate->cli_share_src,
3626 cp_clistate->cli_share_dst,
3627 "\\", "\\",
3628 opt_acls? True : False,
3629 opt_attrs? True : False,
3630 opt_timestamps? True: False,
3631 False);
3632 break;
3633 default:
3634 d_fprintf(stderr, "Unsupported mode %d\n", net_mode_share);
3635 break;
3638 if (!NT_STATUS_IS_OK(nt_status)) {
3639 printf("Could handle directory attributes for top level directory of share %s. Error %s\n",
3640 sharename, nt_errstr(nt_status));
3641 return False;
3644 return True;
3647 /**
3648 * Sync all files inside a remote share to another share (over smb).
3650 * All parameters are provided by the run_rpc_command function, except for
3651 * argc, argv which are passed through.
3653 * @param domain_sid The domain sid acquired from the remote server.
3654 * @param cli A cli_state connected to the server.
3655 * @param mem_ctx Talloc context, destroyed on completion of the function.
3656 * @param argc Standard main() style argc.
3657 * @param argv Standard main() style argv. Initial components are already
3658 * stripped.
3660 * @return Normal NTSTATUS return.
3663 static NTSTATUS rpc_share_migrate_files_internals(const DOM_SID *domain_sid,
3664 const char *domain_name,
3665 struct cli_state *cli,
3666 struct rpc_pipe_client *pipe_hnd,
3667 TALLOC_CTX *mem_ctx,
3668 int argc,
3669 const char **argv)
3671 WERROR result;
3672 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3673 struct srvsvc_NetShareInfoCtr ctr_src;
3674 uint32 i;
3675 uint32 level = 502;
3676 struct copy_clistate cp_clistate;
3677 bool got_src_share = False;
3678 bool got_dst_share = False;
3679 const char *mask = "\\*";
3680 char *dst = NULL;
3682 dst = SMB_STRDUP(opt_destination?opt_destination:"127.0.0.1");
3683 if (dst == NULL) {
3684 nt_status = NT_STATUS_NO_MEMORY;
3685 goto done;
3688 result = get_share_info(pipe_hnd, mem_ctx, level, argc, argv, &ctr_src);
3690 if (!W_ERROR_IS_OK(result))
3691 goto done;
3693 for (i = 0; i < ctr_src.ctr.ctr502->count; i++) {
3695 struct srvsvc_NetShareInfo502 info502 =
3696 ctr_src.ctr.ctr502->array[i];
3698 if (!check_share_sanity(cli, info502.name, info502.type))
3699 continue;
3701 /* one might not want to mirror whole discs :) */
3702 if (strequal(info502.name, "print$") || info502.name[1] == '$') {
3703 d_printf("skipping [%s]: builtin/hidden share\n", info502.name);
3704 continue;
3707 switch (net_mode_share)
3709 case NET_MODE_SHARE_MIGRATE:
3710 printf("syncing");
3711 break;
3712 default:
3713 d_fprintf(stderr, "Unsupported mode %d\n", net_mode_share);
3714 break;
3716 printf(" [%s] files and directories %s ACLs, %s DOS Attributes %s\n",
3717 info502.name,
3718 opt_acls ? "including" : "without",
3719 opt_attrs ? "including" : "without",
3720 opt_timestamps ? "(preserving timestamps)" : "");
3722 cp_clistate.mem_ctx = mem_ctx;
3723 cp_clistate.cli_share_src = NULL;
3724 cp_clistate.cli_share_dst = NULL;
3725 cp_clistate.cwd = NULL;
3726 cp_clistate.attribute = aSYSTEM | aHIDDEN | aDIR;
3728 /* open share source */
3729 nt_status = connect_to_service(&cp_clistate.cli_share_src,
3730 &cli->dest_ss, cli->desthost,
3731 info502.name, "A:");
3732 if (!NT_STATUS_IS_OK(nt_status))
3733 goto done;
3735 got_src_share = True;
3737 if (net_mode_share == NET_MODE_SHARE_MIGRATE) {
3738 /* open share destination */
3739 nt_status = connect_to_service(&cp_clistate.cli_share_dst,
3740 NULL, dst, info502.name, "A:");
3741 if (!NT_STATUS_IS_OK(nt_status))
3742 goto done;
3744 got_dst_share = True;
3747 if (!copy_top_level_perms(&cp_clistate, info502.name)) {
3748 d_fprintf(stderr, "Could not handle the top level directory permissions for the share: %s\n", info502.name);
3749 nt_status = NT_STATUS_UNSUCCESSFUL;
3750 goto done;
3753 if (!sync_files(&cp_clistate, mask)) {
3754 d_fprintf(stderr, "could not handle files for share: %s\n", info502.name);
3755 nt_status = NT_STATUS_UNSUCCESSFUL;
3756 goto done;
3760 nt_status = NT_STATUS_OK;
3762 done:
3764 if (got_src_share)
3765 cli_shutdown(cp_clistate.cli_share_src);
3767 if (got_dst_share)
3768 cli_shutdown(cp_clistate.cli_share_dst);
3770 SAFE_FREE(dst);
3771 return nt_status;
3775 static int rpc_share_migrate_files(int argc, const char **argv)
3778 if (!opt_host) {
3779 printf("no server to migrate\n");
3780 return -1;
3783 return run_rpc_command(NULL, PI_SRVSVC, 0,
3784 rpc_share_migrate_files_internals,
3785 argc, argv);
3788 /**
3789 * Migrate share-ACLs from a remote RPC server to the local RPC server.
3791 * All parameters are provided by the run_rpc_command function, except for
3792 * argc, argv which are passed through.
3794 * @param domain_sid The domain sid acquired from the remote server.
3795 * @param cli A cli_state connected to the server.
3796 * @param mem_ctx Talloc context, destroyed on completion of the function.
3797 * @param argc Standard main() style argc.
3798 * @param argv Standard main() style argv. Initial components are already
3799 * stripped.
3801 * @return Normal NTSTATUS return.
3804 static NTSTATUS rpc_share_migrate_security_internals(const DOM_SID *domain_sid,
3805 const char *domain_name,
3806 struct cli_state *cli,
3807 struct rpc_pipe_client *pipe_hnd,
3808 TALLOC_CTX *mem_ctx,
3809 int argc,
3810 const char **argv)
3812 WERROR result;
3813 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3814 struct srvsvc_NetShareInfoCtr ctr_src;
3815 union srvsvc_NetShareInfo info;
3816 uint32 i;
3817 struct rpc_pipe_client *srvsvc_pipe = NULL;
3818 struct cli_state *cli_dst = NULL;
3819 uint32 level = 502; /* includes secdesc */
3820 uint32_t parm_error = 0;
3822 result = get_share_info(pipe_hnd, mem_ctx, level, argc, argv, &ctr_src);
3824 if (!W_ERROR_IS_OK(result))
3825 goto done;
3827 /* connect destination PI_SRVSVC */
3828 nt_status = connect_dst_pipe(&cli_dst, &srvsvc_pipe, PI_SRVSVC);
3829 if (!NT_STATUS_IS_OK(nt_status))
3830 return nt_status;
3833 for (i = 0; i < ctr_src.ctr.ctr502->count; i++) {
3835 struct srvsvc_NetShareInfo502 info502 =
3836 ctr_src.ctr.ctr502->array[i];
3838 /* reset error-code */
3839 nt_status = NT_STATUS_UNSUCCESSFUL;
3841 if (!check_share_sanity(cli, info502.name, info502.type))
3842 continue;
3844 printf("migrating: [%s], path: %s, comment: %s, including share-ACLs\n",
3845 info502.name, info502.path, info502.comment);
3847 if (opt_verbose)
3848 display_sec_desc(info502.sd_buf.sd);
3850 /* FIXME: shouldn't we be able to just set the security descriptor ? */
3851 info.info502 = &info502;
3853 /* finally modify the share on the dst server */
3854 nt_status = rpccli_srvsvc_NetShareSetInfo(srvsvc_pipe, mem_ctx,
3855 srvsvc_pipe->cli->desthost,
3856 info502.name,
3857 level,
3858 &info,
3859 &parm_error,
3860 &result);
3861 if (!NT_STATUS_IS_OK(nt_status) || !W_ERROR_IS_OK(result)) {
3862 printf("cannot set share-acl: %s\n", dos_errstr(result));
3863 goto done;
3868 nt_status = NT_STATUS_OK;
3870 done:
3871 if (cli_dst) {
3872 cli_shutdown(cli_dst);
3875 return nt_status;
3879 /**
3880 * Migrate share-acls from a rpc-server to another.
3882 * @param argc Standard main() style argc.
3883 * @param argv Standard main() style argv. Initial components are already
3884 * stripped.
3886 * @return A shell status integer (0 for success)
3888 static int rpc_share_migrate_security(int argc, const char **argv)
3891 if (!opt_host) {
3892 printf("no server to migrate\n");
3893 return -1;
3896 return run_rpc_command(NULL, PI_SRVSVC, 0,
3897 rpc_share_migrate_security_internals,
3898 argc, argv);
3901 /**
3902 * Migrate shares (including share-definitions, share-acls and files with acls/attrs)
3903 * from one server to another
3905 * @param argc Standard main() style argc.
3906 * @param argv Standard main() style argv. Initial components are already
3907 * stripped.
3909 * @return A shell status integer (0 for success)
3912 static int rpc_share_migrate_all(int argc, const char **argv)
3914 int ret;
3916 if (!opt_host) {
3917 printf("no server to migrate\n");
3918 return -1;
3921 /* order is important. we don't want to be locked out by the share-acl
3922 * before copying files - gd */
3924 ret = run_rpc_command(NULL, PI_SRVSVC, 0, rpc_share_migrate_shares_internals, argc, argv);
3925 if (ret)
3926 return ret;
3928 ret = run_rpc_command(NULL, PI_SRVSVC, 0, rpc_share_migrate_files_internals, argc, argv);
3929 if (ret)
3930 return ret;
3932 return run_rpc_command(NULL, PI_SRVSVC, 0, rpc_share_migrate_security_internals, argc, argv);
3936 /**
3937 * 'net rpc share migrate' entrypoint.
3938 * @param argc Standard main() style argc.
3939 * @param argv Standard main() style argv. Initial components are already
3940 * stripped.
3942 static int rpc_share_migrate(int argc, const char **argv)
3945 struct functable func[] = {
3946 {"all", rpc_share_migrate_all},
3947 {"files", rpc_share_migrate_files},
3948 {"help", rpc_share_usage},
3949 {"security", rpc_share_migrate_security},
3950 {"shares", rpc_share_migrate_shares},
3951 {NULL, NULL}
3954 net_mode_share = NET_MODE_SHARE_MIGRATE;
3956 return net_run_function(argc, argv, func, rpc_share_usage);
3959 struct full_alias {
3960 DOM_SID sid;
3961 uint32 num_members;
3962 DOM_SID *members;
3965 static int num_server_aliases;
3966 static struct full_alias *server_aliases;
3969 * Add an alias to the static list.
3971 static void push_alias(TALLOC_CTX *mem_ctx, struct full_alias *alias)
3973 if (server_aliases == NULL)
3974 server_aliases = SMB_MALLOC_ARRAY(struct full_alias, 100);
3976 server_aliases[num_server_aliases] = *alias;
3977 num_server_aliases += 1;
3981 * For a specific domain on the server, fetch all the aliases
3982 * and their members. Add all of them to the server_aliases.
3985 static NTSTATUS rpc_fetch_domain_aliases(struct rpc_pipe_client *pipe_hnd,
3986 TALLOC_CTX *mem_ctx,
3987 POLICY_HND *connect_pol,
3988 const DOM_SID *domain_sid)
3990 uint32 start_idx, max_entries, num_entries, i;
3991 struct samr_SamArray *groups = NULL;
3992 NTSTATUS result;
3993 POLICY_HND domain_pol;
3995 /* Get domain policy handle */
3997 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
3998 connect_pol,
3999 MAXIMUM_ALLOWED_ACCESS,
4000 CONST_DISCARD(struct dom_sid2 *, domain_sid),
4001 &domain_pol);
4002 if (!NT_STATUS_IS_OK(result))
4003 return result;
4005 start_idx = 0;
4006 max_entries = 250;
4008 do {
4009 result = rpccli_samr_EnumDomainAliases(pipe_hnd, mem_ctx,
4010 &domain_pol,
4011 &start_idx,
4012 &groups,
4013 max_entries,
4014 &num_entries);
4015 for (i = 0; i < num_entries; i++) {
4017 POLICY_HND alias_pol;
4018 struct full_alias alias;
4019 struct lsa_SidArray sid_array;
4020 int j;
4022 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
4023 &domain_pol,
4024 MAXIMUM_ALLOWED_ACCESS,
4025 groups->entries[i].idx,
4026 &alias_pol);
4027 if (!NT_STATUS_IS_OK(result))
4028 goto done;
4030 result = rpccli_samr_GetMembersInAlias(pipe_hnd, mem_ctx,
4031 &alias_pol,
4032 &sid_array);
4033 if (!NT_STATUS_IS_OK(result))
4034 goto done;
4036 alias.num_members = sid_array.num_sids;
4038 result = rpccli_samr_Close(pipe_hnd, mem_ctx, &alias_pol);
4039 if (!NT_STATUS_IS_OK(result))
4040 goto done;
4042 alias.members = NULL;
4044 if (alias.num_members > 0) {
4045 alias.members = SMB_MALLOC_ARRAY(DOM_SID, alias.num_members);
4047 for (j = 0; j < alias.num_members; j++)
4048 sid_copy(&alias.members[j],
4049 sid_array.sids[j].sid);
4052 sid_copy(&alias.sid, domain_sid);
4053 sid_append_rid(&alias.sid, groups->entries[i].idx);
4055 push_alias(mem_ctx, &alias);
4057 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
4059 result = NT_STATUS_OK;
4061 done:
4062 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
4064 return result;
4068 * Dump server_aliases as names for debugging purposes.
4071 static NTSTATUS rpc_aliaslist_dump(const DOM_SID *domain_sid,
4072 const char *domain_name,
4073 struct cli_state *cli,
4074 struct rpc_pipe_client *pipe_hnd,
4075 TALLOC_CTX *mem_ctx,
4076 int argc,
4077 const char **argv)
4079 int i;
4080 NTSTATUS result;
4081 POLICY_HND lsa_pol;
4083 result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, True,
4084 SEC_RIGHTS_MAXIMUM_ALLOWED,
4085 &lsa_pol);
4086 if (!NT_STATUS_IS_OK(result))
4087 return result;
4089 for (i=0; i<num_server_aliases; i++) {
4090 char **names;
4091 char **domains;
4092 enum lsa_SidType *types;
4093 int j;
4095 struct full_alias *alias = &server_aliases[i];
4097 result = rpccli_lsa_lookup_sids(pipe_hnd, mem_ctx, &lsa_pol, 1,
4098 &alias->sid,
4099 &domains, &names, &types);
4100 if (!NT_STATUS_IS_OK(result))
4101 continue;
4103 DEBUG(1, ("%s\\%s %d: ", domains[0], names[0], types[0]));
4105 if (alias->num_members == 0) {
4106 DEBUG(1, ("\n"));
4107 continue;
4110 result = rpccli_lsa_lookup_sids(pipe_hnd, mem_ctx, &lsa_pol,
4111 alias->num_members,
4112 alias->members,
4113 &domains, &names, &types);
4115 if (!NT_STATUS_IS_OK(result) &&
4116 !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED))
4117 continue;
4119 for (j=0; j<alias->num_members; j++)
4120 DEBUG(1, ("%s\\%s (%d); ",
4121 domains[j] ? domains[j] : "*unknown*",
4122 names[j] ? names[j] : "*unknown*",types[j]));
4123 DEBUG(1, ("\n"));
4126 rpccli_lsa_Close(pipe_hnd, mem_ctx, &lsa_pol);
4128 return NT_STATUS_OK;
4132 * Fetch a list of all server aliases and their members into
4133 * server_aliases.
4136 static NTSTATUS rpc_aliaslist_internals(const DOM_SID *domain_sid,
4137 const char *domain_name,
4138 struct cli_state *cli,
4139 struct rpc_pipe_client *pipe_hnd,
4140 TALLOC_CTX *mem_ctx,
4141 int argc,
4142 const char **argv)
4144 NTSTATUS result;
4145 POLICY_HND connect_pol;
4147 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
4148 pipe_hnd->cli->desthost,
4149 MAXIMUM_ALLOWED_ACCESS,
4150 &connect_pol);
4152 if (!NT_STATUS_IS_OK(result))
4153 goto done;
4155 result = rpc_fetch_domain_aliases(pipe_hnd, mem_ctx, &connect_pol,
4156 &global_sid_Builtin);
4158 if (!NT_STATUS_IS_OK(result))
4159 goto done;
4161 result = rpc_fetch_domain_aliases(pipe_hnd, mem_ctx, &connect_pol,
4162 domain_sid);
4164 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
4165 done:
4166 return result;
4169 static void init_user_token(NT_USER_TOKEN *token, DOM_SID *user_sid)
4171 token->num_sids = 4;
4173 if (!(token->user_sids = SMB_MALLOC_ARRAY(DOM_SID, 4))) {
4174 d_fprintf(stderr, "malloc failed\n");
4175 token->num_sids = 0;
4176 return;
4179 token->user_sids[0] = *user_sid;
4180 sid_copy(&token->user_sids[1], &global_sid_World);
4181 sid_copy(&token->user_sids[2], &global_sid_Network);
4182 sid_copy(&token->user_sids[3], &global_sid_Authenticated_Users);
4185 static void free_user_token(NT_USER_TOKEN *token)
4187 SAFE_FREE(token->user_sids);
4190 static bool is_sid_in_token(NT_USER_TOKEN *token, DOM_SID *sid)
4192 int i;
4194 for (i=0; i<token->num_sids; i++) {
4195 if (sid_compare(sid, &token->user_sids[i]) == 0)
4196 return True;
4198 return False;
4201 static void add_sid_to_token(NT_USER_TOKEN *token, DOM_SID *sid)
4203 if (is_sid_in_token(token, sid))
4204 return;
4206 token->user_sids = SMB_REALLOC_ARRAY(token->user_sids, DOM_SID, token->num_sids+1);
4207 if (!token->user_sids) {
4208 return;
4211 sid_copy(&token->user_sids[token->num_sids], sid);
4213 token->num_sids += 1;
4216 struct user_token {
4217 fstring name;
4218 NT_USER_TOKEN token;
4221 static void dump_user_token(struct user_token *token)
4223 int i;
4225 d_printf("%s\n", token->name);
4227 for (i=0; i<token->token.num_sids; i++) {
4228 d_printf(" %s\n", sid_string_tos(&token->token.user_sids[i]));
4232 static bool is_alias_member(DOM_SID *sid, struct full_alias *alias)
4234 int i;
4236 for (i=0; i<alias->num_members; i++) {
4237 if (sid_compare(sid, &alias->members[i]) == 0)
4238 return True;
4241 return False;
4244 static void collect_sid_memberships(NT_USER_TOKEN *token, DOM_SID sid)
4246 int i;
4248 for (i=0; i<num_server_aliases; i++) {
4249 if (is_alias_member(&sid, &server_aliases[i]))
4250 add_sid_to_token(token, &server_aliases[i].sid);
4255 * We got a user token with all the SIDs we can know about without asking the
4256 * server directly. These are the user and domain group sids. All of these can
4257 * be members of aliases. So scan the list of aliases for each of the SIDs and
4258 * add them to the token.
4261 static void collect_alias_memberships(NT_USER_TOKEN *token)
4263 int num_global_sids = token->num_sids;
4264 int i;
4266 for (i=0; i<num_global_sids; i++) {
4267 collect_sid_memberships(token, token->user_sids[i]);
4271 static bool get_user_sids(const char *domain, const char *user, NT_USER_TOKEN *token)
4273 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
4274 enum wbcSidType type;
4275 fstring full_name;
4276 struct wbcDomainSid wsid;
4277 char *sid_str = NULL;
4278 DOM_SID user_sid;
4279 uint32_t num_groups;
4280 gid_t *groups = NULL;
4281 uint32_t i;
4283 fstr_sprintf(full_name, "%s%c%s",
4284 domain, *lp_winbind_separator(), user);
4286 /* First let's find out the user sid */
4288 wbc_status = wbcLookupName(domain, user, &wsid, &type);
4290 if (!WBC_ERROR_IS_OK(wbc_status)) {
4291 DEBUG(1, ("winbind could not find %s: %s\n",
4292 full_name, wbcErrorString(wbc_status)));
4293 return false;
4296 wbc_status = wbcSidToString(&wsid, &sid_str);
4297 if (!WBC_ERROR_IS_OK(wbc_status)) {
4298 return false;
4301 if (type != SID_NAME_USER) {
4302 wbcFreeMemory(sid_str);
4303 DEBUG(1, ("%s is not a user\n", full_name));
4304 return false;
4307 string_to_sid(&user_sid, sid_str);
4308 wbcFreeMemory(sid_str);
4309 sid_str = NULL;
4311 init_user_token(token, &user_sid);
4313 /* And now the groups winbind knows about */
4315 wbc_status = wbcGetGroups(full_name, &num_groups, &groups);
4316 if (!WBC_ERROR_IS_OK(wbc_status)) {
4317 DEBUG(1, ("winbind could not get groups of %s: %s\n",
4318 full_name, wbcErrorString(wbc_status)));
4319 return false;
4322 for (i = 0; i < num_groups; i++) {
4323 gid_t gid = groups[i];
4324 DOM_SID sid;
4326 wbc_status = wbcGidToSid(gid, &wsid);
4327 if (!WBC_ERROR_IS_OK(wbc_status)) {
4328 DEBUG(1, ("winbind could not find SID of gid %d: %s\n",
4329 gid, wbcErrorString(wbc_status)));
4330 wbcFreeMemory(groups);
4331 return false;
4334 wbc_status = wbcSidToString(&wsid, &sid_str);
4335 if (!WBC_ERROR_IS_OK(wbc_status)) {
4336 wbcFreeMemory(groups);
4337 return false;
4340 DEBUG(3, (" %s\n", sid_str));
4342 string_to_sid(&sid, sid_str);
4343 wbcFreeMemory(sid_str);
4344 sid_str = NULL;
4346 add_sid_to_token(token, &sid);
4348 wbcFreeMemory(groups);
4350 return true;
4354 * Get a list of all user tokens we want to look at
4357 static bool get_user_tokens(int *num_tokens, struct user_token **user_tokens)
4359 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
4360 uint32_t i, num_users;
4361 const char **users;
4362 struct user_token *result;
4363 TALLOC_CTX *frame = NULL;
4365 if (lp_winbind_use_default_domain() &&
4366 (opt_target_workgroup == NULL)) {
4367 d_fprintf(stderr, "winbind use default domain = yes set, "
4368 "please specify a workgroup\n");
4369 return false;
4372 /* Send request to winbind daemon */
4374 wbc_status = wbcListUsers(NULL, &num_users, &users);
4375 if (!WBC_ERROR_IS_OK(wbc_status)) {
4376 DEBUG(1, ("winbind could not list users: %s\n",
4377 wbcErrorString(wbc_status)));
4378 return false;
4381 result = SMB_MALLOC_ARRAY(struct user_token, num_users);
4383 if (result == NULL) {
4384 DEBUG(1, ("Could not malloc sid array\n"));
4385 wbcFreeMemory(users);
4386 return false;
4389 frame = talloc_stackframe();
4390 for (i=0; i < num_users; i++) {
4391 fstring domain, user;
4392 char *p;
4394 fstrcpy(result[i].name, users[i]);
4396 p = strchr(users[i], *lp_winbind_separator());
4398 DEBUG(3, ("%s\n", users[i]));
4400 if (p == NULL) {
4401 fstrcpy(domain, opt_target_workgroup);
4402 fstrcpy(user, users[i]);
4403 } else {
4404 *p++ = '\0';
4405 fstrcpy(domain, users[i]);
4406 strupper_m(domain);
4407 fstrcpy(user, p);
4410 get_user_sids(domain, user, &(result[i].token));
4411 i+=1;
4413 TALLOC_FREE(frame);
4414 wbcFreeMemory(users);
4416 *num_tokens = num_users;
4417 *user_tokens = result;
4419 return true;
4422 static bool get_user_tokens_from_file(FILE *f,
4423 int *num_tokens,
4424 struct user_token **tokens)
4426 struct user_token *token = NULL;
4428 while (!feof(f)) {
4429 fstring line;
4431 if (fgets(line, sizeof(line)-1, f) == NULL) {
4432 return True;
4435 if (line[strlen(line)-1] == '\n')
4436 line[strlen(line)-1] = '\0';
4438 if (line[0] == ' ') {
4439 /* We have a SID */
4441 DOM_SID sid;
4442 string_to_sid(&sid, &line[1]);
4444 if (token == NULL) {
4445 DEBUG(0, ("File does not begin with username"));
4446 return False;
4449 add_sid_to_token(&token->token, &sid);
4450 continue;
4453 /* And a new user... */
4455 *num_tokens += 1;
4456 *tokens = SMB_REALLOC_ARRAY(*tokens, struct user_token, *num_tokens);
4457 if (*tokens == NULL) {
4458 DEBUG(0, ("Could not realloc tokens\n"));
4459 return False;
4462 token = &((*tokens)[*num_tokens-1]);
4464 fstrcpy(token->name, line);
4465 token->token.num_sids = 0;
4466 token->token.user_sids = NULL;
4467 continue;
4470 return False;
4475 * Show the list of all users that have access to a share
4478 static void show_userlist(struct rpc_pipe_client *pipe_hnd,
4479 TALLOC_CTX *mem_ctx,
4480 const char *netname,
4481 int num_tokens,
4482 struct user_token *tokens)
4484 int fnum;
4485 SEC_DESC *share_sd = NULL;
4486 SEC_DESC *root_sd = NULL;
4487 struct cli_state *cli = pipe_hnd->cli;
4488 int i;
4489 union srvsvc_NetShareInfo info;
4490 WERROR result;
4491 NTSTATUS status;
4492 uint16 cnum;
4494 status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
4495 pipe_hnd->cli->desthost,
4496 netname,
4497 502,
4498 &info,
4499 &result);
4501 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
4502 DEBUG(1, ("Coult not query secdesc for share %s\n",
4503 netname));
4504 return;
4507 share_sd = info.info502->sd_buf.sd;
4508 if (share_sd == NULL) {
4509 DEBUG(1, ("Got no secdesc for share %s\n",
4510 netname));
4513 cnum = cli->cnum;
4515 if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
4516 return;
4519 fnum = cli_nt_create(cli, "\\", READ_CONTROL_ACCESS);
4521 if (fnum != -1) {
4522 root_sd = cli_query_secdesc(cli, fnum, mem_ctx);
4525 for (i=0; i<num_tokens; i++) {
4526 uint32 acc_granted;
4528 if (share_sd != NULL) {
4529 if (!se_access_check(share_sd, &tokens[i].token,
4530 1, &acc_granted, &status)) {
4531 DEBUG(1, ("Could not check share_sd for "
4532 "user %s\n",
4533 tokens[i].name));
4534 continue;
4537 if (!NT_STATUS_IS_OK(status))
4538 continue;
4541 if (root_sd == NULL) {
4542 d_printf(" %s\n", tokens[i].name);
4543 continue;
4546 if (!se_access_check(root_sd, &tokens[i].token,
4547 1, &acc_granted, &status)) {
4548 DEBUG(1, ("Could not check root_sd for user %s\n",
4549 tokens[i].name));
4550 continue;
4553 if (!NT_STATUS_IS_OK(status))
4554 continue;
4556 d_printf(" %s\n", tokens[i].name);
4559 if (fnum != -1)
4560 cli_close(cli, fnum);
4561 cli_tdis(cli);
4562 cli->cnum = cnum;
4564 return;
4567 struct share_list {
4568 int num_shares;
4569 char **shares;
4572 static void collect_share(const char *name, uint32 m,
4573 const char *comment, void *state)
4575 struct share_list *share_list = (struct share_list *)state;
4577 if (m != STYPE_DISKTREE)
4578 return;
4580 share_list->num_shares += 1;
4581 share_list->shares = SMB_REALLOC_ARRAY(share_list->shares, char *, share_list->num_shares);
4582 if (!share_list->shares) {
4583 share_list->num_shares = 0;
4584 return;
4586 share_list->shares[share_list->num_shares-1] = SMB_STRDUP(name);
4589 static void rpc_share_userlist_usage(void)
4591 return;
4594 /**
4595 * List shares on a remote RPC server, including the security descriptors.
4597 * All parameters are provided by the run_rpc_command function, except for
4598 * argc, argv which are passed through.
4600 * @param domain_sid The domain sid acquired from the remote server.
4601 * @param cli A cli_state connected to the server.
4602 * @param mem_ctx Talloc context, destroyed on completion of the function.
4603 * @param argc Standard main() style argc.
4604 * @param argv Standard main() style argv. Initial components are already
4605 * stripped.
4607 * @return Normal NTSTATUS return.
4610 static NTSTATUS rpc_share_allowedusers_internals(const DOM_SID *domain_sid,
4611 const char *domain_name,
4612 struct cli_state *cli,
4613 struct rpc_pipe_client *pipe_hnd,
4614 TALLOC_CTX *mem_ctx,
4615 int argc,
4616 const char **argv)
4618 int ret;
4619 bool r;
4620 ENUM_HND hnd;
4621 uint32 i;
4622 FILE *f;
4624 struct user_token *tokens = NULL;
4625 int num_tokens = 0;
4627 struct share_list share_list;
4629 if (argc > 1) {
4630 rpc_share_userlist_usage();
4631 return NT_STATUS_UNSUCCESSFUL;
4634 if (argc == 0) {
4635 f = stdin;
4636 } else {
4637 f = fopen(argv[0], "r");
4640 if (f == NULL) {
4641 DEBUG(0, ("Could not open userlist: %s\n", strerror(errno)));
4642 return NT_STATUS_UNSUCCESSFUL;
4645 r = get_user_tokens_from_file(f, &num_tokens, &tokens);
4647 if (f != stdin)
4648 fclose(f);
4650 if (!r) {
4651 DEBUG(0, ("Could not read users from file\n"));
4652 return NT_STATUS_UNSUCCESSFUL;
4655 for (i=0; i<num_tokens; i++)
4656 collect_alias_memberships(&tokens[i].token);
4658 init_enum_hnd(&hnd, 0);
4660 share_list.num_shares = 0;
4661 share_list.shares = NULL;
4663 ret = cli_RNetShareEnum(cli, collect_share, &share_list);
4665 if (ret == -1) {
4666 DEBUG(0, ("Error returning browse list: %s\n",
4667 cli_errstr(cli)));
4668 goto done;
4671 for (i = 0; i < share_list.num_shares; i++) {
4672 char *netname = share_list.shares[i];
4674 if (netname[strlen(netname)-1] == '$')
4675 continue;
4677 d_printf("%s\n", netname);
4679 show_userlist(pipe_hnd, mem_ctx, netname,
4680 num_tokens, tokens);
4682 done:
4683 for (i=0; i<num_tokens; i++) {
4684 free_user_token(&tokens[i].token);
4686 SAFE_FREE(tokens);
4687 SAFE_FREE(share_list.shares);
4689 return NT_STATUS_OK;
4692 static int rpc_share_allowedusers(int argc, const char **argv)
4694 int result;
4696 result = run_rpc_command(NULL, PI_SAMR, 0,
4697 rpc_aliaslist_internals,
4698 argc, argv);
4699 if (result != 0)
4700 return result;
4702 result = run_rpc_command(NULL, PI_LSARPC, 0,
4703 rpc_aliaslist_dump,
4704 argc, argv);
4705 if (result != 0)
4706 return result;
4708 return run_rpc_command(NULL, PI_SRVSVC, 0,
4709 rpc_share_allowedusers_internals,
4710 argc, argv);
4713 int net_usersidlist(int argc, const char **argv)
4715 int num_tokens = 0;
4716 struct user_token *tokens = NULL;
4717 int i;
4719 if (argc != 0) {
4720 net_usersidlist_usage(argc, argv);
4721 return 0;
4724 if (!get_user_tokens(&num_tokens, &tokens)) {
4725 DEBUG(0, ("Could not get the user/sid list\n"));
4726 return 0;
4729 for (i=0; i<num_tokens; i++) {
4730 dump_user_token(&tokens[i]);
4731 free_user_token(&tokens[i].token);
4734 SAFE_FREE(tokens);
4735 return 1;
4738 int net_usersidlist_usage(int argc, const char **argv)
4740 d_printf("net usersidlist\n"
4741 "\tprints out a list of all users the running winbind knows\n"
4742 "\tabout, together with all their SIDs. This is used as\n"
4743 "\tinput to the 'net rpc share allowedusers' command.\n\n");
4745 net_common_flags_usage(argc, argv);
4746 return -1;
4749 /**
4750 * 'net rpc share' entrypoint.
4751 * @param argc Standard main() style argc.
4752 * @param argv Standard main() style argv. Initial components are already
4753 * stripped.
4756 int net_rpc_share(int argc, const char **argv)
4758 struct functable func[] = {
4759 {"add", rpc_share_add},
4760 {"delete", rpc_share_delete},
4761 {"allowedusers", rpc_share_allowedusers},
4762 {"migrate", rpc_share_migrate},
4763 {"list", rpc_share_list},
4764 {NULL, NULL}
4767 if (argc == 0)
4768 return run_rpc_command(NULL, PI_SRVSVC, 0,
4769 rpc_share_list_internals,
4770 argc, argv);
4772 return net_run_function(argc, argv, func, rpc_share_usage);
4775 static NTSTATUS rpc_sh_share_list(TALLOC_CTX *mem_ctx,
4776 struct rpc_sh_ctx *ctx,
4777 struct rpc_pipe_client *pipe_hnd,
4778 int argc, const char **argv)
4780 return rpc_share_list_internals(ctx->domain_sid, ctx->domain_name,
4781 ctx->cli, pipe_hnd, mem_ctx,
4782 argc, argv);
4785 static NTSTATUS rpc_sh_share_add(TALLOC_CTX *mem_ctx,
4786 struct rpc_sh_ctx *ctx,
4787 struct rpc_pipe_client *pipe_hnd,
4788 int argc, const char **argv)
4790 WERROR result;
4791 NTSTATUS status;
4792 uint32_t parm_err = 0;
4793 union srvsvc_NetShareInfo info;
4794 struct srvsvc_NetShareInfo2 info2;
4796 if ((argc < 2) || (argc > 3)) {
4797 d_fprintf(stderr, "usage: %s <share> <path> [comment]\n",
4798 ctx->whoami);
4799 return NT_STATUS_INVALID_PARAMETER;
4802 info2.name = argv[0];
4803 info2.type = STYPE_DISKTREE;
4804 info2.comment = (argc == 3) ? argv[2] : "";
4805 info2.permissions = 0;
4806 info2.max_users = 0;
4807 info2.current_users = 0;
4808 info2.path = argv[1];
4809 info2.password = NULL;
4811 info.info2 = &info2;
4813 status = rpccli_srvsvc_NetShareAdd(pipe_hnd, mem_ctx,
4814 pipe_hnd->cli->desthost,
4816 &info,
4817 &parm_err,
4818 &result);
4820 return status;
4823 static NTSTATUS rpc_sh_share_delete(TALLOC_CTX *mem_ctx,
4824 struct rpc_sh_ctx *ctx,
4825 struct rpc_pipe_client *pipe_hnd,
4826 int argc, const char **argv)
4828 WERROR result;
4829 NTSTATUS status;
4831 if (argc != 1) {
4832 d_fprintf(stderr, "usage: %s <share>\n", ctx->whoami);
4833 return NT_STATUS_INVALID_PARAMETER;
4836 status = rpccli_srvsvc_NetShareDel(pipe_hnd, mem_ctx,
4837 pipe_hnd->cli->desthost,
4838 argv[0],
4840 &result);
4842 return status;
4845 static NTSTATUS rpc_sh_share_info(TALLOC_CTX *mem_ctx,
4846 struct rpc_sh_ctx *ctx,
4847 struct rpc_pipe_client *pipe_hnd,
4848 int argc, const char **argv)
4850 union srvsvc_NetShareInfo info;
4851 WERROR result;
4852 NTSTATUS status;
4854 if (argc != 1) {
4855 d_fprintf(stderr, "usage: %s <share>\n", ctx->whoami);
4856 return NT_STATUS_INVALID_PARAMETER;
4859 status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
4860 pipe_hnd->cli->desthost,
4861 argv[0],
4863 &info,
4864 &result);
4865 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
4866 goto done;
4869 d_printf("Name: %s\n", info.info2->name);
4870 d_printf("Comment: %s\n", info.info2->comment);
4871 d_printf("Path: %s\n", info.info2->path);
4872 d_printf("Password: %s\n", info.info2->password);
4874 done:
4875 return werror_to_ntstatus(result);
4878 struct rpc_sh_cmd *net_rpc_share_cmds(TALLOC_CTX *mem_ctx,
4879 struct rpc_sh_ctx *ctx)
4881 static struct rpc_sh_cmd cmds[] = {
4883 { "list", NULL, PI_SRVSVC, rpc_sh_share_list,
4884 "List available shares" },
4886 { "add", NULL, PI_SRVSVC, rpc_sh_share_add,
4887 "Add a share" },
4889 { "delete", NULL, PI_SRVSVC, rpc_sh_share_delete,
4890 "Delete a share" },
4892 { "info", NULL, PI_SRVSVC, rpc_sh_share_info,
4893 "Get information about a share" },
4895 { NULL, NULL, 0, NULL, NULL }
4898 return cmds;
4901 /****************************************************************************/
4903 static int rpc_file_usage(int argc, const char **argv)
4905 return net_help_file(argc, argv);
4908 /**
4909 * Close a file on a remote RPC server.
4911 * All parameters are provided by the run_rpc_command function, except for
4912 * argc, argv which are passed through.
4914 * @param domain_sid The domain sid acquired from the remote server.
4915 * @param cli A cli_state connected to the server.
4916 * @param mem_ctx Talloc context, destroyed on completion of the function.
4917 * @param argc Standard main() style argc.
4918 * @param argv Standard main() style argv. Initial components are already
4919 * stripped.
4921 * @return Normal NTSTATUS return.
4923 static NTSTATUS rpc_file_close_internals(const DOM_SID *domain_sid,
4924 const char *domain_name,
4925 struct cli_state *cli,
4926 struct rpc_pipe_client *pipe_hnd,
4927 TALLOC_CTX *mem_ctx,
4928 int argc,
4929 const char **argv)
4931 return rpccli_srvsvc_NetFileClose(pipe_hnd, mem_ctx,
4932 pipe_hnd->cli->desthost,
4933 atoi(argv[0]), NULL);
4936 /**
4937 * Close a file on a remote RPC server.
4939 * @param argc Standard main() style argc.
4940 * @param argv Standard main() style argv. Initial components are already
4941 * stripped.
4943 * @return A shell status integer (0 for success).
4945 static int rpc_file_close(int argc, const char **argv)
4947 if (argc < 1) {
4948 DEBUG(1, ("No fileid given on close\n"));
4949 return(rpc_file_usage(argc, argv));
4952 return run_rpc_command(NULL, PI_SRVSVC, 0,
4953 rpc_file_close_internals,
4954 argc, argv);
4957 /**
4958 * Formatted print of open file info
4960 * @param r struct srvsvc_NetFileInfo3 contents
4963 static void display_file_info_3(struct srvsvc_NetFileInfo3 *r)
4965 d_printf("%-7.1d %-20.20s 0x%-4.2x %-6.1d %s\n",
4966 r->fid, r->user, r->permissions, r->num_locks, r->path);
4969 /**
4970 * List open files on a remote RPC server.
4972 * All parameters are provided by the run_rpc_command function, except for
4973 * argc, argv which are passed through.
4975 * @param domain_sid The domain sid acquired from the remote server.
4976 * @param cli A cli_state connected to the server.
4977 * @param mem_ctx Talloc context, destroyed on completion of the function.
4978 * @param argc Standard main() style argc.
4979 * @param argv Standard main() style argv. Initial components are already
4980 * stripped.
4982 * @return Normal NTSTATUS return.
4985 static NTSTATUS rpc_file_list_internals(const DOM_SID *domain_sid,
4986 const char *domain_name,
4987 struct cli_state *cli,
4988 struct rpc_pipe_client *pipe_hnd,
4989 TALLOC_CTX *mem_ctx,
4990 int argc,
4991 const char **argv)
4993 struct srvsvc_NetFileInfoCtr info_ctr;
4994 struct srvsvc_NetFileCtr3 ctr3;
4995 WERROR result;
4996 NTSTATUS status;
4997 uint32 preferred_len = 0xffffffff, i;
4998 const char *username=NULL;
4999 uint32_t total_entries = 0;
5000 uint32_t resume_handle = 0;
5002 /* if argc > 0, must be user command */
5003 if (argc > 0)
5004 username = smb_xstrdup(argv[0]);
5006 ZERO_STRUCT(info_ctr);
5007 ZERO_STRUCT(ctr3);
5009 info_ctr.level = 3;
5010 info_ctr.ctr.ctr3 = &ctr3;
5012 status = rpccli_srvsvc_NetFileEnum(pipe_hnd, mem_ctx,
5013 pipe_hnd->cli->desthost,
5014 NULL,
5015 username,
5016 &info_ctr,
5017 preferred_len,
5018 &total_entries,
5019 &resume_handle,
5020 &result);
5022 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result))
5023 goto done;
5025 /* Display results */
5027 d_printf(
5028 "\nEnumerating open files on remote server:\n\n"\
5029 "\nFileId Opened by Perms Locks Path"\
5030 "\n------ --------- ----- ----- ---- \n");
5031 for (i = 0; i < total_entries; i++)
5032 display_file_info_3(&info_ctr.ctr.ctr3->array[i]);
5033 done:
5034 return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
5037 /**
5038 * List files for a user on a remote RPC server.
5040 * @param argc Standard main() style argc.
5041 * @param argv Standard main() style argv. Initial components are already
5042 * stripped.
5044 * @return A shell status integer (0 for success).
5047 static int rpc_file_user(int argc, const char **argv)
5049 if (argc < 1) {
5050 DEBUG(1, ("No username given\n"));
5051 return(rpc_file_usage(argc, argv));
5054 return run_rpc_command(NULL, PI_SRVSVC, 0,
5055 rpc_file_list_internals,
5056 argc, argv);
5059 /**
5060 * 'net rpc file' entrypoint.
5061 * @param argc Standard main() style argc.
5062 * @param argv Standard main() style argv. Initial components are already
5063 * stripped.
5066 int net_rpc_file(int argc, const char **argv)
5068 struct functable func[] = {
5069 {"close", rpc_file_close},
5070 {"user", rpc_file_user},
5071 #if 0
5072 {"info", rpc_file_info},
5073 #endif
5074 {NULL, NULL}
5077 if (argc == 0)
5078 return run_rpc_command(NULL, PI_SRVSVC, 0,
5079 rpc_file_list_internals,
5080 argc, argv);
5082 return net_run_function(argc, argv, func, rpc_file_usage);
5085 /**
5086 * ABORT the shutdown of a remote RPC Server, over initshutdown pipe.
5088 * All parameters are provided by the run_rpc_command function, except for
5089 * argc, argv which are passed through.
5091 * @param domain_sid The domain sid acquired from the remote server.
5092 * @param cli A cli_state connected to the server.
5093 * @param mem_ctx Talloc context, destroyed on completion of the function.
5094 * @param argc Standard main() style argc.
5095 * @param argv Standard main() style argv. Initial components are already
5096 * stripped.
5098 * @return Normal NTSTATUS return.
5101 static NTSTATUS rpc_shutdown_abort_internals(const DOM_SID *domain_sid,
5102 const char *domain_name,
5103 struct cli_state *cli,
5104 struct rpc_pipe_client *pipe_hnd,
5105 TALLOC_CTX *mem_ctx,
5106 int argc,
5107 const char **argv)
5109 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5111 result = rpccli_initshutdown_Abort(pipe_hnd, mem_ctx, NULL, NULL);
5113 if (NT_STATUS_IS_OK(result)) {
5114 d_printf("\nShutdown successfully aborted\n");
5115 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
5116 } else
5117 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
5119 return result;
5122 /**
5123 * ABORT the shutdown of a remote RPC Server, over winreg pipe.
5125 * All parameters are provided by the run_rpc_command function, except for
5126 * argc, argv which are passed through.
5128 * @param domain_sid The domain sid acquired from the remote server.
5129 * @param cli A cli_state connected to the server.
5130 * @param mem_ctx Talloc context, destroyed on completion of the function.
5131 * @param argc Standard main() style argc.
5132 * @param argv Standard main() style argv. Initial components are already
5133 * stripped.
5135 * @return Normal NTSTATUS return.
5138 static NTSTATUS rpc_reg_shutdown_abort_internals(const DOM_SID *domain_sid,
5139 const char *domain_name,
5140 struct cli_state *cli,
5141 struct rpc_pipe_client *pipe_hnd,
5142 TALLOC_CTX *mem_ctx,
5143 int argc,
5144 const char **argv)
5146 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5148 result = rpccli_winreg_AbortSystemShutdown(pipe_hnd, mem_ctx, NULL, NULL);
5150 if (NT_STATUS_IS_OK(result)) {
5151 d_printf("\nShutdown successfully aborted\n");
5152 DEBUG(5,("cmd_reg_abort_shutdown: query succeeded\n"));
5153 } else
5154 DEBUG(5,("cmd_reg_abort_shutdown: query failed\n"));
5156 return result;
5159 /**
5160 * ABORT the Shut down of a remote RPC server.
5162 * @param argc Standard main() style argc.
5163 * @param argv Standard main() style argv. Initial components are already
5164 * stripped.
5166 * @return A shell status integer (0 for success).
5169 static int rpc_shutdown_abort(int argc, const char **argv)
5171 int rc = run_rpc_command(NULL, PI_INITSHUTDOWN, 0,
5172 rpc_shutdown_abort_internals,
5173 argc, argv);
5175 if (rc == 0)
5176 return rc;
5178 DEBUG(1, ("initshutdown pipe didn't work, trying winreg pipe\n"));
5180 return run_rpc_command(NULL, PI_WINREG, 0,
5181 rpc_reg_shutdown_abort_internals,
5182 argc, argv);
5185 /**
5186 * Shut down a remote RPC Server via initshutdown pipe.
5188 * All parameters are provided by the run_rpc_command function, except for
5189 * argc, argv which are passed through.
5191 * @param domain_sid The domain sid acquired from the remote server.
5192 * @param cli A cli_state connected to the server.
5193 * @param mem_ctx Talloc context, destroyed on completion of the function.
5194 * @param argc Standard main() style argc.
5195 * @param argv Standard main() style argv. Initial components are already
5196 * stripped.
5198 * @return Normal NTSTATUS return.
5201 NTSTATUS rpc_init_shutdown_internals(const DOM_SID *domain_sid,
5202 const char *domain_name,
5203 struct cli_state *cli,
5204 struct rpc_pipe_client *pipe_hnd,
5205 TALLOC_CTX *mem_ctx,
5206 int argc,
5207 const char **argv)
5209 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5210 const char *msg = "This machine will be shutdown shortly";
5211 uint32 timeout = 20;
5212 struct initshutdown_String msg_string;
5213 struct initshutdown_String_sub s;
5215 if (opt_comment) {
5216 msg = opt_comment;
5218 if (opt_timeout) {
5219 timeout = opt_timeout;
5222 s.name = msg;
5223 msg_string.name = &s;
5225 /* create an entry */
5226 result = rpccli_initshutdown_Init(pipe_hnd, mem_ctx, NULL,
5227 &msg_string, timeout, opt_force, opt_reboot, NULL);
5229 if (NT_STATUS_IS_OK(result)) {
5230 d_printf("\nShutdown of remote machine succeeded\n");
5231 DEBUG(5,("Shutdown of remote machine succeeded\n"));
5232 } else {
5233 DEBUG(1,("Shutdown of remote machine failed!\n"));
5235 return result;
5238 /**
5239 * Shut down a remote RPC Server via winreg pipe.
5241 * All parameters are provided by the run_rpc_command function, except for
5242 * argc, argv which are passed through.
5244 * @param domain_sid The domain sid acquired from the remote server.
5245 * @param cli A cli_state connected to the server.
5246 * @param mem_ctx Talloc context, destroyed on completion of the function.
5247 * @param argc Standard main() style argc.
5248 * @param argv Standard main() style argv. Initial components are already
5249 * stripped.
5251 * @return Normal NTSTATUS return.
5254 NTSTATUS rpc_reg_shutdown_internals(const DOM_SID *domain_sid,
5255 const char *domain_name,
5256 struct cli_state *cli,
5257 struct rpc_pipe_client *pipe_hnd,
5258 TALLOC_CTX *mem_ctx,
5259 int argc,
5260 const char **argv)
5262 const char *msg = "This machine will be shutdown shortly";
5263 uint32 timeout = 20;
5264 struct initshutdown_String msg_string;
5265 struct initshutdown_String_sub s;
5266 NTSTATUS result;
5267 WERROR werr;
5269 if (opt_comment) {
5270 msg = opt_comment;
5272 s.name = msg;
5273 msg_string.name = &s;
5275 if (opt_timeout) {
5276 timeout = opt_timeout;
5279 /* create an entry */
5280 result = rpccli_winreg_InitiateSystemShutdown(pipe_hnd, mem_ctx, NULL,
5281 &msg_string, timeout, opt_force, opt_reboot, &werr);
5283 if (NT_STATUS_IS_OK(result)) {
5284 d_printf("\nShutdown of remote machine succeeded\n");
5285 } else {
5286 d_fprintf(stderr, "\nShutdown of remote machine failed\n");
5287 if ( W_ERROR_EQUAL(werr, WERR_MACHINE_LOCKED) )
5288 d_fprintf(stderr, "\nMachine locked, use -f switch to force\n");
5289 else
5290 d_fprintf(stderr, "\nresult was: %s\n", dos_errstr(werr));
5293 return result;
5296 /**
5297 * Shut down a remote RPC server.
5299 * @param argc Standard main() style argc.
5300 * @param argv Standard main() style argv. Initial components are already
5301 * stripped.
5303 * @return A shell status integer (0 for success).
5306 static int rpc_shutdown(int argc, const char **argv)
5308 int rc = run_rpc_command(NULL, PI_INITSHUTDOWN, 0,
5309 rpc_init_shutdown_internals,
5310 argc, argv);
5312 if (rc) {
5313 DEBUG(1, ("initshutdown pipe failed, trying winreg pipe\n"));
5314 rc = run_rpc_command(NULL, PI_WINREG, 0,
5315 rpc_reg_shutdown_internals, argc, argv);
5318 return rc;
5321 /***************************************************************************
5322 NT Domain trusts code (i.e. 'net rpc trustdom' functionality)
5324 ***************************************************************************/
5327 * Add interdomain trust account to the RPC server.
5328 * All parameters (except for argc and argv) are passed by run_rpc_command
5329 * function.
5331 * @param domain_sid The domain sid acquired from the server.
5332 * @param cli A cli_state connected to the server.
5333 * @param mem_ctx Talloc context, destroyed on completion of the function.
5334 * @param argc Standard main() style argc.
5335 * @param argv Standard main() style argv. Initial components are already
5336 * stripped.
5338 * @return normal NTSTATUS return code.
5341 static NTSTATUS rpc_trustdom_add_internals(const DOM_SID *domain_sid,
5342 const char *domain_name,
5343 struct cli_state *cli,
5344 struct rpc_pipe_client *pipe_hnd,
5345 TALLOC_CTX *mem_ctx,
5346 int argc,
5347 const char **argv)
5349 POLICY_HND connect_pol, domain_pol, user_pol;
5350 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5351 char *acct_name;
5352 struct lsa_String lsa_acct_name;
5353 uint32 acb_info;
5354 uint32 acct_flags=0;
5355 uint32 user_rid;
5356 uint32_t access_granted = 0;
5357 union samr_UserInfo info;
5358 unsigned int orig_timeout;
5360 if (argc != 2) {
5361 d_printf("Usage: net rpc trustdom add <domain_name> <trust password>\n");
5362 return NT_STATUS_INVALID_PARAMETER;
5366 * Make valid trusting domain account (ie. uppercased and with '$' appended)
5369 if (asprintf(&acct_name, "%s$", argv[0]) < 0) {
5370 return NT_STATUS_NO_MEMORY;
5373 strupper_m(acct_name);
5375 init_lsa_String(&lsa_acct_name, acct_name);
5377 /* Get samr policy handle */
5378 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
5379 pipe_hnd->cli->desthost,
5380 MAXIMUM_ALLOWED_ACCESS,
5381 &connect_pol);
5382 if (!NT_STATUS_IS_OK(result)) {
5383 goto done;
5386 /* Get domain policy handle */
5387 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
5388 &connect_pol,
5389 MAXIMUM_ALLOWED_ACCESS,
5390 CONST_DISCARD(struct dom_sid2 *, domain_sid),
5391 &domain_pol);
5392 if (!NT_STATUS_IS_OK(result)) {
5393 goto done;
5396 /* This call can take a long time - allow the server to time out.
5397 * 35 seconds should do it. */
5399 orig_timeout = cli_set_timeout(pipe_hnd->cli, 35000);
5401 /* Create trusting domain's account */
5402 acb_info = ACB_NORMAL;
5403 acct_flags = SEC_GENERIC_READ | SEC_GENERIC_WRITE | SEC_GENERIC_EXECUTE |
5404 SEC_STD_WRITE_DAC | SEC_STD_DELETE |
5405 SAMR_USER_ACCESS_SET_PASSWORD |
5406 SAMR_USER_ACCESS_GET_ATTRIBUTES |
5407 SAMR_USER_ACCESS_SET_ATTRIBUTES;
5409 result = rpccli_samr_CreateUser2(pipe_hnd, mem_ctx,
5410 &domain_pol,
5411 &lsa_acct_name,
5412 acb_info,
5413 acct_flags,
5414 &user_pol,
5415 &access_granted,
5416 &user_rid);
5418 /* And restore our original timeout. */
5419 cli_set_timeout(pipe_hnd->cli, orig_timeout);
5421 if (!NT_STATUS_IS_OK(result)) {
5422 d_printf("net rpc trustdom add: create user %s failed %s\n",
5423 acct_name, nt_errstr(result));
5424 goto done;
5428 NTTIME notime;
5429 struct samr_LogonHours hours;
5430 struct lsa_BinaryString parameters;
5431 const int units_per_week = 168;
5432 uchar pwbuf[516];
5434 encode_pw_buffer(pwbuf, argv[1], STR_UNICODE);
5436 ZERO_STRUCT(notime);
5437 ZERO_STRUCT(hours);
5438 ZERO_STRUCT(parameters);
5440 hours.bits = talloc_array(mem_ctx, uint8_t, units_per_week);
5441 if (!hours.bits) {
5442 result = NT_STATUS_NO_MEMORY;
5443 goto done;
5445 hours.units_per_week = units_per_week;
5446 memset(hours.bits, 0xFF, units_per_week);
5448 init_samr_user_info23(&info.info23,
5449 notime, notime, notime,
5450 notime, notime, notime,
5451 NULL, NULL, NULL, NULL, NULL,
5452 NULL, NULL, NULL, NULL, &parameters,
5453 0, 0, ACB_DOMTRUST, SAMR_FIELD_ACCT_FLAGS,
5454 hours,
5455 0, 0, 0, 0, 0, 0, 0,
5456 pwbuf, 24);
5458 SamOEMhashBlob(info.info23.password.data, 516,
5459 &cli->user_session_key);
5461 result = rpccli_samr_SetUserInfo2(pipe_hnd, mem_ctx,
5462 &user_pol,
5464 &info);
5466 if (!NT_STATUS_IS_OK(result)) {
5467 DEBUG(0,("Could not set trust account password: %s\n",
5468 nt_errstr(result)));
5469 goto done;
5473 done:
5474 SAFE_FREE(acct_name);
5475 return result;
5479 * Create interdomain trust account for a remote domain.
5481 * @param argc Standard argc.
5482 * @param argv Standard argv without initial components.
5484 * @return Integer status (0 means success)
5487 static int rpc_trustdom_add(int argc, const char **argv)
5489 if (argc > 0) {
5490 return run_rpc_command(NULL, PI_SAMR, 0, rpc_trustdom_add_internals,
5491 argc, argv);
5492 } else {
5493 d_printf("Usage: net rpc trustdom add <domain_name> <trust password>\n");
5494 return -1;
5500 * Remove interdomain trust account from the RPC server.
5501 * All parameters (except for argc and argv) are passed by run_rpc_command
5502 * function.
5504 * @param domain_sid The domain sid acquired from the server.
5505 * @param cli A cli_state connected to the server.
5506 * @param mem_ctx Talloc context, destroyed on completion of the function.
5507 * @param argc Standard main() style argc.
5508 * @param argv Standard main() style argv. Initial components are already
5509 * stripped.
5511 * @return normal NTSTATUS return code.
5514 static NTSTATUS rpc_trustdom_del_internals(const DOM_SID *domain_sid,
5515 const char *domain_name,
5516 struct cli_state *cli,
5517 struct rpc_pipe_client *pipe_hnd,
5518 TALLOC_CTX *mem_ctx,
5519 int argc,
5520 const char **argv)
5522 POLICY_HND connect_pol, domain_pol, user_pol;
5523 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5524 char *acct_name;
5525 DOM_SID trust_acct_sid;
5526 struct samr_Ids user_rids, name_types;
5527 struct lsa_String lsa_acct_name;
5529 if (argc != 1) {
5530 d_printf("Usage: net rpc trustdom del <domain_name>\n");
5531 return NT_STATUS_INVALID_PARAMETER;
5535 * Make valid trusting domain account (ie. uppercased and with '$' appended)
5537 acct_name = talloc_asprintf(mem_ctx, "%s$", argv[0]);
5539 if (acct_name == NULL)
5540 return NT_STATUS_NO_MEMORY;
5542 strupper_m(acct_name);
5544 /* Get samr policy handle */
5545 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
5546 pipe_hnd->cli->desthost,
5547 MAXIMUM_ALLOWED_ACCESS,
5548 &connect_pol);
5549 if (!NT_STATUS_IS_OK(result)) {
5550 goto done;
5553 /* Get domain policy handle */
5554 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
5555 &connect_pol,
5556 MAXIMUM_ALLOWED_ACCESS,
5557 CONST_DISCARD(struct dom_sid2 *, domain_sid),
5558 &domain_pol);
5559 if (!NT_STATUS_IS_OK(result)) {
5560 goto done;
5563 init_lsa_String(&lsa_acct_name, acct_name);
5565 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
5566 &domain_pol,
5568 &lsa_acct_name,
5569 &user_rids,
5570 &name_types);
5572 if (!NT_STATUS_IS_OK(result)) {
5573 d_printf("net rpc trustdom del: LookupNames on user %s failed %s\n",
5574 acct_name, nt_errstr(result) );
5575 goto done;
5578 result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
5579 &domain_pol,
5580 MAXIMUM_ALLOWED_ACCESS,
5581 user_rids.ids[0],
5582 &user_pol);
5584 if (!NT_STATUS_IS_OK(result)) {
5585 d_printf("net rpc trustdom del: OpenUser on user %s failed %s\n",
5586 acct_name, nt_errstr(result) );
5587 goto done;
5590 /* append the rid to the domain sid */
5591 sid_copy(&trust_acct_sid, domain_sid);
5592 if (!sid_append_rid(&trust_acct_sid, user_rids.ids[0])) {
5593 goto done;
5596 /* remove the sid */
5598 result = rpccli_samr_RemoveMemberFromForeignDomain(pipe_hnd, mem_ctx,
5599 &user_pol,
5600 &trust_acct_sid);
5601 if (!NT_STATUS_IS_OK(result)) {
5602 d_printf("net rpc trustdom del: RemoveMemberFromForeignDomain on user %s failed %s\n",
5603 acct_name, nt_errstr(result) );
5604 goto done;
5607 /* Delete user */
5609 result = rpccli_samr_DeleteUser(pipe_hnd, mem_ctx,
5610 &user_pol);
5612 if (!NT_STATUS_IS_OK(result)) {
5613 d_printf("net rpc trustdom del: DeleteUser on user %s failed %s\n",
5614 acct_name, nt_errstr(result) );
5615 goto done;
5618 if (!NT_STATUS_IS_OK(result)) {
5619 d_printf("Could not set trust account password: %s\n",
5620 nt_errstr(result));
5621 goto done;
5624 done:
5625 return result;
5629 * Delete interdomain trust account for a remote domain.
5631 * @param argc Standard argc.
5632 * @param argv Standard argv without initial components.
5634 * @return Integer status (0 means success).
5637 static int rpc_trustdom_del(int argc, const char **argv)
5639 if (argc > 0) {
5640 return run_rpc_command(NULL, PI_SAMR, 0, rpc_trustdom_del_internals,
5641 argc, argv);
5642 } else {
5643 d_printf("Usage: net rpc trustdom del <domain>\n");
5644 return -1;
5648 static NTSTATUS rpc_trustdom_get_pdc(struct cli_state *cli,
5649 TALLOC_CTX *mem_ctx,
5650 const char *domain_name)
5652 char *dc_name = NULL;
5653 const char *buffer = NULL;
5654 struct rpc_pipe_client *netr;
5655 NTSTATUS status;
5657 /* Use NetServerEnum2 */
5659 if (cli_get_pdc_name(cli, domain_name, &dc_name)) {
5660 SAFE_FREE(dc_name);
5661 return NT_STATUS_OK;
5664 DEBUG(1,("NetServerEnum2 error: Couldn't find primary domain controller\
5665 for domain %s\n", domain_name));
5667 /* Try netr_GetDcName */
5669 netr = cli_rpc_pipe_open_noauth(cli, PI_NETLOGON, &status);
5670 if (!netr) {
5671 return status;
5674 status = rpccli_netr_GetDcName(netr, mem_ctx,
5675 cli->desthost,
5676 domain_name,
5677 &buffer,
5678 NULL);
5679 cli_rpc_pipe_close(netr);
5681 if (NT_STATUS_IS_OK(status)) {
5682 return status;
5685 DEBUG(1,("netr_GetDcName error: Couldn't find primary domain controller\
5686 for domain %s\n", domain_name));
5688 return status;
5692 * Establish trust relationship to a trusting domain.
5693 * Interdomain account must already be created on remote PDC.
5695 * @param argc Standard argc.
5696 * @param argv Standard argv without initial components.
5698 * @return Integer status (0 means success).
5701 static int rpc_trustdom_establish(int argc, const char **argv)
5703 struct cli_state *cli = NULL;
5704 struct sockaddr_storage server_ss;
5705 struct rpc_pipe_client *pipe_hnd = NULL;
5706 POLICY_HND connect_hnd;
5707 TALLOC_CTX *mem_ctx;
5708 NTSTATUS nt_status;
5709 DOM_SID *domain_sid;
5711 char* domain_name;
5712 char* acct_name;
5713 fstring pdc_name;
5714 union lsa_PolicyInformation *info = NULL;
5717 * Connect to \\server\ipc$ as 'our domain' account with password
5720 if (argc != 1) {
5721 d_printf("Usage: net rpc trustdom establish <domain_name>\n");
5722 return -1;
5725 domain_name = smb_xstrdup(argv[0]);
5726 strupper_m(domain_name);
5728 /* account name used at first is our domain's name with '$' */
5729 asprintf(&acct_name, "%s$", lp_workgroup());
5730 strupper_m(acct_name);
5733 * opt_workgroup will be used by connection functions further,
5734 * hence it should be set to remote domain name instead of ours
5736 if (opt_workgroup) {
5737 opt_workgroup = smb_xstrdup(domain_name);
5740 opt_user_name = acct_name;
5742 /* find the domain controller */
5743 if (!net_find_pdc(&server_ss, pdc_name, domain_name)) {
5744 DEBUG(0, ("Couldn't find domain controller for domain %s\n", domain_name));
5745 return -1;
5748 /* connect to ipc$ as username/password */
5749 nt_status = connect_to_ipc(&cli, &server_ss, pdc_name);
5750 if (!NT_STATUS_EQUAL(nt_status, NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT)) {
5752 /* Is it trusting domain account for sure ? */
5753 DEBUG(0, ("Couldn't verify trusting domain account. Error was %s\n",
5754 nt_errstr(nt_status)));
5755 return -1;
5758 /* store who we connected to */
5760 saf_store( domain_name, pdc_name );
5763 * Connect to \\server\ipc$ again (this time anonymously)
5766 nt_status = connect_to_ipc_anonymous(&cli, &server_ss, (char*)pdc_name);
5768 if (NT_STATUS_IS_ERR(nt_status)) {
5769 DEBUG(0, ("Couldn't connect to domain %s controller. Error was %s.\n",
5770 domain_name, nt_errstr(nt_status)));
5771 return -1;
5774 if (!(mem_ctx = talloc_init("establishing trust relationship to "
5775 "domain %s", domain_name))) {
5776 DEBUG(0, ("talloc_init() failed\n"));
5777 cli_shutdown(cli);
5778 return -1;
5781 /* Make sure we're talking to a proper server */
5783 nt_status = rpc_trustdom_get_pdc(cli, mem_ctx, domain_name);
5784 if (!NT_STATUS_IS_OK(nt_status)) {
5785 cli_shutdown(cli);
5786 talloc_destroy(mem_ctx);
5787 return -1;
5791 * Call LsaOpenPolicy and LsaQueryInfo
5794 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_LSARPC, &nt_status);
5795 if (!pipe_hnd) {
5796 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n", nt_errstr(nt_status) ));
5797 cli_shutdown(cli);
5798 talloc_destroy(mem_ctx);
5799 return -1;
5802 nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, True, SEC_RIGHTS_QUERY_VALUE,
5803 &connect_hnd);
5804 if (NT_STATUS_IS_ERR(nt_status)) {
5805 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
5806 nt_errstr(nt_status)));
5807 cli_shutdown(cli);
5808 talloc_destroy(mem_ctx);
5809 return -1;
5812 /* Querying info level 5 */
5814 nt_status = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
5815 &connect_hnd,
5816 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
5817 &info);
5818 if (NT_STATUS_IS_ERR(nt_status)) {
5819 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
5820 nt_errstr(nt_status)));
5821 cli_shutdown(cli);
5822 talloc_destroy(mem_ctx);
5823 return -1;
5826 domain_sid = info->account_domain.sid;
5828 /* There should be actually query info level 3 (following nt serv behaviour),
5829 but I still don't know if it's _really_ necessary */
5832 * Store the password in secrets db
5835 if (!pdb_set_trusteddom_pw(domain_name, opt_password, domain_sid)) {
5836 DEBUG(0, ("Storing password for trusted domain failed.\n"));
5837 cli_shutdown(cli);
5838 talloc_destroy(mem_ctx);
5839 return -1;
5843 * Close the pipes and clean up
5846 nt_status = rpccli_lsa_Close(pipe_hnd, mem_ctx, &connect_hnd);
5847 if (NT_STATUS_IS_ERR(nt_status)) {
5848 DEBUG(0, ("Couldn't close LSA pipe. Error was %s\n",
5849 nt_errstr(nt_status)));
5850 cli_shutdown(cli);
5851 talloc_destroy(mem_ctx);
5852 return -1;
5855 cli_shutdown(cli);
5857 talloc_destroy(mem_ctx);
5859 d_printf("Trust to domain %s established\n", domain_name);
5860 return 0;
5864 * Revoke trust relationship to the remote domain.
5866 * @param argc Standard argc.
5867 * @param argv Standard argv without initial components.
5869 * @return Integer status (0 means success).
5872 static int rpc_trustdom_revoke(int argc, const char **argv)
5874 char* domain_name;
5875 int rc = -1;
5877 if (argc < 1) return -1;
5879 /* generate upper cased domain name */
5880 domain_name = smb_xstrdup(argv[0]);
5881 strupper_m(domain_name);
5883 /* delete password of the trust */
5884 if (!pdb_del_trusteddom_pw(domain_name)) {
5885 DEBUG(0, ("Failed to revoke relationship to the trusted domain %s\n",
5886 domain_name));
5887 goto done;
5890 rc = 0;
5891 done:
5892 SAFE_FREE(domain_name);
5893 return rc;
5897 * Usage for 'net rpc trustdom' command
5899 * @param argc standard argc
5900 * @param argv standard argv without inital components
5902 * @return Integer status returned to shell
5905 static int rpc_trustdom_usage(int argc, const char **argv)
5907 d_printf(" net rpc trustdom add \t\t add trusting domain's account\n");
5908 d_printf(" net rpc trustdom del \t\t delete trusting domain's account\n");
5909 d_printf(" net rpc trustdom establish \t establish relationship to trusted domain\n");
5910 d_printf(" net rpc trustdom revoke \t abandon relationship to trusted domain\n");
5911 d_printf(" net rpc trustdom list \t show current interdomain trust relationships\n");
5912 d_printf(" net rpc trustdom vampire \t vampire interdomain trust relationships from remote server\n");
5913 return -1;
5917 static NTSTATUS rpc_query_domain_sid(const DOM_SID *domain_sid,
5918 const char *domain_name,
5919 struct cli_state *cli,
5920 struct rpc_pipe_client *pipe_hnd,
5921 TALLOC_CTX *mem_ctx,
5922 int argc,
5923 const char **argv)
5925 fstring str_sid;
5926 sid_to_fstring(str_sid, domain_sid);
5927 d_printf("%s\n", str_sid);
5928 return NT_STATUS_OK;
5931 static void print_trusted_domain(DOM_SID *dom_sid, const char *trusted_dom_name)
5933 fstring ascii_sid, padding;
5934 int pad_len, col_len = 20;
5936 /* convert sid into ascii string */
5937 sid_to_fstring(ascii_sid, dom_sid);
5939 /* calculate padding space for d_printf to look nicer */
5940 pad_len = col_len - strlen(trusted_dom_name);
5941 padding[pad_len] = 0;
5942 do padding[--pad_len] = ' '; while (pad_len);
5944 d_printf("%s%s%s\n", trusted_dom_name, padding, ascii_sid);
5947 static NTSTATUS vampire_trusted_domain(struct rpc_pipe_client *pipe_hnd,
5948 TALLOC_CTX *mem_ctx,
5949 POLICY_HND *pol,
5950 DOM_SID dom_sid,
5951 const char *trusted_dom_name)
5953 NTSTATUS nt_status;
5954 union lsa_TrustedDomainInfo *info = NULL;
5955 char *cleartextpwd = NULL;
5956 DATA_BLOB data;
5958 nt_status = rpccli_lsa_QueryTrustedDomainInfoBySid(pipe_hnd, mem_ctx,
5959 pol,
5960 &dom_sid,
5961 LSA_TRUSTED_DOMAIN_INFO_PASSWORD,
5962 &info);
5963 if (NT_STATUS_IS_ERR(nt_status)) {
5964 DEBUG(0,("Could not query trusted domain info. Error was %s\n",
5965 nt_errstr(nt_status)));
5966 goto done;
5969 data = data_blob(info->password.password->data,
5970 info->password.password->length);
5972 cleartextpwd = decrypt_trustdom_secret(pipe_hnd->cli->pwd.password,
5973 &data);
5975 if (cleartextpwd == NULL) {
5976 DEBUG(0,("retrieved NULL password\n"));
5977 nt_status = NT_STATUS_UNSUCCESSFUL;
5978 goto done;
5981 if (!pdb_set_trusteddom_pw(trusted_dom_name, cleartextpwd, &dom_sid)) {
5982 DEBUG(0, ("Storing password for trusted domain failed.\n"));
5983 nt_status = NT_STATUS_UNSUCCESSFUL;
5984 goto done;
5987 #ifdef DEBUG_PASSWORD
5988 DEBUG(100,("successfully vampired trusted domain [%s], sid: [%s], "
5989 "password: [%s]\n", trusted_dom_name,
5990 sid_string_dbg(&dom_sid), cleartextpwd));
5991 #endif
5993 done:
5994 SAFE_FREE(cleartextpwd);
5995 data_blob_free(&data);
5997 return nt_status;
6000 static int rpc_trustdom_vampire(int argc, const char **argv)
6002 /* common variables */
6003 TALLOC_CTX* mem_ctx;
6004 struct cli_state *cli = NULL;
6005 struct rpc_pipe_client *pipe_hnd = NULL;
6006 NTSTATUS nt_status;
6007 const char *domain_name = NULL;
6008 DOM_SID *queried_dom_sid;
6009 POLICY_HND connect_hnd;
6010 union lsa_PolicyInformation *info = NULL;
6012 /* trusted domains listing variables */
6013 unsigned int enum_ctx = 0;
6014 int i;
6015 struct lsa_DomainList dom_list;
6016 fstring pdc_name;
6019 * Listing trusted domains (stored in secrets.tdb, if local)
6022 mem_ctx = talloc_init("trust relationships vampire");
6025 * set domain and pdc name to local samba server (default)
6026 * or to remote one given in command line
6029 if (StrCaseCmp(opt_workgroup, lp_workgroup())) {
6030 domain_name = opt_workgroup;
6031 opt_target_workgroup = opt_workgroup;
6032 } else {
6033 fstrcpy(pdc_name, global_myname());
6034 domain_name = talloc_strdup(mem_ctx, lp_workgroup());
6035 opt_target_workgroup = domain_name;
6038 /* open \PIPE\lsarpc and open policy handle */
6039 nt_status = net_make_ipc_connection(NET_FLAGS_PDC, &cli);
6040 if (!NT_STATUS_IS_OK(nt_status)) {
6041 DEBUG(0, ("Couldn't connect to domain controller: %s\n",
6042 nt_errstr(nt_status)));
6043 talloc_destroy(mem_ctx);
6044 return -1;
6047 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_LSARPC, &nt_status);
6048 if (!pipe_hnd) {
6049 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n",
6050 nt_errstr(nt_status) ));
6051 cli_shutdown(cli);
6052 talloc_destroy(mem_ctx);
6053 return -1;
6056 nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, False, SEC_RIGHTS_QUERY_VALUE,
6057 &connect_hnd);
6058 if (NT_STATUS_IS_ERR(nt_status)) {
6059 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
6060 nt_errstr(nt_status)));
6061 cli_shutdown(cli);
6062 talloc_destroy(mem_ctx);
6063 return -1;
6066 /* query info level 5 to obtain sid of a domain being queried */
6067 nt_status = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
6068 &connect_hnd,
6069 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
6070 &info);
6072 if (NT_STATUS_IS_ERR(nt_status)) {
6073 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6074 nt_errstr(nt_status)));
6075 cli_shutdown(cli);
6076 talloc_destroy(mem_ctx);
6077 return -1;
6080 queried_dom_sid = info->account_domain.sid;
6083 * Keep calling LsaEnumTrustdom over opened pipe until
6084 * the end of enumeration is reached
6087 d_printf("Vampire trusted domains:\n\n");
6089 do {
6090 nt_status = rpccli_lsa_EnumTrustDom(pipe_hnd, mem_ctx,
6091 &connect_hnd,
6092 &enum_ctx,
6093 &dom_list,
6094 (uint32_t)-1);
6095 if (NT_STATUS_IS_ERR(nt_status)) {
6096 DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
6097 nt_errstr(nt_status)));
6098 cli_shutdown(cli);
6099 talloc_destroy(mem_ctx);
6100 return -1;
6103 for (i = 0; i < dom_list.count; i++) {
6105 print_trusted_domain(dom_list.domains[i].sid,
6106 dom_list.domains[i].name.string);
6108 nt_status = vampire_trusted_domain(pipe_hnd, mem_ctx, &connect_hnd,
6109 *dom_list.domains[i].sid,
6110 dom_list.domains[i].name.string);
6111 if (!NT_STATUS_IS_OK(nt_status)) {
6112 cli_shutdown(cli);
6113 talloc_destroy(mem_ctx);
6114 return -1;
6119 * in case of no trusted domains say something rather
6120 * than just display blank line
6122 if (!dom_list.count) d_printf("none\n");
6124 } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
6126 /* close this connection before doing next one */
6127 nt_status = rpccli_lsa_Close(pipe_hnd, mem_ctx, &connect_hnd);
6128 if (NT_STATUS_IS_ERR(nt_status)) {
6129 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
6130 nt_errstr(nt_status)));
6131 cli_shutdown(cli);
6132 talloc_destroy(mem_ctx);
6133 return -1;
6136 /* close lsarpc pipe and connection to IPC$ */
6137 cli_shutdown(cli);
6139 talloc_destroy(mem_ctx);
6140 return 0;
6143 static int rpc_trustdom_list(int argc, const char **argv)
6145 /* common variables */
6146 TALLOC_CTX* mem_ctx;
6147 struct cli_state *cli = NULL, *remote_cli = NULL;
6148 struct rpc_pipe_client *pipe_hnd = NULL;
6149 NTSTATUS nt_status;
6150 const char *domain_name = NULL;
6151 DOM_SID *queried_dom_sid;
6152 fstring padding;
6153 int ascii_dom_name_len;
6154 POLICY_HND connect_hnd;
6155 union lsa_PolicyInformation *info = NULL;
6157 /* trusted domains listing variables */
6158 unsigned int num_domains, enum_ctx = 0;
6159 int i, pad_len, col_len = 20;
6160 struct lsa_DomainList dom_list;
6161 fstring pdc_name;
6163 /* trusting domains listing variables */
6164 POLICY_HND domain_hnd;
6165 struct samr_SamArray *trusts = NULL;
6168 * Listing trusted domains (stored in secrets.tdb, if local)
6171 mem_ctx = talloc_init("trust relationships listing");
6174 * set domain and pdc name to local samba server (default)
6175 * or to remote one given in command line
6178 if (StrCaseCmp(opt_workgroup, lp_workgroup())) {
6179 domain_name = opt_workgroup;
6180 opt_target_workgroup = opt_workgroup;
6181 } else {
6182 fstrcpy(pdc_name, global_myname());
6183 domain_name = talloc_strdup(mem_ctx, lp_workgroup());
6184 opt_target_workgroup = domain_name;
6187 /* open \PIPE\lsarpc and open policy handle */
6188 nt_status = net_make_ipc_connection(NET_FLAGS_PDC, &cli);
6189 if (!NT_STATUS_IS_OK(nt_status)) {
6190 DEBUG(0, ("Couldn't connect to domain controller: %s\n",
6191 nt_errstr(nt_status)));
6192 talloc_destroy(mem_ctx);
6193 return -1;
6196 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_LSARPC, &nt_status);
6197 if (!pipe_hnd) {
6198 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n",
6199 nt_errstr(nt_status) ));
6200 cli_shutdown(cli);
6201 talloc_destroy(mem_ctx);
6202 return -1;
6205 nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, False, SEC_RIGHTS_QUERY_VALUE,
6206 &connect_hnd);
6207 if (NT_STATUS_IS_ERR(nt_status)) {
6208 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
6209 nt_errstr(nt_status)));
6210 cli_shutdown(cli);
6211 talloc_destroy(mem_ctx);
6212 return -1;
6215 /* query info level 5 to obtain sid of a domain being queried */
6216 nt_status = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
6217 &connect_hnd,
6218 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
6219 &info);
6221 if (NT_STATUS_IS_ERR(nt_status)) {
6222 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6223 nt_errstr(nt_status)));
6224 cli_shutdown(cli);
6225 talloc_destroy(mem_ctx);
6226 return -1;
6229 queried_dom_sid = info->account_domain.sid;
6232 * Keep calling LsaEnumTrustdom over opened pipe until
6233 * the end of enumeration is reached
6236 d_printf("Trusted domains list:\n\n");
6238 do {
6239 nt_status = rpccli_lsa_EnumTrustDom(pipe_hnd, mem_ctx,
6240 &connect_hnd,
6241 &enum_ctx,
6242 &dom_list,
6243 (uint32_t)-1);
6244 if (NT_STATUS_IS_ERR(nt_status)) {
6245 DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
6246 nt_errstr(nt_status)));
6247 cli_shutdown(cli);
6248 talloc_destroy(mem_ctx);
6249 return -1;
6252 for (i = 0; i < dom_list.count; i++) {
6253 print_trusted_domain(dom_list.domains[i].sid,
6254 dom_list.domains[i].name.string);
6258 * in case of no trusted domains say something rather
6259 * than just display blank line
6261 if (!dom_list.count) d_printf("none\n");
6263 } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
6265 /* close this connection before doing next one */
6266 nt_status = rpccli_lsa_Close(pipe_hnd, mem_ctx, &connect_hnd);
6267 if (NT_STATUS_IS_ERR(nt_status)) {
6268 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
6269 nt_errstr(nt_status)));
6270 cli_shutdown(cli);
6271 talloc_destroy(mem_ctx);
6272 return -1;
6275 cli_rpc_pipe_close(pipe_hnd);
6278 * Listing trusting domains (stored in passdb backend, if local)
6281 d_printf("\nTrusting domains list:\n\n");
6284 * Open \PIPE\samr and get needed policy handles
6286 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_SAMR, &nt_status);
6287 if (!pipe_hnd) {
6288 DEBUG(0, ("Could not initialise samr pipe. Error was %s\n", nt_errstr(nt_status)));
6289 cli_shutdown(cli);
6290 talloc_destroy(mem_ctx);
6291 return -1;
6294 /* SamrConnect2 */
6295 nt_status = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
6296 pipe_hnd->cli->desthost,
6297 SA_RIGHT_SAM_OPEN_DOMAIN,
6298 &connect_hnd);
6299 if (!NT_STATUS_IS_OK(nt_status)) {
6300 DEBUG(0, ("Couldn't open SAMR policy handle. Error was %s\n",
6301 nt_errstr(nt_status)));
6302 cli_shutdown(cli);
6303 talloc_destroy(mem_ctx);
6304 return -1;
6307 /* SamrOpenDomain - we have to open domain policy handle in order to be
6308 able to enumerate accounts*/
6309 nt_status = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
6310 &connect_hnd,
6311 SA_RIGHT_DOMAIN_ENUM_ACCOUNTS,
6312 queried_dom_sid,
6313 &domain_hnd);
6314 if (!NT_STATUS_IS_OK(nt_status)) {
6315 DEBUG(0, ("Couldn't open domain object. Error was %s\n",
6316 nt_errstr(nt_status)));
6317 cli_shutdown(cli);
6318 talloc_destroy(mem_ctx);
6319 return -1;
6323 * perform actual enumeration
6326 enum_ctx = 0; /* reset enumeration context from last enumeration */
6327 do {
6329 nt_status = rpccli_samr_EnumDomainUsers(pipe_hnd, mem_ctx,
6330 &domain_hnd,
6331 &enum_ctx,
6332 ACB_DOMTRUST,
6333 &trusts,
6334 0xffff,
6335 &num_domains);
6336 if (NT_STATUS_IS_ERR(nt_status)) {
6337 DEBUG(0, ("Couldn't enumerate accounts. Error was: %s\n",
6338 nt_errstr(nt_status)));
6339 cli_shutdown(cli);
6340 talloc_destroy(mem_ctx);
6341 return -1;
6344 for (i = 0; i < num_domains; i++) {
6346 char *str = CONST_DISCARD(char *, trusts->entries[i].name.string);
6349 * get each single domain's sid (do we _really_ need this ?):
6350 * 1) connect to domain's pdc
6351 * 2) query the pdc for domain's sid
6354 /* get rid of '$' tail */
6355 ascii_dom_name_len = strlen(str);
6356 if (ascii_dom_name_len && ascii_dom_name_len < FSTRING_LEN)
6357 str[ascii_dom_name_len - 1] = '\0';
6359 /* calculate padding space for d_printf to look nicer */
6360 pad_len = col_len - strlen(str);
6361 padding[pad_len] = 0;
6362 do padding[--pad_len] = ' '; while (pad_len);
6364 /* set opt_* variables to remote domain */
6365 strupper_m(str);
6366 opt_workgroup = talloc_strdup(mem_ctx, str);
6367 opt_target_workgroup = opt_workgroup;
6369 d_printf("%s%s", str, padding);
6371 /* connect to remote domain controller */
6372 nt_status = net_make_ipc_connection(
6373 NET_FLAGS_PDC | NET_FLAGS_ANONYMOUS,
6374 &remote_cli);
6375 if (NT_STATUS_IS_OK(nt_status)) {
6376 /* query for domain's sid */
6377 if (run_rpc_command(remote_cli, PI_LSARPC, 0, rpc_query_domain_sid, argc, argv))
6378 d_fprintf(stderr, "couldn't get domain's sid\n");
6380 cli_shutdown(remote_cli);
6382 } else {
6383 d_fprintf(stderr, "domain controller is not "
6384 "responding: %s\n",
6385 nt_errstr(nt_status));
6389 if (!num_domains) d_printf("none\n");
6391 } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
6393 /* close opened samr and domain policy handles */
6394 nt_status = rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_hnd);
6395 if (!NT_STATUS_IS_OK(nt_status)) {
6396 DEBUG(0, ("Couldn't properly close domain policy handle for domain %s\n", domain_name));
6399 nt_status = rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_hnd);
6400 if (!NT_STATUS_IS_OK(nt_status)) {
6401 DEBUG(0, ("Couldn't properly close samr policy handle for domain %s\n", domain_name));
6404 /* close samr pipe and connection to IPC$ */
6405 cli_shutdown(cli);
6407 talloc_destroy(mem_ctx);
6408 return 0;
6412 * Entrypoint for 'net rpc trustdom' code.
6414 * @param argc Standard argc.
6415 * @param argv Standard argv without initial components.
6417 * @return Integer status (0 means success).
6420 static int rpc_trustdom(int argc, const char **argv)
6422 struct functable func[] = {
6423 {"add", rpc_trustdom_add},
6424 {"del", rpc_trustdom_del},
6425 {"establish", rpc_trustdom_establish},
6426 {"revoke", rpc_trustdom_revoke},
6427 {"help", rpc_trustdom_usage},
6428 {"list", rpc_trustdom_list},
6429 {"vampire", rpc_trustdom_vampire},
6430 {NULL, NULL}
6433 if (argc == 0) {
6434 rpc_trustdom_usage(argc, argv);
6435 return -1;
6438 return (net_run_function(argc, argv, func, rpc_trustdom_usage));
6442 * Check if a server will take rpc commands
6443 * @param flags Type of server to connect to (PDC, DMB, localhost)
6444 * if the host is not explicitly specified
6445 * @return bool (true means rpc supported)
6447 bool net_rpc_check(unsigned flags)
6449 struct cli_state *cli;
6450 bool ret = False;
6451 struct sockaddr_storage server_ss;
6452 char *server_name = NULL;
6453 NTSTATUS status;
6455 /* flags (i.e. server type) may depend on command */
6456 if (!net_find_server(NULL, flags, &server_ss, &server_name))
6457 return False;
6459 if ((cli = cli_initialise()) == NULL) {
6460 return False;
6463 status = cli_connect(cli, server_name, &server_ss);
6464 if (!NT_STATUS_IS_OK(status))
6465 goto done;
6466 if (!attempt_netbios_session_request(&cli, global_myname(),
6467 server_name, &server_ss))
6468 goto done;
6469 if (!cli_negprot(cli))
6470 goto done;
6471 if (cli->protocol < PROTOCOL_NT1)
6472 goto done;
6474 ret = True;
6475 done:
6476 cli_shutdown(cli);
6477 return ret;
6480 /* dump sam database via samsync rpc calls */
6481 static int rpc_samdump(int argc, const char **argv) {
6482 return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS, rpc_samdump_internals,
6483 argc, argv);
6486 /* syncronise sam database via samsync rpc calls */
6487 static int rpc_vampire(int argc, const char **argv) {
6488 return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS, rpc_vampire_internals,
6489 argc, argv);
6492 /**
6493 * Migrate everything from a print-server.
6495 * @param argc Standard main() style argc.
6496 * @param argv Standard main() style argv. Initial components are already
6497 * stripped.
6499 * @return A shell status integer (0 for success).
6501 * The order is important !
6502 * To successfully add drivers the print-queues have to exist !
6503 * Applying ACLs should be the last step, because you're easily locked out.
6506 static int rpc_printer_migrate_all(int argc, const char **argv)
6508 int ret;
6510 if (!opt_host) {
6511 printf("no server to migrate\n");
6512 return -1;
6515 ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_printers_internals, argc, argv);
6516 if (ret)
6517 return ret;
6519 ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_drivers_internals, argc, argv);
6520 if (ret)
6521 return ret;
6523 ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_forms_internals, argc, argv);
6524 if (ret)
6525 return ret;
6527 ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_settings_internals, argc, argv);
6528 if (ret)
6529 return ret;
6531 return run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_security_internals, argc, argv);
6535 /**
6536 * Migrate print-drivers from a print-server.
6538 * @param argc Standard main() style argc.
6539 * @param argv Standard main() style argv. Initial components are already
6540 * stripped.
6542 * @return A shell status integer (0 for success).
6544 static int rpc_printer_migrate_drivers(int argc, const char **argv)
6546 if (!opt_host) {
6547 printf("no server to migrate\n");
6548 return -1;
6551 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6552 rpc_printer_migrate_drivers_internals,
6553 argc, argv);
6556 /**
6557 * Migrate print-forms from a print-server.
6559 * @param argc Standard main() style argc.
6560 * @param argv Standard main() style argv. Initial components are already
6561 * stripped.
6563 * @return A shell status integer (0 for success).
6565 static int rpc_printer_migrate_forms(int argc, const char **argv)
6567 if (!opt_host) {
6568 printf("no server to migrate\n");
6569 return -1;
6572 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6573 rpc_printer_migrate_forms_internals,
6574 argc, argv);
6577 /**
6578 * Migrate printers from a print-server.
6580 * @param argc Standard main() style argc.
6581 * @param argv Standard main() style argv. Initial components are already
6582 * stripped.
6584 * @return A shell status integer (0 for success).
6586 static int rpc_printer_migrate_printers(int argc, const char **argv)
6588 if (!opt_host) {
6589 printf("no server to migrate\n");
6590 return -1;
6593 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6594 rpc_printer_migrate_printers_internals,
6595 argc, argv);
6598 /**
6599 * Migrate printer-ACLs from a print-server.
6601 * @param argc Standard main() style argc.
6602 * @param argv Standard main() style argv. Initial components are already
6603 * stripped.
6605 * @return A shell status integer (0 for success).
6607 static int rpc_printer_migrate_security(int argc, const char **argv)
6609 if (!opt_host) {
6610 printf("no server to migrate\n");
6611 return -1;
6614 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6615 rpc_printer_migrate_security_internals,
6616 argc, argv);
6619 /**
6620 * Migrate printer-settings from a print-server.
6622 * @param argc Standard main() style argc.
6623 * @param argv Standard main() style argv. Initial components are already
6624 * stripped.
6626 * @return A shell status integer (0 for success).
6628 static int rpc_printer_migrate_settings(int argc, const char **argv)
6630 if (!opt_host) {
6631 printf("no server to migrate\n");
6632 return -1;
6635 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6636 rpc_printer_migrate_settings_internals,
6637 argc, argv);
6640 /**
6641 * 'net rpc printer' entrypoint.
6642 * @param argc Standard main() style argc.
6643 * @param argv Standard main() style argv. Initial components are already
6644 * stripped.
6647 int rpc_printer_migrate(int argc, const char **argv)
6650 /* ouch: when addriver and setdriver are called from within
6651 rpc_printer_migrate_drivers_internals, the printer-queue already
6652 *has* to exist */
6654 struct functable func[] = {
6655 {"all", rpc_printer_migrate_all},
6656 {"drivers", rpc_printer_migrate_drivers},
6657 {"forms", rpc_printer_migrate_forms},
6658 {"help", rpc_printer_usage},
6659 {"printers", rpc_printer_migrate_printers},
6660 {"security", rpc_printer_migrate_security},
6661 {"settings", rpc_printer_migrate_settings},
6662 {NULL, NULL}
6665 return net_run_function(argc, argv, func, rpc_printer_usage);
6669 /**
6670 * List printers on a remote RPC server.
6672 * @param argc Standard main() style argc.
6673 * @param argv Standard main() style argv. Initial components are already
6674 * stripped.
6676 * @return A shell status integer (0 for success).
6678 static int rpc_printer_list(int argc, const char **argv)
6681 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6682 rpc_printer_list_internals,
6683 argc, argv);
6686 /**
6687 * List printer-drivers on a remote RPC server.
6689 * @param argc Standard main() style argc.
6690 * @param argv Standard main() style argv. Initial components are already
6691 * stripped.
6693 * @return A shell status integer (0 for success).
6695 static int rpc_printer_driver_list(int argc, const char **argv)
6698 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6699 rpc_printer_driver_list_internals,
6700 argc, argv);
6703 /**
6704 * Publish printer in ADS via MSRPC.
6706 * @param argc Standard main() style argc.
6707 * @param argv Standard main() style argv. Initial components are already
6708 * stripped.
6710 * @return A shell status integer (0 for success).
6712 static int rpc_printer_publish_publish(int argc, const char **argv)
6715 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6716 rpc_printer_publish_publish_internals,
6717 argc, argv);
6720 /**
6721 * Update printer in ADS via MSRPC.
6723 * @param argc Standard main() style argc.
6724 * @param argv Standard main() style argv. Initial components are already
6725 * stripped.
6727 * @return A shell status integer (0 for success).
6729 static int rpc_printer_publish_update(int argc, const char **argv)
6732 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6733 rpc_printer_publish_update_internals,
6734 argc, argv);
6737 /**
6738 * UnPublish printer in ADS via MSRPC
6740 * @param argc Standard main() style argc.
6741 * @param argv Standard main() style argv. Initial components are already
6742 * stripped.
6744 * @return A shell status integer (0 for success).
6746 static int rpc_printer_publish_unpublish(int argc, const char **argv)
6749 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6750 rpc_printer_publish_unpublish_internals,
6751 argc, argv);
6754 /**
6755 * List published printers via MSRPC.
6757 * @param argc Standard main() style argc.
6758 * @param argv Standard main() style argv. Initial components are already
6759 * stripped.
6761 * @return A shell status integer (0 for success).
6763 static int rpc_printer_publish_list(int argc, const char **argv)
6766 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6767 rpc_printer_publish_list_internals,
6768 argc, argv);
6772 /**
6773 * Publish printer in ADS.
6775 * @param argc Standard main() style argc.
6776 * @param argv Standard main() style argv. Initial components are already
6777 * stripped.
6779 * @return A shell status integer (0 for success).
6781 static int rpc_printer_publish(int argc, const char **argv)
6784 struct functable func[] = {
6785 {"publish", rpc_printer_publish_publish},
6786 {"update", rpc_printer_publish_update},
6787 {"unpublish", rpc_printer_publish_unpublish},
6788 {"list", rpc_printer_publish_list},
6789 {"help", rpc_printer_usage},
6790 {NULL, NULL}
6793 if (argc == 0)
6794 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6795 rpc_printer_publish_list_internals,
6796 argc, argv);
6798 return net_run_function(argc, argv, func, rpc_printer_usage);
6803 /**
6804 * Display rpc printer help page.
6805 * @param argc Standard main() style argc.
6806 * @param argv Standard main() style argv. Initial components are already
6807 * stripped.
6809 int rpc_printer_usage(int argc, const char **argv)
6811 return net_help_printer(argc, argv);
6814 /**
6815 * 'net rpc printer' entrypoint.
6816 * @param argc Standard main() style argc.
6817 * @param argv Standard main() style argv. Initial components are already
6818 * stripped.
6820 int net_rpc_printer(int argc, const char **argv)
6822 struct functable func[] = {
6823 {"list", rpc_printer_list},
6824 {"migrate", rpc_printer_migrate},
6825 {"driver", rpc_printer_driver_list},
6826 {"publish", rpc_printer_publish},
6827 {NULL, NULL}
6830 if (argc == 0)
6831 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6832 rpc_printer_list_internals,
6833 argc, argv);
6835 return net_run_function(argc, argv, func, rpc_printer_usage);
6838 /****************************************************************************/
6841 /**
6842 * Basic usage function for 'net rpc'.
6843 * @param argc Standard main() style argc.
6844 * @param argv Standard main() style argv. Initial components are already
6845 * stripped.
6848 int net_rpc_usage(int argc, const char **argv)
6850 d_printf(" net rpc info \t\t\tshow basic info about a domain \n");
6851 d_printf(" net rpc join \t\t\tto join a domain \n");
6852 d_printf(" net rpc oldjoin \t\tto join a domain created in server manager\n");
6853 d_printf(" net rpc testjoin \t\ttests that a join is valid\n");
6854 d_printf(" net rpc user \t\t\tto add, delete and list users\n");
6855 d_printf(" net rpc password <username> [<password>] -Uadmin_username%%admin_pass\n");
6856 d_printf(" net rpc group \t\tto list groups\n");
6857 d_printf(" net rpc share \t\tto add, delete, list and migrate shares\n");
6858 d_printf(" net rpc printer \t\tto list and migrate printers\n");
6859 d_printf(" net rpc file \t\t\tto list open files\n");
6860 d_printf(" net rpc changetrustpw \tto change the trust account password\n");
6861 d_printf(" net rpc getsid \t\tfetch the domain sid into the local secrets.tdb\n");
6862 d_printf(" net rpc vampire \t\tsyncronise an NT PDC's users and groups into the local passdb\n");
6863 d_printf(" net rpc samdump \t\tdisplay an NT PDC's users, groups and other data\n");
6864 d_printf(" net rpc trustdom \t\tto create trusting domain's account or establish trust\n");
6865 d_printf(" net rpc abortshutdown \tto abort the shutdown of a remote server\n");
6866 d_printf(" net rpc shutdown \t\tto shutdown a remote server\n");
6867 d_printf(" net rpc rights\t\tto manage privileges assigned to SIDs\n");
6868 d_printf(" net rpc registry\t\tto manage registry hives\n");
6869 d_printf(" net rpc service\t\tto start, stop and query services\n");
6870 d_printf(" net rpc audit\t\t\tto modify global auditing settings\n");
6871 d_printf(" net rpc shell\t\t\tto open an interactive shell for remote server/account management\n");
6872 d_printf("\n");
6873 d_printf("'net rpc shutdown' also accepts the following miscellaneous options:\n"); /* misc options */
6874 d_printf("\t-r or --reboot\trequest remote server reboot on shutdown\n");
6875 d_printf("\t-f or --force\trequest the remote server force its shutdown\n");
6876 d_printf("\t-t or --timeout=<timeout>\tnumber of seconds before shutdown\n");
6877 d_printf("\t-C or --comment=<message>\ttext message to display on impending shutdown\n");
6878 return -1;
6883 * Help function for 'net rpc'. Calls command specific help if requested
6884 * or displays usage of net rpc.
6885 * @param argc Standard main() style argc.
6886 * @param argv Standard main() style argv. Initial components are already
6887 * stripped.
6890 int net_rpc_help(int argc, const char **argv)
6892 struct functable func[] = {
6893 {"join", rpc_join_usage},
6894 {"user", rpc_user_usage},
6895 {"group", rpc_group_usage},
6896 {"share", rpc_share_usage},
6897 /*{"changetrustpw", rpc_changetrustpw_usage}, */
6898 {"trustdom", rpc_trustdom_usage},
6899 /*{"abortshutdown", rpc_shutdown_abort_usage},*/
6900 /*{"shutdown", rpc_shutdown_usage}, */
6901 {"vampire", rpc_vampire_usage},
6902 {NULL, NULL}
6905 if (argc == 0) {
6906 net_rpc_usage(argc, argv);
6907 return -1;
6910 return (net_run_function(argc, argv, func, rpc_user_usage));
6913 /**
6914 * 'net rpc' entrypoint.
6915 * @param argc Standard main() style argc.
6916 * @param argv Standard main() style argv. Initial components are already
6917 * stripped.
6920 int net_rpc(int argc, const char **argv)
6922 struct functable func[] = {
6923 {"audit", net_rpc_audit},
6924 {"info", net_rpc_info},
6925 {"join", net_rpc_join},
6926 {"oldjoin", net_rpc_oldjoin},
6927 {"testjoin", net_rpc_testjoin},
6928 {"user", net_rpc_user},
6929 {"password", rpc_user_password},
6930 {"group", net_rpc_group},
6931 {"share", net_rpc_share},
6932 {"file", net_rpc_file},
6933 {"printer", net_rpc_printer},
6934 {"changetrustpw", net_rpc_changetrustpw},
6935 {"trustdom", rpc_trustdom},
6936 {"abortshutdown", rpc_shutdown_abort},
6937 {"shutdown", rpc_shutdown},
6938 {"samdump", rpc_samdump},
6939 {"vampire", rpc_vampire},
6940 {"getsid", net_rpc_getsid},
6941 {"rights", net_rpc_rights},
6942 {"service", net_rpc_service},
6943 {"registry", net_rpc_registry},
6944 {"shell", net_rpc_shell},
6945 {"help", net_rpc_help},
6946 {NULL, NULL}
6948 return net_run_function(argc, argv, func, net_rpc_usage);