s3-samr: fix init_samr_user_info{23,24} callers.
[Samba.git] / source / utils / net_rpc.c
blobd4d11de8c3c50a46c1d194e62e7129c293c3fbd1
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 const char *user;
808 const char *new_password;
809 char *prompt = NULL;
810 union samr_UserInfo info;
811 struct samr_CryptPassword crypt_pwd;
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 init_samr_CryptPassword(new_password,
882 &cli->user_session_key,
883 &crypt_pwd);
885 init_samr_user_info24(&info.info24, &crypt_pwd,
886 PASS_DONT_CHANGE_AT_NEXT_LOGON);
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 void add_sid_to_token(NT_USER_TOKEN *token, DOM_SID *sid)
4192 if (is_sid_in_token(token, sid))
4193 return;
4195 token->user_sids = SMB_REALLOC_ARRAY(token->user_sids, DOM_SID, token->num_sids+1);
4196 if (!token->user_sids) {
4197 return;
4200 sid_copy(&token->user_sids[token->num_sids], sid);
4202 token->num_sids += 1;
4205 struct user_token {
4206 fstring name;
4207 NT_USER_TOKEN token;
4210 static void dump_user_token(struct user_token *token)
4212 int i;
4214 d_printf("%s\n", token->name);
4216 for (i=0; i<token->token.num_sids; i++) {
4217 d_printf(" %s\n", sid_string_tos(&token->token.user_sids[i]));
4221 static bool is_alias_member(DOM_SID *sid, struct full_alias *alias)
4223 int i;
4225 for (i=0; i<alias->num_members; i++) {
4226 if (sid_compare(sid, &alias->members[i]) == 0)
4227 return True;
4230 return False;
4233 static void collect_sid_memberships(NT_USER_TOKEN *token, DOM_SID sid)
4235 int i;
4237 for (i=0; i<num_server_aliases; i++) {
4238 if (is_alias_member(&sid, &server_aliases[i]))
4239 add_sid_to_token(token, &server_aliases[i].sid);
4244 * We got a user token with all the SIDs we can know about without asking the
4245 * server directly. These are the user and domain group sids. All of these can
4246 * be members of aliases. So scan the list of aliases for each of the SIDs and
4247 * add them to the token.
4250 static void collect_alias_memberships(NT_USER_TOKEN *token)
4252 int num_global_sids = token->num_sids;
4253 int i;
4255 for (i=0; i<num_global_sids; i++) {
4256 collect_sid_memberships(token, token->user_sids[i]);
4260 static bool get_user_sids(const char *domain, const char *user, NT_USER_TOKEN *token)
4262 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
4263 enum wbcSidType type;
4264 fstring full_name;
4265 struct wbcDomainSid wsid;
4266 char *sid_str = NULL;
4267 DOM_SID user_sid;
4268 uint32_t num_groups;
4269 gid_t *groups = NULL;
4270 uint32_t i;
4272 fstr_sprintf(full_name, "%s%c%s",
4273 domain, *lp_winbind_separator(), user);
4275 /* First let's find out the user sid */
4277 wbc_status = wbcLookupName(domain, user, &wsid, &type);
4279 if (!WBC_ERROR_IS_OK(wbc_status)) {
4280 DEBUG(1, ("winbind could not find %s: %s\n",
4281 full_name, wbcErrorString(wbc_status)));
4282 return false;
4285 wbc_status = wbcSidToString(&wsid, &sid_str);
4286 if (!WBC_ERROR_IS_OK(wbc_status)) {
4287 return false;
4290 if (type != SID_NAME_USER) {
4291 wbcFreeMemory(sid_str);
4292 DEBUG(1, ("%s is not a user\n", full_name));
4293 return false;
4296 string_to_sid(&user_sid, sid_str);
4297 wbcFreeMemory(sid_str);
4298 sid_str = NULL;
4300 init_user_token(token, &user_sid);
4302 /* And now the groups winbind knows about */
4304 wbc_status = wbcGetGroups(full_name, &num_groups, &groups);
4305 if (!WBC_ERROR_IS_OK(wbc_status)) {
4306 DEBUG(1, ("winbind could not get groups of %s: %s\n",
4307 full_name, wbcErrorString(wbc_status)));
4308 return false;
4311 for (i = 0; i < num_groups; i++) {
4312 gid_t gid = groups[i];
4313 DOM_SID sid;
4315 wbc_status = wbcGidToSid(gid, &wsid);
4316 if (!WBC_ERROR_IS_OK(wbc_status)) {
4317 DEBUG(1, ("winbind could not find SID of gid %d: %s\n",
4318 gid, wbcErrorString(wbc_status)));
4319 wbcFreeMemory(groups);
4320 return false;
4323 wbc_status = wbcSidToString(&wsid, &sid_str);
4324 if (!WBC_ERROR_IS_OK(wbc_status)) {
4325 wbcFreeMemory(groups);
4326 return false;
4329 DEBUG(3, (" %s\n", sid_str));
4331 string_to_sid(&sid, sid_str);
4332 wbcFreeMemory(sid_str);
4333 sid_str = NULL;
4335 add_sid_to_token(token, &sid);
4337 wbcFreeMemory(groups);
4339 return true;
4343 * Get a list of all user tokens we want to look at
4346 static bool get_user_tokens(int *num_tokens, struct user_token **user_tokens)
4348 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
4349 uint32_t i, num_users;
4350 const char **users;
4351 struct user_token *result;
4352 TALLOC_CTX *frame = NULL;
4354 if (lp_winbind_use_default_domain() &&
4355 (opt_target_workgroup == NULL)) {
4356 d_fprintf(stderr, "winbind use default domain = yes set, "
4357 "please specify a workgroup\n");
4358 return false;
4361 /* Send request to winbind daemon */
4363 wbc_status = wbcListUsers(NULL, &num_users, &users);
4364 if (!WBC_ERROR_IS_OK(wbc_status)) {
4365 DEBUG(1, ("winbind could not list users: %s\n",
4366 wbcErrorString(wbc_status)));
4367 return false;
4370 result = SMB_MALLOC_ARRAY(struct user_token, num_users);
4372 if (result == NULL) {
4373 DEBUG(1, ("Could not malloc sid array\n"));
4374 wbcFreeMemory(users);
4375 return false;
4378 frame = talloc_stackframe();
4379 for (i=0; i < num_users; i++) {
4380 fstring domain, user;
4381 char *p;
4383 fstrcpy(result[i].name, users[i]);
4385 p = strchr(users[i], *lp_winbind_separator());
4387 DEBUG(3, ("%s\n", users[i]));
4389 if (p == NULL) {
4390 fstrcpy(domain, opt_target_workgroup);
4391 fstrcpy(user, users[i]);
4392 } else {
4393 *p++ = '\0';
4394 fstrcpy(domain, users[i]);
4395 strupper_m(domain);
4396 fstrcpy(user, p);
4399 get_user_sids(domain, user, &(result[i].token));
4400 i+=1;
4402 TALLOC_FREE(frame);
4403 wbcFreeMemory(users);
4405 *num_tokens = num_users;
4406 *user_tokens = result;
4408 return true;
4411 static bool get_user_tokens_from_file(FILE *f,
4412 int *num_tokens,
4413 struct user_token **tokens)
4415 struct user_token *token = NULL;
4417 while (!feof(f)) {
4418 fstring line;
4420 if (fgets(line, sizeof(line)-1, f) == NULL) {
4421 return True;
4424 if (line[strlen(line)-1] == '\n')
4425 line[strlen(line)-1] = '\0';
4427 if (line[0] == ' ') {
4428 /* We have a SID */
4430 DOM_SID sid;
4431 string_to_sid(&sid, &line[1]);
4433 if (token == NULL) {
4434 DEBUG(0, ("File does not begin with username"));
4435 return False;
4438 add_sid_to_token(&token->token, &sid);
4439 continue;
4442 /* And a new user... */
4444 *num_tokens += 1;
4445 *tokens = SMB_REALLOC_ARRAY(*tokens, struct user_token, *num_tokens);
4446 if (*tokens == NULL) {
4447 DEBUG(0, ("Could not realloc tokens\n"));
4448 return False;
4451 token = &((*tokens)[*num_tokens-1]);
4453 fstrcpy(token->name, line);
4454 token->token.num_sids = 0;
4455 token->token.user_sids = NULL;
4456 continue;
4459 return False;
4464 * Show the list of all users that have access to a share
4467 static void show_userlist(struct rpc_pipe_client *pipe_hnd,
4468 TALLOC_CTX *mem_ctx,
4469 const char *netname,
4470 int num_tokens,
4471 struct user_token *tokens)
4473 int fnum;
4474 SEC_DESC *share_sd = NULL;
4475 SEC_DESC *root_sd = NULL;
4476 struct cli_state *cli = pipe_hnd->cli;
4477 int i;
4478 union srvsvc_NetShareInfo info;
4479 WERROR result;
4480 NTSTATUS status;
4481 uint16 cnum;
4483 status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
4484 pipe_hnd->cli->desthost,
4485 netname,
4486 502,
4487 &info,
4488 &result);
4490 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
4491 DEBUG(1, ("Coult not query secdesc for share %s\n",
4492 netname));
4493 return;
4496 share_sd = info.info502->sd_buf.sd;
4497 if (share_sd == NULL) {
4498 DEBUG(1, ("Got no secdesc for share %s\n",
4499 netname));
4502 cnum = cli->cnum;
4504 if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
4505 return;
4508 fnum = cli_nt_create(cli, "\\", READ_CONTROL_ACCESS);
4510 if (fnum != -1) {
4511 root_sd = cli_query_secdesc(cli, fnum, mem_ctx);
4514 for (i=0; i<num_tokens; i++) {
4515 uint32 acc_granted;
4517 if (share_sd != NULL) {
4518 if (!se_access_check(share_sd, &tokens[i].token,
4519 1, &acc_granted, &status)) {
4520 DEBUG(1, ("Could not check share_sd for "
4521 "user %s\n",
4522 tokens[i].name));
4523 continue;
4526 if (!NT_STATUS_IS_OK(status))
4527 continue;
4530 if (root_sd == NULL) {
4531 d_printf(" %s\n", tokens[i].name);
4532 continue;
4535 if (!se_access_check(root_sd, &tokens[i].token,
4536 1, &acc_granted, &status)) {
4537 DEBUG(1, ("Could not check root_sd for user %s\n",
4538 tokens[i].name));
4539 continue;
4542 if (!NT_STATUS_IS_OK(status))
4543 continue;
4545 d_printf(" %s\n", tokens[i].name);
4548 if (fnum != -1)
4549 cli_close(cli, fnum);
4550 cli_tdis(cli);
4551 cli->cnum = cnum;
4553 return;
4556 struct share_list {
4557 int num_shares;
4558 char **shares;
4561 static void collect_share(const char *name, uint32 m,
4562 const char *comment, void *state)
4564 struct share_list *share_list = (struct share_list *)state;
4566 if (m != STYPE_DISKTREE)
4567 return;
4569 share_list->num_shares += 1;
4570 share_list->shares = SMB_REALLOC_ARRAY(share_list->shares, char *, share_list->num_shares);
4571 if (!share_list->shares) {
4572 share_list->num_shares = 0;
4573 return;
4575 share_list->shares[share_list->num_shares-1] = SMB_STRDUP(name);
4578 static void rpc_share_userlist_usage(void)
4580 return;
4583 /**
4584 * List shares on a remote RPC server, including the security descriptors.
4586 * All parameters are provided by the run_rpc_command function, except for
4587 * argc, argv which are passed through.
4589 * @param domain_sid The domain sid acquired from the remote server.
4590 * @param cli A cli_state connected to the server.
4591 * @param mem_ctx Talloc context, destroyed on completion of the function.
4592 * @param argc Standard main() style argc.
4593 * @param argv Standard main() style argv. Initial components are already
4594 * stripped.
4596 * @return Normal NTSTATUS return.
4599 static NTSTATUS rpc_share_allowedusers_internals(const DOM_SID *domain_sid,
4600 const char *domain_name,
4601 struct cli_state *cli,
4602 struct rpc_pipe_client *pipe_hnd,
4603 TALLOC_CTX *mem_ctx,
4604 int argc,
4605 const char **argv)
4607 int ret;
4608 bool r;
4609 ENUM_HND hnd;
4610 uint32 i;
4611 FILE *f;
4613 struct user_token *tokens = NULL;
4614 int num_tokens = 0;
4616 struct share_list share_list;
4618 if (argc > 1) {
4619 rpc_share_userlist_usage();
4620 return NT_STATUS_UNSUCCESSFUL;
4623 if (argc == 0) {
4624 f = stdin;
4625 } else {
4626 f = fopen(argv[0], "r");
4629 if (f == NULL) {
4630 DEBUG(0, ("Could not open userlist: %s\n", strerror(errno)));
4631 return NT_STATUS_UNSUCCESSFUL;
4634 r = get_user_tokens_from_file(f, &num_tokens, &tokens);
4636 if (f != stdin)
4637 fclose(f);
4639 if (!r) {
4640 DEBUG(0, ("Could not read users from file\n"));
4641 return NT_STATUS_UNSUCCESSFUL;
4644 for (i=0; i<num_tokens; i++)
4645 collect_alias_memberships(&tokens[i].token);
4647 init_enum_hnd(&hnd, 0);
4649 share_list.num_shares = 0;
4650 share_list.shares = NULL;
4652 ret = cli_RNetShareEnum(cli, collect_share, &share_list);
4654 if (ret == -1) {
4655 DEBUG(0, ("Error returning browse list: %s\n",
4656 cli_errstr(cli)));
4657 goto done;
4660 for (i = 0; i < share_list.num_shares; i++) {
4661 char *netname = share_list.shares[i];
4663 if (netname[strlen(netname)-1] == '$')
4664 continue;
4666 d_printf("%s\n", netname);
4668 show_userlist(pipe_hnd, mem_ctx, netname,
4669 num_tokens, tokens);
4671 done:
4672 for (i=0; i<num_tokens; i++) {
4673 free_user_token(&tokens[i].token);
4675 SAFE_FREE(tokens);
4676 SAFE_FREE(share_list.shares);
4678 return NT_STATUS_OK;
4681 static int rpc_share_allowedusers(int argc, const char **argv)
4683 int result;
4685 result = run_rpc_command(NULL, PI_SAMR, 0,
4686 rpc_aliaslist_internals,
4687 argc, argv);
4688 if (result != 0)
4689 return result;
4691 result = run_rpc_command(NULL, PI_LSARPC, 0,
4692 rpc_aliaslist_dump,
4693 argc, argv);
4694 if (result != 0)
4695 return result;
4697 return run_rpc_command(NULL, PI_SRVSVC, 0,
4698 rpc_share_allowedusers_internals,
4699 argc, argv);
4702 int net_usersidlist(int argc, const char **argv)
4704 int num_tokens = 0;
4705 struct user_token *tokens = NULL;
4706 int i;
4708 if (argc != 0) {
4709 net_usersidlist_usage(argc, argv);
4710 return 0;
4713 if (!get_user_tokens(&num_tokens, &tokens)) {
4714 DEBUG(0, ("Could not get the user/sid list\n"));
4715 return 0;
4718 for (i=0; i<num_tokens; i++) {
4719 dump_user_token(&tokens[i]);
4720 free_user_token(&tokens[i].token);
4723 SAFE_FREE(tokens);
4724 return 1;
4727 int net_usersidlist_usage(int argc, const char **argv)
4729 d_printf("net usersidlist\n"
4730 "\tprints out a list of all users the running winbind knows\n"
4731 "\tabout, together with all their SIDs. This is used as\n"
4732 "\tinput to the 'net rpc share allowedusers' command.\n\n");
4734 net_common_flags_usage(argc, argv);
4735 return -1;
4738 /**
4739 * 'net rpc share' entrypoint.
4740 * @param argc Standard main() style argc.
4741 * @param argv Standard main() style argv. Initial components are already
4742 * stripped.
4745 int net_rpc_share(int argc, const char **argv)
4747 struct functable func[] = {
4748 {"add", rpc_share_add},
4749 {"delete", rpc_share_delete},
4750 {"allowedusers", rpc_share_allowedusers},
4751 {"migrate", rpc_share_migrate},
4752 {"list", rpc_share_list},
4753 {NULL, NULL}
4756 if (argc == 0)
4757 return run_rpc_command(NULL, PI_SRVSVC, 0,
4758 rpc_share_list_internals,
4759 argc, argv);
4761 return net_run_function(argc, argv, func, rpc_share_usage);
4764 static NTSTATUS rpc_sh_share_list(TALLOC_CTX *mem_ctx,
4765 struct rpc_sh_ctx *ctx,
4766 struct rpc_pipe_client *pipe_hnd,
4767 int argc, const char **argv)
4769 return rpc_share_list_internals(ctx->domain_sid, ctx->domain_name,
4770 ctx->cli, pipe_hnd, mem_ctx,
4771 argc, argv);
4774 static NTSTATUS rpc_sh_share_add(TALLOC_CTX *mem_ctx,
4775 struct rpc_sh_ctx *ctx,
4776 struct rpc_pipe_client *pipe_hnd,
4777 int argc, const char **argv)
4779 WERROR result;
4780 NTSTATUS status;
4781 uint32_t parm_err = 0;
4782 union srvsvc_NetShareInfo info;
4783 struct srvsvc_NetShareInfo2 info2;
4785 if ((argc < 2) || (argc > 3)) {
4786 d_fprintf(stderr, "usage: %s <share> <path> [comment]\n",
4787 ctx->whoami);
4788 return NT_STATUS_INVALID_PARAMETER;
4791 info2.name = argv[0];
4792 info2.type = STYPE_DISKTREE;
4793 info2.comment = (argc == 3) ? argv[2] : "";
4794 info2.permissions = 0;
4795 info2.max_users = 0;
4796 info2.current_users = 0;
4797 info2.path = argv[1];
4798 info2.password = NULL;
4800 info.info2 = &info2;
4802 status = rpccli_srvsvc_NetShareAdd(pipe_hnd, mem_ctx,
4803 pipe_hnd->cli->desthost,
4805 &info,
4806 &parm_err,
4807 &result);
4809 return status;
4812 static NTSTATUS rpc_sh_share_delete(TALLOC_CTX *mem_ctx,
4813 struct rpc_sh_ctx *ctx,
4814 struct rpc_pipe_client *pipe_hnd,
4815 int argc, const char **argv)
4817 WERROR result;
4818 NTSTATUS status;
4820 if (argc != 1) {
4821 d_fprintf(stderr, "usage: %s <share>\n", ctx->whoami);
4822 return NT_STATUS_INVALID_PARAMETER;
4825 status = rpccli_srvsvc_NetShareDel(pipe_hnd, mem_ctx,
4826 pipe_hnd->cli->desthost,
4827 argv[0],
4829 &result);
4831 return status;
4834 static NTSTATUS rpc_sh_share_info(TALLOC_CTX *mem_ctx,
4835 struct rpc_sh_ctx *ctx,
4836 struct rpc_pipe_client *pipe_hnd,
4837 int argc, const char **argv)
4839 union srvsvc_NetShareInfo info;
4840 WERROR result;
4841 NTSTATUS status;
4843 if (argc != 1) {
4844 d_fprintf(stderr, "usage: %s <share>\n", ctx->whoami);
4845 return NT_STATUS_INVALID_PARAMETER;
4848 status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
4849 pipe_hnd->cli->desthost,
4850 argv[0],
4852 &info,
4853 &result);
4854 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
4855 goto done;
4858 d_printf("Name: %s\n", info.info2->name);
4859 d_printf("Comment: %s\n", info.info2->comment);
4860 d_printf("Path: %s\n", info.info2->path);
4861 d_printf("Password: %s\n", info.info2->password);
4863 done:
4864 return werror_to_ntstatus(result);
4867 struct rpc_sh_cmd *net_rpc_share_cmds(TALLOC_CTX *mem_ctx,
4868 struct rpc_sh_ctx *ctx)
4870 static struct rpc_sh_cmd cmds[] = {
4872 { "list", NULL, PI_SRVSVC, rpc_sh_share_list,
4873 "List available shares" },
4875 { "add", NULL, PI_SRVSVC, rpc_sh_share_add,
4876 "Add a share" },
4878 { "delete", NULL, PI_SRVSVC, rpc_sh_share_delete,
4879 "Delete a share" },
4881 { "info", NULL, PI_SRVSVC, rpc_sh_share_info,
4882 "Get information about a share" },
4884 { NULL, NULL, 0, NULL, NULL }
4887 return cmds;
4890 /****************************************************************************/
4892 static int rpc_file_usage(int argc, const char **argv)
4894 return net_help_file(argc, argv);
4897 /**
4898 * Close a file on a remote RPC server.
4900 * All parameters are provided by the run_rpc_command function, except for
4901 * argc, argv which are passed through.
4903 * @param domain_sid The domain sid acquired from the remote server.
4904 * @param cli A cli_state connected to the server.
4905 * @param mem_ctx Talloc context, destroyed on completion of the function.
4906 * @param argc Standard main() style argc.
4907 * @param argv Standard main() style argv. Initial components are already
4908 * stripped.
4910 * @return Normal NTSTATUS return.
4912 static NTSTATUS rpc_file_close_internals(const DOM_SID *domain_sid,
4913 const char *domain_name,
4914 struct cli_state *cli,
4915 struct rpc_pipe_client *pipe_hnd,
4916 TALLOC_CTX *mem_ctx,
4917 int argc,
4918 const char **argv)
4920 return rpccli_srvsvc_NetFileClose(pipe_hnd, mem_ctx,
4921 pipe_hnd->cli->desthost,
4922 atoi(argv[0]), NULL);
4925 /**
4926 * Close a file on a remote RPC server.
4928 * @param argc Standard main() style argc.
4929 * @param argv Standard main() style argv. Initial components are already
4930 * stripped.
4932 * @return A shell status integer (0 for success).
4934 static int rpc_file_close(int argc, const char **argv)
4936 if (argc < 1) {
4937 DEBUG(1, ("No fileid given on close\n"));
4938 return(rpc_file_usage(argc, argv));
4941 return run_rpc_command(NULL, PI_SRVSVC, 0,
4942 rpc_file_close_internals,
4943 argc, argv);
4946 /**
4947 * Formatted print of open file info
4949 * @param r struct srvsvc_NetFileInfo3 contents
4952 static void display_file_info_3(struct srvsvc_NetFileInfo3 *r)
4954 d_printf("%-7.1d %-20.20s 0x%-4.2x %-6.1d %s\n",
4955 r->fid, r->user, r->permissions, r->num_locks, r->path);
4958 /**
4959 * List open files on a remote RPC server.
4961 * All parameters are provided by the run_rpc_command function, except for
4962 * argc, argv which are passed through.
4964 * @param domain_sid The domain sid acquired from the remote server.
4965 * @param cli A cli_state connected to the server.
4966 * @param mem_ctx Talloc context, destroyed on completion of the function.
4967 * @param argc Standard main() style argc.
4968 * @param argv Standard main() style argv. Initial components are already
4969 * stripped.
4971 * @return Normal NTSTATUS return.
4974 static NTSTATUS rpc_file_list_internals(const DOM_SID *domain_sid,
4975 const char *domain_name,
4976 struct cli_state *cli,
4977 struct rpc_pipe_client *pipe_hnd,
4978 TALLOC_CTX *mem_ctx,
4979 int argc,
4980 const char **argv)
4982 struct srvsvc_NetFileInfoCtr info_ctr;
4983 struct srvsvc_NetFileCtr3 ctr3;
4984 WERROR result;
4985 NTSTATUS status;
4986 uint32 preferred_len = 0xffffffff, i;
4987 const char *username=NULL;
4988 uint32_t total_entries = 0;
4989 uint32_t resume_handle = 0;
4991 /* if argc > 0, must be user command */
4992 if (argc > 0)
4993 username = smb_xstrdup(argv[0]);
4995 ZERO_STRUCT(info_ctr);
4996 ZERO_STRUCT(ctr3);
4998 info_ctr.level = 3;
4999 info_ctr.ctr.ctr3 = &ctr3;
5001 status = rpccli_srvsvc_NetFileEnum(pipe_hnd, mem_ctx,
5002 pipe_hnd->cli->desthost,
5003 NULL,
5004 username,
5005 &info_ctr,
5006 preferred_len,
5007 &total_entries,
5008 &resume_handle,
5009 &result);
5011 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result))
5012 goto done;
5014 /* Display results */
5016 d_printf(
5017 "\nEnumerating open files on remote server:\n\n"\
5018 "\nFileId Opened by Perms Locks Path"\
5019 "\n------ --------- ----- ----- ---- \n");
5020 for (i = 0; i < total_entries; i++)
5021 display_file_info_3(&info_ctr.ctr.ctr3->array[i]);
5022 done:
5023 return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
5026 /**
5027 * List files for a user on a remote RPC server.
5029 * @param argc Standard main() style argc.
5030 * @param argv Standard main() style argv. Initial components are already
5031 * stripped.
5033 * @return A shell status integer (0 for success).
5036 static int rpc_file_user(int argc, const char **argv)
5038 if (argc < 1) {
5039 DEBUG(1, ("No username given\n"));
5040 return(rpc_file_usage(argc, argv));
5043 return run_rpc_command(NULL, PI_SRVSVC, 0,
5044 rpc_file_list_internals,
5045 argc, argv);
5048 /**
5049 * 'net rpc file' entrypoint.
5050 * @param argc Standard main() style argc.
5051 * @param argv Standard main() style argv. Initial components are already
5052 * stripped.
5055 int net_rpc_file(int argc, const char **argv)
5057 struct functable func[] = {
5058 {"close", rpc_file_close},
5059 {"user", rpc_file_user},
5060 #if 0
5061 {"info", rpc_file_info},
5062 #endif
5063 {NULL, NULL}
5066 if (argc == 0)
5067 return run_rpc_command(NULL, PI_SRVSVC, 0,
5068 rpc_file_list_internals,
5069 argc, argv);
5071 return net_run_function(argc, argv, func, rpc_file_usage);
5074 /**
5075 * ABORT the shutdown of a remote RPC Server, over initshutdown pipe.
5077 * All parameters are provided by the run_rpc_command function, except for
5078 * argc, argv which are passed through.
5080 * @param domain_sid The domain sid acquired from the remote server.
5081 * @param cli A cli_state connected to the server.
5082 * @param mem_ctx Talloc context, destroyed on completion of the function.
5083 * @param argc Standard main() style argc.
5084 * @param argv Standard main() style argv. Initial components are already
5085 * stripped.
5087 * @return Normal NTSTATUS return.
5090 static NTSTATUS rpc_shutdown_abort_internals(const DOM_SID *domain_sid,
5091 const char *domain_name,
5092 struct cli_state *cli,
5093 struct rpc_pipe_client *pipe_hnd,
5094 TALLOC_CTX *mem_ctx,
5095 int argc,
5096 const char **argv)
5098 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5100 result = rpccli_initshutdown_Abort(pipe_hnd, mem_ctx, NULL, NULL);
5102 if (NT_STATUS_IS_OK(result)) {
5103 d_printf("\nShutdown successfully aborted\n");
5104 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
5105 } else
5106 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
5108 return result;
5111 /**
5112 * ABORT the shutdown of a remote RPC Server, over winreg pipe.
5114 * All parameters are provided by the run_rpc_command function, except for
5115 * argc, argv which are passed through.
5117 * @param domain_sid The domain sid acquired from the remote server.
5118 * @param cli A cli_state connected to the server.
5119 * @param mem_ctx Talloc context, destroyed on completion of the function.
5120 * @param argc Standard main() style argc.
5121 * @param argv Standard main() style argv. Initial components are already
5122 * stripped.
5124 * @return Normal NTSTATUS return.
5127 static NTSTATUS rpc_reg_shutdown_abort_internals(const DOM_SID *domain_sid,
5128 const char *domain_name,
5129 struct cli_state *cli,
5130 struct rpc_pipe_client *pipe_hnd,
5131 TALLOC_CTX *mem_ctx,
5132 int argc,
5133 const char **argv)
5135 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5137 result = rpccli_winreg_AbortSystemShutdown(pipe_hnd, mem_ctx, NULL, NULL);
5139 if (NT_STATUS_IS_OK(result)) {
5140 d_printf("\nShutdown successfully aborted\n");
5141 DEBUG(5,("cmd_reg_abort_shutdown: query succeeded\n"));
5142 } else
5143 DEBUG(5,("cmd_reg_abort_shutdown: query failed\n"));
5145 return result;
5148 /**
5149 * ABORT the Shut down of a remote RPC server.
5151 * @param argc Standard main() style argc.
5152 * @param argv Standard main() style argv. Initial components are already
5153 * stripped.
5155 * @return A shell status integer (0 for success).
5158 static int rpc_shutdown_abort(int argc, const char **argv)
5160 int rc = run_rpc_command(NULL, PI_INITSHUTDOWN, 0,
5161 rpc_shutdown_abort_internals,
5162 argc, argv);
5164 if (rc == 0)
5165 return rc;
5167 DEBUG(1, ("initshutdown pipe didn't work, trying winreg pipe\n"));
5169 return run_rpc_command(NULL, PI_WINREG, 0,
5170 rpc_reg_shutdown_abort_internals,
5171 argc, argv);
5174 /**
5175 * Shut down a remote RPC Server via initshutdown pipe.
5177 * All parameters are provided by the run_rpc_command function, except for
5178 * argc, argv which are passed through.
5180 * @param domain_sid The domain sid acquired from the remote server.
5181 * @param cli A cli_state connected to the server.
5182 * @param mem_ctx Talloc context, destroyed on completion of the function.
5183 * @param argc Standard main() style argc.
5184 * @param argv Standard main() style argv. Initial components are already
5185 * stripped.
5187 * @return Normal NTSTATUS return.
5190 NTSTATUS rpc_init_shutdown_internals(const DOM_SID *domain_sid,
5191 const char *domain_name,
5192 struct cli_state *cli,
5193 struct rpc_pipe_client *pipe_hnd,
5194 TALLOC_CTX *mem_ctx,
5195 int argc,
5196 const char **argv)
5198 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5199 const char *msg = "This machine will be shutdown shortly";
5200 uint32 timeout = 20;
5201 struct initshutdown_String msg_string;
5202 struct initshutdown_String_sub s;
5204 if (opt_comment && strlen(opt_comment)) {
5205 msg = opt_comment;
5207 if (opt_timeout) {
5208 timeout = opt_timeout;
5211 s.name = msg;
5212 msg_string.name = &s;
5214 /* create an entry */
5215 result = rpccli_initshutdown_Init(pipe_hnd, mem_ctx, NULL,
5216 &msg_string, timeout, opt_force, opt_reboot, NULL);
5218 if (NT_STATUS_IS_OK(result)) {
5219 d_printf("\nShutdown of remote machine succeeded\n");
5220 DEBUG(5,("Shutdown of remote machine succeeded\n"));
5221 } else {
5222 DEBUG(1,("Shutdown of remote machine failed!\n"));
5224 return result;
5227 /**
5228 * Shut down a remote RPC Server via winreg pipe.
5230 * All parameters are provided by the run_rpc_command function, except for
5231 * argc, argv which are passed through.
5233 * @param domain_sid The domain sid acquired from the remote server.
5234 * @param cli A cli_state connected to the server.
5235 * @param mem_ctx Talloc context, destroyed on completion of the function.
5236 * @param argc Standard main() style argc.
5237 * @param argv Standard main() style argv. Initial components are already
5238 * stripped.
5240 * @return Normal NTSTATUS return.
5243 NTSTATUS rpc_reg_shutdown_internals(const DOM_SID *domain_sid,
5244 const char *domain_name,
5245 struct cli_state *cli,
5246 struct rpc_pipe_client *pipe_hnd,
5247 TALLOC_CTX *mem_ctx,
5248 int argc,
5249 const char **argv)
5251 const char *msg = "This machine will be shutdown shortly";
5252 uint32 timeout = 20;
5253 struct initshutdown_String msg_string;
5254 struct initshutdown_String_sub s;
5255 NTSTATUS result;
5256 WERROR werr;
5258 if (opt_comment && strlen(opt_comment)) {
5259 msg = opt_comment;
5261 s.name = msg;
5262 msg_string.name = &s;
5264 if (opt_timeout) {
5265 timeout = opt_timeout;
5268 /* create an entry */
5269 result = rpccli_winreg_InitiateSystemShutdown(pipe_hnd, mem_ctx, NULL,
5270 &msg_string, timeout, opt_force, opt_reboot, &werr);
5272 if (NT_STATUS_IS_OK(result)) {
5273 d_printf("\nShutdown of remote machine succeeded\n");
5274 } else {
5275 d_fprintf(stderr, "\nShutdown of remote machine failed\n");
5276 if ( W_ERROR_EQUAL(werr, WERR_MACHINE_LOCKED) )
5277 d_fprintf(stderr, "\nMachine locked, use -f switch to force\n");
5278 else
5279 d_fprintf(stderr, "\nresult was: %s\n", dos_errstr(werr));
5282 return result;
5285 /**
5286 * Shut down a remote RPC server.
5288 * @param argc Standard main() style argc.
5289 * @param argv Standard main() style argv. Initial components are already
5290 * stripped.
5292 * @return A shell status integer (0 for success).
5295 static int rpc_shutdown(int argc, const char **argv)
5297 int rc = run_rpc_command(NULL, PI_INITSHUTDOWN, 0,
5298 rpc_init_shutdown_internals,
5299 argc, argv);
5301 if (rc) {
5302 DEBUG(1, ("initshutdown pipe failed, trying winreg pipe\n"));
5303 rc = run_rpc_command(NULL, PI_WINREG, 0,
5304 rpc_reg_shutdown_internals, argc, argv);
5307 return rc;
5310 /***************************************************************************
5311 NT Domain trusts code (i.e. 'net rpc trustdom' functionality)
5313 ***************************************************************************/
5316 * Add interdomain trust account to the RPC server.
5317 * All parameters (except for argc and argv) are passed by run_rpc_command
5318 * function.
5320 * @param domain_sid The domain sid acquired from the server.
5321 * @param cli A cli_state connected to the server.
5322 * @param mem_ctx Talloc context, destroyed on completion of the function.
5323 * @param argc Standard main() style argc.
5324 * @param argv Standard main() style argv. Initial components are already
5325 * stripped.
5327 * @return normal NTSTATUS return code.
5330 static NTSTATUS rpc_trustdom_add_internals(const DOM_SID *domain_sid,
5331 const char *domain_name,
5332 struct cli_state *cli,
5333 struct rpc_pipe_client *pipe_hnd,
5334 TALLOC_CTX *mem_ctx,
5335 int argc,
5336 const char **argv)
5338 POLICY_HND connect_pol, domain_pol, user_pol;
5339 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5340 char *acct_name;
5341 struct lsa_String lsa_acct_name;
5342 uint32 acb_info;
5343 uint32 acct_flags=0;
5344 uint32 user_rid;
5345 uint32_t access_granted = 0;
5346 union samr_UserInfo info;
5347 unsigned int orig_timeout;
5349 if (argc != 2) {
5350 d_printf("Usage: net rpc trustdom add <domain_name> <trust password>\n");
5351 return NT_STATUS_INVALID_PARAMETER;
5355 * Make valid trusting domain account (ie. uppercased and with '$' appended)
5358 if (asprintf(&acct_name, "%s$", argv[0]) < 0) {
5359 return NT_STATUS_NO_MEMORY;
5362 strupper_m(acct_name);
5364 init_lsa_String(&lsa_acct_name, acct_name);
5366 /* Get samr policy handle */
5367 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
5368 pipe_hnd->cli->desthost,
5369 MAXIMUM_ALLOWED_ACCESS,
5370 &connect_pol);
5371 if (!NT_STATUS_IS_OK(result)) {
5372 goto done;
5375 /* Get domain policy handle */
5376 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
5377 &connect_pol,
5378 MAXIMUM_ALLOWED_ACCESS,
5379 CONST_DISCARD(struct dom_sid2 *, domain_sid),
5380 &domain_pol);
5381 if (!NT_STATUS_IS_OK(result)) {
5382 goto done;
5385 /* This call can take a long time - allow the server to time out.
5386 * 35 seconds should do it. */
5388 orig_timeout = cli_set_timeout(pipe_hnd->cli, 35000);
5390 /* Create trusting domain's account */
5391 acb_info = ACB_NORMAL;
5392 acct_flags = SEC_GENERIC_READ | SEC_GENERIC_WRITE | SEC_GENERIC_EXECUTE |
5393 SEC_STD_WRITE_DAC | SEC_STD_DELETE |
5394 SAMR_USER_ACCESS_SET_PASSWORD |
5395 SAMR_USER_ACCESS_GET_ATTRIBUTES |
5396 SAMR_USER_ACCESS_SET_ATTRIBUTES;
5398 result = rpccli_samr_CreateUser2(pipe_hnd, mem_ctx,
5399 &domain_pol,
5400 &lsa_acct_name,
5401 acb_info,
5402 acct_flags,
5403 &user_pol,
5404 &access_granted,
5405 &user_rid);
5407 /* And restore our original timeout. */
5408 cli_set_timeout(pipe_hnd->cli, orig_timeout);
5410 if (!NT_STATUS_IS_OK(result)) {
5411 d_printf("net rpc trustdom add: create user %s failed %s\n",
5412 acct_name, nt_errstr(result));
5413 goto done;
5417 NTTIME notime;
5418 struct samr_LogonHours hours;
5419 struct lsa_BinaryString parameters;
5420 const int units_per_week = 168;
5421 struct samr_CryptPassword crypt_pwd;
5423 ZERO_STRUCT(notime);
5424 ZERO_STRUCT(hours);
5425 ZERO_STRUCT(parameters);
5427 hours.bits = talloc_array(mem_ctx, uint8_t, units_per_week);
5428 if (!hours.bits) {
5429 result = NT_STATUS_NO_MEMORY;
5430 goto done;
5432 hours.units_per_week = units_per_week;
5433 memset(hours.bits, 0xFF, units_per_week);
5435 init_samr_CryptPassword(argv[1],
5436 &cli->user_session_key,
5437 &crypt_pwd);
5439 init_samr_user_info23(&info.info23,
5440 notime, notime, notime,
5441 notime, notime, notime,
5442 NULL, NULL, NULL, NULL, NULL,
5443 NULL, NULL, NULL, NULL, &parameters,
5444 0, 0, ACB_DOMTRUST,
5445 SAMR_FIELD_ACCT_FLAGS | SAMR_FIELD_PASSWORD,
5446 hours,
5447 0, 0, 0, 0, 0, 0, 0,
5448 &crypt_pwd);
5450 result = rpccli_samr_SetUserInfo2(pipe_hnd, mem_ctx,
5451 &user_pol,
5453 &info);
5455 if (!NT_STATUS_IS_OK(result)) {
5456 DEBUG(0,("Could not set trust account password: %s\n",
5457 nt_errstr(result)));
5458 goto done;
5462 done:
5463 SAFE_FREE(acct_name);
5464 return result;
5468 * Create interdomain trust account for a remote domain.
5470 * @param argc Standard argc.
5471 * @param argv Standard argv without initial components.
5473 * @return Integer status (0 means success)
5476 static int rpc_trustdom_add(int argc, const char **argv)
5478 if (argc > 0) {
5479 return run_rpc_command(NULL, PI_SAMR, 0, rpc_trustdom_add_internals,
5480 argc, argv);
5481 } else {
5482 d_printf("Usage: net rpc trustdom add <domain_name> <trust password>\n");
5483 return -1;
5489 * Remove interdomain trust account from the RPC server.
5490 * All parameters (except for argc and argv) are passed by run_rpc_command
5491 * function.
5493 * @param domain_sid The domain sid acquired from the server.
5494 * @param cli A cli_state connected to the server.
5495 * @param mem_ctx Talloc context, destroyed on completion of the function.
5496 * @param argc Standard main() style argc.
5497 * @param argv Standard main() style argv. Initial components are already
5498 * stripped.
5500 * @return normal NTSTATUS return code.
5503 static NTSTATUS rpc_trustdom_del_internals(const DOM_SID *domain_sid,
5504 const char *domain_name,
5505 struct cli_state *cli,
5506 struct rpc_pipe_client *pipe_hnd,
5507 TALLOC_CTX *mem_ctx,
5508 int argc,
5509 const char **argv)
5511 POLICY_HND connect_pol, domain_pol, user_pol;
5512 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
5513 char *acct_name;
5514 DOM_SID trust_acct_sid;
5515 struct samr_Ids user_rids, name_types;
5516 struct lsa_String lsa_acct_name;
5518 if (argc != 1) {
5519 d_printf("Usage: net rpc trustdom del <domain_name>\n");
5520 return NT_STATUS_INVALID_PARAMETER;
5524 * Make valid trusting domain account (ie. uppercased and with '$' appended)
5526 acct_name = talloc_asprintf(mem_ctx, "%s$", argv[0]);
5528 if (acct_name == NULL)
5529 return NT_STATUS_NO_MEMORY;
5531 strupper_m(acct_name);
5533 /* Get samr policy handle */
5534 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
5535 pipe_hnd->cli->desthost,
5536 MAXIMUM_ALLOWED_ACCESS,
5537 &connect_pol);
5538 if (!NT_STATUS_IS_OK(result)) {
5539 goto done;
5542 /* Get domain policy handle */
5543 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
5544 &connect_pol,
5545 MAXIMUM_ALLOWED_ACCESS,
5546 CONST_DISCARD(struct dom_sid2 *, domain_sid),
5547 &domain_pol);
5548 if (!NT_STATUS_IS_OK(result)) {
5549 goto done;
5552 init_lsa_String(&lsa_acct_name, acct_name);
5554 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
5555 &domain_pol,
5557 &lsa_acct_name,
5558 &user_rids,
5559 &name_types);
5561 if (!NT_STATUS_IS_OK(result)) {
5562 d_printf("net rpc trustdom del: LookupNames on user %s failed %s\n",
5563 acct_name, nt_errstr(result) );
5564 goto done;
5567 result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
5568 &domain_pol,
5569 MAXIMUM_ALLOWED_ACCESS,
5570 user_rids.ids[0],
5571 &user_pol);
5573 if (!NT_STATUS_IS_OK(result)) {
5574 d_printf("net rpc trustdom del: OpenUser on user %s failed %s\n",
5575 acct_name, nt_errstr(result) );
5576 goto done;
5579 /* append the rid to the domain sid */
5580 sid_copy(&trust_acct_sid, domain_sid);
5581 if (!sid_append_rid(&trust_acct_sid, user_rids.ids[0])) {
5582 goto done;
5585 /* remove the sid */
5587 result = rpccli_samr_RemoveMemberFromForeignDomain(pipe_hnd, mem_ctx,
5588 &user_pol,
5589 &trust_acct_sid);
5590 if (!NT_STATUS_IS_OK(result)) {
5591 d_printf("net rpc trustdom del: RemoveMemberFromForeignDomain on user %s failed %s\n",
5592 acct_name, nt_errstr(result) );
5593 goto done;
5596 /* Delete user */
5598 result = rpccli_samr_DeleteUser(pipe_hnd, mem_ctx,
5599 &user_pol);
5601 if (!NT_STATUS_IS_OK(result)) {
5602 d_printf("net rpc trustdom del: DeleteUser on user %s failed %s\n",
5603 acct_name, nt_errstr(result) );
5604 goto done;
5607 if (!NT_STATUS_IS_OK(result)) {
5608 d_printf("Could not set trust account password: %s\n",
5609 nt_errstr(result));
5610 goto done;
5613 done:
5614 return result;
5618 * Delete interdomain trust account for a remote domain.
5620 * @param argc Standard argc.
5621 * @param argv Standard argv without initial components.
5623 * @return Integer status (0 means success).
5626 static int rpc_trustdom_del(int argc, const char **argv)
5628 if (argc > 0) {
5629 return run_rpc_command(NULL, PI_SAMR, 0, rpc_trustdom_del_internals,
5630 argc, argv);
5631 } else {
5632 d_printf("Usage: net rpc trustdom del <domain>\n");
5633 return -1;
5637 static NTSTATUS rpc_trustdom_get_pdc(struct cli_state *cli,
5638 TALLOC_CTX *mem_ctx,
5639 const char *domain_name)
5641 char *dc_name = NULL;
5642 const char *buffer = NULL;
5643 struct rpc_pipe_client *netr;
5644 NTSTATUS status;
5646 /* Use NetServerEnum2 */
5648 if (cli_get_pdc_name(cli, domain_name, &dc_name)) {
5649 SAFE_FREE(dc_name);
5650 return NT_STATUS_OK;
5653 DEBUG(1,("NetServerEnum2 error: Couldn't find primary domain controller\
5654 for domain %s\n", domain_name));
5656 /* Try netr_GetDcName */
5658 netr = cli_rpc_pipe_open_noauth(cli, PI_NETLOGON, &status);
5659 if (!netr) {
5660 return status;
5663 status = rpccli_netr_GetDcName(netr, mem_ctx,
5664 cli->desthost,
5665 domain_name,
5666 &buffer,
5667 NULL);
5668 cli_rpc_pipe_close(netr);
5670 if (NT_STATUS_IS_OK(status)) {
5671 return status;
5674 DEBUG(1,("netr_GetDcName error: Couldn't find primary domain controller\
5675 for domain %s\n", domain_name));
5677 return status;
5681 * Establish trust relationship to a trusting domain.
5682 * Interdomain account must already be created on remote PDC.
5684 * @param argc Standard argc.
5685 * @param argv Standard argv without initial components.
5687 * @return Integer status (0 means success).
5690 static int rpc_trustdom_establish(int argc, const char **argv)
5692 struct cli_state *cli = NULL;
5693 struct sockaddr_storage server_ss;
5694 struct rpc_pipe_client *pipe_hnd = NULL;
5695 POLICY_HND connect_hnd;
5696 TALLOC_CTX *mem_ctx;
5697 NTSTATUS nt_status;
5698 DOM_SID *domain_sid;
5700 char* domain_name;
5701 char* acct_name;
5702 fstring pdc_name;
5703 union lsa_PolicyInformation *info = NULL;
5706 * Connect to \\server\ipc$ as 'our domain' account with password
5709 if (argc != 1) {
5710 d_printf("Usage: net rpc trustdom establish <domain_name>\n");
5711 return -1;
5714 domain_name = smb_xstrdup(argv[0]);
5715 strupper_m(domain_name);
5717 /* account name used at first is our domain's name with '$' */
5718 asprintf(&acct_name, "%s$", lp_workgroup());
5719 strupper_m(acct_name);
5722 * opt_workgroup will be used by connection functions further,
5723 * hence it should be set to remote domain name instead of ours
5725 if (opt_workgroup) {
5726 opt_workgroup = smb_xstrdup(domain_name);
5729 opt_user_name = acct_name;
5731 /* find the domain controller */
5732 if (!net_find_pdc(&server_ss, pdc_name, domain_name)) {
5733 DEBUG(0, ("Couldn't find domain controller for domain %s\n", domain_name));
5734 return -1;
5737 /* connect to ipc$ as username/password */
5738 nt_status = connect_to_ipc(&cli, &server_ss, pdc_name);
5739 if (!NT_STATUS_EQUAL(nt_status, NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT)) {
5741 /* Is it trusting domain account for sure ? */
5742 DEBUG(0, ("Couldn't verify trusting domain account. Error was %s\n",
5743 nt_errstr(nt_status)));
5744 return -1;
5747 /* store who we connected to */
5749 saf_store( domain_name, pdc_name );
5752 * Connect to \\server\ipc$ again (this time anonymously)
5755 nt_status = connect_to_ipc_anonymous(&cli, &server_ss, (char*)pdc_name);
5757 if (NT_STATUS_IS_ERR(nt_status)) {
5758 DEBUG(0, ("Couldn't connect to domain %s controller. Error was %s.\n",
5759 domain_name, nt_errstr(nt_status)));
5760 return -1;
5763 if (!(mem_ctx = talloc_init("establishing trust relationship to "
5764 "domain %s", domain_name))) {
5765 DEBUG(0, ("talloc_init() failed\n"));
5766 cli_shutdown(cli);
5767 return -1;
5770 /* Make sure we're talking to a proper server */
5772 nt_status = rpc_trustdom_get_pdc(cli, mem_ctx, domain_name);
5773 if (!NT_STATUS_IS_OK(nt_status)) {
5774 cli_shutdown(cli);
5775 talloc_destroy(mem_ctx);
5776 return -1;
5780 * Call LsaOpenPolicy and LsaQueryInfo
5783 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_LSARPC, &nt_status);
5784 if (!pipe_hnd) {
5785 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n", nt_errstr(nt_status) ));
5786 cli_shutdown(cli);
5787 talloc_destroy(mem_ctx);
5788 return -1;
5791 nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, True, SEC_RIGHTS_QUERY_VALUE,
5792 &connect_hnd);
5793 if (NT_STATUS_IS_ERR(nt_status)) {
5794 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
5795 nt_errstr(nt_status)));
5796 cli_shutdown(cli);
5797 talloc_destroy(mem_ctx);
5798 return -1;
5801 /* Querying info level 5 */
5803 nt_status = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
5804 &connect_hnd,
5805 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
5806 &info);
5807 if (NT_STATUS_IS_ERR(nt_status)) {
5808 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
5809 nt_errstr(nt_status)));
5810 cli_shutdown(cli);
5811 talloc_destroy(mem_ctx);
5812 return -1;
5815 domain_sid = info->account_domain.sid;
5817 /* There should be actually query info level 3 (following nt serv behaviour),
5818 but I still don't know if it's _really_ necessary */
5821 * Store the password in secrets db
5824 if (!pdb_set_trusteddom_pw(domain_name, opt_password, domain_sid)) {
5825 DEBUG(0, ("Storing password for trusted domain failed.\n"));
5826 cli_shutdown(cli);
5827 talloc_destroy(mem_ctx);
5828 return -1;
5832 * Close the pipes and clean up
5835 nt_status = rpccli_lsa_Close(pipe_hnd, mem_ctx, &connect_hnd);
5836 if (NT_STATUS_IS_ERR(nt_status)) {
5837 DEBUG(0, ("Couldn't close LSA pipe. Error was %s\n",
5838 nt_errstr(nt_status)));
5839 cli_shutdown(cli);
5840 talloc_destroy(mem_ctx);
5841 return -1;
5844 cli_shutdown(cli);
5846 talloc_destroy(mem_ctx);
5848 d_printf("Trust to domain %s established\n", domain_name);
5849 return 0;
5853 * Revoke trust relationship to the remote domain.
5855 * @param argc Standard argc.
5856 * @param argv Standard argv without initial components.
5858 * @return Integer status (0 means success).
5861 static int rpc_trustdom_revoke(int argc, const char **argv)
5863 char* domain_name;
5864 int rc = -1;
5866 if (argc < 1) return -1;
5868 /* generate upper cased domain name */
5869 domain_name = smb_xstrdup(argv[0]);
5870 strupper_m(domain_name);
5872 /* delete password of the trust */
5873 if (!pdb_del_trusteddom_pw(domain_name)) {
5874 DEBUG(0, ("Failed to revoke relationship to the trusted domain %s\n",
5875 domain_name));
5876 goto done;
5879 rc = 0;
5880 done:
5881 SAFE_FREE(domain_name);
5882 return rc;
5886 * Usage for 'net rpc trustdom' command
5888 * @param argc standard argc
5889 * @param argv standard argv without inital components
5891 * @return Integer status returned to shell
5894 static int rpc_trustdom_usage(int argc, const char **argv)
5896 d_printf(" net rpc trustdom add \t\t add trusting domain's account\n");
5897 d_printf(" net rpc trustdom del \t\t delete trusting domain's account\n");
5898 d_printf(" net rpc trustdom establish \t establish relationship to trusted domain\n");
5899 d_printf(" net rpc trustdom revoke \t abandon relationship to trusted domain\n");
5900 d_printf(" net rpc trustdom list \t show current interdomain trust relationships\n");
5901 d_printf(" net rpc trustdom vampire \t vampire interdomain trust relationships from remote server\n");
5902 return -1;
5906 static NTSTATUS rpc_query_domain_sid(const DOM_SID *domain_sid,
5907 const char *domain_name,
5908 struct cli_state *cli,
5909 struct rpc_pipe_client *pipe_hnd,
5910 TALLOC_CTX *mem_ctx,
5911 int argc,
5912 const char **argv)
5914 fstring str_sid;
5915 sid_to_fstring(str_sid, domain_sid);
5916 d_printf("%s\n", str_sid);
5917 return NT_STATUS_OK;
5920 static void print_trusted_domain(DOM_SID *dom_sid, const char *trusted_dom_name)
5922 fstring ascii_sid, padding;
5923 int pad_len, col_len = 20;
5925 /* convert sid into ascii string */
5926 sid_to_fstring(ascii_sid, dom_sid);
5928 /* calculate padding space for d_printf to look nicer */
5929 pad_len = col_len - strlen(trusted_dom_name);
5930 padding[pad_len] = 0;
5931 do padding[--pad_len] = ' '; while (pad_len);
5933 d_printf("%s%s%s\n", trusted_dom_name, padding, ascii_sid);
5936 static NTSTATUS vampire_trusted_domain(struct rpc_pipe_client *pipe_hnd,
5937 TALLOC_CTX *mem_ctx,
5938 POLICY_HND *pol,
5939 DOM_SID dom_sid,
5940 const char *trusted_dom_name)
5942 NTSTATUS nt_status;
5943 union lsa_TrustedDomainInfo *info = NULL;
5944 char *cleartextpwd = NULL;
5945 DATA_BLOB data;
5947 nt_status = rpccli_lsa_QueryTrustedDomainInfoBySid(pipe_hnd, mem_ctx,
5948 pol,
5949 &dom_sid,
5950 LSA_TRUSTED_DOMAIN_INFO_PASSWORD,
5951 &info);
5952 if (NT_STATUS_IS_ERR(nt_status)) {
5953 DEBUG(0,("Could not query trusted domain info. Error was %s\n",
5954 nt_errstr(nt_status)));
5955 goto done;
5958 data = data_blob(info->password.password->data,
5959 info->password.password->length);
5961 cleartextpwd = decrypt_trustdom_secret(pipe_hnd->cli->pwd.password,
5962 &data);
5964 if (cleartextpwd == NULL) {
5965 DEBUG(0,("retrieved NULL password\n"));
5966 nt_status = NT_STATUS_UNSUCCESSFUL;
5967 goto done;
5970 if (!pdb_set_trusteddom_pw(trusted_dom_name, cleartextpwd, &dom_sid)) {
5971 DEBUG(0, ("Storing password for trusted domain failed.\n"));
5972 nt_status = NT_STATUS_UNSUCCESSFUL;
5973 goto done;
5976 #ifdef DEBUG_PASSWORD
5977 DEBUG(100,("successfully vampired trusted domain [%s], sid: [%s], "
5978 "password: [%s]\n", trusted_dom_name,
5979 sid_string_dbg(&dom_sid), cleartextpwd));
5980 #endif
5982 done:
5983 SAFE_FREE(cleartextpwd);
5984 data_blob_free(&data);
5986 return nt_status;
5989 static int rpc_trustdom_vampire(int argc, const char **argv)
5991 /* common variables */
5992 TALLOC_CTX* mem_ctx;
5993 struct cli_state *cli = NULL;
5994 struct rpc_pipe_client *pipe_hnd = NULL;
5995 NTSTATUS nt_status;
5996 const char *domain_name = NULL;
5997 DOM_SID *queried_dom_sid;
5998 POLICY_HND connect_hnd;
5999 union lsa_PolicyInformation *info = NULL;
6001 /* trusted domains listing variables */
6002 unsigned int enum_ctx = 0;
6003 int i;
6004 struct lsa_DomainList dom_list;
6005 fstring pdc_name;
6008 * Listing trusted domains (stored in secrets.tdb, if local)
6011 mem_ctx = talloc_init("trust relationships vampire");
6014 * set domain and pdc name to local samba server (default)
6015 * or to remote one given in command line
6018 if (StrCaseCmp(opt_workgroup, lp_workgroup())) {
6019 domain_name = opt_workgroup;
6020 opt_target_workgroup = opt_workgroup;
6021 } else {
6022 fstrcpy(pdc_name, global_myname());
6023 domain_name = talloc_strdup(mem_ctx, lp_workgroup());
6024 opt_target_workgroup = domain_name;
6027 /* open \PIPE\lsarpc and open policy handle */
6028 nt_status = net_make_ipc_connection(NET_FLAGS_PDC, &cli);
6029 if (!NT_STATUS_IS_OK(nt_status)) {
6030 DEBUG(0, ("Couldn't connect to domain controller: %s\n",
6031 nt_errstr(nt_status)));
6032 talloc_destroy(mem_ctx);
6033 return -1;
6036 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_LSARPC, &nt_status);
6037 if (!pipe_hnd) {
6038 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n",
6039 nt_errstr(nt_status) ));
6040 cli_shutdown(cli);
6041 talloc_destroy(mem_ctx);
6042 return -1;
6045 nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, False, SEC_RIGHTS_QUERY_VALUE,
6046 &connect_hnd);
6047 if (NT_STATUS_IS_ERR(nt_status)) {
6048 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
6049 nt_errstr(nt_status)));
6050 cli_shutdown(cli);
6051 talloc_destroy(mem_ctx);
6052 return -1;
6055 /* query info level 5 to obtain sid of a domain being queried */
6056 nt_status = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
6057 &connect_hnd,
6058 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
6059 &info);
6061 if (NT_STATUS_IS_ERR(nt_status)) {
6062 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6063 nt_errstr(nt_status)));
6064 cli_shutdown(cli);
6065 talloc_destroy(mem_ctx);
6066 return -1;
6069 queried_dom_sid = info->account_domain.sid;
6072 * Keep calling LsaEnumTrustdom over opened pipe until
6073 * the end of enumeration is reached
6076 d_printf("Vampire trusted domains:\n\n");
6078 do {
6079 nt_status = rpccli_lsa_EnumTrustDom(pipe_hnd, mem_ctx,
6080 &connect_hnd,
6081 &enum_ctx,
6082 &dom_list,
6083 (uint32_t)-1);
6084 if (NT_STATUS_IS_ERR(nt_status)) {
6085 DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
6086 nt_errstr(nt_status)));
6087 cli_shutdown(cli);
6088 talloc_destroy(mem_ctx);
6089 return -1;
6092 for (i = 0; i < dom_list.count; i++) {
6094 print_trusted_domain(dom_list.domains[i].sid,
6095 dom_list.domains[i].name.string);
6097 nt_status = vampire_trusted_domain(pipe_hnd, mem_ctx, &connect_hnd,
6098 *dom_list.domains[i].sid,
6099 dom_list.domains[i].name.string);
6100 if (!NT_STATUS_IS_OK(nt_status)) {
6101 cli_shutdown(cli);
6102 talloc_destroy(mem_ctx);
6103 return -1;
6108 * in case of no trusted domains say something rather
6109 * than just display blank line
6111 if (!dom_list.count) d_printf("none\n");
6113 } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
6115 /* close this connection before doing next one */
6116 nt_status = rpccli_lsa_Close(pipe_hnd, mem_ctx, &connect_hnd);
6117 if (NT_STATUS_IS_ERR(nt_status)) {
6118 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
6119 nt_errstr(nt_status)));
6120 cli_shutdown(cli);
6121 talloc_destroy(mem_ctx);
6122 return -1;
6125 /* close lsarpc pipe and connection to IPC$ */
6126 cli_shutdown(cli);
6128 talloc_destroy(mem_ctx);
6129 return 0;
6132 static int rpc_trustdom_list(int argc, const char **argv)
6134 /* common variables */
6135 TALLOC_CTX* mem_ctx;
6136 struct cli_state *cli = NULL, *remote_cli = NULL;
6137 struct rpc_pipe_client *pipe_hnd = NULL;
6138 NTSTATUS nt_status;
6139 const char *domain_name = NULL;
6140 DOM_SID *queried_dom_sid;
6141 fstring padding;
6142 int ascii_dom_name_len;
6143 POLICY_HND connect_hnd;
6144 union lsa_PolicyInformation *info = NULL;
6146 /* trusted domains listing variables */
6147 unsigned int num_domains, enum_ctx = 0;
6148 int i, pad_len, col_len = 20;
6149 struct lsa_DomainList dom_list;
6150 fstring pdc_name;
6152 /* trusting domains listing variables */
6153 POLICY_HND domain_hnd;
6154 struct samr_SamArray *trusts = NULL;
6157 * Listing trusted domains (stored in secrets.tdb, if local)
6160 mem_ctx = talloc_init("trust relationships listing");
6163 * set domain and pdc name to local samba server (default)
6164 * or to remote one given in command line
6167 if (StrCaseCmp(opt_workgroup, lp_workgroup())) {
6168 domain_name = opt_workgroup;
6169 opt_target_workgroup = opt_workgroup;
6170 } else {
6171 fstrcpy(pdc_name, global_myname());
6172 domain_name = talloc_strdup(mem_ctx, lp_workgroup());
6173 opt_target_workgroup = domain_name;
6176 /* open \PIPE\lsarpc and open policy handle */
6177 nt_status = net_make_ipc_connection(NET_FLAGS_PDC, &cli);
6178 if (!NT_STATUS_IS_OK(nt_status)) {
6179 DEBUG(0, ("Couldn't connect to domain controller: %s\n",
6180 nt_errstr(nt_status)));
6181 talloc_destroy(mem_ctx);
6182 return -1;
6185 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_LSARPC, &nt_status);
6186 if (!pipe_hnd) {
6187 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n",
6188 nt_errstr(nt_status) ));
6189 cli_shutdown(cli);
6190 talloc_destroy(mem_ctx);
6191 return -1;
6194 nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, False, SEC_RIGHTS_QUERY_VALUE,
6195 &connect_hnd);
6196 if (NT_STATUS_IS_ERR(nt_status)) {
6197 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
6198 nt_errstr(nt_status)));
6199 cli_shutdown(cli);
6200 talloc_destroy(mem_ctx);
6201 return -1;
6204 /* query info level 5 to obtain sid of a domain being queried */
6205 nt_status = rpccli_lsa_QueryInfoPolicy(pipe_hnd, mem_ctx,
6206 &connect_hnd,
6207 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
6208 &info);
6210 if (NT_STATUS_IS_ERR(nt_status)) {
6211 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6212 nt_errstr(nt_status)));
6213 cli_shutdown(cli);
6214 talloc_destroy(mem_ctx);
6215 return -1;
6218 queried_dom_sid = info->account_domain.sid;
6221 * Keep calling LsaEnumTrustdom over opened pipe until
6222 * the end of enumeration is reached
6225 d_printf("Trusted domains list:\n\n");
6227 do {
6228 nt_status = rpccli_lsa_EnumTrustDom(pipe_hnd, mem_ctx,
6229 &connect_hnd,
6230 &enum_ctx,
6231 &dom_list,
6232 (uint32_t)-1);
6233 if (NT_STATUS_IS_ERR(nt_status)) {
6234 DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
6235 nt_errstr(nt_status)));
6236 cli_shutdown(cli);
6237 talloc_destroy(mem_ctx);
6238 return -1;
6241 for (i = 0; i < dom_list.count; i++) {
6242 print_trusted_domain(dom_list.domains[i].sid,
6243 dom_list.domains[i].name.string);
6247 * in case of no trusted domains say something rather
6248 * than just display blank line
6250 if (!dom_list.count) d_printf("none\n");
6252 } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
6254 /* close this connection before doing next one */
6255 nt_status = rpccli_lsa_Close(pipe_hnd, mem_ctx, &connect_hnd);
6256 if (NT_STATUS_IS_ERR(nt_status)) {
6257 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
6258 nt_errstr(nt_status)));
6259 cli_shutdown(cli);
6260 talloc_destroy(mem_ctx);
6261 return -1;
6264 cli_rpc_pipe_close(pipe_hnd);
6267 * Listing trusting domains (stored in passdb backend, if local)
6270 d_printf("\nTrusting domains list:\n\n");
6273 * Open \PIPE\samr and get needed policy handles
6275 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_SAMR, &nt_status);
6276 if (!pipe_hnd) {
6277 DEBUG(0, ("Could not initialise samr pipe. Error was %s\n", nt_errstr(nt_status)));
6278 cli_shutdown(cli);
6279 talloc_destroy(mem_ctx);
6280 return -1;
6283 /* SamrConnect2 */
6284 nt_status = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
6285 pipe_hnd->cli->desthost,
6286 SA_RIGHT_SAM_OPEN_DOMAIN,
6287 &connect_hnd);
6288 if (!NT_STATUS_IS_OK(nt_status)) {
6289 DEBUG(0, ("Couldn't open SAMR policy handle. Error was %s\n",
6290 nt_errstr(nt_status)));
6291 cli_shutdown(cli);
6292 talloc_destroy(mem_ctx);
6293 return -1;
6296 /* SamrOpenDomain - we have to open domain policy handle in order to be
6297 able to enumerate accounts*/
6298 nt_status = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
6299 &connect_hnd,
6300 SA_RIGHT_DOMAIN_ENUM_ACCOUNTS,
6301 queried_dom_sid,
6302 &domain_hnd);
6303 if (!NT_STATUS_IS_OK(nt_status)) {
6304 DEBUG(0, ("Couldn't open domain object. Error was %s\n",
6305 nt_errstr(nt_status)));
6306 cli_shutdown(cli);
6307 talloc_destroy(mem_ctx);
6308 return -1;
6312 * perform actual enumeration
6315 enum_ctx = 0; /* reset enumeration context from last enumeration */
6316 do {
6318 nt_status = rpccli_samr_EnumDomainUsers(pipe_hnd, mem_ctx,
6319 &domain_hnd,
6320 &enum_ctx,
6321 ACB_DOMTRUST,
6322 &trusts,
6323 0xffff,
6324 &num_domains);
6325 if (NT_STATUS_IS_ERR(nt_status)) {
6326 DEBUG(0, ("Couldn't enumerate accounts. Error was: %s\n",
6327 nt_errstr(nt_status)));
6328 cli_shutdown(cli);
6329 talloc_destroy(mem_ctx);
6330 return -1;
6333 for (i = 0; i < num_domains; i++) {
6335 char *str = CONST_DISCARD(char *, trusts->entries[i].name.string);
6338 * get each single domain's sid (do we _really_ need this ?):
6339 * 1) connect to domain's pdc
6340 * 2) query the pdc for domain's sid
6343 /* get rid of '$' tail */
6344 ascii_dom_name_len = strlen(str);
6345 if (ascii_dom_name_len && ascii_dom_name_len < FSTRING_LEN)
6346 str[ascii_dom_name_len - 1] = '\0';
6348 /* calculate padding space for d_printf to look nicer */
6349 pad_len = col_len - strlen(str);
6350 padding[pad_len] = 0;
6351 do padding[--pad_len] = ' '; while (pad_len);
6353 /* set opt_* variables to remote domain */
6354 strupper_m(str);
6355 opt_workgroup = talloc_strdup(mem_ctx, str);
6356 opt_target_workgroup = opt_workgroup;
6358 d_printf("%s%s", str, padding);
6360 /* connect to remote domain controller */
6361 nt_status = net_make_ipc_connection(
6362 NET_FLAGS_PDC | NET_FLAGS_ANONYMOUS,
6363 &remote_cli);
6364 if (NT_STATUS_IS_OK(nt_status)) {
6365 /* query for domain's sid */
6366 if (run_rpc_command(remote_cli, PI_LSARPC, 0, rpc_query_domain_sid, argc, argv))
6367 d_fprintf(stderr, "couldn't get domain's sid\n");
6369 cli_shutdown(remote_cli);
6371 } else {
6372 d_fprintf(stderr, "domain controller is not "
6373 "responding: %s\n",
6374 nt_errstr(nt_status));
6378 if (!num_domains) d_printf("none\n");
6380 } while (NT_STATUS_EQUAL(nt_status, STATUS_MORE_ENTRIES));
6382 /* close opened samr and domain policy handles */
6383 nt_status = rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_hnd);
6384 if (!NT_STATUS_IS_OK(nt_status)) {
6385 DEBUG(0, ("Couldn't properly close domain policy handle for domain %s\n", domain_name));
6388 nt_status = rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_hnd);
6389 if (!NT_STATUS_IS_OK(nt_status)) {
6390 DEBUG(0, ("Couldn't properly close samr policy handle for domain %s\n", domain_name));
6393 /* close samr pipe and connection to IPC$ */
6394 cli_shutdown(cli);
6396 talloc_destroy(mem_ctx);
6397 return 0;
6401 * Entrypoint for 'net rpc trustdom' code.
6403 * @param argc Standard argc.
6404 * @param argv Standard argv without initial components.
6406 * @return Integer status (0 means success).
6409 static int rpc_trustdom(int argc, const char **argv)
6411 struct functable func[] = {
6412 {"add", rpc_trustdom_add},
6413 {"del", rpc_trustdom_del},
6414 {"establish", rpc_trustdom_establish},
6415 {"revoke", rpc_trustdom_revoke},
6416 {"help", rpc_trustdom_usage},
6417 {"list", rpc_trustdom_list},
6418 {"vampire", rpc_trustdom_vampire},
6419 {NULL, NULL}
6422 if (argc == 0) {
6423 rpc_trustdom_usage(argc, argv);
6424 return -1;
6427 return (net_run_function(argc, argv, func, rpc_trustdom_usage));
6431 * Check if a server will take rpc commands
6432 * @param flags Type of server to connect to (PDC, DMB, localhost)
6433 * if the host is not explicitly specified
6434 * @return bool (true means rpc supported)
6436 bool net_rpc_check(unsigned flags)
6438 struct cli_state *cli;
6439 bool ret = False;
6440 struct sockaddr_storage server_ss;
6441 char *server_name = NULL;
6442 NTSTATUS status;
6444 /* flags (i.e. server type) may depend on command */
6445 if (!net_find_server(NULL, flags, &server_ss, &server_name))
6446 return False;
6448 if ((cli = cli_initialise()) == NULL) {
6449 return False;
6452 status = cli_connect(cli, server_name, &server_ss);
6453 if (!NT_STATUS_IS_OK(status))
6454 goto done;
6455 if (!attempt_netbios_session_request(&cli, global_myname(),
6456 server_name, &server_ss))
6457 goto done;
6458 if (!cli_negprot(cli))
6459 goto done;
6460 if (cli->protocol < PROTOCOL_NT1)
6461 goto done;
6463 ret = True;
6464 done:
6465 cli_shutdown(cli);
6466 return ret;
6469 /* dump sam database via samsync rpc calls */
6470 static int rpc_samdump(int argc, const char **argv) {
6471 return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS, rpc_samdump_internals,
6472 argc, argv);
6475 /* syncronise sam database via samsync rpc calls */
6476 static int rpc_vampire(int argc, const char **argv) {
6477 return run_rpc_command(NULL, PI_NETLOGON, NET_FLAGS_ANONYMOUS, rpc_vampire_internals,
6478 argc, argv);
6481 /**
6482 * Migrate everything from a print-server.
6484 * @param argc Standard main() style argc.
6485 * @param argv Standard main() style argv. Initial components are already
6486 * stripped.
6488 * @return A shell status integer (0 for success).
6490 * The order is important !
6491 * To successfully add drivers the print-queues have to exist !
6492 * Applying ACLs should be the last step, because you're easily locked out.
6495 static int rpc_printer_migrate_all(int argc, const char **argv)
6497 int ret;
6499 if (!opt_host) {
6500 printf("no server to migrate\n");
6501 return -1;
6504 ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_printers_internals, argc, argv);
6505 if (ret)
6506 return ret;
6508 ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_drivers_internals, argc, argv);
6509 if (ret)
6510 return ret;
6512 ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_forms_internals, argc, argv);
6513 if (ret)
6514 return ret;
6516 ret = run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_settings_internals, argc, argv);
6517 if (ret)
6518 return ret;
6520 return run_rpc_command(NULL, PI_SPOOLSS, 0, rpc_printer_migrate_security_internals, argc, argv);
6524 /**
6525 * Migrate print-drivers from a print-server.
6527 * @param argc Standard main() style argc.
6528 * @param argv Standard main() style argv. Initial components are already
6529 * stripped.
6531 * @return A shell status integer (0 for success).
6533 static int rpc_printer_migrate_drivers(int argc, const char **argv)
6535 if (!opt_host) {
6536 printf("no server to migrate\n");
6537 return -1;
6540 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6541 rpc_printer_migrate_drivers_internals,
6542 argc, argv);
6545 /**
6546 * Migrate print-forms from a print-server.
6548 * @param argc Standard main() style argc.
6549 * @param argv Standard main() style argv. Initial components are already
6550 * stripped.
6552 * @return A shell status integer (0 for success).
6554 static int rpc_printer_migrate_forms(int argc, const char **argv)
6556 if (!opt_host) {
6557 printf("no server to migrate\n");
6558 return -1;
6561 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6562 rpc_printer_migrate_forms_internals,
6563 argc, argv);
6566 /**
6567 * Migrate printers from a print-server.
6569 * @param argc Standard main() style argc.
6570 * @param argv Standard main() style argv. Initial components are already
6571 * stripped.
6573 * @return A shell status integer (0 for success).
6575 static int rpc_printer_migrate_printers(int argc, const char **argv)
6577 if (!opt_host) {
6578 printf("no server to migrate\n");
6579 return -1;
6582 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6583 rpc_printer_migrate_printers_internals,
6584 argc, argv);
6587 /**
6588 * Migrate printer-ACLs from a print-server.
6590 * @param argc Standard main() style argc.
6591 * @param argv Standard main() style argv. Initial components are already
6592 * stripped.
6594 * @return A shell status integer (0 for success).
6596 static int rpc_printer_migrate_security(int argc, const char **argv)
6598 if (!opt_host) {
6599 printf("no server to migrate\n");
6600 return -1;
6603 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6604 rpc_printer_migrate_security_internals,
6605 argc, argv);
6608 /**
6609 * Migrate printer-settings from a print-server.
6611 * @param argc Standard main() style argc.
6612 * @param argv Standard main() style argv. Initial components are already
6613 * stripped.
6615 * @return A shell status integer (0 for success).
6617 static int rpc_printer_migrate_settings(int argc, const char **argv)
6619 if (!opt_host) {
6620 printf("no server to migrate\n");
6621 return -1;
6624 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6625 rpc_printer_migrate_settings_internals,
6626 argc, argv);
6629 /**
6630 * 'net rpc printer' entrypoint.
6631 * @param argc Standard main() style argc.
6632 * @param argv Standard main() style argv. Initial components are already
6633 * stripped.
6636 int rpc_printer_migrate(int argc, const char **argv)
6639 /* ouch: when addriver and setdriver are called from within
6640 rpc_printer_migrate_drivers_internals, the printer-queue already
6641 *has* to exist */
6643 struct functable func[] = {
6644 {"all", rpc_printer_migrate_all},
6645 {"drivers", rpc_printer_migrate_drivers},
6646 {"forms", rpc_printer_migrate_forms},
6647 {"help", rpc_printer_usage},
6648 {"printers", rpc_printer_migrate_printers},
6649 {"security", rpc_printer_migrate_security},
6650 {"settings", rpc_printer_migrate_settings},
6651 {NULL, NULL}
6654 return net_run_function(argc, argv, func, rpc_printer_usage);
6658 /**
6659 * List printers on a remote RPC server.
6661 * @param argc Standard main() style argc.
6662 * @param argv Standard main() style argv. Initial components are already
6663 * stripped.
6665 * @return A shell status integer (0 for success).
6667 static int rpc_printer_list(int argc, const char **argv)
6670 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6671 rpc_printer_list_internals,
6672 argc, argv);
6675 /**
6676 * List printer-drivers on a remote RPC server.
6678 * @param argc Standard main() style argc.
6679 * @param argv Standard main() style argv. Initial components are already
6680 * stripped.
6682 * @return A shell status integer (0 for success).
6684 static int rpc_printer_driver_list(int argc, const char **argv)
6687 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6688 rpc_printer_driver_list_internals,
6689 argc, argv);
6692 /**
6693 * Publish printer in ADS via MSRPC.
6695 * @param argc Standard main() style argc.
6696 * @param argv Standard main() style argv. Initial components are already
6697 * stripped.
6699 * @return A shell status integer (0 for success).
6701 static int rpc_printer_publish_publish(int argc, const char **argv)
6704 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6705 rpc_printer_publish_publish_internals,
6706 argc, argv);
6709 /**
6710 * Update printer in ADS via MSRPC.
6712 * @param argc Standard main() style argc.
6713 * @param argv Standard main() style argv. Initial components are already
6714 * stripped.
6716 * @return A shell status integer (0 for success).
6718 static int rpc_printer_publish_update(int argc, const char **argv)
6721 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6722 rpc_printer_publish_update_internals,
6723 argc, argv);
6726 /**
6727 * UnPublish printer in ADS via MSRPC
6729 * @param argc Standard main() style argc.
6730 * @param argv Standard main() style argv. Initial components are already
6731 * stripped.
6733 * @return A shell status integer (0 for success).
6735 static int rpc_printer_publish_unpublish(int argc, const char **argv)
6738 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6739 rpc_printer_publish_unpublish_internals,
6740 argc, argv);
6743 /**
6744 * List published printers via MSRPC.
6746 * @param argc Standard main() style argc.
6747 * @param argv Standard main() style argv. Initial components are already
6748 * stripped.
6750 * @return A shell status integer (0 for success).
6752 static int rpc_printer_publish_list(int argc, const char **argv)
6755 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6756 rpc_printer_publish_list_internals,
6757 argc, argv);
6761 /**
6762 * Publish printer in ADS.
6764 * @param argc Standard main() style argc.
6765 * @param argv Standard main() style argv. Initial components are already
6766 * stripped.
6768 * @return A shell status integer (0 for success).
6770 static int rpc_printer_publish(int argc, const char **argv)
6773 struct functable func[] = {
6774 {"publish", rpc_printer_publish_publish},
6775 {"update", rpc_printer_publish_update},
6776 {"unpublish", rpc_printer_publish_unpublish},
6777 {"list", rpc_printer_publish_list},
6778 {"help", rpc_printer_usage},
6779 {NULL, NULL}
6782 if (argc == 0)
6783 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6784 rpc_printer_publish_list_internals,
6785 argc, argv);
6787 return net_run_function(argc, argv, func, rpc_printer_usage);
6792 /**
6793 * Display rpc printer help page.
6794 * @param argc Standard main() style argc.
6795 * @param argv Standard main() style argv. Initial components are already
6796 * stripped.
6798 int rpc_printer_usage(int argc, const char **argv)
6800 return net_help_printer(argc, argv);
6803 /**
6804 * 'net rpc printer' entrypoint.
6805 * @param argc Standard main() style argc.
6806 * @param argv Standard main() style argv. Initial components are already
6807 * stripped.
6809 int net_rpc_printer(int argc, const char **argv)
6811 struct functable func[] = {
6812 {"list", rpc_printer_list},
6813 {"migrate", rpc_printer_migrate},
6814 {"driver", rpc_printer_driver_list},
6815 {"publish", rpc_printer_publish},
6816 {NULL, NULL}
6819 if (argc == 0)
6820 return run_rpc_command(NULL, PI_SPOOLSS, 0,
6821 rpc_printer_list_internals,
6822 argc, argv);
6824 return net_run_function(argc, argv, func, rpc_printer_usage);
6827 /****************************************************************************/
6830 /**
6831 * Basic usage function for 'net rpc'.
6832 * @param argc Standard main() style argc.
6833 * @param argv Standard main() style argv. Initial components are already
6834 * stripped.
6837 int net_rpc_usage(int argc, const char **argv)
6839 d_printf(" net rpc info \t\t\tshow basic info about a domain \n");
6840 d_printf(" net rpc join \t\t\tto join a domain \n");
6841 d_printf(" net rpc oldjoin \t\tto join a domain created in server manager\n");
6842 d_printf(" net rpc testjoin \t\ttests that a join is valid\n");
6843 d_printf(" net rpc user \t\t\tto add, delete and list users\n");
6844 d_printf(" net rpc password <username> [<password>] -Uadmin_username%%admin_pass\n");
6845 d_printf(" net rpc group \t\tto list groups\n");
6846 d_printf(" net rpc share \t\tto add, delete, list and migrate shares\n");
6847 d_printf(" net rpc printer \t\tto list and migrate printers\n");
6848 d_printf(" net rpc file \t\t\tto list open files\n");
6849 d_printf(" net rpc changetrustpw \tto change the trust account password\n");
6850 d_printf(" net rpc getsid \t\tfetch the domain sid into the local secrets.tdb\n");
6851 d_printf(" net rpc vampire \t\tsyncronise an NT PDC's users and groups into the local passdb\n");
6852 d_printf(" net rpc samdump \t\tdisplay an NT PDC's users, groups and other data\n");
6853 d_printf(" net rpc trustdom \t\tto create trusting domain's account or establish trust\n");
6854 d_printf(" net rpc abortshutdown \tto abort the shutdown of a remote server\n");
6855 d_printf(" net rpc shutdown \t\tto shutdown a remote server\n");
6856 d_printf(" net rpc rights\t\tto manage privileges assigned to SIDs\n");
6857 d_printf(" net rpc registry\t\tto manage registry hives\n");
6858 d_printf(" net rpc service\t\tto start, stop and query services\n");
6859 d_printf(" net rpc audit\t\t\tto modify global auditing settings\n");
6860 d_printf(" net rpc shell\t\t\tto open an interactive shell for remote server/account management\n");
6861 d_printf("\n");
6862 d_printf("'net rpc shutdown' also accepts the following miscellaneous options:\n"); /* misc options */
6863 d_printf("\t-r or --reboot\trequest remote server reboot on shutdown\n");
6864 d_printf("\t-f or --force\trequest the remote server force its shutdown\n");
6865 d_printf("\t-t or --timeout=<timeout>\tnumber of seconds before shutdown\n");
6866 d_printf("\t-C or --comment=<message>\ttext message to display on impending shutdown\n");
6867 return -1;
6872 * Help function for 'net rpc'. Calls command specific help if requested
6873 * or displays usage of net rpc.
6874 * @param argc Standard main() style argc.
6875 * @param argv Standard main() style argv. Initial components are already
6876 * stripped.
6879 int net_rpc_help(int argc, const char **argv)
6881 struct functable func[] = {
6882 {"join", rpc_join_usage},
6883 {"user", rpc_user_usage},
6884 {"group", rpc_group_usage},
6885 {"share", rpc_share_usage},
6886 /*{"changetrustpw", rpc_changetrustpw_usage}, */
6887 {"trustdom", rpc_trustdom_usage},
6888 /*{"abortshutdown", rpc_shutdown_abort_usage},*/
6889 /*{"shutdown", rpc_shutdown_usage}, */
6890 {"vampire", rpc_vampire_usage},
6891 {NULL, NULL}
6894 if (argc == 0) {
6895 net_rpc_usage(argc, argv);
6896 return -1;
6899 return (net_run_function(argc, argv, func, rpc_user_usage));
6902 /**
6903 * 'net rpc' entrypoint.
6904 * @param argc Standard main() style argc.
6905 * @param argv Standard main() style argv. Initial components are already
6906 * stripped.
6909 int net_rpc(int argc, const char **argv)
6911 struct functable func[] = {
6912 {"audit", net_rpc_audit},
6913 {"info", net_rpc_info},
6914 {"join", net_rpc_join},
6915 {"oldjoin", net_rpc_oldjoin},
6916 {"testjoin", net_rpc_testjoin},
6917 {"user", net_rpc_user},
6918 {"password", rpc_user_password},
6919 {"group", net_rpc_group},
6920 {"share", net_rpc_share},
6921 {"file", net_rpc_file},
6922 {"printer", net_rpc_printer},
6923 {"changetrustpw", net_rpc_changetrustpw},
6924 {"trustdom", rpc_trustdom},
6925 {"abortshutdown", rpc_shutdown_abort},
6926 {"shutdown", rpc_shutdown},
6927 {"samdump", rpc_samdump},
6928 {"vampire", rpc_vampire},
6929 {"getsid", net_rpc_getsid},
6930 {"rights", net_rpc_rights},
6931 {"service", net_rpc_service},
6932 {"registry", net_rpc_registry},
6933 {"shell", net_rpc_shell},
6934 {"help", net_rpc_help},
6935 {NULL, NULL}
6937 return net_run_function(argc, argv, func, net_rpc_usage);