2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
4 Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
5 Copyright (C) 2002 Jim McDonough (jmcd@us.ibm.com)
6 Copyright (C) 2004 Guenther Deschner (gd@samba.org)
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/>. */
24 #include "utils/net.h"
26 static int net_mode_share
;
31 * @brief RPC based subcommands for the 'net' utility.
33 * This file should contain much of the functionality that used to
34 * be found in rpcclient, execpt that the commands should change
35 * less often, and the fucntionality should be sane (the user is not
36 * expected to know a rid/sid before they conduct an operation etc.)
38 * @todo Perhaps eventually these should be split out into a number
39 * of files, as this could get quite big.
44 * Many of the RPC functions need the domain sid. This function gets
45 * it at the start of every run
47 * @param cli A cli_state already connected to the remote machine
49 * @return The Domain SID of the remote machine.
52 NTSTATUS
net_get_remote_domain_sid(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
53 DOM_SID
**domain_sid
, char **domain_name
)
55 struct rpc_pipe_client
*lsa_pipe
;
57 NTSTATUS result
= NT_STATUS_OK
;
58 uint32 info_class
= 5;
60 lsa_pipe
= cli_rpc_pipe_open_noauth(cli
, PI_LSARPC
, &result
);
62 d_fprintf(stderr
, "Could not initialise lsa pipe\n");
66 result
= rpccli_lsa_open_policy(lsa_pipe
, mem_ctx
, False
,
67 SEC_RIGHTS_MAXIMUM_ALLOWED
,
69 if (!NT_STATUS_IS_OK(result
)) {
70 d_fprintf(stderr
, "open_policy failed: %s\n",
75 result
= rpccli_lsa_query_info_policy(lsa_pipe
, mem_ctx
, &pol
,
76 info_class
, domain_name
,
78 if (!NT_STATUS_IS_OK(result
)) {
79 d_fprintf(stderr
, "lsaquery failed: %s\n",
84 rpccli_lsa_Close(lsa_pipe
, mem_ctx
, &pol
);
85 cli_rpc_pipe_close(lsa_pipe
);
91 * Run a single RPC command, from start to finish.
93 * @param pipe_name the pipe to connect to (usually a PIPE_ constant)
94 * @param conn_flag a NET_FLAG_ combination. Passed to
95 * net_make_ipc_connection.
96 * @param argc Standard main() style argc
97 * @param argc Standard main() style argv. Initial components are already
99 * @return A shell status integer (0 for success)
102 int run_rpc_command(struct cli_state
*cli_arg
,
109 struct cli_state
*cli
= NULL
;
110 struct rpc_pipe_client
*pipe_hnd
= NULL
;
116 /* make use of cli_state handed over as an argument, if possible */
118 cli
= net_make_ipc_connection(conn_flags
);
129 if (!(mem_ctx
= talloc_init("run_rpc_command"))) {
130 DEBUG(0, ("talloc_init() failed\n"));
135 nt_status
= net_get_remote_domain_sid(cli
, mem_ctx
, &domain_sid
,
137 if (!NT_STATUS_IS_OK(nt_status
)) {
142 if (!(conn_flags
& NET_FLAGS_NO_PIPE
)) {
143 if (lp_client_schannel() && (pipe_idx
== PI_NETLOGON
)) {
144 /* Always try and create an schannel netlogon pipe. */
145 pipe_hnd
= cli_rpc_pipe_open_schannel(cli
, pipe_idx
,
146 PIPE_AUTH_LEVEL_PRIVACY
,
150 DEBUG(0, ("Could not initialise schannel netlogon pipe. Error was %s\n",
151 nt_errstr(nt_status
) ));
156 pipe_hnd
= cli_rpc_pipe_open_noauth(cli
, pipe_idx
, &nt_status
);
158 DEBUG(0, ("Could not initialise pipe %s. Error was %s\n",
159 cli_get_pipe_name(pipe_idx
),
160 nt_errstr(nt_status
) ));
167 nt_status
= fn(domain_sid
, domain_name
, cli
, pipe_hnd
, mem_ctx
, argc
, argv
);
169 if (!NT_STATUS_IS_OK(nt_status
)) {
170 DEBUG(1, ("rpc command function failed! (%s)\n", nt_errstr(nt_status
)));
172 DEBUG(5, ("rpc command function succedded\n"));
175 if (!(conn_flags
& NET_FLAGS_NO_PIPE
)) {
177 cli_rpc_pipe_close(pipe_hnd
);
181 /* close the connection only if it was opened here */
186 talloc_destroy(mem_ctx
);
187 return (!NT_STATUS_IS_OK(nt_status
));
191 * Force a change of the trust acccount password.
193 * All parameters are provided by the run_rpc_command function, except for
194 * argc, argv which are passes through.
196 * @param domain_sid The domain sid aquired from the remote server
197 * @param cli A cli_state connected to the server.
198 * @param mem_ctx Talloc context, destoyed on compleation of the function.
199 * @param argc Standard main() style argc
200 * @param argc Standard main() style argv. Initial components are already
203 * @return Normal NTSTATUS return.
206 static NTSTATUS
rpc_changetrustpw_internals(const DOM_SID
*domain_sid
,
207 const char *domain_name
,
208 struct cli_state
*cli
,
209 struct rpc_pipe_client
*pipe_hnd
,
215 return trust_pw_find_change_and_store_it(pipe_hnd
, mem_ctx
, opt_target_workgroup
);
219 * Force a change of the trust acccount password.
221 * @param argc Standard main() style argc
222 * @param argc Standard main() style argv. Initial components are already
225 * @return A shell status integer (0 for success)
228 int net_rpc_changetrustpw(int argc
, const char **argv
)
230 return run_rpc_command(NULL
, PI_NETLOGON
, NET_FLAGS_ANONYMOUS
| NET_FLAGS_PDC
,
231 rpc_changetrustpw_internals
,
236 * Join a domain, the old way.
238 * This uses 'machinename' as the inital password, and changes it.
240 * The password should be created with 'server manager' or equiv first.
242 * All parameters are provided by the run_rpc_command function, except for
243 * argc, argv which are passes through.
245 * @param domain_sid The domain sid aquired from the remote server
246 * @param cli A cli_state connected to the server.
247 * @param mem_ctx Talloc context, destoyed on compleation of the function.
248 * @param argc Standard main() style argc
249 * @param argc Standard main() style argv. Initial components are already
252 * @return Normal NTSTATUS return.
255 static NTSTATUS
rpc_oldjoin_internals(const DOM_SID
*domain_sid
,
256 const char *domain_name
,
257 struct cli_state
*cli
,
258 struct rpc_pipe_client
*pipe_hnd
,
264 fstring trust_passwd
;
265 unsigned char orig_trust_passwd_hash
[16];
267 uint32 sec_channel_type
;
269 pipe_hnd
= cli_rpc_pipe_open_noauth(cli
, PI_NETLOGON
, &result
);
271 DEBUG(0,("rpc_oldjoin_internals: netlogon pipe open to machine %s failed. "
274 nt_errstr(result
) ));
279 check what type of join - if the user want's to join as
280 a BDC, the server must agree that we are a BDC.
283 sec_channel_type
= get_sec_channel_type(argv
[0]);
285 sec_channel_type
= get_sec_channel_type(NULL
);
288 fstrcpy(trust_passwd
, global_myname());
289 strlower_m(trust_passwd
);
292 * Machine names can be 15 characters, but the max length on
293 * a password is 14. --jerry
296 trust_passwd
[14] = '\0';
298 E_md4hash(trust_passwd
, orig_trust_passwd_hash
);
300 result
= trust_pw_change_and_store_it(pipe_hnd
, mem_ctx
, opt_target_workgroup
,
301 orig_trust_passwd_hash
,
304 if (NT_STATUS_IS_OK(result
))
305 printf("Joined domain %s.\n",opt_target_workgroup
);
308 if (!secrets_store_domain_sid(opt_target_workgroup
, domain_sid
)) {
309 DEBUG(0, ("error storing domain sid for %s\n", opt_target_workgroup
));
310 result
= NT_STATUS_UNSUCCESSFUL
;
317 * Join a domain, the old way.
319 * @param argc Standard main() style argc
320 * @param argc Standard main() style argv. Initial components are already
323 * @return A shell status integer (0 for success)
326 static int net_rpc_perform_oldjoin(int argc
, const char **argv
)
328 return run_rpc_command(NULL
, PI_NETLOGON
,
329 NET_FLAGS_NO_PIPE
| NET_FLAGS_ANONYMOUS
| NET_FLAGS_PDC
,
330 rpc_oldjoin_internals
,
335 * Join a domain, the old way. This function exists to allow
336 * the message to be displayed when oldjoin was explicitly
337 * requested, but not when it was implied by "net rpc join"
339 * @param argc Standard main() style argc
340 * @param argc Standard main() style argv. Initial components are already
343 * @return A shell status integer (0 for success)
346 static int net_rpc_oldjoin(int argc
, const char **argv
)
348 int rc
= net_rpc_perform_oldjoin(argc
, argv
);
351 d_fprintf(stderr
, "Failed to join domain\n");
358 * Basic usage function for 'net rpc join'
359 * @param argc Standard main() style argc
360 * @param argc Standard main() style argv. Initial components are already
364 static int rpc_join_usage(int argc
, const char **argv
)
366 d_printf("net rpc join -U <username>[%%password] <type>[options]\n"\
367 "\t to join a domain with admin username & password\n"\
368 "\t\t password will be prompted if needed and none is specified\n"\
369 "\t <type> can be (default MEMBER)\n"\
370 "\t\t BDC - Join as a BDC\n"\
371 "\t\t PDC - Join as a PDC\n"\
372 "\t\t MEMBER - Join as a MEMBER server\n");
374 net_common_flags_usage(argc
, argv
);
379 * 'net rpc join' entrypoint.
380 * @param argc Standard main() style argc
381 * @param argc Standard main() style argv. Initial components are already
384 * Main 'net_rpc_join()' (where the admain username/password is used) is
386 * Try to just change the password, but if that doesn't work, use/prompt
387 * for a username/password.
390 int net_rpc_join(int argc
, const char **argv
)
392 if (lp_server_role() == ROLE_STANDALONE
) {
393 d_printf("cannot join as standalone machine\n");
397 if (strlen(global_myname()) > 15) {
398 d_printf("Our netbios name can be at most 15 chars long, "
399 "\"%s\" is %u chars long\n",
400 global_myname(), (unsigned int)strlen(global_myname()));
404 if ((net_rpc_perform_oldjoin(argc
, argv
) == 0))
407 return net_rpc_join_newstyle(argc
, argv
);
411 * display info about a rpc domain
413 * All parameters are provided by the run_rpc_command function, except for
414 * argc, argv which are passed through.
416 * @param domain_sid The domain sid acquired from the remote server
417 * @param cli A cli_state connected to the server.
418 * @param mem_ctx Talloc context, destoyed on completion of the function.
419 * @param argc Standard main() style argc
420 * @param argv Standard main() style argv. Initial components are already
423 * @return Normal NTSTATUS return.
426 NTSTATUS
rpc_info_internals(const DOM_SID
*domain_sid
,
427 const char *domain_name
,
428 struct cli_state
*cli
,
429 struct rpc_pipe_client
*pipe_hnd
,
434 POLICY_HND connect_pol
, domain_pol
;
435 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
439 sid_to_string(sid_str
, domain_sid
);
441 /* Get sam policy handle */
442 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
444 if (!NT_STATUS_IS_OK(result
)) {
445 d_fprintf(stderr
, "Could not connect to SAM: %s\n", nt_errstr(result
));
449 /* Get domain policy handle */
450 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
451 MAXIMUM_ALLOWED_ACCESS
,
452 domain_sid
, &domain_pol
);
453 if (!NT_STATUS_IS_OK(result
)) {
454 d_fprintf(stderr
, "Could not open domain: %s\n", nt_errstr(result
));
459 result
= rpccli_samr_query_dom_info(pipe_hnd
, mem_ctx
, &domain_pol
,
461 if (NT_STATUS_IS_OK(result
)) {
462 TALLOC_CTX
*ctx
= talloc_init("rpc_info_internals");
463 d_printf("Domain Name: %s\n", unistr2_tdup(ctx
, &ctr
.info
.inf2
.uni_domain
));
464 d_printf("Domain SID: %s\n", sid_str
);
465 d_printf("Sequence number: %llu\n", (unsigned long long)ctr
.info
.inf2
.seq_num
);
466 d_printf("Num users: %u\n", ctr
.info
.inf2
.num_domain_usrs
);
467 d_printf("Num domain groups: %u\n", ctr
.info
.inf2
.num_domain_grps
);
468 d_printf("Num local groups: %u\n", ctr
.info
.inf2
.num_local_grps
);
477 * 'net rpc info' entrypoint.
478 * @param argc Standard main() style argc
479 * @param argc Standard main() style argv. Initial components are already
483 int net_rpc_info(int argc
, const char **argv
)
485 return run_rpc_command(NULL
, PI_SAMR
, NET_FLAGS_PDC
,
491 * Fetch domain SID into the local secrets.tdb
493 * All parameters are provided by the run_rpc_command function, except for
494 * argc, argv which are passes through.
496 * @param domain_sid The domain sid acquired from the remote server
497 * @param cli A cli_state connected to the server.
498 * @param mem_ctx Talloc context, destoyed on completion of the function.
499 * @param argc Standard main() style argc
500 * @param argv Standard main() style argv. Initial components are already
503 * @return Normal NTSTATUS return.
506 static NTSTATUS
rpc_getsid_internals(const DOM_SID
*domain_sid
,
507 const char *domain_name
,
508 struct cli_state
*cli
,
509 struct rpc_pipe_client
*pipe_hnd
,
516 sid_to_string(sid_str
, domain_sid
);
517 d_printf("Storing SID %s for Domain %s in secrets.tdb\n",
518 sid_str
, domain_name
);
520 if (!secrets_store_domain_sid(domain_name
, domain_sid
)) {
521 DEBUG(0,("Can't store domain SID\n"));
522 return NT_STATUS_UNSUCCESSFUL
;
529 * 'net rpc getsid' entrypoint.
530 * @param argc Standard main() style argc
531 * @param argc Standard main() style argv. Initial components are already
535 int net_rpc_getsid(int argc
, const char **argv
)
537 return run_rpc_command(NULL
, PI_SAMR
, NET_FLAGS_ANONYMOUS
| NET_FLAGS_PDC
,
538 rpc_getsid_internals
,
542 /****************************************************************************/
545 * Basic usage function for 'net rpc user'
546 * @param argc Standard main() style argc.
547 * @param argv Standard main() style argv. Initial components are already
551 static int rpc_user_usage(int argc
, const char **argv
)
553 return net_help_user(argc
, argv
);
557 * Add a new user to a remote RPC server
559 * All parameters are provided by the run_rpc_command function, except for
560 * argc, argv which are passes through.
562 * @param domain_sid The domain sid acquired from the remote server
563 * @param cli A cli_state connected to the server.
564 * @param mem_ctx Talloc context, destoyed on completion of the function.
565 * @param argc Standard main() style argc
566 * @param argv Standard main() style argv. Initial components are already
569 * @return Normal NTSTATUS return.
572 static NTSTATUS
rpc_user_add_internals(const DOM_SID
*domain_sid
,
573 const char *domain_name
,
574 struct cli_state
*cli
,
575 struct rpc_pipe_client
*pipe_hnd
,
577 int argc
, const char **argv
)
580 POLICY_HND connect_pol
, domain_pol
, user_pol
;
581 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
582 const char *acct_name
;
584 uint32 unknown
, user_rid
;
587 d_printf("User must be specified\n");
588 rpc_user_usage(argc
, argv
);
594 /* Get sam policy handle */
596 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
598 if (!NT_STATUS_IS_OK(result
)) {
602 /* Get domain policy handle */
604 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
605 MAXIMUM_ALLOWED_ACCESS
,
606 domain_sid
, &domain_pol
);
607 if (!NT_STATUS_IS_OK(result
)) {
611 /* Create domain user */
613 acb_info
= ACB_NORMAL
;
614 unknown
= 0xe005000b; /* No idea what this is - a permission mask? */
616 result
= rpccli_samr_create_dom_user(pipe_hnd
, mem_ctx
, &domain_pol
,
617 acct_name
, acb_info
, unknown
,
618 &user_pol
, &user_rid
);
619 if (!NT_STATUS_IS_OK(result
)) {
625 uint32
*user_rids
, num_rids
, *name_types
;
626 uint32 flags
= 0x000003e8; /* Unknown */
627 SAM_USERINFO_CTR ctr
;
628 SAM_USER_INFO_24 p24
;
631 result
= rpccli_samr_lookup_names(pipe_hnd
, mem_ctx
, &domain_pol
,
632 flags
, 1, &acct_name
,
633 &num_rids
, &user_rids
,
636 if (!NT_STATUS_IS_OK(result
)) {
640 result
= rpccli_samr_open_user(pipe_hnd
, mem_ctx
, &domain_pol
,
641 MAXIMUM_ALLOWED_ACCESS
,
642 user_rids
[0], &user_pol
);
644 if (!NT_STATUS_IS_OK(result
)) {
648 /* Set password on account */
653 encode_pw_buffer(pwbuf
, argv
[1], STR_UNICODE
);
655 init_sam_user_info24(&p24
, (char *)pwbuf
,24);
657 ctr
.switch_value
= 24;
658 ctr
.info
.id24
= &p24
;
660 result
= rpccli_samr_set_userinfo(pipe_hnd
, mem_ctx
, &user_pol
, 24,
661 &cli
->user_session_key
, &ctr
);
663 if (!NT_STATUS_IS_OK(result
)) {
664 d_fprintf(stderr
, "Failed to set password for user %s - %s\n",
665 acct_name
, nt_errstr(result
));
667 result
= rpccli_samr_delete_dom_user(pipe_hnd
, mem_ctx
, &user_pol
);
669 if (!NT_STATUS_IS_OK(result
)) {
670 d_fprintf(stderr
, "Failed to delete user %s - %s\n",
671 acct_name
, nt_errstr(result
));
678 if (!NT_STATUS_IS_OK(result
)) {
679 d_fprintf(stderr
, "Failed to add user %s - %s\n", acct_name
,
682 d_printf("Added user %s\n", acct_name
);
688 * Add a new user to a remote RPC server
690 * @param argc Standard main() style argc
691 * @param argv Standard main() style argv. Initial components are already
694 * @return A shell status integer (0 for success)
697 static int rpc_user_add(int argc
, const char **argv
)
699 return run_rpc_command(NULL
, PI_SAMR
, 0, rpc_user_add_internals
,
704 * Delete a user from a remote RPC server
706 * All parameters are provided by the run_rpc_command function, except for
707 * argc, argv which are passes through.
709 * @param domain_sid The domain sid acquired from the remote server
710 * @param cli A cli_state connected to the server.
711 * @param mem_ctx Talloc context, destoyed on completion of the function.
712 * @param argc Standard main() style argc
713 * @param argv Standard main() style argv. Initial components are already
716 * @return Normal NTSTATUS return.
719 static NTSTATUS
rpc_user_del_internals(const DOM_SID
*domain_sid
,
720 const char *domain_name
,
721 struct cli_state
*cli
,
722 struct rpc_pipe_client
*pipe_hnd
,
727 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
728 POLICY_HND connect_pol
, domain_pol
, user_pol
;
731 d_printf("User must be specified\n");
732 rpc_user_usage(argc
, argv
);
735 /* Get sam policy and domain handles */
737 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
740 if (!NT_STATUS_IS_OK(result
)) {
744 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
745 MAXIMUM_ALLOWED_ACCESS
,
746 domain_sid
, &domain_pol
);
748 if (!NT_STATUS_IS_OK(result
)) {
752 /* Get handle on user */
755 uint32
*user_rids
, num_rids
, *name_types
;
756 uint32 flags
= 0x000003e8; /* Unknown */
758 result
= rpccli_samr_lookup_names(pipe_hnd
, mem_ctx
, &domain_pol
,
760 &num_rids
, &user_rids
,
763 if (!NT_STATUS_IS_OK(result
)) {
767 result
= rpccli_samr_open_user(pipe_hnd
, mem_ctx
, &domain_pol
,
768 MAXIMUM_ALLOWED_ACCESS
,
769 user_rids
[0], &user_pol
);
771 if (!NT_STATUS_IS_OK(result
)) {
778 result
= rpccli_samr_delete_dom_user(pipe_hnd
, mem_ctx
, &user_pol
);
780 if (!NT_STATUS_IS_OK(result
)) {
784 /* Display results */
785 if (!NT_STATUS_IS_OK(result
)) {
786 d_fprintf(stderr
, "Failed to delete user account - %s\n", nt_errstr(result
));
788 d_printf("Deleted user account\n");
796 * Rename a user on a remote RPC server
798 * All parameters are provided by the run_rpc_command function, except for
799 * argc, argv which are passes through.
801 * @param domain_sid The domain sid acquired from the remote server
802 * @param cli A cli_state connected to the server.
803 * @param mem_ctx Talloc context, destoyed on completion of the function.
804 * @param argc Standard main() style argc
805 * @param argv Standard main() style argv. Initial components are already
808 * @return Normal NTSTATUS return.
811 static NTSTATUS
rpc_user_rename_internals(const DOM_SID
*domain_sid
,
812 const char *domain_name
,
813 struct cli_state
*cli
,
814 struct rpc_pipe_client
*pipe_hnd
,
819 POLICY_HND connect_pol
, domain_pol
, user_pol
;
820 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
821 uint32 info_level
= 7;
822 const char *old_name
, *new_name
;
824 uint32 flags
= 0x000003e8; /* Unknown */
825 uint32 num_rids
, *name_types
;
826 uint32 num_names
= 1;
828 SAM_USERINFO_CTR
*user_ctr
;
829 SAM_USERINFO_CTR ctr
;
830 SAM_USER_INFO_7 info7
;
833 d_printf("Old and new username must be specified\n");
834 rpc_user_usage(argc
, argv
);
842 ZERO_STRUCT(user_ctr
);
844 /* Get sam policy handle */
846 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
848 if (!NT_STATUS_IS_OK(result
)) {
852 /* Get domain policy handle */
854 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
855 MAXIMUM_ALLOWED_ACCESS
,
856 domain_sid
, &domain_pol
);
857 if (!NT_STATUS_IS_OK(result
)) {
861 if ((names
= TALLOC_ARRAY(mem_ctx
, const char *, num_names
)) == NULL
) {
862 result
= NT_STATUS_NO_MEMORY
;
866 result
= rpccli_samr_lookup_names(pipe_hnd
, mem_ctx
, &domain_pol
,
867 flags
, num_names
, names
,
868 &num_rids
, &user_rid
, &name_types
);
869 if (!NT_STATUS_IS_OK(result
)) {
873 /* Open domain user */
874 result
= rpccli_samr_open_user(pipe_hnd
, mem_ctx
, &domain_pol
,
875 MAXIMUM_ALLOWED_ACCESS
, user_rid
[0], &user_pol
);
877 if (!NT_STATUS_IS_OK(result
)) {
881 /* Query user info */
882 result
= rpccli_samr_query_userinfo(pipe_hnd
, mem_ctx
, &user_pol
,
883 info_level
, &user_ctr
);
885 if (!NT_STATUS_IS_OK(result
)) {
889 ctr
.switch_value
= info_level
;
890 ctr
.info
.id7
= &info7
;
892 init_sam_user_info7(&info7
, new_name
);
895 result
= rpccli_samr_set_userinfo(pipe_hnd
, mem_ctx
, &user_pol
,
896 info_level
, &cli
->user_session_key
, &ctr
);
898 if (!NT_STATUS_IS_OK(result
)) {
903 if (!NT_STATUS_IS_OK(result
)) {
904 d_fprintf(stderr
, "Failed to rename user from %s to %s - %s\n", old_name
, new_name
,
907 d_printf("Renamed user from %s to %s\n", old_name
, new_name
);
913 * Rename a user on a remote RPC server
915 * @param argc Standard main() style argc
916 * @param argv Standard main() style argv. Initial components are already
919 * @return A shell status integer (0 for success)
922 static int rpc_user_rename(int argc
, const char **argv
)
924 return run_rpc_command(NULL
, PI_SAMR
, 0, rpc_user_rename_internals
,
929 * Delete a user from a remote RPC server
931 * @param argc Standard main() style argc
932 * @param argv Standard main() style argv. Initial components are already
935 * @return A shell status integer (0 for success)
938 static int rpc_user_delete(int argc
, const char **argv
)
940 return run_rpc_command(NULL
, PI_SAMR
, 0, rpc_user_del_internals
,
945 * Set a password for a user on a remote RPC server
947 * All parameters are provided by the run_rpc_command function, except for
948 * argc, argv which are passes through.
950 * @param domain_sid The domain sid acquired from the remote server
951 * @param cli A cli_state connected to the server.
952 * @param mem_ctx Talloc context, destoyed on completion of the function.
953 * @param argc Standard main() style argc
954 * @param argv Standard main() style argv. Initial components are already
957 * @return Normal NTSTATUS return.
960 static NTSTATUS
rpc_user_password_internals(const DOM_SID
*domain_sid
,
961 const char *domain_name
,
962 struct cli_state
*cli
,
963 struct rpc_pipe_client
*pipe_hnd
,
968 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
969 POLICY_HND connect_pol
, domain_pol
, user_pol
;
970 SAM_USERINFO_CTR ctr
;
971 SAM_USER_INFO_24 p24
;
974 const char *new_password
;
978 d_printf("User must be specified\n");
979 rpc_user_usage(argc
, argv
);
986 new_password
= argv
[1];
988 asprintf(&prompt
, "Enter new password for %s:", user
);
989 new_password
= getpass(prompt
);
993 /* Get sam policy and domain handles */
995 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
998 if (!NT_STATUS_IS_OK(result
)) {
1002 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
1003 MAXIMUM_ALLOWED_ACCESS
,
1004 domain_sid
, &domain_pol
);
1006 if (!NT_STATUS_IS_OK(result
)) {
1010 /* Get handle on user */
1013 uint32
*user_rids
, num_rids
, *name_types
;
1014 uint32 flags
= 0x000003e8; /* Unknown */
1016 result
= rpccli_samr_lookup_names(pipe_hnd
, mem_ctx
, &domain_pol
,
1018 &num_rids
, &user_rids
,
1021 if (!NT_STATUS_IS_OK(result
)) {
1025 result
= rpccli_samr_open_user(pipe_hnd
, mem_ctx
, &domain_pol
,
1026 MAXIMUM_ALLOWED_ACCESS
,
1027 user_rids
[0], &user_pol
);
1029 if (!NT_STATUS_IS_OK(result
)) {
1034 /* Set password on account */
1039 encode_pw_buffer(pwbuf
, new_password
, STR_UNICODE
);
1041 init_sam_user_info24(&p24
, (char *)pwbuf
,24);
1043 ctr
.switch_value
= 24;
1044 ctr
.info
.id24
= &p24
;
1046 result
= rpccli_samr_set_userinfo(pipe_hnd
, mem_ctx
, &user_pol
, 24,
1047 &cli
->user_session_key
, &ctr
);
1049 if (!NT_STATUS_IS_OK(result
)) {
1053 /* Display results */
1061 * Set a user's password on a remote RPC server
1063 * @param argc Standard main() style argc
1064 * @param argv Standard main() style argv. Initial components are already
1067 * @return A shell status integer (0 for success)
1070 static int rpc_user_password(int argc
, const char **argv
)
1072 return run_rpc_command(NULL
, PI_SAMR
, 0, rpc_user_password_internals
,
1077 * List user's groups on a remote RPC server
1079 * All parameters are provided by the run_rpc_command function, except for
1080 * argc, argv which are passes through.
1082 * @param domain_sid The domain sid acquired from the remote server
1083 * @param cli A cli_state connected to the server.
1084 * @param mem_ctx Talloc context, destoyed on completion of the function.
1085 * @param argc Standard main() style argc
1086 * @param argv Standard main() style argv. Initial components are already
1089 * @return Normal NTSTATUS return.
1092 static NTSTATUS
rpc_user_info_internals(const DOM_SID
*domain_sid
,
1093 const char *domain_name
,
1094 struct cli_state
*cli
,
1095 struct rpc_pipe_client
*pipe_hnd
,
1096 TALLOC_CTX
*mem_ctx
,
1100 POLICY_HND connect_pol
, domain_pol
, user_pol
;
1101 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
1102 uint32
*rids
, num_rids
, *name_types
, num_names
;
1103 uint32 flags
= 0x000003e8; /* Unknown */
1109 d_printf("User must be specified\n");
1110 rpc_user_usage(argc
, argv
);
1111 return NT_STATUS_OK
;
1113 /* Get sam policy handle */
1115 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
1117 if (!NT_STATUS_IS_OK(result
)) goto done
;
1119 /* Get domain policy handle */
1121 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
1122 MAXIMUM_ALLOWED_ACCESS
,
1123 domain_sid
, &domain_pol
);
1124 if (!NT_STATUS_IS_OK(result
)) goto done
;
1126 /* Get handle on user */
1128 result
= rpccli_samr_lookup_names(pipe_hnd
, mem_ctx
, &domain_pol
,
1130 &num_rids
, &rids
, &name_types
);
1132 if (!NT_STATUS_IS_OK(result
)) goto done
;
1134 result
= rpccli_samr_open_user(pipe_hnd
, mem_ctx
, &domain_pol
,
1135 MAXIMUM_ALLOWED_ACCESS
,
1136 rids
[0], &user_pol
);
1137 if (!NT_STATUS_IS_OK(result
)) goto done
;
1139 result
= rpccli_samr_query_usergroups(pipe_hnd
, mem_ctx
, &user_pol
,
1140 &num_rids
, &user_gids
);
1142 if (!NT_STATUS_IS_OK(result
)) goto done
;
1147 if ((rids
= TALLOC_ARRAY(mem_ctx
, uint32
, num_rids
)) == NULL
) {
1148 result
= NT_STATUS_NO_MEMORY
;
1152 for (i
= 0; i
< num_rids
; i
++)
1153 rids
[i
] = user_gids
[i
].g_rid
;
1155 result
= rpccli_samr_lookup_rids(pipe_hnd
, mem_ctx
, &domain_pol
,
1157 &num_names
, &names
, &name_types
);
1159 if (!NT_STATUS_IS_OK(result
)) {
1163 /* Display results */
1165 for (i
= 0; i
< num_names
; i
++)
1166 printf("%s\n", names
[i
]);
1173 * List a user's groups from a remote RPC server
1175 * @param argc Standard main() style argc
1176 * @param argv Standard main() style argv. Initial components are already
1179 * @return A shell status integer (0 for success)
1182 static int rpc_user_info(int argc
, const char **argv
)
1184 return run_rpc_command(NULL
, PI_SAMR
, 0, rpc_user_info_internals
,
1189 * List users on a remote RPC server
1191 * All parameters are provided by the run_rpc_command function, except for
1192 * argc, argv which are passes through.
1194 * @param domain_sid The domain sid acquired from the remote server
1195 * @param cli A cli_state connected to the server.
1196 * @param mem_ctx Talloc context, destoyed on completion of the function.
1197 * @param argc Standard main() style argc
1198 * @param argv Standard main() style argv. Initial components are already
1201 * @return Normal NTSTATUS return.
1204 static NTSTATUS
rpc_user_list_internals(const DOM_SID
*domain_sid
,
1205 const char *domain_name
,
1206 struct cli_state
*cli
,
1207 struct rpc_pipe_client
*pipe_hnd
,
1208 TALLOC_CTX
*mem_ctx
,
1212 POLICY_HND connect_pol
, domain_pol
;
1213 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
1214 uint32 start_idx
=0, num_entries
, i
, loop_count
= 0;
1215 SAM_DISPINFO_CTR ctr
;
1216 SAM_DISPINFO_1 info1
;
1218 /* Get sam policy handle */
1220 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
1222 if (!NT_STATUS_IS_OK(result
)) {
1226 /* Get domain policy handle */
1228 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
1229 MAXIMUM_ALLOWED_ACCESS
,
1230 domain_sid
, &domain_pol
);
1231 if (!NT_STATUS_IS_OK(result
)) {
1235 /* Query domain users */
1238 ctr
.sam
.info1
= &info1
;
1239 if (opt_long_list_entries
)
1240 d_printf("\nUser name Comment"\
1241 "\n-----------------------------\n");
1244 uint32 max_entries
, max_size
;
1246 get_query_dispinfo_params(
1247 loop_count
, &max_entries
, &max_size
);
1249 result
= rpccli_samr_query_dispinfo(pipe_hnd
, mem_ctx
, &domain_pol
,
1250 &start_idx
, 1, &num_entries
,
1251 max_entries
, max_size
, &ctr
);
1254 for (i
= 0; i
< num_entries
; i
++) {
1255 unistr2_to_ascii(user
, &(&ctr
.sam
.info1
->str
[i
])->uni_acct_name
, sizeof(user
)-1);
1256 if (opt_long_list_entries
)
1257 unistr2_to_ascii(desc
, &(&ctr
.sam
.info1
->str
[i
])->uni_acct_desc
, sizeof(desc
)-1);
1259 if (opt_long_list_entries
)
1260 printf("%-21.21s %s\n", user
, desc
);
1262 printf("%s\n", user
);
1264 } while (NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
));
1271 * 'net rpc user' entrypoint.
1272 * @param argc Standard main() style argc
1273 * @param argc Standard main() style argv. Initial components are already
1277 int net_rpc_user(int argc
, const char **argv
)
1279 struct functable func
[] = {
1280 {"add", rpc_user_add
},
1281 {"info", rpc_user_info
},
1282 {"delete", rpc_user_delete
},
1283 {"password", rpc_user_password
},
1284 {"rename", rpc_user_rename
},
1289 return run_rpc_command(NULL
,PI_SAMR
, 0,
1290 rpc_user_list_internals
,
1294 return net_run_function(argc
, argv
, func
, rpc_user_usage
);
1297 static NTSTATUS
rpc_sh_user_list(TALLOC_CTX
*mem_ctx
,
1298 struct rpc_sh_ctx
*ctx
,
1299 struct rpc_pipe_client
*pipe_hnd
,
1300 int argc
, const char **argv
)
1302 return rpc_user_list_internals(ctx
->domain_sid
, ctx
->domain_name
,
1303 ctx
->cli
, pipe_hnd
, mem_ctx
,
1307 static NTSTATUS
rpc_sh_user_info(TALLOC_CTX
*mem_ctx
,
1308 struct rpc_sh_ctx
*ctx
,
1309 struct rpc_pipe_client
*pipe_hnd
,
1310 int argc
, const char **argv
)
1312 return rpc_user_info_internals(ctx
->domain_sid
, ctx
->domain_name
,
1313 ctx
->cli
, pipe_hnd
, mem_ctx
,
1317 static NTSTATUS
rpc_sh_handle_user(TALLOC_CTX
*mem_ctx
,
1318 struct rpc_sh_ctx
*ctx
,
1319 struct rpc_pipe_client
*pipe_hnd
,
1320 int argc
, const char **argv
,
1322 TALLOC_CTX
*mem_ctx
,
1323 struct rpc_sh_ctx
*ctx
,
1324 struct rpc_pipe_client
*pipe_hnd
,
1325 const POLICY_HND
*user_hnd
,
1326 int argc
, const char **argv
))
1329 POLICY_HND connect_pol
, domain_pol
, user_pol
;
1330 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
1333 enum lsa_SidType type
;
1336 d_fprintf(stderr
, "usage: %s <username>\n", ctx
->whoami
);
1337 return NT_STATUS_INVALID_PARAMETER
;
1340 ZERO_STRUCT(connect_pol
);
1341 ZERO_STRUCT(domain_pol
);
1342 ZERO_STRUCT(user_pol
);
1344 result
= net_rpc_lookup_name(mem_ctx
, pipe_hnd
->cli
, argv
[0],
1345 NULL
, NULL
, &sid
, &type
);
1346 if (!NT_STATUS_IS_OK(result
)) {
1347 d_fprintf(stderr
, "Could not lookup %s: %s\n", argv
[0],
1352 if (type
!= SID_NAME_USER
) {
1353 d_fprintf(stderr
, "%s is a %s, not a user\n", argv
[0],
1354 sid_type_lookup(type
));
1355 result
= NT_STATUS_NO_SUCH_USER
;
1359 if (!sid_peek_check_rid(ctx
->domain_sid
, &sid
, &rid
)) {
1360 d_fprintf(stderr
, "%s is not in our domain\n", argv
[0]);
1361 result
= NT_STATUS_NO_SUCH_USER
;
1365 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
,
1366 MAXIMUM_ALLOWED_ACCESS
, &connect_pol
);
1367 if (!NT_STATUS_IS_OK(result
)) {
1371 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
1372 MAXIMUM_ALLOWED_ACCESS
,
1373 ctx
->domain_sid
, &domain_pol
);
1374 if (!NT_STATUS_IS_OK(result
)) {
1378 result
= rpccli_samr_open_user(pipe_hnd
, mem_ctx
, &domain_pol
,
1379 MAXIMUM_ALLOWED_ACCESS
,
1381 if (!NT_STATUS_IS_OK(result
)) {
1385 result
= fn(mem_ctx
, ctx
, pipe_hnd
, &user_pol
, argc
-1, argv
+1);
1388 if (is_valid_policy_hnd(&user_pol
)) {
1389 rpccli_samr_close(pipe_hnd
, mem_ctx
, &user_pol
);
1391 if (is_valid_policy_hnd(&domain_pol
)) {
1392 rpccli_samr_close(pipe_hnd
, mem_ctx
, &domain_pol
);
1394 if (is_valid_policy_hnd(&connect_pol
)) {
1395 rpccli_samr_close(pipe_hnd
, mem_ctx
, &connect_pol
);
1400 static NTSTATUS
rpc_sh_user_show_internals(TALLOC_CTX
*mem_ctx
,
1401 struct rpc_sh_ctx
*ctx
,
1402 struct rpc_pipe_client
*pipe_hnd
,
1403 const POLICY_HND
*user_hnd
,
1404 int argc
, const char **argv
)
1407 SAM_USERINFO_CTR
*ctr
;
1408 SAM_USER_INFO_21
*info
;
1411 d_fprintf(stderr
, "usage: %s show <username>\n", ctx
->whoami
);
1412 return NT_STATUS_INVALID_PARAMETER
;
1415 result
= rpccli_samr_query_userinfo(pipe_hnd
, mem_ctx
, user_hnd
,
1417 if (!NT_STATUS_IS_OK(result
)) {
1421 info
= ctr
->info
.id21
;
1423 d_printf("user rid: %d, group rid: %d\n", info
->user_rid
,
1429 static NTSTATUS
rpc_sh_user_show(TALLOC_CTX
*mem_ctx
,
1430 struct rpc_sh_ctx
*ctx
,
1431 struct rpc_pipe_client
*pipe_hnd
,
1432 int argc
, const char **argv
)
1434 return rpc_sh_handle_user(mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
1435 rpc_sh_user_show_internals
);
1438 #define FETCHSTR(name, rec) \
1439 do { if (strequal(ctx->thiscmd, name)) { \
1440 oldval = rpcstr_pull_unistr2_talloc(mem_ctx, &usr->uni_##rec); } \
1443 #define SETSTR(name, rec, flag) \
1444 do { if (strequal(ctx->thiscmd, name)) { \
1445 init_unistr2(&usr->uni_##rec, argv[0], UNI_STR_TERMINATE); \
1446 init_uni_hdr(&usr->hdr_##rec, &usr->uni_##rec); \
1447 usr->fields_present |= ACCT_##flag; } \
1450 static NTSTATUS
rpc_sh_user_str_edit_internals(TALLOC_CTX
*mem_ctx
,
1451 struct rpc_sh_ctx
*ctx
,
1452 struct rpc_pipe_client
*pipe_hnd
,
1453 const POLICY_HND
*user_hnd
,
1454 int argc
, const char **argv
)
1457 SAM_USERINFO_CTR
*ctr
;
1458 SAM_USER_INFO_21
*usr
;
1459 const char *username
;
1460 const char *oldval
= "";
1463 d_fprintf(stderr
, "usage: %s <username> [new value|NULL]\n",
1465 return NT_STATUS_INVALID_PARAMETER
;
1468 result
= rpccli_samr_query_userinfo(pipe_hnd
, mem_ctx
, user_hnd
,
1470 if (!NT_STATUS_IS_OK(result
)) {
1474 usr
= ctr
->info
.id21
;
1476 username
= rpcstr_pull_unistr2_talloc(mem_ctx
, &usr
->uni_user_name
);
1478 FETCHSTR("fullname", full_name
);
1479 FETCHSTR("homedir", home_dir
);
1480 FETCHSTR("homedrive", dir_drive
);
1481 FETCHSTR("logonscript", logon_script
);
1482 FETCHSTR("profilepath", profile_path
);
1483 FETCHSTR("description", acct_desc
);
1486 d_printf("%s's %s: [%s]\n", username
, ctx
->thiscmd
, oldval
);
1492 if (strcmp(argv
[0], "NULL") == 0) {
1496 SETSTR("fullname", full_name
, FULL_NAME
);
1497 SETSTR("homedir", home_dir
, HOME_DIR
);
1498 SETSTR("homedrive", dir_drive
, HOME_DRIVE
);
1499 SETSTR("logonscript", logon_script
, LOGON_SCRIPT
);
1500 SETSTR("profilepath", profile_path
, PROFILE
);
1501 SETSTR("description", acct_desc
, DESCRIPTION
);
1503 result
= rpccli_samr_set_userinfo2(
1504 pipe_hnd
, mem_ctx
, user_hnd
, 21,
1505 &pipe_hnd
->cli
->user_session_key
, ctr
);
1507 d_printf("Set %s's %s from [%s] to [%s]\n", username
,
1508 ctx
->thiscmd
, oldval
, argv
[0]);
1515 #define HANDLEFLG(name, rec) \
1516 do { if (strequal(ctx->thiscmd, name)) { \
1517 oldval = (oldflags & ACB_##rec) ? "yes" : "no"; \
1519 newflags = oldflags | ACB_##rec; \
1521 newflags = oldflags & ~ACB_##rec; \
1524 static NTSTATUS
rpc_sh_user_str_edit(TALLOC_CTX
*mem_ctx
,
1525 struct rpc_sh_ctx
*ctx
,
1526 struct rpc_pipe_client
*pipe_hnd
,
1527 int argc
, const char **argv
)
1529 return rpc_sh_handle_user(mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
1530 rpc_sh_user_str_edit_internals
);
1533 static NTSTATUS
rpc_sh_user_flag_edit_internals(TALLOC_CTX
*mem_ctx
,
1534 struct rpc_sh_ctx
*ctx
,
1535 struct rpc_pipe_client
*pipe_hnd
,
1536 const POLICY_HND
*user_hnd
,
1537 int argc
, const char **argv
)
1540 SAM_USERINFO_CTR
*ctr
;
1541 SAM_USER_INFO_21
*usr
;
1542 const char *username
;
1543 const char *oldval
= "unknown";
1544 uint32 oldflags
, newflags
;
1548 ((argc
== 1) && !strequal(argv
[0], "yes") &&
1549 !strequal(argv
[0], "no"))) {
1550 d_fprintf(stderr
, "usage: %s <username> [yes|no]\n",
1552 return NT_STATUS_INVALID_PARAMETER
;
1555 newval
= strequal(argv
[0], "yes");
1557 result
= rpccli_samr_query_userinfo(pipe_hnd
, mem_ctx
, user_hnd
,
1559 if (!NT_STATUS_IS_OK(result
)) {
1563 usr
= ctr
->info
.id21
;
1565 username
= rpcstr_pull_unistr2_talloc(mem_ctx
, &usr
->uni_user_name
);
1566 oldflags
= usr
->acb_info
;
1567 newflags
= usr
->acb_info
;
1569 HANDLEFLG("disabled", DISABLED
);
1570 HANDLEFLG("pwnotreq", PWNOTREQ
);
1571 HANDLEFLG("autolock", AUTOLOCK
);
1572 HANDLEFLG("pwnoexp", PWNOEXP
);
1575 d_printf("%s's %s flag: %s\n", username
, ctx
->thiscmd
, oldval
);
1581 usr
->acb_info
= newflags
;
1582 usr
->fields_present
= ACCT_FLAGS
;
1584 result
= rpccli_samr_set_userinfo2(
1585 pipe_hnd
, mem_ctx
, user_hnd
, 21,
1586 &pipe_hnd
->cli
->user_session_key
, ctr
);
1588 if (NT_STATUS_IS_OK(result
)) {
1589 d_printf("Set %s's %s flag from [%s] to [%s]\n", username
,
1590 ctx
->thiscmd
, oldval
, argv
[0]);
1598 static NTSTATUS
rpc_sh_user_flag_edit(TALLOC_CTX
*mem_ctx
,
1599 struct rpc_sh_ctx
*ctx
,
1600 struct rpc_pipe_client
*pipe_hnd
,
1601 int argc
, const char **argv
)
1603 return rpc_sh_handle_user(mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
1604 rpc_sh_user_flag_edit_internals
);
1607 struct rpc_sh_cmd
*net_rpc_user_edit_cmds(TALLOC_CTX
*mem_ctx
,
1608 struct rpc_sh_ctx
*ctx
)
1610 static struct rpc_sh_cmd cmds
[] = {
1612 { "fullname", NULL
, PI_SAMR
, rpc_sh_user_str_edit
,
1613 "Show/Set a user's full name" },
1615 { "homedir", NULL
, PI_SAMR
, rpc_sh_user_str_edit
,
1616 "Show/Set a user's home directory" },
1618 { "homedrive", NULL
, PI_SAMR
, rpc_sh_user_str_edit
,
1619 "Show/Set a user's home drive" },
1621 { "logonscript", NULL
, PI_SAMR
, rpc_sh_user_str_edit
,
1622 "Show/Set a user's logon script" },
1624 { "profilepath", NULL
, PI_SAMR
, rpc_sh_user_str_edit
,
1625 "Show/Set a user's profile path" },
1627 { "description", NULL
, PI_SAMR
, rpc_sh_user_str_edit
,
1628 "Show/Set a user's description" },
1630 { "disabled", NULL
, PI_SAMR
, rpc_sh_user_flag_edit
,
1631 "Show/Set whether a user is disabled" },
1633 { "autolock", NULL
, PI_SAMR
, rpc_sh_user_flag_edit
,
1634 "Show/Set whether a user locked out" },
1636 { "pwnotreq", NULL
, PI_SAMR
, rpc_sh_user_flag_edit
,
1637 "Show/Set whether a user does not need a password" },
1639 { "pwnoexp", NULL
, PI_SAMR
, rpc_sh_user_flag_edit
,
1640 "Show/Set whether a user's password does not expire" },
1642 { NULL
, NULL
, 0, NULL
, NULL
}
1648 struct rpc_sh_cmd
*net_rpc_user_cmds(TALLOC_CTX
*mem_ctx
,
1649 struct rpc_sh_ctx
*ctx
)
1651 static struct rpc_sh_cmd cmds
[] = {
1653 { "list", NULL
, PI_SAMR
, rpc_sh_user_list
,
1654 "List available users" },
1656 { "info", NULL
, PI_SAMR
, rpc_sh_user_info
,
1657 "List the domain groups a user is member of" },
1659 { "show", NULL
, PI_SAMR
, rpc_sh_user_show
,
1660 "Show info about a user" },
1662 { "edit", net_rpc_user_edit_cmds
, 0, NULL
,
1663 "Show/Modify a user's fields" },
1665 { NULL
, NULL
, 0, NULL
, NULL
}
1671 /****************************************************************************/
1674 * Basic usage function for 'net rpc group'
1675 * @param argc Standard main() style argc.
1676 * @param argv Standard main() style argv. Initial components are already
1680 static int rpc_group_usage(int argc
, const char **argv
)
1682 return net_help_group(argc
, argv
);
1686 * Delete group on a remote RPC server
1688 * All parameters are provided by the run_rpc_command function, except for
1689 * argc, argv which are passes through.
1691 * @param domain_sid The domain sid acquired from the remote server
1692 * @param cli A cli_state connected to the server.
1693 * @param mem_ctx Talloc context, destoyed on completion of the function.
1694 * @param argc Standard main() style argc
1695 * @param argv Standard main() style argv. Initial components are already
1698 * @return Normal NTSTATUS return.
1701 static NTSTATUS
rpc_group_delete_internals(const DOM_SID
*domain_sid
,
1702 const char *domain_name
,
1703 struct cli_state
*cli
,
1704 struct rpc_pipe_client
*pipe_hnd
,
1705 TALLOC_CTX
*mem_ctx
,
1709 POLICY_HND connect_pol
, domain_pol
, group_pol
, user_pol
;
1710 BOOL group_is_primary
= False
;
1711 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
1713 uint32
*group_rids
, num_rids
, *name_types
, num_members
,
1714 *group_attrs
, group_rid
;
1715 uint32 flags
= 0x000003e8; /* Unknown */
1718 /* DOM_GID *user_gids; */
1719 SAM_USERINFO_CTR
*user_ctr
;
1723 d_printf("specify group\n");
1724 rpc_group_usage(argc
,argv
);
1725 return NT_STATUS_OK
; /* ok? */
1728 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
1731 if (!NT_STATUS_IS_OK(result
)) {
1732 d_fprintf(stderr
, "Request samr_connect failed\n");
1736 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
1737 MAXIMUM_ALLOWED_ACCESS
,
1738 domain_sid
, &domain_pol
);
1740 if (!NT_STATUS_IS_OK(result
)) {
1741 d_fprintf(stderr
, "Request open_domain failed\n");
1745 result
= rpccli_samr_lookup_names(pipe_hnd
, mem_ctx
, &domain_pol
,
1747 &num_rids
, &group_rids
,
1750 if (!NT_STATUS_IS_OK(result
)) {
1751 d_fprintf(stderr
, "Lookup of '%s' failed\n",argv
[0]);
1755 switch (name_types
[0])
1757 case SID_NAME_DOM_GRP
:
1758 result
= rpccli_samr_open_group(pipe_hnd
, mem_ctx
, &domain_pol
,
1759 MAXIMUM_ALLOWED_ACCESS
,
1760 group_rids
[0], &group_pol
);
1761 if (!NT_STATUS_IS_OK(result
)) {
1762 d_fprintf(stderr
, "Request open_group failed");
1766 group_rid
= group_rids
[0];
1768 result
= rpccli_samr_query_groupmem(pipe_hnd
, mem_ctx
, &group_pol
,
1769 &num_members
, &group_rids
,
1772 if (!NT_STATUS_IS_OK(result
)) {
1773 d_fprintf(stderr
, "Unable to query group members of %s",argv
[0]);
1778 d_printf("Domain Group %s (rid: %d) has %d members\n",
1779 argv
[0],group_rid
,num_members
);
1782 /* Check if group is anyone's primary group */
1783 for (i
= 0; i
< num_members
; i
++)
1785 result
= rpccli_samr_open_user(pipe_hnd
, mem_ctx
, &domain_pol
,
1786 MAXIMUM_ALLOWED_ACCESS
,
1787 group_rids
[i
], &user_pol
);
1789 if (!NT_STATUS_IS_OK(result
)) {
1790 d_fprintf(stderr
, "Unable to open group member %d\n",group_rids
[i
]);
1794 ZERO_STRUCT(user_ctr
);
1796 result
= rpccli_samr_query_userinfo(pipe_hnd
, mem_ctx
, &user_pol
,
1799 if (!NT_STATUS_IS_OK(result
)) {
1800 d_fprintf(stderr
, "Unable to lookup userinfo for group member %d\n",group_rids
[i
]);
1804 if (user_ctr
->info
.id21
->group_rid
== group_rid
) {
1805 unistr2_to_ascii(temp
, &(user_ctr
->info
.id21
)->uni_user_name
,
1808 d_printf("Group is primary group of %s\n",temp
);
1809 group_is_primary
= True
;
1812 rpccli_samr_close(pipe_hnd
, mem_ctx
, &user_pol
);
1815 if (group_is_primary
) {
1816 d_fprintf(stderr
, "Unable to delete group because some "
1817 "of it's members have it as primary group\n");
1818 result
= NT_STATUS_MEMBERS_PRIMARY_GROUP
;
1822 /* remove all group members */
1823 for (i
= 0; i
< num_members
; i
++)
1826 d_printf("Remove group member %d...",group_rids
[i
]);
1827 result
= rpccli_samr_del_groupmem(pipe_hnd
, mem_ctx
, &group_pol
, group_rids
[i
]);
1829 if (NT_STATUS_IS_OK(result
)) {
1834 d_printf("failed\n");
1839 result
= rpccli_samr_delete_dom_group(pipe_hnd
, mem_ctx
, &group_pol
);
1842 /* removing a local group is easier... */
1843 case SID_NAME_ALIAS
:
1844 result
= rpccli_samr_open_alias(pipe_hnd
, mem_ctx
, &domain_pol
,
1845 MAXIMUM_ALLOWED_ACCESS
,
1846 group_rids
[0], &group_pol
);
1848 if (!NT_STATUS_IS_OK(result
)) {
1849 d_fprintf(stderr
, "Request open_alias failed\n");
1853 result
= rpccli_samr_delete_dom_alias(pipe_hnd
, mem_ctx
, &group_pol
);
1856 d_fprintf(stderr
, "%s is of type %s. This command is only for deleting local or global groups\n",
1857 argv
[0],sid_type_lookup(name_types
[0]));
1858 result
= NT_STATUS_UNSUCCESSFUL
;
1863 if (NT_STATUS_IS_OK(result
)) {
1865 d_printf("Deleted %s '%s'\n",sid_type_lookup(name_types
[0]),argv
[0]);
1867 d_fprintf(stderr
, "Deleting of %s failed: %s\n",argv
[0],
1868 get_friendly_nt_error_msg(result
));
1876 static int rpc_group_delete(int argc
, const char **argv
)
1878 return run_rpc_command(NULL
, PI_SAMR
, 0, rpc_group_delete_internals
,
1882 static NTSTATUS
rpc_group_add_internals(const DOM_SID
*domain_sid
,
1883 const char *domain_name
,
1884 struct cli_state
*cli
,
1885 struct rpc_pipe_client
*pipe_hnd
,
1886 TALLOC_CTX
*mem_ctx
,
1890 POLICY_HND connect_pol
, domain_pol
, group_pol
;
1891 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
1892 GROUP_INFO_CTR group_info
;
1895 d_printf("Group name must be specified\n");
1896 rpc_group_usage(argc
, argv
);
1897 return NT_STATUS_OK
;
1900 /* Get sam policy handle */
1902 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
1904 if (!NT_STATUS_IS_OK(result
)) goto done
;
1906 /* Get domain policy handle */
1908 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
1909 MAXIMUM_ALLOWED_ACCESS
,
1910 domain_sid
, &domain_pol
);
1911 if (!NT_STATUS_IS_OK(result
)) goto done
;
1913 /* Create the group */
1915 result
= rpccli_samr_create_dom_group(pipe_hnd
, mem_ctx
, &domain_pol
,
1916 argv
[0], MAXIMUM_ALLOWED_ACCESS
,
1918 if (!NT_STATUS_IS_OK(result
)) goto done
;
1920 if (strlen(opt_comment
) == 0) goto done
;
1922 /* We've got a comment to set */
1924 group_info
.switch_value1
= 4;
1925 init_samr_group_info4(&group_info
.group
.info4
, opt_comment
);
1927 result
= rpccli_samr_set_groupinfo(pipe_hnd
, mem_ctx
, &group_pol
, &group_info
);
1928 if (!NT_STATUS_IS_OK(result
)) goto done
;
1931 if (NT_STATUS_IS_OK(result
))
1932 DEBUG(5, ("add group succeeded\n"));
1934 d_fprintf(stderr
, "add group failed: %s\n", nt_errstr(result
));
1939 static NTSTATUS
rpc_alias_add_internals(const DOM_SID
*domain_sid
,
1940 const char *domain_name
,
1941 struct cli_state
*cli
,
1942 struct rpc_pipe_client
*pipe_hnd
,
1943 TALLOC_CTX
*mem_ctx
,
1947 POLICY_HND connect_pol
, domain_pol
, alias_pol
;
1948 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
1949 ALIAS_INFO_CTR alias_info
;
1952 d_printf("Alias name must be specified\n");
1953 rpc_group_usage(argc
, argv
);
1954 return NT_STATUS_OK
;
1957 /* Get sam policy handle */
1959 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
1961 if (!NT_STATUS_IS_OK(result
)) goto done
;
1963 /* Get domain policy handle */
1965 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
1966 MAXIMUM_ALLOWED_ACCESS
,
1967 domain_sid
, &domain_pol
);
1968 if (!NT_STATUS_IS_OK(result
)) goto done
;
1970 /* Create the group */
1972 result
= rpccli_samr_create_dom_alias(pipe_hnd
, mem_ctx
, &domain_pol
,
1973 argv
[0], &alias_pol
);
1974 if (!NT_STATUS_IS_OK(result
)) goto done
;
1976 if (strlen(opt_comment
) == 0) goto done
;
1978 /* We've got a comment to set */
1980 alias_info
.level
= 3;
1981 init_samr_alias_info3(&alias_info
.alias
.info3
, opt_comment
);
1983 result
= rpccli_samr_set_aliasinfo(pipe_hnd
, mem_ctx
, &alias_pol
, &alias_info
);
1984 if (!NT_STATUS_IS_OK(result
)) goto done
;
1987 if (NT_STATUS_IS_OK(result
))
1988 DEBUG(5, ("add alias succeeded\n"));
1990 d_fprintf(stderr
, "add alias failed: %s\n", nt_errstr(result
));
1995 static int rpc_group_add(int argc
, const char **argv
)
1998 return run_rpc_command(NULL
, PI_SAMR
, 0,
1999 rpc_alias_add_internals
,
2002 return run_rpc_command(NULL
, PI_SAMR
, 0,
2003 rpc_group_add_internals
,
2007 static NTSTATUS
get_sid_from_name(struct cli_state
*cli
,
2008 TALLOC_CTX
*mem_ctx
,
2011 enum lsa_SidType
*type
)
2013 DOM_SID
*sids
= NULL
;
2014 enum lsa_SidType
*types
= NULL
;
2015 struct rpc_pipe_client
*pipe_hnd
;
2017 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
2019 pipe_hnd
= cli_rpc_pipe_open_noauth(cli
, PI_LSARPC
, &result
);
2024 result
= rpccli_lsa_open_policy(pipe_hnd
, mem_ctx
, False
,
2025 SEC_RIGHTS_MAXIMUM_ALLOWED
, &lsa_pol
);
2027 if (!NT_STATUS_IS_OK(result
)) {
2031 result
= rpccli_lsa_lookup_names(pipe_hnd
, mem_ctx
, &lsa_pol
, 1,
2032 &name
, NULL
, 1, &sids
, &types
);
2034 if (NT_STATUS_IS_OK(result
)) {
2035 sid_copy(sid
, &sids
[0]);
2039 rpccli_lsa_Close(pipe_hnd
, mem_ctx
, &lsa_pol
);
2043 cli_rpc_pipe_close(pipe_hnd
);
2046 if (!NT_STATUS_IS_OK(result
) && (StrnCaseCmp(name
, "S-", 2) == 0)) {
2048 /* Try as S-1-5-whatever */
2052 if (string_to_sid(&tmp_sid
, name
)) {
2053 sid_copy(sid
, &tmp_sid
);
2054 *type
= SID_NAME_UNKNOWN
;
2055 result
= NT_STATUS_OK
;
2062 static NTSTATUS
rpc_add_groupmem(struct rpc_pipe_client
*pipe_hnd
,
2063 TALLOC_CTX
*mem_ctx
,
2064 const DOM_SID
*group_sid
,
2067 POLICY_HND connect_pol
, domain_pol
;
2070 POLICY_HND group_pol
;
2073 uint32
*rids
= NULL
;
2074 uint32
*rid_types
= NULL
;
2078 sid_copy(&sid
, group_sid
);
2080 if (!sid_split_rid(&sid
, &group_rid
)) {
2081 return NT_STATUS_UNSUCCESSFUL
;
2084 /* Get sam policy handle */
2085 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
2087 if (!NT_STATUS_IS_OK(result
)) {
2091 /* Get domain policy handle */
2092 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
2093 MAXIMUM_ALLOWED_ACCESS
,
2095 if (!NT_STATUS_IS_OK(result
)) {
2099 result
= rpccli_samr_lookup_names(pipe_hnd
, mem_ctx
, &domain_pol
, 1000,
2101 &num_rids
, &rids
, &rid_types
);
2103 if (!NT_STATUS_IS_OK(result
)) {
2104 d_fprintf(stderr
, "Could not lookup up group member %s\n", member
);
2108 result
= rpccli_samr_open_group(pipe_hnd
, mem_ctx
, &domain_pol
,
2109 MAXIMUM_ALLOWED_ACCESS
,
2110 group_rid
, &group_pol
);
2112 if (!NT_STATUS_IS_OK(result
)) {
2116 result
= rpccli_samr_add_groupmem(pipe_hnd
, mem_ctx
, &group_pol
, rids
[0]);
2119 rpccli_samr_close(pipe_hnd
, mem_ctx
, &connect_pol
);
2123 static NTSTATUS
rpc_add_aliasmem(struct rpc_pipe_client
*pipe_hnd
,
2124 TALLOC_CTX
*mem_ctx
,
2125 const DOM_SID
*alias_sid
,
2128 POLICY_HND connect_pol
, domain_pol
;
2131 POLICY_HND alias_pol
;
2134 enum lsa_SidType member_type
;
2138 sid_copy(&sid
, alias_sid
);
2140 if (!sid_split_rid(&sid
, &alias_rid
)) {
2141 return NT_STATUS_UNSUCCESSFUL
;
2144 result
= get_sid_from_name(pipe_hnd
->cli
, mem_ctx
, member
,
2145 &member_sid
, &member_type
);
2147 if (!NT_STATUS_IS_OK(result
)) {
2148 d_fprintf(stderr
, "Could not lookup up group member %s\n", member
);
2152 /* Get sam policy handle */
2153 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
2155 if (!NT_STATUS_IS_OK(result
)) {
2159 /* Get domain policy handle */
2160 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
2161 MAXIMUM_ALLOWED_ACCESS
,
2163 if (!NT_STATUS_IS_OK(result
)) {
2167 result
= rpccli_samr_open_alias(pipe_hnd
, mem_ctx
, &domain_pol
,
2168 MAXIMUM_ALLOWED_ACCESS
,
2169 alias_rid
, &alias_pol
);
2171 if (!NT_STATUS_IS_OK(result
)) {
2175 result
= rpccli_samr_add_aliasmem(pipe_hnd
, mem_ctx
, &alias_pol
, &member_sid
);
2177 if (!NT_STATUS_IS_OK(result
)) {
2182 rpccli_samr_close(pipe_hnd
, mem_ctx
, &connect_pol
);
2186 static NTSTATUS
rpc_group_addmem_internals(const DOM_SID
*domain_sid
,
2187 const char *domain_name
,
2188 struct cli_state
*cli
,
2189 struct rpc_pipe_client
*pipe_hnd
,
2190 TALLOC_CTX
*mem_ctx
,
2195 enum lsa_SidType group_type
;
2198 d_printf("Usage: 'net rpc group addmem <group> <member>\n");
2199 return NT_STATUS_UNSUCCESSFUL
;
2202 if (!NT_STATUS_IS_OK(get_sid_from_name(cli
, mem_ctx
, argv
[0],
2203 &group_sid
, &group_type
))) {
2204 d_fprintf(stderr
, "Could not lookup group name %s\n", argv
[0]);
2205 return NT_STATUS_UNSUCCESSFUL
;
2208 if (group_type
== SID_NAME_DOM_GRP
) {
2209 NTSTATUS result
= rpc_add_groupmem(pipe_hnd
, mem_ctx
,
2210 &group_sid
, argv
[1]);
2212 if (!NT_STATUS_IS_OK(result
)) {
2213 d_fprintf(stderr
, "Could not add %s to %s: %s\n",
2214 argv
[1], argv
[0], nt_errstr(result
));
2219 if (group_type
== SID_NAME_ALIAS
) {
2220 NTSTATUS result
= rpc_add_aliasmem(pipe_hnd
, mem_ctx
,
2221 &group_sid
, argv
[1]);
2223 if (!NT_STATUS_IS_OK(result
)) {
2224 d_fprintf(stderr
, "Could not add %s to %s: %s\n",
2225 argv
[1], argv
[0], nt_errstr(result
));
2230 d_fprintf(stderr
, "Can only add members to global or local groups "
2231 "which %s is not\n", argv
[0]);
2233 return NT_STATUS_UNSUCCESSFUL
;
2236 static int rpc_group_addmem(int argc
, const char **argv
)
2238 return run_rpc_command(NULL
, PI_SAMR
, 0,
2239 rpc_group_addmem_internals
,
2243 static NTSTATUS
rpc_del_groupmem(struct rpc_pipe_client
*pipe_hnd
,
2244 TALLOC_CTX
*mem_ctx
,
2245 const DOM_SID
*group_sid
,
2248 POLICY_HND connect_pol
, domain_pol
;
2251 POLICY_HND group_pol
;
2254 uint32
*rids
= NULL
;
2255 uint32
*rid_types
= NULL
;
2259 sid_copy(&sid
, group_sid
);
2261 if (!sid_split_rid(&sid
, &group_rid
))
2262 return NT_STATUS_UNSUCCESSFUL
;
2264 /* Get sam policy handle */
2265 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
2267 if (!NT_STATUS_IS_OK(result
))
2270 /* Get domain policy handle */
2271 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
2272 MAXIMUM_ALLOWED_ACCESS
,
2274 if (!NT_STATUS_IS_OK(result
))
2277 result
= rpccli_samr_lookup_names(pipe_hnd
, mem_ctx
, &domain_pol
, 1000,
2279 &num_rids
, &rids
, &rid_types
);
2281 if (!NT_STATUS_IS_OK(result
)) {
2282 d_fprintf(stderr
, "Could not lookup up group member %s\n", member
);
2286 result
= rpccli_samr_open_group(pipe_hnd
, mem_ctx
, &domain_pol
,
2287 MAXIMUM_ALLOWED_ACCESS
,
2288 group_rid
, &group_pol
);
2290 if (!NT_STATUS_IS_OK(result
))
2293 result
= rpccli_samr_del_groupmem(pipe_hnd
, mem_ctx
, &group_pol
, rids
[0]);
2296 rpccli_samr_close(pipe_hnd
, mem_ctx
, &connect_pol
);
2300 static NTSTATUS
rpc_del_aliasmem(struct rpc_pipe_client
*pipe_hnd
,
2301 TALLOC_CTX
*mem_ctx
,
2302 const DOM_SID
*alias_sid
,
2305 POLICY_HND connect_pol
, domain_pol
;
2308 POLICY_HND alias_pol
;
2311 enum lsa_SidType member_type
;
2315 sid_copy(&sid
, alias_sid
);
2317 if (!sid_split_rid(&sid
, &alias_rid
))
2318 return NT_STATUS_UNSUCCESSFUL
;
2320 result
= get_sid_from_name(pipe_hnd
->cli
, mem_ctx
, member
,
2321 &member_sid
, &member_type
);
2323 if (!NT_STATUS_IS_OK(result
)) {
2324 d_fprintf(stderr
, "Could not lookup up group member %s\n", member
);
2328 /* Get sam policy handle */
2329 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
2331 if (!NT_STATUS_IS_OK(result
)) {
2335 /* Get domain policy handle */
2336 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
2337 MAXIMUM_ALLOWED_ACCESS
,
2339 if (!NT_STATUS_IS_OK(result
)) {
2343 result
= rpccli_samr_open_alias(pipe_hnd
, mem_ctx
, &domain_pol
,
2344 MAXIMUM_ALLOWED_ACCESS
,
2345 alias_rid
, &alias_pol
);
2347 if (!NT_STATUS_IS_OK(result
))
2350 result
= rpccli_samr_del_aliasmem(pipe_hnd
, mem_ctx
, &alias_pol
, &member_sid
);
2352 if (!NT_STATUS_IS_OK(result
))
2356 rpccli_samr_close(pipe_hnd
, mem_ctx
, &connect_pol
);
2360 static NTSTATUS
rpc_group_delmem_internals(const DOM_SID
*domain_sid
,
2361 const char *domain_name
,
2362 struct cli_state
*cli
,
2363 struct rpc_pipe_client
*pipe_hnd
,
2364 TALLOC_CTX
*mem_ctx
,
2369 enum lsa_SidType group_type
;
2372 d_printf("Usage: 'net rpc group delmem <group> <member>\n");
2373 return NT_STATUS_UNSUCCESSFUL
;
2376 if (!NT_STATUS_IS_OK(get_sid_from_name(cli
, mem_ctx
, argv
[0],
2377 &group_sid
, &group_type
))) {
2378 d_fprintf(stderr
, "Could not lookup group name %s\n", argv
[0]);
2379 return NT_STATUS_UNSUCCESSFUL
;
2382 if (group_type
== SID_NAME_DOM_GRP
) {
2383 NTSTATUS result
= rpc_del_groupmem(pipe_hnd
, mem_ctx
,
2384 &group_sid
, argv
[1]);
2386 if (!NT_STATUS_IS_OK(result
)) {
2387 d_fprintf(stderr
, "Could not del %s from %s: %s\n",
2388 argv
[1], argv
[0], nt_errstr(result
));
2393 if (group_type
== SID_NAME_ALIAS
) {
2394 NTSTATUS result
= rpc_del_aliasmem(pipe_hnd
, mem_ctx
,
2395 &group_sid
, argv
[1]);
2397 if (!NT_STATUS_IS_OK(result
)) {
2398 d_fprintf(stderr
, "Could not del %s from %s: %s\n",
2399 argv
[1], argv
[0], nt_errstr(result
));
2404 d_fprintf(stderr
, "Can only delete members from global or local groups "
2405 "which %s is not\n", argv
[0]);
2407 return NT_STATUS_UNSUCCESSFUL
;
2410 static int rpc_group_delmem(int argc
, const char **argv
)
2412 return run_rpc_command(NULL
, PI_SAMR
, 0,
2413 rpc_group_delmem_internals
,
2418 * List groups on a remote RPC server
2420 * All parameters are provided by the run_rpc_command function, except for
2421 * argc, argv which are passes through.
2423 * @param domain_sid The domain sid acquired from the remote server
2424 * @param cli A cli_state connected to the server.
2425 * @param mem_ctx Talloc context, destoyed on completion of the function.
2426 * @param argc Standard main() style argc
2427 * @param argv Standard main() style argv. Initial components are already
2430 * @return Normal NTSTATUS return.
2433 static NTSTATUS
rpc_group_list_internals(const DOM_SID
*domain_sid
,
2434 const char *domain_name
,
2435 struct cli_state
*cli
,
2436 struct rpc_pipe_client
*pipe_hnd
,
2437 TALLOC_CTX
*mem_ctx
,
2441 POLICY_HND connect_pol
, domain_pol
;
2442 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
2443 uint32 start_idx
=0, max_entries
=250, num_entries
, i
, loop_count
= 0;
2444 struct acct_info
*groups
;
2445 BOOL global
= False
;
2447 BOOL builtin
= False
;
2455 for (i
=0; i
<argc
; i
++) {
2456 if (strequal(argv
[i
], "global"))
2459 if (strequal(argv
[i
], "local"))
2462 if (strequal(argv
[i
], "builtin"))
2466 /* Get sam policy handle */
2468 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
2470 if (!NT_STATUS_IS_OK(result
)) {
2474 /* Get domain policy handle */
2476 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
2477 MAXIMUM_ALLOWED_ACCESS
,
2478 domain_sid
, &domain_pol
);
2479 if (!NT_STATUS_IS_OK(result
)) {
2483 /* Query domain groups */
2484 if (opt_long_list_entries
)
2485 d_printf("\nGroup name Comment"\
2486 "\n-----------------------------\n");
2488 SAM_DISPINFO_CTR ctr
;
2489 SAM_DISPINFO_3 info3
;
2494 ctr
.sam
.info3
= &info3
;
2498 get_query_dispinfo_params(
2499 loop_count
, &max_entries
, &max_size
);
2501 result
= rpccli_samr_query_dispinfo(pipe_hnd
, mem_ctx
, &domain_pol
,
2502 &start_idx
, 3, &num_entries
,
2503 max_entries
, max_size
, &ctr
);
2505 if (!NT_STATUS_IS_OK(result
) &&
2506 !NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
))
2509 for (i
= 0; i
< num_entries
; i
++) {
2511 fstring group
, desc
;
2513 unistr2_to_ascii(group
, &(&ctr
.sam
.info3
->str
[i
])->uni_grp_name
, sizeof(group
)-1);
2514 unistr2_to_ascii(desc
, &(&ctr
.sam
.info3
->str
[i
])->uni_grp_desc
, sizeof(desc
)-1);
2516 if (opt_long_list_entries
)
2517 printf("%-21.21s %-50.50s\n",
2520 printf("%s\n", group
);
2522 } while (NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
));
2523 /* query domain aliases */
2528 /* The max_size field in cli_samr_enum_als_groups is more like
2529 * an account_control field with indiviual bits what to
2530 * retrieve. Set this to 0xffff as NT4 usrmgr.exe does to get
2531 * everything. I'm too lazy (sorry) to get this through to
2532 * rpc_parse/ etc. Volker */
2534 result
= rpccli_samr_enum_als_groups(pipe_hnd
, mem_ctx
, &domain_pol
,
2536 &groups
, &num_entries
);
2538 if (!NT_STATUS_IS_OK(result
) &&
2539 !NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
))
2542 for (i
= 0; i
< num_entries
; i
++) {
2544 char *description
= NULL
;
2546 if (opt_long_list_entries
) {
2548 POLICY_HND alias_pol
;
2551 if ((NT_STATUS_IS_OK(rpccli_samr_open_alias(pipe_hnd
, mem_ctx
,
2556 (NT_STATUS_IS_OK(rpccli_samr_query_alias_info(pipe_hnd
, mem_ctx
,
2559 (NT_STATUS_IS_OK(rpccli_samr_close(pipe_hnd
, mem_ctx
,
2561 description
= unistr2_tdup(mem_ctx
,
2562 ctr
.alias
.info3
.description
.string
);
2566 if (description
!= NULL
) {
2567 printf("%-21.21s %-50.50s\n",
2568 groups
[i
].acct_name
,
2571 printf("%s\n", groups
[i
].acct_name
);
2574 } while (NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
));
2575 rpccli_samr_close(pipe_hnd
, mem_ctx
, &domain_pol
);
2576 /* Get builtin policy handle */
2578 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
2579 MAXIMUM_ALLOWED_ACCESS
,
2580 &global_sid_Builtin
, &domain_pol
);
2581 if (!NT_STATUS_IS_OK(result
)) {
2584 /* query builtin aliases */
2587 if (!builtin
) break;
2589 result
= rpccli_samr_enum_als_groups(pipe_hnd
, mem_ctx
, &domain_pol
,
2590 &start_idx
, max_entries
,
2591 &groups
, &num_entries
);
2593 if (!NT_STATUS_IS_OK(result
) &&
2594 !NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
))
2597 for (i
= 0; i
< num_entries
; i
++) {
2599 char *description
= NULL
;
2601 if (opt_long_list_entries
) {
2603 POLICY_HND alias_pol
;
2606 if ((NT_STATUS_IS_OK(rpccli_samr_open_alias(pipe_hnd
, mem_ctx
,
2611 (NT_STATUS_IS_OK(rpccli_samr_query_alias_info(pipe_hnd
, mem_ctx
,
2614 (NT_STATUS_IS_OK(rpccli_samr_close(pipe_hnd
, mem_ctx
,
2616 description
= unistr2_tdup(mem_ctx
,
2617 ctr
.alias
.info3
.description
.string
);
2621 if (description
!= NULL
) {
2622 printf("%-21.21s %-50.50s\n",
2623 groups
[i
].acct_name
,
2626 printf("%s\n", groups
[i
].acct_name
);
2629 } while (NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
));
2635 static int rpc_group_list(int argc
, const char **argv
)
2637 return run_rpc_command(NULL
, PI_SAMR
, 0,
2638 rpc_group_list_internals
,
2642 static NTSTATUS
rpc_list_group_members(struct rpc_pipe_client
*pipe_hnd
,
2643 TALLOC_CTX
*mem_ctx
,
2644 const char *domain_name
,
2645 const DOM_SID
*domain_sid
,
2646 POLICY_HND
*domain_pol
,
2650 POLICY_HND group_pol
;
2651 uint32 num_members
, *group_rids
, *group_attrs
;
2658 sid_to_string(sid_str
, domain_sid
);
2660 result
= rpccli_samr_open_group(pipe_hnd
, mem_ctx
, domain_pol
,
2661 MAXIMUM_ALLOWED_ACCESS
,
2664 if (!NT_STATUS_IS_OK(result
))
2667 result
= rpccli_samr_query_groupmem(pipe_hnd
, mem_ctx
, &group_pol
,
2668 &num_members
, &group_rids
,
2671 if (!NT_STATUS_IS_OK(result
))
2674 while (num_members
> 0) {
2675 int this_time
= 512;
2677 if (num_members
< this_time
)
2678 this_time
= num_members
;
2680 result
= rpccli_samr_lookup_rids(pipe_hnd
, mem_ctx
, domain_pol
,
2681 this_time
, group_rids
,
2682 &num_names
, &names
, &name_types
);
2684 if (!NT_STATUS_IS_OK(result
))
2687 /* We only have users as members, but make the output
2688 the same as the output of alias members */
2690 for (i
= 0; i
< this_time
; i
++) {
2692 if (opt_long_list_entries
) {
2693 printf("%s-%d %s\\%s %d\n", sid_str
,
2694 group_rids
[i
], domain_name
, names
[i
],
2697 printf("%s\\%s\n", domain_name
, names
[i
]);
2701 num_members
-= this_time
;
2705 return NT_STATUS_OK
;
2708 static NTSTATUS
rpc_list_alias_members(struct rpc_pipe_client
*pipe_hnd
,
2709 TALLOC_CTX
*mem_ctx
,
2710 POLICY_HND
*domain_pol
,
2714 struct rpc_pipe_client
*lsa_pipe
;
2715 POLICY_HND alias_pol
, lsa_pol
;
2717 DOM_SID
*alias_sids
;
2720 enum lsa_SidType
*types
;
2723 result
= rpccli_samr_open_alias(pipe_hnd
, mem_ctx
, domain_pol
,
2724 MAXIMUM_ALLOWED_ACCESS
, rid
, &alias_pol
);
2726 if (!NT_STATUS_IS_OK(result
))
2729 result
= rpccli_samr_query_aliasmem(pipe_hnd
, mem_ctx
, &alias_pol
,
2730 &num_members
, &alias_sids
);
2732 if (!NT_STATUS_IS_OK(result
)) {
2733 d_fprintf(stderr
, "Couldn't list alias members\n");
2737 if (num_members
== 0) {
2738 return NT_STATUS_OK
;
2741 lsa_pipe
= cli_rpc_pipe_open_noauth(pipe_hnd
->cli
, PI_LSARPC
, &result
);
2743 d_fprintf(stderr
, "Couldn't open LSA pipe. Error was %s\n",
2744 nt_errstr(result
) );
2748 result
= rpccli_lsa_open_policy(lsa_pipe
, mem_ctx
, True
,
2749 SEC_RIGHTS_MAXIMUM_ALLOWED
, &lsa_pol
);
2751 if (!NT_STATUS_IS_OK(result
)) {
2752 d_fprintf(stderr
, "Couldn't open LSA policy handle\n");
2753 cli_rpc_pipe_close(lsa_pipe
);
2757 result
= rpccli_lsa_lookup_sids(lsa_pipe
, mem_ctx
, &lsa_pol
, num_members
,
2759 &domains
, &names
, &types
);
2761 if (!NT_STATUS_IS_OK(result
) &&
2762 !NT_STATUS_EQUAL(result
, STATUS_SOME_UNMAPPED
)) {
2763 d_fprintf(stderr
, "Couldn't lookup SIDs\n");
2764 cli_rpc_pipe_close(lsa_pipe
);
2768 for (i
= 0; i
< num_members
; i
++) {
2770 sid_to_string(sid_str
, &alias_sids
[i
]);
2772 if (opt_long_list_entries
) {
2773 printf("%s %s\\%s %d\n", sid_str
,
2774 domains
[i
] ? domains
[i
] : "*unknown*",
2775 names
[i
] ? names
[i
] : "*unknown*", types
[i
]);
2778 printf("%s\\%s\n", domains
[i
], names
[i
]);
2780 printf("%s\n", sid_str
);
2784 cli_rpc_pipe_close(lsa_pipe
);
2785 return NT_STATUS_OK
;
2788 static NTSTATUS
rpc_group_members_internals(const DOM_SID
*domain_sid
,
2789 const char *domain_name
,
2790 struct cli_state
*cli
,
2791 struct rpc_pipe_client
*pipe_hnd
,
2792 TALLOC_CTX
*mem_ctx
,
2797 POLICY_HND connect_pol
, domain_pol
;
2798 uint32 num_rids
, *rids
, *rid_types
;
2800 /* Get sam policy handle */
2802 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
2805 if (!NT_STATUS_IS_OK(result
))
2808 /* Get domain policy handle */
2810 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
2811 MAXIMUM_ALLOWED_ACCESS
,
2812 domain_sid
, &domain_pol
);
2814 if (!NT_STATUS_IS_OK(result
))
2817 result
= rpccli_samr_lookup_names(pipe_hnd
, mem_ctx
, &domain_pol
, 1000,
2818 1, argv
, &num_rids
, &rids
, &rid_types
);
2820 if (!NT_STATUS_IS_OK(result
)) {
2822 /* Ok, did not find it in the global sam, try with builtin */
2824 DOM_SID sid_Builtin
;
2826 rpccli_samr_close(pipe_hnd
, mem_ctx
, &domain_pol
);
2828 string_to_sid(&sid_Builtin
, "S-1-5-32");
2830 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
2831 MAXIMUM_ALLOWED_ACCESS
,
2832 &sid_Builtin
, &domain_pol
);
2834 if (!NT_STATUS_IS_OK(result
)) {
2835 d_fprintf(stderr
, "Couldn't find group %s\n", argv
[0]);
2839 result
= rpccli_samr_lookup_names(pipe_hnd
, mem_ctx
, &domain_pol
, 1000,
2843 if (!NT_STATUS_IS_OK(result
)) {
2844 d_fprintf(stderr
, "Couldn't find group %s\n", argv
[0]);
2849 if (num_rids
!= 1) {
2850 d_fprintf(stderr
, "Couldn't find group %s\n", argv
[0]);
2854 if (rid_types
[0] == SID_NAME_DOM_GRP
) {
2855 return rpc_list_group_members(pipe_hnd
, mem_ctx
, domain_name
,
2856 domain_sid
, &domain_pol
,
2860 if (rid_types
[0] == SID_NAME_ALIAS
) {
2861 return rpc_list_alias_members(pipe_hnd
, mem_ctx
, &domain_pol
,
2865 return NT_STATUS_NO_SUCH_GROUP
;
2868 static int rpc_group_members(int argc
, const char **argv
)
2871 return rpc_group_usage(argc
, argv
);
2874 return run_rpc_command(NULL
, PI_SAMR
, 0,
2875 rpc_group_members_internals
,
2879 static NTSTATUS
rpc_group_rename_internals(const DOM_SID
*domain_sid
,
2880 const char *domain_name
,
2881 struct cli_state
*cli
,
2882 struct rpc_pipe_client
*pipe_hnd
,
2883 TALLOC_CTX
*mem_ctx
,
2888 POLICY_HND connect_pol
, domain_pol
, group_pol
;
2889 uint32 num_rids
, *rids
, *rid_types
;
2893 d_printf("Usage: 'net rpc group rename group newname'\n");
2894 return NT_STATUS_UNSUCCESSFUL
;
2897 /* Get sam policy handle */
2899 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
2902 if (!NT_STATUS_IS_OK(result
))
2905 /* Get domain policy handle */
2907 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
2908 MAXIMUM_ALLOWED_ACCESS
,
2909 domain_sid
, &domain_pol
);
2911 if (!NT_STATUS_IS_OK(result
))
2914 result
= rpccli_samr_lookup_names(pipe_hnd
, mem_ctx
, &domain_pol
, 1000,
2915 1, argv
, &num_rids
, &rids
, &rid_types
);
2917 if (num_rids
!= 1) {
2918 d_fprintf(stderr
, "Couldn't find group %s\n", argv
[0]);
2922 if (rid_types
[0] != SID_NAME_DOM_GRP
) {
2923 d_fprintf(stderr
, "Can only rename domain groups\n");
2924 return NT_STATUS_UNSUCCESSFUL
;
2927 result
= rpccli_samr_open_group(pipe_hnd
, mem_ctx
, &domain_pol
,
2928 MAXIMUM_ALLOWED_ACCESS
,
2929 rids
[0], &group_pol
);
2931 if (!NT_STATUS_IS_OK(result
))
2936 ctr
.switch_value1
= 2;
2937 init_samr_group_info2(&ctr
.group
.info2
, argv
[1]);
2939 result
= rpccli_samr_set_groupinfo(pipe_hnd
, mem_ctx
, &group_pol
, &ctr
);
2941 if (!NT_STATUS_IS_OK(result
))
2944 return NT_STATUS_NO_SUCH_GROUP
;
2947 static int rpc_group_rename(int argc
, const char **argv
)
2950 return rpc_group_usage(argc
, argv
);
2953 return run_rpc_command(NULL
, PI_SAMR
, 0,
2954 rpc_group_rename_internals
,
2959 * 'net rpc group' entrypoint.
2960 * @param argc Standard main() style argc
2961 * @param argc Standard main() style argv. Initial components are already
2965 int net_rpc_group(int argc
, const char **argv
)
2967 struct functable func
[] = {
2968 {"add", rpc_group_add
},
2969 {"delete", rpc_group_delete
},
2970 {"addmem", rpc_group_addmem
},
2971 {"delmem", rpc_group_delmem
},
2972 {"list", rpc_group_list
},
2973 {"members", rpc_group_members
},
2974 {"rename", rpc_group_rename
},
2979 return run_rpc_command(NULL
, PI_SAMR
, 0,
2980 rpc_group_list_internals
,
2984 return net_run_function(argc
, argv
, func
, rpc_group_usage
);
2987 /****************************************************************************/
2989 static int rpc_share_usage(int argc
, const char **argv
)
2991 return net_help_share(argc
, argv
);
2995 * Add a share on a remote RPC server
2997 * All parameters are provided by the run_rpc_command function, except for
2998 * argc, argv which are passes through.
3000 * @param domain_sid The domain sid acquired from the remote server
3001 * @param cli A cli_state connected to the server.
3002 * @param mem_ctx Talloc context, destoyed on completion of the function.
3003 * @param argc Standard main() style argc
3004 * @param argv Standard main() style argv. Initial components are already
3007 * @return Normal NTSTATUS return.
3009 static NTSTATUS
rpc_share_add_internals(const DOM_SID
*domain_sid
,
3010 const char *domain_name
,
3011 struct cli_state
*cli
,
3012 struct rpc_pipe_client
*pipe_hnd
,
3013 TALLOC_CTX
*mem_ctx
,int argc
,
3019 uint32 type
= STYPE_DISKTREE
; /* only allow disk shares to be added */
3020 uint32 num_users
=0, perms
=0;
3021 char *password
=NULL
; /* don't allow a share password */
3024 union srvsvc_NetShareInfo info
;
3025 struct srvsvc_NetShareInfo2 info2
;
3027 if ((sharename
= talloc_strdup(mem_ctx
, argv
[0])) == NULL
) {
3028 return NT_STATUS_NO_MEMORY
;
3031 path
= strchr(sharename
, '=');
3033 return NT_STATUS_UNSUCCESSFUL
;
3036 info
.info2
= &info2
;
3039 info2
.comment
= opt_comment
;
3040 info2
.permissions
= perms
;
3041 info2
.max_users
= opt_maxusers
;
3042 info2
.current_users
= num_users
;
3044 info2
.password
= password
;
3045 info2
.name
= sharename
;
3047 result
= rpccli_srvsvc_NetShareAdd(pipe_hnd
, mem_ctx
, NULL
, level
,
3052 static int rpc_share_add(int argc
, const char **argv
)
3054 if ((argc
< 1) || !strchr(argv
[0], '=')) {
3055 DEBUG(1,("Sharename or path not specified on add\n"));
3056 return rpc_share_usage(argc
, argv
);
3058 return run_rpc_command(NULL
, PI_SRVSVC
, 0,
3059 rpc_share_add_internals
,
3064 * Delete a share on a remote RPC server
3066 * All parameters are provided by the run_rpc_command function, except for
3067 * argc, argv which are passes through.
3069 * @param domain_sid The domain sid acquired from the remote server
3070 * @param cli A cli_state connected to the server.
3071 * @param mem_ctx Talloc context, destoyed on completion of the function.
3072 * @param argc Standard main() style argc
3073 * @param argv Standard main() style argv. Initial components are already
3076 * @return Normal NTSTATUS return.
3078 static NTSTATUS
rpc_share_del_internals(const DOM_SID
*domain_sid
,
3079 const char *domain_name
,
3080 struct cli_state
*cli
,
3081 struct rpc_pipe_client
*pipe_hnd
,
3082 TALLOC_CTX
*mem_ctx
,
3086 return rpccli_srvsvc_NetShareDel(pipe_hnd
, mem_ctx
, NULL
, argv
[0], 0);
3090 * Delete a share on a remote RPC server
3092 * @param domain_sid The domain sid acquired from the remote server
3093 * @param argc Standard main() style argc
3094 * @param argv Standard main() style argv. Initial components are already
3097 * @return A shell status integer (0 for success)
3099 static int rpc_share_delete(int argc
, const char **argv
)
3102 DEBUG(1,("Sharename not specified on delete\n"));
3103 return rpc_share_usage(argc
, argv
);
3105 return run_rpc_command(NULL
, PI_SRVSVC
, 0,
3106 rpc_share_del_internals
,
3111 * Formatted print of share info
3113 * @param info1 pointer to struct srvsvc_NetShareInfo1 to format
3116 static void display_share_info_1(struct srvsvc_NetShareInfo1
*info1
)
3118 if (opt_long_list_entries
) {
3119 d_printf("%-12s %-8.8s %-50s\n",
3120 info1
->name
, share_type
[info1
->type
& ~(STYPE_TEMPORARY
|STYPE_HIDDEN
)],
3121 info1
->comment
? info1
->comment
: "");
3123 d_printf("%s\n", info1
->name
);
3128 static NTSTATUS
get_share_info(struct rpc_pipe_client
*pipe_hnd
,
3129 TALLOC_CTX
*mem_ctx
,
3133 union srvsvc_NetShareCtr
*ctr
,
3136 union srvsvc_NetShareInfo info
;
3141 if (!(ctr
->ctr1
= TALLOC_ZERO_P(
3142 mem_ctx
, struct srvsvc_NetShareCtr1
))) {
3143 return NT_STATUS_NO_MEMORY
;
3147 if (!(ctr
->ctr502
= TALLOC_ZERO_P(
3148 mem_ctx
, struct srvsvc_NetShareCtr502
))) {
3149 return NT_STATUS_NO_MEMORY
;
3153 return NT_STATUS_INVALID_LEVEL
;
3157 /* no specific share requested, enumerate all */
3161 return rpccli_srvsvc_NetShareEnum(pipe_hnd
, mem_ctx
, NULL
,
3162 &level
, ctr
, 0xffffffff,
3166 /* request just one share */
3167 status
= rpccli_srvsvc_NetShareGetInfo(pipe_hnd
, mem_ctx
, NULL
,
3168 argv
[0], level
, &info
);
3169 if (!NT_STATUS_IS_OK(status
)) {
3177 ctr
->ctr1
->count
= 1;
3178 ctr
->ctr1
->array
= info
.info1
;
3181 ctr
->ctr501
->count
= 1;
3182 ctr
->ctr502
->array
= info
.info502
;
3185 return NT_STATUS_INTERNAL_ERROR
;
3189 return NT_STATUS_OK
;
3193 * List shares on a remote RPC server
3195 * All parameters are provided by the run_rpc_command function, except for
3196 * argc, argv which are passes through.
3198 * @param domain_sid The domain sid acquired from the remote server
3199 * @param cli A cli_state connected to the server.
3200 * @param mem_ctx Talloc context, destoyed on completion of the function.
3201 * @param argc Standard main() style argc
3202 * @param argv Standard main() style argv. Initial components are already
3205 * @return Normal NTSTATUS return.
3208 static NTSTATUS
rpc_share_list_internals(const DOM_SID
*domain_sid
,
3209 const char *domain_name
,
3210 struct cli_state
*cli
,
3211 struct rpc_pipe_client
*pipe_hnd
,
3212 TALLOC_CTX
*mem_ctx
,
3216 union srvsvc_NetShareCtr ctr
;
3218 uint32 i
, level
= 1;
3221 result
= get_share_info(pipe_hnd
, mem_ctx
, level
, argc
, argv
, &ctr
,
3223 if (!NT_STATUS_IS_OK(result
))
3226 /* Display results */
3228 if (opt_long_list_entries
) {
3230 "\nEnumerating shared resources (exports) on remote server:\n\n"\
3231 "\nShare name Type Description\n"\
3232 "---------- ---- -----------\n");
3234 for (i
= 0; i
< numentries
; i
++)
3235 display_share_info_1(&ctr
.ctr1
->array
[i
]);
3237 return NT_STATUS_IS_OK(result
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
3241 * 'net rpc share list' entrypoint.
3242 * @param argc Standard main() style argc
3243 * @param argv Standard main() style argv. Initial components are already
3246 static int rpc_share_list(int argc
, const char **argv
)
3248 return run_rpc_command(NULL
, PI_SRVSVC
, 0, rpc_share_list_internals
, argc
, argv
);
3251 static BOOL
check_share_availability(struct cli_state
*cli
, const char *netname
)
3253 if (!cli_send_tconX(cli
, netname
, "A:", "", 0)) {
3254 d_printf("skipping [%s]: not a file share.\n", netname
);
3264 static BOOL
check_share_sanity(struct cli_state
*cli
, const char *netname
, uint32 type
)
3266 /* only support disk shares */
3267 if (! ( type
== STYPE_DISKTREE
|| type
== (STYPE_DISKTREE
| STYPE_HIDDEN
)) ) {
3268 printf("share [%s] is not a diskshare (type: %x)\n", netname
, type
);
3272 /* skip builtin shares */
3273 /* FIXME: should print$ be added too ? */
3274 if (strequal(netname
,"IPC$") || strequal(netname
,"ADMIN$") ||
3275 strequal(netname
,"global"))
3278 if (opt_exclude
&& in_list(netname
, opt_exclude
, False
)) {
3279 printf("excluding [%s]\n", netname
);
3283 return check_share_availability(cli
, netname
);
3287 * Migrate shares from a remote RPC server to the local RPC srever
3289 * All parameters are provided by the run_rpc_command function, except for
3290 * argc, argv which are passes through.
3292 * @param domain_sid The domain sid acquired from the remote server
3293 * @param cli A cli_state connected to the server.
3294 * @param mem_ctx Talloc context, destoyed on completion of the function.
3295 * @param argc Standard main() style argc
3296 * @param argv Standard main() style argv. Initial components are already
3299 * @return Normal NTSTATUS return.
3302 static NTSTATUS
rpc_share_migrate_shares_internals(const DOM_SID
*domain_sid
,
3303 const char *domain_name
,
3304 struct cli_state
*cli
,
3305 struct rpc_pipe_client
*pipe_hnd
,
3306 TALLOC_CTX
*mem_ctx
,
3311 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
3312 union srvsvc_NetShareCtr ctr_src
;
3314 struct rpc_pipe_client
*srvsvc_pipe
= NULL
;
3315 struct cli_state
*cli_dst
= NULL
;
3316 uint32 level
= 502; /* includes secdesc */
3319 result
= get_share_info(pipe_hnd
, mem_ctx
, level
, argc
, argv
, &ctr_src
,
3321 if (!NT_STATUS_IS_OK(result
))
3324 /* connect destination PI_SRVSVC */
3325 nt_status
= connect_dst_pipe(&cli_dst
, &srvsvc_pipe
, PI_SRVSVC
);
3326 if (!NT_STATUS_IS_OK(nt_status
))
3330 for (i
= 0; i
< numentries
; i
++) {
3331 uint32 parm_error
= 0;
3332 union srvsvc_NetShareInfo info
;
3334 /* reset error-code */
3335 nt_status
= NT_STATUS_UNSUCCESSFUL
;
3337 if (!check_share_sanity(cli
, ctr_src
.ctr502
->array
[i
].name
,
3338 ctr_src
.ctr502
->array
[i
].type
))
3342 /* finally add the share on the dst server */
3344 printf("migrating: [%s], path: %s, comment: %s, without share-ACLs\n",
3345 ctr_src
.ctr502
->array
[i
].name
,
3346 ctr_src
.ctr502
->array
[i
].path
,
3347 ctr_src
.ctr502
->array
[i
].comment
);
3349 info
.info502
= &ctr_src
.ctr502
->array
[i
];
3351 result
= rpccli_srvsvc_NetShareAdd(srvsvc_pipe
, mem_ctx
, NULL
,
3352 502, info
, &parm_error
);
3354 if (NT_STATUS_EQUAL(result
, NT_STATUS_OBJECT_NAME_COLLISION
)) {
3355 printf(" [%s] does already exist\n", ctr_src
.ctr502
->array
[i
].name
);
3359 if (!NT_STATUS_IS_OK(result
)) {
3360 printf("cannot add share: %s\n", nt_errstr(result
));
3366 nt_status
= NT_STATUS_OK
;
3370 cli_shutdown(cli_dst
);
3378 * Migrate shares from a rpc-server to another
3380 * @param argc Standard main() style argc
3381 * @param argv Standard main() style argv. Initial components are already
3384 * @return A shell status integer (0 for success)
3386 static int rpc_share_migrate_shares(int argc
, const char **argv
)
3390 printf("no server to migrate\n");
3394 return run_rpc_command(NULL
, PI_SRVSVC
, 0,
3395 rpc_share_migrate_shares_internals
,
3402 * @param f file_info
3403 * @param mask current search mask
3404 * @param state arg-pointer
3407 static void copy_fn(const char *mnt
, file_info
*f
, const char *mask
, void *state
)
3409 static NTSTATUS nt_status
;
3410 static struct copy_clistate
*local_state
;
3411 static fstring filename
, new_mask
;
3415 local_state
= (struct copy_clistate
*)state
;
3416 nt_status
= NT_STATUS_UNSUCCESSFUL
;
3418 if (strequal(f
->name
, ".") || strequal(f
->name
, ".."))
3421 DEBUG(3,("got mask: %s, name: %s\n", mask
, f
->name
));
3424 if (f
->mode
& aDIR
) {
3426 DEBUG(3,("got dir: %s\n", f
->name
));
3428 fstrcpy(dir
, local_state
->cwd
);
3430 fstrcat(dir
, f
->name
);
3432 switch (net_mode_share
)
3434 case NET_MODE_SHARE_MIGRATE
:
3435 /* create that directory */
3436 nt_status
= net_copy_file(local_state
->mem_ctx
,
3437 local_state
->cli_share_src
,
3438 local_state
->cli_share_dst
,
3440 opt_acls
? True
: False
,
3441 opt_attrs
? True
: False
,
3442 opt_timestamps
? True
: False
,
3446 d_fprintf(stderr
, "Unsupported mode %d\n", net_mode_share
);
3450 if (!NT_STATUS_IS_OK(nt_status
))
3451 printf("could not handle dir %s: %s\n",
3452 dir
, nt_errstr(nt_status
));
3454 /* search below that directory */
3455 fstrcpy(new_mask
, dir
);
3456 fstrcat(new_mask
, "\\*");
3458 old_dir
= local_state
->cwd
;
3459 local_state
->cwd
= dir
;
3460 if (!sync_files(local_state
, new_mask
))
3461 printf("could not handle files\n");
3462 local_state
->cwd
= old_dir
;
3469 fstrcpy(filename
, local_state
->cwd
);
3470 fstrcat(filename
, "\\");
3471 fstrcat(filename
, f
->name
);
3473 DEBUG(3,("got file: %s\n", filename
));
3475 switch (net_mode_share
)
3477 case NET_MODE_SHARE_MIGRATE
:
3478 nt_status
= net_copy_file(local_state
->mem_ctx
,
3479 local_state
->cli_share_src
,
3480 local_state
->cli_share_dst
,
3482 opt_acls
? True
: False
,
3483 opt_attrs
? True
: False
,
3484 opt_timestamps
? True
: False
,
3488 d_fprintf(stderr
, "Unsupported file mode %d\n", net_mode_share
);
3492 if (!NT_STATUS_IS_OK(nt_status
))
3493 printf("could not handle file %s: %s\n",
3494 filename
, nt_errstr(nt_status
));
3499 * sync files, can be called recursivly to list files
3500 * and then call copy_fn for each file
3502 * @param cp_clistate pointer to the copy_clistate we work with
3503 * @param mask the current search mask
3505 * @return Boolean result
3507 BOOL
sync_files(struct copy_clistate
*cp_clistate
, pstring mask
)
3509 struct cli_state
*targetcli
;
3512 DEBUG(3,("calling cli_list with mask: %s\n", mask
));
3514 if ( !cli_resolve_path( "", cp_clistate
->cli_share_src
, mask
, &targetcli
, targetpath
) ) {
3515 d_fprintf(stderr
, "cli_resolve_path %s failed with error: %s\n",
3516 mask
, cli_errstr(cp_clistate
->cli_share_src
));
3520 if (cli_list(targetcli
, targetpath
, cp_clistate
->attribute
, copy_fn
, cp_clistate
) == -1) {
3521 d_fprintf(stderr
, "listing %s failed with error: %s\n",
3522 mask
, cli_errstr(targetcli
));
3531 * Set the top level directory permissions before we do any further copies.
3532 * Should set up ACL inheritance.
3535 BOOL
copy_top_level_perms(struct copy_clistate
*cp_clistate
,
3536 const char *sharename
)
3538 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
3540 switch (net_mode_share
) {
3541 case NET_MODE_SHARE_MIGRATE
:
3542 DEBUG(3,("calling net_copy_fileattr for '.' directory in share %s\n", sharename
));
3543 nt_status
= net_copy_fileattr(cp_clistate
->mem_ctx
,
3544 cp_clistate
->cli_share_src
,
3545 cp_clistate
->cli_share_dst
,
3547 opt_acls
? True
: False
,
3548 opt_attrs
? True
: False
,
3549 opt_timestamps
? True
: False
,
3553 d_fprintf(stderr
, "Unsupported mode %d\n", net_mode_share
);
3557 if (!NT_STATUS_IS_OK(nt_status
)) {
3558 printf("Could handle directory attributes for top level directory of share %s. Error %s\n",
3559 sharename
, nt_errstr(nt_status
));
3567 * Sync all files inside a remote share to another share (over smb)
3569 * All parameters are provided by the run_rpc_command function, except for
3570 * argc, argv which are passes through.
3572 * @param domain_sid The domain sid acquired from the remote server
3573 * @param cli A cli_state connected to the server.
3574 * @param mem_ctx Talloc context, destoyed on completion of the function.
3575 * @param argc Standard main() style argc
3576 * @param argv Standard main() style argv. Initial components are already
3579 * @return Normal NTSTATUS return.
3582 static NTSTATUS
rpc_share_migrate_files_internals(const DOM_SID
*domain_sid
,
3583 const char *domain_name
,
3584 struct cli_state
*cli
,
3585 struct rpc_pipe_client
*pipe_hnd
,
3586 TALLOC_CTX
*mem_ctx
,
3591 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
3592 union srvsvc_NetShareCtr ctr_src
;
3595 struct copy_clistate cp_clistate
;
3596 BOOL got_src_share
= False
;
3597 BOOL got_dst_share
= False
;
3598 pstring mask
= "\\*";
3602 dst
= SMB_STRDUP(opt_destination
?opt_destination
:"127.0.0.1");
3604 result
= get_share_info(pipe_hnd
, mem_ctx
, level
, argc
, argv
, &ctr_src
,
3607 if (!NT_STATUS_IS_OK(result
))
3610 for (i
= 0; i
< numentries
; i
++) {
3611 if (!check_share_sanity(cli
, ctr_src
.ctr502
->array
[i
].name
,
3612 ctr_src
.ctr502
->array
[i
].type
))
3615 /* one might not want to mirror whole discs :) */
3616 if (strequal(ctr_src
.ctr502
->array
[i
].name
, "print$") || ctr_src
.ctr502
->array
[i
].name
[1] == '$') {
3617 d_printf("skipping [%s]: builtin/hidden share\n", ctr_src
.ctr502
->array
[i
].name
);
3621 switch (net_mode_share
)
3623 case NET_MODE_SHARE_MIGRATE
:
3627 d_fprintf(stderr
, "Unsupported mode %d\n", net_mode_share
);
3630 printf(" [%s] files and directories %s ACLs, %s DOS Attributes %s\n",
3631 ctr_src
.ctr502
->array
[i
].name
,
3632 opt_acls
? "including" : "without",
3633 opt_attrs
? "including" : "without",
3634 opt_timestamps
? "(preserving timestamps)" : "");
3636 cp_clistate
.mem_ctx
= mem_ctx
;
3637 cp_clistate
.cli_share_src
= NULL
;
3638 cp_clistate
.cli_share_dst
= NULL
;
3639 cp_clistate
.cwd
= NULL
;
3640 cp_clistate
.attribute
= aSYSTEM
| aHIDDEN
| aDIR
;
3642 /* open share source */
3643 nt_status
= connect_to_service(&cp_clistate
.cli_share_src
,
3644 &cli
->dest_ip
, cli
->desthost
,
3645 ctr_src
.ctr502
->array
[i
].name
, "A:");
3646 if (!NT_STATUS_IS_OK(nt_status
))
3649 got_src_share
= True
;
3651 if (net_mode_share
== NET_MODE_SHARE_MIGRATE
) {
3652 /* open share destination */
3653 nt_status
= connect_to_service(&cp_clistate
.cli_share_dst
,
3654 NULL
, dst
, ctr_src
.ctr502
->array
[i
].name
, "A:");
3655 if (!NT_STATUS_IS_OK(nt_status
))
3658 got_dst_share
= True
;
3661 if (!copy_top_level_perms(&cp_clistate
, ctr_src
.ctr502
->array
[i
].name
)) {
3662 d_fprintf(stderr
, "Could not handle the top level directory permissions for the share: %s\n", ctr_src
.ctr502
->array
[i
].name
);
3663 nt_status
= NT_STATUS_UNSUCCESSFUL
;
3667 if (!sync_files(&cp_clistate
, mask
)) {
3668 d_fprintf(stderr
, "could not handle files for share: %s\n",
3669 ctr_src
.ctr502
->array
[i
].name
);
3670 nt_status
= NT_STATUS_UNSUCCESSFUL
;
3675 nt_status
= NT_STATUS_OK
;
3680 cli_shutdown(cp_clistate
.cli_share_src
);
3683 cli_shutdown(cp_clistate
.cli_share_dst
);
3689 static int rpc_share_migrate_files(int argc
, const char **argv
)
3693 printf("no server to migrate\n");
3697 return run_rpc_command(NULL
, PI_SRVSVC
, 0,
3698 rpc_share_migrate_files_internals
,
3703 * Migrate share-ACLs from a remote RPC server to the local RPC srever
3705 * All parameters are provided by the run_rpc_command function, except for
3706 * argc, argv which are passes through.
3708 * @param domain_sid The domain sid acquired from the remote server
3709 * @param cli A cli_state connected to the server.
3710 * @param mem_ctx Talloc context, destoyed on completion of the function.
3711 * @param argc Standard main() style argc
3712 * @param argv Standard main() style argv. Initial components are already
3715 * @return Normal NTSTATUS return.
3718 static NTSTATUS
rpc_share_migrate_security_internals(const DOM_SID
*domain_sid
,
3719 const char *domain_name
,
3720 struct cli_state
*cli
,
3721 struct rpc_pipe_client
*pipe_hnd
,
3722 TALLOC_CTX
*mem_ctx
,
3727 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
3728 union srvsvc_NetShareCtr ctr_src
;
3729 union srvsvc_NetShareInfo info
;
3731 struct rpc_pipe_client
*srvsvc_pipe
= NULL
;
3732 struct cli_state
*cli_dst
= NULL
;
3733 uint32 level
= 502; /* includes secdesc */
3735 uint32 parm_error
= 0;
3737 result
= get_share_info(pipe_hnd
, mem_ctx
, level
, argc
, argv
, &ctr_src
,
3740 if (!NT_STATUS_IS_OK(result
))
3743 /* connect destination PI_SRVSVC */
3744 nt_status
= connect_dst_pipe(&cli_dst
, &srvsvc_pipe
, PI_SRVSVC
);
3745 if (!NT_STATUS_IS_OK(nt_status
))
3749 for (i
= 0; i
< numentries
; i
++) {
3750 /* reset error-code */
3751 nt_status
= NT_STATUS_UNSUCCESSFUL
;
3753 if (!check_share_sanity(cli
, ctr_src
.ctr502
->array
[i
].name
, ctr_src
.ctr502
->array
[i
].type
))
3756 printf("migrating: [%s], path: %s, comment: %s, including share-ACLs\n",
3757 ctr_src
.ctr502
->array
[i
].name
,
3758 ctr_src
.ctr502
->array
[i
].path
,
3759 ctr_src
.ctr502
->array
[i
].comment
);
3762 display_sec_desc(ctr_src
.ctr502
->array
[i
].sd
);
3767 /* finally modify the share on the dst server */
3768 result
= rpccli_srvsvc_NetShareSetInfo(
3769 srvsvc_pipe
, mem_ctx
, NULL
, argv
[0], level
, info
,
3772 if (!NT_STATUS_IS_OK(result
)) {
3773 printf("cannot set share-acl: %s\n", nt_errstr(result
));
3779 nt_status
= NT_STATUS_OK
;
3783 cli_shutdown(cli_dst
);
3791 * Migrate share-acls from a rpc-server to another
3793 * @param argc Standard main() style argc
3794 * @param argv Standard main() style argv. Initial components are already
3797 * @return A shell status integer (0 for success)
3799 static int rpc_share_migrate_security(int argc
, const char **argv
)
3803 printf("no server to migrate\n");
3807 return run_rpc_command(NULL
, PI_SRVSVC
, 0,
3808 rpc_share_migrate_security_internals
,
3813 * Migrate shares (including share-definitions, share-acls and files with acls/attrs)
3814 * from one server to another
3816 * @param argc Standard main() style argc
3817 * @param argv Standard main() style argv. Initial components are already
3820 * @return A shell status integer (0 for success)
3823 static int rpc_share_migrate_all(int argc
, const char **argv
)
3828 printf("no server to migrate\n");
3832 /* order is important. we don't want to be locked out by the share-acl
3833 * before copying files - gd */
3835 ret
= run_rpc_command(NULL
, PI_SRVSVC
, 0, rpc_share_migrate_shares_internals
, argc
, argv
);
3839 ret
= run_rpc_command(NULL
, PI_SRVSVC
, 0, rpc_share_migrate_files_internals
, argc
, argv
);
3843 return run_rpc_command(NULL
, PI_SRVSVC
, 0, rpc_share_migrate_security_internals
, argc
, argv
);
3848 * 'net rpc share migrate' entrypoint.
3849 * @param argc Standard main() style argc
3850 * @param argv Standard main() style argv. Initial components are already
3853 static int rpc_share_migrate(int argc
, const char **argv
)
3856 struct functable func
[] = {
3857 {"all", rpc_share_migrate_all
},
3858 {"files", rpc_share_migrate_files
},
3859 {"help", rpc_share_usage
},
3860 {"security", rpc_share_migrate_security
},
3861 {"shares", rpc_share_migrate_shares
},
3865 net_mode_share
= NET_MODE_SHARE_MIGRATE
;
3867 return net_run_function(argc
, argv
, func
, rpc_share_usage
);
3876 static int num_server_aliases
;
3877 static struct full_alias
*server_aliases
;
3880 * Add an alias to the static list.
3882 static void push_alias(TALLOC_CTX
*mem_ctx
, struct full_alias
*alias
)
3884 if (server_aliases
== NULL
)
3885 server_aliases
= SMB_MALLOC_ARRAY(struct full_alias
, 100);
3887 server_aliases
[num_server_aliases
] = *alias
;
3888 num_server_aliases
+= 1;
3892 * For a specific domain on the server, fetch all the aliases
3893 * and their members. Add all of them to the server_aliases.
3896 static NTSTATUS
rpc_fetch_domain_aliases(struct rpc_pipe_client
*pipe_hnd
,
3897 TALLOC_CTX
*mem_ctx
,
3898 POLICY_HND
*connect_pol
,
3899 const DOM_SID
*domain_sid
)
3901 uint32 start_idx
, max_entries
, num_entries
, i
;
3902 struct acct_info
*groups
;
3904 POLICY_HND domain_pol
;
3906 /* Get domain policy handle */
3908 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, connect_pol
,
3909 MAXIMUM_ALLOWED_ACCESS
,
3910 domain_sid
, &domain_pol
);
3911 if (!NT_STATUS_IS_OK(result
))
3918 result
= rpccli_samr_enum_als_groups(pipe_hnd
, mem_ctx
, &domain_pol
,
3919 &start_idx
, max_entries
,
3920 &groups
, &num_entries
);
3922 for (i
= 0; i
< num_entries
; i
++) {
3924 POLICY_HND alias_pol
;
3925 struct full_alias alias
;
3929 result
= rpccli_samr_open_alias(pipe_hnd
, mem_ctx
, &domain_pol
,
3930 MAXIMUM_ALLOWED_ACCESS
,
3933 if (!NT_STATUS_IS_OK(result
))
3936 result
= rpccli_samr_query_aliasmem(pipe_hnd
, mem_ctx
,
3940 if (!NT_STATUS_IS_OK(result
))
3943 result
= rpccli_samr_close(pipe_hnd
, mem_ctx
, &alias_pol
);
3944 if (!NT_STATUS_IS_OK(result
))
3947 alias
.members
= NULL
;
3949 if (alias
.num_members
> 0) {
3950 alias
.members
= SMB_MALLOC_ARRAY(DOM_SID
, alias
.num_members
);
3952 for (j
= 0; j
< alias
.num_members
; j
++)
3953 sid_copy(&alias
.members
[j
],
3957 sid_copy(&alias
.sid
, domain_sid
);
3958 sid_append_rid(&alias
.sid
, groups
[i
].rid
);
3960 push_alias(mem_ctx
, &alias
);
3962 } while (NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
));
3964 result
= NT_STATUS_OK
;
3967 rpccli_samr_close(pipe_hnd
, mem_ctx
, &domain_pol
);
3973 * Dump server_aliases as names for debugging purposes.
3976 static NTSTATUS
rpc_aliaslist_dump(const DOM_SID
*domain_sid
,
3977 const char *domain_name
,
3978 struct cli_state
*cli
,
3979 struct rpc_pipe_client
*pipe_hnd
,
3980 TALLOC_CTX
*mem_ctx
,
3988 result
= rpccli_lsa_open_policy(pipe_hnd
, mem_ctx
, True
,
3989 SEC_RIGHTS_MAXIMUM_ALLOWED
,
3991 if (!NT_STATUS_IS_OK(result
))
3994 for (i
=0; i
<num_server_aliases
; i
++) {
3997 enum lsa_SidType
*types
;
4000 struct full_alias
*alias
= &server_aliases
[i
];
4002 result
= rpccli_lsa_lookup_sids(pipe_hnd
, mem_ctx
, &lsa_pol
, 1,
4004 &domains
, &names
, &types
);
4005 if (!NT_STATUS_IS_OK(result
))
4008 DEBUG(1, ("%s\\%s %d: ", domains
[0], names
[0], types
[0]));
4010 if (alias
->num_members
== 0) {
4015 result
= rpccli_lsa_lookup_sids(pipe_hnd
, mem_ctx
, &lsa_pol
,
4018 &domains
, &names
, &types
);
4020 if (!NT_STATUS_IS_OK(result
) &&
4021 !NT_STATUS_EQUAL(result
, STATUS_SOME_UNMAPPED
))
4024 for (j
=0; j
<alias
->num_members
; j
++)
4025 DEBUG(1, ("%s\\%s (%d); ",
4026 domains
[j
] ? domains
[j
] : "*unknown*",
4027 names
[j
] ? names
[j
] : "*unknown*",types
[j
]));
4031 rpccli_lsa_Close(pipe_hnd
, mem_ctx
, &lsa_pol
);
4033 return NT_STATUS_OK
;
4037 * Fetch a list of all server aliases and their members into
4041 static NTSTATUS
rpc_aliaslist_internals(const DOM_SID
*domain_sid
,
4042 const char *domain_name
,
4043 struct cli_state
*cli
,
4044 struct rpc_pipe_client
*pipe_hnd
,
4045 TALLOC_CTX
*mem_ctx
,
4050 POLICY_HND connect_pol
;
4052 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
4055 if (!NT_STATUS_IS_OK(result
))
4058 result
= rpc_fetch_domain_aliases(pipe_hnd
, mem_ctx
, &connect_pol
,
4059 &global_sid_Builtin
);
4061 if (!NT_STATUS_IS_OK(result
))
4064 result
= rpc_fetch_domain_aliases(pipe_hnd
, mem_ctx
, &connect_pol
,
4067 rpccli_samr_close(pipe_hnd
, mem_ctx
, &connect_pol
);
4072 static void init_user_token(NT_USER_TOKEN
*token
, DOM_SID
*user_sid
)
4074 token
->num_sids
= 4;
4076 if (!(token
->user_sids
= SMB_MALLOC_ARRAY(DOM_SID
, 4))) {
4077 d_fprintf(stderr
, "malloc failed\n");
4078 token
->num_sids
= 0;
4082 token
->user_sids
[0] = *user_sid
;
4083 sid_copy(&token
->user_sids
[1], &global_sid_World
);
4084 sid_copy(&token
->user_sids
[2], &global_sid_Network
);
4085 sid_copy(&token
->user_sids
[3], &global_sid_Authenticated_Users
);
4088 static void free_user_token(NT_USER_TOKEN
*token
)
4090 SAFE_FREE(token
->user_sids
);
4093 static BOOL
is_sid_in_token(NT_USER_TOKEN
*token
, DOM_SID
*sid
)
4097 for (i
=0; i
<token
->num_sids
; i
++) {
4098 if (sid_compare(sid
, &token
->user_sids
[i
]) == 0)
4104 static void add_sid_to_token(NT_USER_TOKEN
*token
, DOM_SID
*sid
)
4106 if (is_sid_in_token(token
, sid
))
4109 token
->user_sids
= SMB_REALLOC_ARRAY(token
->user_sids
, DOM_SID
, token
->num_sids
+1);
4110 if (!token
->user_sids
) {
4114 sid_copy(&token
->user_sids
[token
->num_sids
], sid
);
4116 token
->num_sids
+= 1;
4121 NT_USER_TOKEN token
;
4124 static void dump_user_token(struct user_token
*token
)
4128 d_printf("%s\n", token
->name
);
4130 for (i
=0; i
<token
->token
.num_sids
; i
++) {
4131 d_printf(" %s\n", sid_string_static(&token
->token
.user_sids
[i
]));
4135 static BOOL
is_alias_member(DOM_SID
*sid
, struct full_alias
*alias
)
4139 for (i
=0; i
<alias
->num_members
; i
++) {
4140 if (sid_compare(sid
, &alias
->members
[i
]) == 0)
4147 static void collect_sid_memberships(NT_USER_TOKEN
*token
, DOM_SID sid
)
4151 for (i
=0; i
<num_server_aliases
; i
++) {
4152 if (is_alias_member(&sid
, &server_aliases
[i
]))
4153 add_sid_to_token(token
, &server_aliases
[i
].sid
);
4158 * We got a user token with all the SIDs we can know about without asking the
4159 * server directly. These are the user and domain group sids. All of these can
4160 * be members of aliases. So scan the list of aliases for each of the SIDs and
4161 * add them to the token.
4164 static void collect_alias_memberships(NT_USER_TOKEN
*token
)
4166 int num_global_sids
= token
->num_sids
;
4169 for (i
=0; i
<num_global_sids
; i
++) {
4170 collect_sid_memberships(token
, token
->user_sids
[i
]);
4174 static BOOL
get_user_sids(const char *domain
, const char *user
, NT_USER_TOKEN
*token
)
4176 struct winbindd_request request
;
4177 struct winbindd_response response
;
4185 fstr_sprintf(full_name
, "%s%c%s",
4186 domain
, *lp_winbind_separator(), user
);
4188 /* First let's find out the user sid */
4190 ZERO_STRUCT(request
);
4191 ZERO_STRUCT(response
);
4193 fstrcpy(request
.data
.name
.dom_name
, domain
);
4194 fstrcpy(request
.data
.name
.name
, user
);
4196 result
= winbindd_request_response(WINBINDD_LOOKUPNAME
, &request
, &response
);
4198 if (result
!= NSS_STATUS_SUCCESS
) {
4199 DEBUG(1, ("winbind could not find %s\n", full_name
));
4203 if (response
.data
.sid
.type
!= SID_NAME_USER
) {
4204 DEBUG(1, ("%s is not a user\n", full_name
));
4208 string_to_sid(&user_sid
, response
.data
.sid
.sid
);
4210 init_user_token(token
, &user_sid
);
4212 /* And now the groups winbind knows about */
4214 ZERO_STRUCT(response
);
4216 fstrcpy(request
.data
.username
, full_name
);
4218 result
= winbindd_request_response(WINBINDD_GETGROUPS
, &request
, &response
);
4220 if (result
!= NSS_STATUS_SUCCESS
) {
4221 DEBUG(1, ("winbind could not get groups of %s\n", full_name
));
4225 for (i
= 0; i
< response
.data
.num_entries
; i
++) {
4226 gid_t gid
= ((gid_t
*)response
.extra_data
.data
)[i
];
4229 struct winbindd_request sidrequest
;
4230 struct winbindd_response sidresponse
;
4232 ZERO_STRUCT(sidrequest
);
4233 ZERO_STRUCT(sidresponse
);
4235 sidrequest
.data
.gid
= gid
;
4237 result
= winbindd_request_response(WINBINDD_GID_TO_SID
,
4238 &sidrequest
, &sidresponse
);
4240 if (result
!= NSS_STATUS_SUCCESS
) {
4241 DEBUG(1, ("winbind could not find SID of gid %d\n",
4246 DEBUG(3, (" %s\n", sidresponse
.data
.sid
.sid
));
4248 string_to_sid(&sid
, sidresponse
.data
.sid
.sid
);
4249 add_sid_to_token(token
, &sid
);
4252 SAFE_FREE(response
.extra_data
.data
);
4258 * Get a list of all user tokens we want to look at
4261 static BOOL
get_user_tokens(int *num_tokens
, struct user_token
**user_tokens
)
4263 struct winbindd_request request
;
4264 struct winbindd_response response
;
4265 const char *extra_data
;
4268 struct user_token
*result
;
4270 if (lp_winbind_use_default_domain() &&
4271 (opt_target_workgroup
== NULL
)) {
4272 d_fprintf(stderr
, "winbind use default domain = yes set, "
4273 "please specify a workgroup\n");
4277 /* Send request to winbind daemon */
4279 ZERO_STRUCT(request
);
4280 ZERO_STRUCT(response
);
4282 if (winbindd_request_response(WINBINDD_LIST_USERS
, &request
, &response
) !=
4286 /* Look through extra data */
4288 if (!response
.extra_data
.data
)
4291 extra_data
= (const char *)response
.extra_data
.data
;
4294 while(next_token(&extra_data
, name
, ",", sizeof(fstring
))) {
4298 result
= SMB_MALLOC_ARRAY(struct user_token
, *num_tokens
);
4300 if (result
== NULL
) {
4301 DEBUG(1, ("Could not malloc sid array\n"));
4305 extra_data
= (const char *)response
.extra_data
.data
;
4308 while(next_token(&extra_data
, name
, ",", sizeof(fstring
))) {
4310 fstring domain
, user
;
4313 fstrcpy(result
[i
].name
, name
);
4315 p
= strchr(name
, *lp_winbind_separator());
4317 DEBUG(3, ("%s\n", name
));
4320 fstrcpy(domain
, opt_target_workgroup
);
4321 fstrcpy(user
, name
);
4324 fstrcpy(domain
, name
);
4329 get_user_sids(domain
, user
, &(result
[i
].token
));
4333 SAFE_FREE(response
.extra_data
.data
);
4335 *user_tokens
= result
;
4340 static BOOL
get_user_tokens_from_file(FILE *f
,
4342 struct user_token
**tokens
)
4344 struct user_token
*token
= NULL
;
4349 if (fgets(line
, sizeof(line
)-1, f
) == NULL
) {
4353 if (line
[strlen(line
)-1] == '\n')
4354 line
[strlen(line
)-1] = '\0';
4356 if (line
[0] == ' ') {
4360 string_to_sid(&sid
, &line
[1]);
4362 if (token
== NULL
) {
4363 DEBUG(0, ("File does not begin with username"));
4367 add_sid_to_token(&token
->token
, &sid
);
4371 /* And a new user... */
4374 *tokens
= SMB_REALLOC_ARRAY(*tokens
, struct user_token
, *num_tokens
);
4375 if (*tokens
== NULL
) {
4376 DEBUG(0, ("Could not realloc tokens\n"));
4380 token
= &((*tokens
)[*num_tokens
-1]);
4382 fstrcpy(token
->name
, line
);
4383 token
->token
.num_sids
= 0;
4384 token
->token
.user_sids
= NULL
;
4393 * Show the list of all users that have access to a share
4396 static void show_userlist(struct rpc_pipe_client
*pipe_hnd
,
4397 TALLOC_CTX
*mem_ctx
,
4398 const char *netname
,
4400 struct user_token
*tokens
)
4403 SEC_DESC
*share_sd
= NULL
;
4404 SEC_DESC
*root_sd
= NULL
;
4405 struct cli_state
*cli
= pipe_hnd
->cli
;
4407 union srvsvc_NetShareInfo info
;
4411 result
= rpccli_srvsvc_NetShareGetInfo(pipe_hnd
, mem_ctx
, NULL
, netname
,
4414 if (!NT_STATUS_IS_OK(result
)) {
4415 DEBUG(1, ("Coult not query secdesc for share %s\n",
4420 share_sd
= info
.info502
->sd
;
4421 if (share_sd
== NULL
) {
4422 DEBUG(1, ("Got no secdesc for share %s\n",
4428 if (!cli_send_tconX(cli
, netname
, "A:", "", 0)) {
4432 fnum
= cli_nt_create(cli
, "\\", READ_CONTROL_ACCESS
);
4435 root_sd
= cli_query_secdesc(cli
, fnum
, mem_ctx
);
4438 for (i
=0; i
<num_tokens
; i
++) {
4442 if (share_sd
!= NULL
) {
4443 if (!se_access_check(share_sd
, &tokens
[i
].token
,
4444 1, &acc_granted
, &status
)) {
4445 DEBUG(1, ("Could not check share_sd for "
4451 if (!NT_STATUS_IS_OK(status
))
4455 if (root_sd
== NULL
) {
4456 d_printf(" %s\n", tokens
[i
].name
);
4460 if (!se_access_check(root_sd
, &tokens
[i
].token
,
4461 1, &acc_granted
, &status
)) {
4462 DEBUG(1, ("Could not check root_sd for user %s\n",
4467 if (!NT_STATUS_IS_OK(status
))
4470 d_printf(" %s\n", tokens
[i
].name
);
4474 cli_close(cli
, fnum
);
4486 static void collect_share(const char *name
, uint32 m
,
4487 const char *comment
, void *state
)
4489 struct share_list
*share_list
= (struct share_list
*)state
;
4491 if (m
!= STYPE_DISKTREE
)
4494 share_list
->num_shares
+= 1;
4495 share_list
->shares
= SMB_REALLOC_ARRAY(share_list
->shares
, char *, share_list
->num_shares
);
4496 if (!share_list
->shares
) {
4497 share_list
->num_shares
= 0;
4500 share_list
->shares
[share_list
->num_shares
-1] = SMB_STRDUP(name
);
4503 static void rpc_share_userlist_usage(void)
4509 * List shares on a remote RPC server, including the security descriptors
4511 * All parameters are provided by the run_rpc_command function, except for
4512 * argc, argv which are passes through.
4514 * @param domain_sid The domain sid acquired from the remote server
4515 * @param cli A cli_state connected to the server.
4516 * @param mem_ctx Talloc context, destoyed on completion of the function.
4517 * @param argc Standard main() style argc
4518 * @param argv Standard main() style argv. Initial components are already
4521 * @return Normal NTSTATUS return.
4524 static NTSTATUS
rpc_share_allowedusers_internals(const DOM_SID
*domain_sid
,
4525 const char *domain_name
,
4526 struct cli_state
*cli
,
4527 struct rpc_pipe_client
*pipe_hnd
,
4528 TALLOC_CTX
*mem_ctx
,
4538 struct user_token
*tokens
= NULL
;
4541 struct share_list share_list
;
4544 rpc_share_userlist_usage();
4545 return NT_STATUS_UNSUCCESSFUL
;
4551 f
= fopen(argv
[0], "r");
4555 DEBUG(0, ("Could not open userlist: %s\n", strerror(errno
)));
4556 return NT_STATUS_UNSUCCESSFUL
;
4559 r
= get_user_tokens_from_file(f
, &num_tokens
, &tokens
);
4565 DEBUG(0, ("Could not read users from file\n"));
4566 return NT_STATUS_UNSUCCESSFUL
;
4569 for (i
=0; i
<num_tokens
; i
++)
4570 collect_alias_memberships(&tokens
[i
].token
);
4573 share_list
.num_shares
= 0;
4574 share_list
.shares
= NULL
;
4576 ret
= cli_RNetShareEnum(cli
, collect_share
, &share_list
);
4579 DEBUG(0, ("Error returning browse list: %s\n",
4584 for (i
= 0; i
< share_list
.num_shares
; i
++) {
4585 char *netname
= share_list
.shares
[i
];
4587 if (netname
[strlen(netname
)-1] == '$')
4590 d_printf("%s\n", netname
);
4592 show_userlist(pipe_hnd
, mem_ctx
, netname
,
4593 num_tokens
, tokens
);
4596 for (i
=0; i
<num_tokens
; i
++) {
4597 free_user_token(&tokens
[i
].token
);
4600 SAFE_FREE(share_list
.shares
);
4602 return NT_STATUS_OK
;
4605 static int rpc_share_allowedusers(int argc
, const char **argv
)
4609 result
= run_rpc_command(NULL
, PI_SAMR
, 0,
4610 rpc_aliaslist_internals
,
4615 result
= run_rpc_command(NULL
, PI_LSARPC
, 0,
4621 return run_rpc_command(NULL
, PI_SRVSVC
, 0,
4622 rpc_share_allowedusers_internals
,
4626 int net_usersidlist(int argc
, const char **argv
)
4629 struct user_token
*tokens
= NULL
;
4633 net_usersidlist_usage(argc
, argv
);
4637 if (!get_user_tokens(&num_tokens
, &tokens
)) {
4638 DEBUG(0, ("Could not get the user/sid list\n"));
4642 for (i
=0; i
<num_tokens
; i
++) {
4643 dump_user_token(&tokens
[i
]);
4644 free_user_token(&tokens
[i
].token
);
4651 int net_usersidlist_usage(int argc
, const char **argv
)
4653 d_printf("net usersidlist\n"
4654 "\tprints out a list of all users the running winbind knows\n"
4655 "\tabout, together with all their SIDs. This is used as\n"
4656 "\tinput to the 'net rpc share allowedusers' command.\n\n");
4658 net_common_flags_usage(argc
, argv
);
4663 * 'net rpc share' entrypoint.
4664 * @param argc Standard main() style argc
4665 * @param argv Standard main() style argv. Initial components are already
4669 int net_rpc_share(int argc
, const char **argv
)
4671 struct functable func
[] = {
4672 {"add", rpc_share_add
},
4673 {"delete", rpc_share_delete
},
4674 {"allowedusers", rpc_share_allowedusers
},
4675 {"migrate", rpc_share_migrate
},
4676 {"list", rpc_share_list
},
4681 return run_rpc_command(NULL
, PI_SRVSVC
, 0,
4682 rpc_share_list_internals
,
4685 return net_run_function(argc
, argv
, func
, rpc_share_usage
);
4688 static NTSTATUS
rpc_sh_share_list(TALLOC_CTX
*mem_ctx
,
4689 struct rpc_sh_ctx
*ctx
,
4690 struct rpc_pipe_client
*pipe_hnd
,
4691 int argc
, const char **argv
)
4693 return rpc_share_list_internals(ctx
->domain_sid
, ctx
->domain_name
,
4694 ctx
->cli
, pipe_hnd
, mem_ctx
,
4698 static NTSTATUS
rpc_sh_share_add(TALLOC_CTX
*mem_ctx
,
4699 struct rpc_sh_ctx
*ctx
,
4700 struct rpc_pipe_client
*pipe_hnd
,
4701 int argc
, const char **argv
)
4703 union srvsvc_NetShareInfo info
;
4704 struct srvsvc_NetShareInfo2 info2
;
4706 uint32 parm_error
= 0;
4708 if ((argc
< 2) || (argc
> 3)) {
4709 d_fprintf(stderr
, "usage: %s <share> <path> [comment]\n",
4711 return NT_STATUS_INVALID_PARAMETER
;
4714 info
.info2
= &info2
;
4715 info2
.name
= argv
[0];
4716 info2
.type
= STYPE_DISKTREE
;
4717 info2
.comment
= (argc
== 3) ? argv
[2] : "";
4719 result
= rpccli_srvsvc_NetShareAdd(
4720 pipe_hnd
, mem_ctx
, NULL
, 2, info
, &parm_error
);
4725 static NTSTATUS
rpc_sh_share_delete(TALLOC_CTX
*mem_ctx
,
4726 struct rpc_sh_ctx
*ctx
,
4727 struct rpc_pipe_client
*pipe_hnd
,
4728 int argc
, const char **argv
)
4733 d_fprintf(stderr
, "usage: %s <share>\n", ctx
->whoami
);
4734 return NT_STATUS_INVALID_PARAMETER
;
4737 result
= rpccli_srvsvc_NetShareDel(pipe_hnd
, mem_ctx
, NULL
, argv
[0], 0);
4741 static NTSTATUS
rpc_sh_share_info(TALLOC_CTX
*mem_ctx
,
4742 struct rpc_sh_ctx
*ctx
,
4743 struct rpc_pipe_client
*pipe_hnd
,
4744 int argc
, const char **argv
)
4746 union srvsvc_NetShareInfo info
;
4750 d_fprintf(stderr
, "usage: %s <share>\n", ctx
->whoami
);
4751 return NT_STATUS_INVALID_PARAMETER
;
4754 result
= rpccli_srvsvc_NetShareGetInfo(
4755 pipe_hnd
, mem_ctx
, NULL
, argv
[0], 2, &info
);
4756 if (!NT_STATUS_IS_OK(result
)) {
4760 d_printf("Name: %s\n", info
.info2
->name
);
4761 d_printf("Comment: %s\n", info
.info2
->comment
);
4762 d_printf("Path: %s\n", info
.info2
->path
);
4763 d_printf("Password: %s\n", info
.info2
->password
);
4769 struct rpc_sh_cmd
*net_rpc_share_cmds(TALLOC_CTX
*mem_ctx
,
4770 struct rpc_sh_ctx
*ctx
)
4772 static struct rpc_sh_cmd cmds
[] = {
4774 { "list", NULL
, PI_SRVSVC
, rpc_sh_share_list
,
4775 "List available shares" },
4777 { "add", NULL
, PI_SRVSVC
, rpc_sh_share_add
,
4780 { "delete", NULL
, PI_SRVSVC
, rpc_sh_share_delete
,
4783 { "info", NULL
, PI_SRVSVC
, rpc_sh_share_info
,
4784 "Get information about a share" },
4786 { NULL
, NULL
, 0, NULL
, NULL
}
4792 /****************************************************************************/
4794 static int rpc_file_usage(int argc
, const char **argv
)
4796 return net_help_file(argc
, argv
);
4800 * Close a file on a remote RPC server
4802 * All parameters are provided by the run_rpc_command function, except for
4803 * argc, argv which are passes through.
4805 * @param domain_sid The domain sid acquired from the remote server
4806 * @param cli A cli_state connected to the server.
4807 * @param mem_ctx Talloc context, destoyed on completion of the function.
4808 * @param argc Standard main() style argc
4809 * @param argv Standard main() style argv. Initial components are already
4812 * @return Normal NTSTATUS return.
4814 static NTSTATUS
rpc_file_close_internals(const DOM_SID
*domain_sid
,
4815 const char *domain_name
,
4816 struct cli_state
*cli
,
4817 struct rpc_pipe_client
*pipe_hnd
,
4818 TALLOC_CTX
*mem_ctx
,
4823 result
= rpccli_srvsvc_NetFileClose(pipe_hnd
, mem_ctx
, NULL
, atoi(argv
[0]));
4824 return NT_STATUS_IS_OK(result
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
4828 * Close a file on a remote RPC server
4830 * @param argc Standard main() style argc
4831 * @param argv Standard main() style argv. Initial components are already
4834 * @return A shell status integer (0 for success)
4836 static int rpc_file_close(int argc
, const char **argv
)
4839 DEBUG(1, ("No fileid given on close\n"));
4840 return(rpc_file_usage(argc
, argv
));
4843 return run_rpc_command(NULL
, PI_SRVSVC
, 0,
4844 rpc_file_close_internals
,
4849 * Formatted print of open file info
4851 * @param info3 FILE_INFO_3 contents
4852 * @param str3 strings for FILE_INFO_3
4855 static void display_file_info_3( struct srvsvc_NetFileInfo3
*info3
)
4857 d_printf("%-7.1d %-20.20s 0x%-4.2x %-6.1d %s\n",
4858 info3
->fid
, info3
->user
, info3
->permissions
, info3
->num_locks
, info3
->path
);
4862 * List open files on a remote RPC server
4864 * All parameters are provided by the run_rpc_command function, except for
4865 * argc, argv which are passes through.
4867 * @param domain_sid The domain sid acquired from the remote server
4868 * @param cli A cli_state connected to the server.
4869 * @param mem_ctx Talloc context, destoyed on completion of the function.
4870 * @param argc Standard main() style argc
4871 * @param argv Standard main() style argv. Initial components are already
4874 * @return Normal NTSTATUS return.
4877 static NTSTATUS
rpc_file_list_internals(const DOM_SID
*domain_sid
,
4878 const char *domain_name
,
4879 struct cli_state
*cli
,
4880 struct rpc_pipe_client
*pipe_hnd
,
4881 TALLOC_CTX
*mem_ctx
,
4885 union srvsvc_NetFileCtr ctr
;
4888 uint32 preferred_len
= 0xffffffff, i
;
4889 const char *username
=NULL
;
4895 /* if argc > 0, must be user command */
4897 username
= smb_xstrdup(argv
[0]);
4899 result
= rpccli_srvsvc_NetFileEnum(pipe_hnd
, mem_ctx
, NULL
, NULL
,
4900 username
, &level
, &ctr
,
4901 preferred_len
, &numentries
, &hnd
);
4903 if (!NT_STATUS_IS_OK(result
))
4906 /* Display results */
4909 "\nEnumerating open files on remote server:\n\n"\
4910 "\nFileId Opened by Perms Locks Path"\
4911 "\n------ --------- ----- ----- ---- \n");
4912 for (i
= 0; i
< numentries
; i
++)
4913 display_file_info_3(&ctr
.ctr3
->array
[i
]);
4915 return NT_STATUS_IS_OK(result
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
4919 * List files for a user on a remote RPC server
4921 * @param argc Standard main() style argc
4922 * @param argv Standard main() style argv. Initial components are already
4925 * @return A shell status integer (0 for success)
4928 static int rpc_file_user(int argc
, const char **argv
)
4931 DEBUG(1, ("No username given\n"));
4932 return(rpc_file_usage(argc
, argv
));
4935 return run_rpc_command(NULL
, PI_SRVSVC
, 0,
4936 rpc_file_list_internals
,
4941 * 'net rpc file' entrypoint.
4942 * @param argc Standard main() style argc
4943 * @param argv Standard main() style argv. Initial components are already
4947 int net_rpc_file(int argc
, const char **argv
)
4949 struct functable func
[] = {
4950 {"close", rpc_file_close
},
4951 {"user", rpc_file_user
},
4953 {"info", rpc_file_info
},
4959 return run_rpc_command(NULL
, PI_SRVSVC
, 0,
4960 rpc_file_list_internals
,
4963 return net_run_function(argc
, argv
, func
, rpc_file_usage
);
4967 * ABORT the shutdown of a remote RPC Server over, initshutdown pipe
4969 * All parameters are provided by the run_rpc_command function, except for
4970 * argc, argv which are passed through.
4972 * @param domain_sid The domain sid aquired from the remote server
4973 * @param cli A cli_state connected to the server.
4974 * @param mem_ctx Talloc context, destoyed on compleation of the function.
4975 * @param argc Standard main() style argc
4976 * @param argv Standard main() style argv. Initial components are already
4979 * @return Normal NTSTATUS return.
4982 static NTSTATUS
rpc_shutdown_abort_internals(const DOM_SID
*domain_sid
,
4983 const char *domain_name
,
4984 struct cli_state
*cli
,
4985 struct rpc_pipe_client
*pipe_hnd
,
4986 TALLOC_CTX
*mem_ctx
,
4990 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
4992 result
= rpccli_initshutdown_Abort(pipe_hnd
, mem_ctx
, NULL
);
4994 if (NT_STATUS_IS_OK(result
)) {
4995 d_printf("\nShutdown successfully aborted\n");
4996 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
4998 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
5004 * ABORT the shutdown of a remote RPC Server, over winreg pipe
5006 * All parameters are provided by the run_rpc_command function, except for
5007 * argc, argv which are passed through.
5009 * @param domain_sid The domain sid aquired from the remote server
5010 * @param cli A cli_state connected to the server.
5011 * @param mem_ctx Talloc context, destoyed on compleation of the function.
5012 * @param argc Standard main() style argc
5013 * @param argv Standard main() style argv. Initial components are already
5016 * @return Normal NTSTATUS return.
5019 static NTSTATUS
rpc_reg_shutdown_abort_internals(const DOM_SID
*domain_sid
,
5020 const char *domain_name
,
5021 struct cli_state
*cli
,
5022 struct rpc_pipe_client
*pipe_hnd
,
5023 TALLOC_CTX
*mem_ctx
,
5027 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
5029 result
= rpccli_winreg_AbortSystemShutdown(pipe_hnd
, mem_ctx
, NULL
);
5031 if (NT_STATUS_IS_OK(result
)) {
5032 d_printf("\nShutdown successfully aborted\n");
5033 DEBUG(5,("cmd_reg_abort_shutdown: query succeeded\n"));
5035 DEBUG(5,("cmd_reg_abort_shutdown: query failed\n"));
5041 * ABORT the Shut down of a remote RPC server
5043 * @param argc Standard main() style argc
5044 * @param argv Standard main() style argv. Initial components are already
5047 * @return A shell status integer (0 for success)
5050 static int rpc_shutdown_abort(int argc
, const char **argv
)
5052 int rc
= run_rpc_command(NULL
, PI_INITSHUTDOWN
, 0,
5053 rpc_shutdown_abort_internals
,
5059 DEBUG(1, ("initshutdown pipe didn't work, trying winreg pipe\n"));
5061 return run_rpc_command(NULL
, PI_WINREG
, 0,
5062 rpc_reg_shutdown_abort_internals
,
5067 * Shut down a remote RPC Server via initshutdown pipe
5069 * All parameters are provided by the run_rpc_command function, except for
5070 * argc, argv which are passes through.
5072 * @param domain_sid The domain sid aquired from the remote server
5073 * @param cli A cli_state connected to the server.
5074 * @param mem_ctx Talloc context, destoyed on compleation of the function.
5075 * @param argc Standard main() style argc
5076 * @param argc Standard main() style argv. Initial components are already
5079 * @return Normal NTSTATUS return.
5082 static NTSTATUS
rpc_init_shutdown_internals(const DOM_SID
*domain_sid
,
5083 const char *domain_name
,
5084 struct cli_state
*cli
,
5085 struct rpc_pipe_client
*pipe_hnd
,
5086 TALLOC_CTX
*mem_ctx
,
5090 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
5091 const char *msg
= "This machine will be shutdown shortly";
5092 uint32 timeout
= 20;
5093 struct initshutdown_String msg_string
;
5094 struct initshutdown_String_sub s
;
5100 timeout
= opt_timeout
;
5104 msg_string
.name
= &s
;
5106 /* create an entry */
5107 result
= rpccli_initshutdown_Init(pipe_hnd
, mem_ctx
, NULL
,
5108 &msg_string
, timeout
, opt_force
, opt_reboot
);
5110 if (NT_STATUS_IS_OK(result
)) {
5111 d_printf("\nShutdown of remote machine succeeded\n");
5112 DEBUG(5,("Shutdown of remote machine succeeded\n"));
5114 DEBUG(1,("Shutdown of remote machine failed!\n"));
5120 * Shut down a remote RPC Server via winreg pipe
5122 * All parameters are provided by the run_rpc_command function, except for
5123 * argc, argv which are passes through.
5125 * @param domain_sid The domain sid aquired from the remote server
5126 * @param cli A cli_state connected to the server.
5127 * @param mem_ctx Talloc context, destoyed on compleation of the function.
5128 * @param argc Standard main() style argc
5129 * @param argc Standard main() style argv. Initial components are already
5132 * @return Normal NTSTATUS return.
5135 static NTSTATUS
rpc_reg_shutdown_internals(const DOM_SID
*domain_sid
,
5136 const char *domain_name
,
5137 struct cli_state
*cli
,
5138 struct rpc_pipe_client
*pipe_hnd
,
5139 TALLOC_CTX
*mem_ctx
,
5143 const char *msg
= "This machine will be shutdown shortly";
5144 uint32 timeout
= 20;
5145 struct initshutdown_String msg_string
;
5146 struct initshutdown_String_sub s
;
5153 msg_string
.name
= &s
;
5156 timeout
= opt_timeout
;
5159 /* create an entry */
5160 result
= rpccli_winreg_InitiateSystemShutdown(pipe_hnd
, mem_ctx
, NULL
,
5161 &msg_string
, timeout
, opt_force
, opt_reboot
);
5163 if (NT_STATUS_IS_OK(result
)) {
5164 d_printf("\nShutdown of remote machine succeeded\n");
5166 d_fprintf(stderr
, "\nShutdown of remote machine failed\n");
5167 if ( W_ERROR_EQUAL(ntstatus_to_werror(result
),WERR_MACHINE_LOCKED
) )
5168 d_fprintf(stderr
, "\nMachine locked, use -f switch to force\n");
5170 d_fprintf(stderr
, "\nresult was: %s\n", nt_errstr(result
));
5177 * Shut down a remote RPC server
5179 * @param argc Standard main() style argc
5180 * @param argc Standard main() style argv. Initial components are already
5183 * @return A shell status integer (0 for success)
5186 static int rpc_shutdown(int argc
, const char **argv
)
5188 int rc
= run_rpc_command(NULL
, PI_INITSHUTDOWN
, 0,
5189 rpc_init_shutdown_internals
,
5193 DEBUG(1, ("initshutdown pipe failed, trying winreg pipe\n"));
5194 rc
= run_rpc_command(NULL
, PI_WINREG
, 0,
5195 rpc_reg_shutdown_internals
, argc
, argv
);
5201 /***************************************************************************
5202 NT Domain trusts code (i.e. 'net rpc trustdom' functionality)
5204 ***************************************************************************/
5207 * Add interdomain trust account to the RPC server.
5208 * All parameters (except for argc and argv) are passed by run_rpc_command
5211 * @param domain_sid The domain sid acquired from the server
5212 * @param cli A cli_state connected to the server.
5213 * @param mem_ctx Talloc context, destoyed on completion of the function.
5214 * @param argc Standard main() style argc
5215 * @param argc Standard main() style argv. Initial components are already
5218 * @return normal NTSTATUS return code
5221 static NTSTATUS
rpc_trustdom_add_internals(const DOM_SID
*domain_sid
,
5222 const char *domain_name
,
5223 struct cli_state
*cli
,
5224 struct rpc_pipe_client
*pipe_hnd
,
5225 TALLOC_CTX
*mem_ctx
,
5229 POLICY_HND connect_pol
, domain_pol
, user_pol
;
5230 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
5233 uint32 unknown
, user_rid
;
5236 d_printf("Usage: net rpc trustdom add <domain_name> <pw>\n");
5237 return NT_STATUS_INVALID_PARAMETER
;
5241 * Make valid trusting domain account (ie. uppercased and with '$' appended)
5244 if (asprintf(&acct_name
, "%s$", argv
[0]) < 0) {
5245 return NT_STATUS_NO_MEMORY
;
5248 strupper_m(acct_name
);
5250 /* Get samr policy handle */
5251 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
5253 if (!NT_STATUS_IS_OK(result
)) {
5257 /* Get domain policy handle */
5258 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
5259 MAXIMUM_ALLOWED_ACCESS
,
5260 domain_sid
, &domain_pol
);
5261 if (!NT_STATUS_IS_OK(result
)) {
5265 /* Create trusting domain's account */
5266 acb_info
= ACB_NORMAL
;
5267 unknown
= 0xe00500b0; /* No idea what this is - a permission mask?
5268 mimir: yes, most probably it is */
5270 result
= rpccli_samr_create_dom_user(pipe_hnd
, mem_ctx
, &domain_pol
,
5271 acct_name
, acb_info
, unknown
,
5272 &user_pol
, &user_rid
);
5273 if (!NT_STATUS_IS_OK(result
)) {
5278 SAM_USERINFO_CTR ctr
;
5279 SAM_USER_INFO_23 p23
;
5285 encode_pw_buffer(pwbuf
, argv
[1], STR_UNICODE
);
5289 ZERO_STRUCT(notime
);
5293 memset(hrs
.hours
, 0xFF, sizeof(hrs
.hours
));
5294 acb_info
= ACB_DOMTRUST
;
5296 init_sam_user_info23A(&p23
, ¬ime
, ¬ime
, ¬ime
,
5297 ¬ime
, ¬ime
, ¬ime
,
5298 nostr
, nostr
, nostr
, nostr
, nostr
,
5299 nostr
, nostr
, nostr
, nostr
, nostr
,
5300 0, 0, acb_info
, ACCT_FLAGS
, 168, &hrs
,
5301 0, 0, (char *)pwbuf
);
5302 ctr
.switch_value
= 23;
5303 ctr
.info
.id23
= &p23
;
5304 p23
.passmustchange
= 0;
5306 result
= rpccli_samr_set_userinfo(pipe_hnd
, mem_ctx
, &user_pol
, 23,
5307 &cli
->user_session_key
, &ctr
);
5309 if (!NT_STATUS_IS_OK(result
)) {
5310 DEBUG(0,("Could not set trust account password: %s\n",
5311 nt_errstr(result
)));
5317 SAFE_FREE(acct_name
);
5322 * Create interdomain trust account for a remote domain.
5324 * @param argc standard argc
5325 * @param argv standard argv without initial components
5327 * @return Integer status (0 means success)
5330 static int rpc_trustdom_add(int argc
, const char **argv
)
5333 return run_rpc_command(NULL
, PI_SAMR
, 0, rpc_trustdom_add_internals
,
5336 d_printf("Usage: net rpc trustdom add <domain>\n");
5343 * Remove interdomain trust account from the RPC server.
5344 * All parameters (except for argc and argv) are passed by run_rpc_command
5347 * @param domain_sid The domain sid acquired from the server
5348 * @param cli A cli_state connected to the server.
5349 * @param mem_ctx Talloc context, destoyed on completion of the function.
5350 * @param argc Standard main() style argc
5351 * @param argc Standard main() style argv. Initial components are already
5354 * @return normal NTSTATUS return code
5357 static NTSTATUS
rpc_trustdom_del_internals(const DOM_SID
*domain_sid
,
5358 const char *domain_name
,
5359 struct cli_state
*cli
,
5360 struct rpc_pipe_client
*pipe_hnd
,
5361 TALLOC_CTX
*mem_ctx
,
5365 POLICY_HND connect_pol
, domain_pol
, user_pol
;
5366 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
5369 DOM_SID trust_acct_sid
;
5370 uint32
*user_rids
, num_rids
, *name_types
;
5371 uint32 flags
= 0x000003e8; /* Unknown */
5374 d_printf("Usage: net rpc trustdom del <domain_name>\n");
5375 return NT_STATUS_INVALID_PARAMETER
;
5379 * Make valid trusting domain account (ie. uppercased and with '$' appended)
5381 acct_name
= talloc_asprintf(mem_ctx
, "%s$", argv
[0]);
5383 if (acct_name
== NULL
)
5384 return NT_STATUS_NO_MEMORY
;
5386 strupper_m(acct_name
);
5388 if ((names
= TALLOC_ARRAY(mem_ctx
, const char *, 1)) == NULL
) {
5389 return NT_STATUS_NO_MEMORY
;
5391 names
[0] = acct_name
;
5394 /* Get samr policy handle */
5395 result
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
5397 if (!NT_STATUS_IS_OK(result
)) {
5401 /* Get domain policy handle */
5402 result
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_pol
,
5403 MAXIMUM_ALLOWED_ACCESS
,
5404 domain_sid
, &domain_pol
);
5405 if (!NT_STATUS_IS_OK(result
)) {
5409 result
= rpccli_samr_lookup_names(pipe_hnd
, mem_ctx
, &domain_pol
, flags
, 1,
5411 &user_rids
, &name_types
);
5413 if (!NT_STATUS_IS_OK(result
)) {
5417 result
= rpccli_samr_open_user(pipe_hnd
, mem_ctx
, &domain_pol
,
5418 MAXIMUM_ALLOWED_ACCESS
,
5419 user_rids
[0], &user_pol
);
5421 if (!NT_STATUS_IS_OK(result
)) {
5425 /* append the rid to the domain sid */
5426 sid_copy(&trust_acct_sid
, domain_sid
);
5427 if (!sid_append_rid(&trust_acct_sid
, user_rids
[0])) {
5431 /* remove the sid */
5433 result
= rpccli_samr_remove_sid_foreign_domain(pipe_hnd
, mem_ctx
, &user_pol
,
5436 if (!NT_STATUS_IS_OK(result
)) {
5442 result
= rpccli_samr_delete_dom_user(pipe_hnd
, mem_ctx
, &user_pol
);
5444 if (!NT_STATUS_IS_OK(result
)) {
5448 if (!NT_STATUS_IS_OK(result
)) {
5449 DEBUG(0,("Could not set trust account password: %s\n",
5450 nt_errstr(result
)));
5459 * Delete interdomain trust account for a remote domain.
5461 * @param argc standard argc
5462 * @param argv standard argv without initial components
5464 * @return Integer status (0 means success)
5467 static int rpc_trustdom_del(int argc
, const char **argv
)
5470 return run_rpc_command(NULL
, PI_SAMR
, 0, rpc_trustdom_del_internals
,
5473 d_printf("Usage: net rpc trustdom del <domain>\n");
5480 * Establish trust relationship to a trusting domain.
5481 * Interdomain account must already be created on remote PDC.
5483 * @param argc standard argc
5484 * @param argv standard argv without initial components
5486 * @return Integer status (0 means success)
5489 static int rpc_trustdom_establish(int argc
, const char **argv
)
5491 struct cli_state
*cli
= NULL
;
5492 struct in_addr server_ip
;
5493 struct rpc_pipe_client
*pipe_hnd
= NULL
;
5494 POLICY_HND connect_hnd
;
5495 TALLOC_CTX
*mem_ctx
;
5497 DOM_SID
*domain_sid
;
5500 char* domain_name_pol
;
5505 * Connect to \\server\ipc$ as 'our domain' account with password
5509 d_printf("Usage: net rpc trustdom establish <domain_name>\n");
5513 domain_name
= smb_xstrdup(argv
[0]);
5514 strupper_m(domain_name
);
5516 /* account name used at first is our domain's name with '$' */
5517 asprintf(&acct_name
, "%s$", lp_workgroup());
5518 strupper_m(acct_name
);
5521 * opt_workgroup will be used by connection functions further,
5522 * hence it should be set to remote domain name instead of ours
5524 if (opt_workgroup
) {
5525 opt_workgroup
= smb_xstrdup(domain_name
);
5528 opt_user_name
= acct_name
;
5530 /* find the domain controller */
5531 if (!net_find_pdc(&server_ip
, pdc_name
, domain_name
)) {
5532 DEBUG(0, ("Couldn't find domain controller for domain %s\n", domain_name
));
5536 /* connect to ipc$ as username/password */
5537 nt_status
= connect_to_ipc(&cli
, &server_ip
, pdc_name
);
5538 if (!NT_STATUS_EQUAL(nt_status
, NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT
)) {
5540 /* Is it trusting domain account for sure ? */
5541 DEBUG(0, ("Couldn't verify trusting domain account. Error was %s\n",
5542 nt_errstr(nt_status
)));
5546 /* store who we connected to */
5548 saf_store( domain_name
, pdc_name
);
5551 * Connect to \\server\ipc$ again (this time anonymously)
5554 nt_status
= connect_to_ipc_anonymous(&cli
, &server_ip
, (char*)pdc_name
);
5556 if (NT_STATUS_IS_ERR(nt_status
)) {
5557 DEBUG(0, ("Couldn't connect to domain %s controller. Error was %s.\n",
5558 domain_name
, nt_errstr(nt_status
)));
5563 * Use NetServerEnum2 to make sure we're talking to a proper server
5566 if (!cli_get_pdc_name(cli
, domain_name
, (char*)pdc_name
)) {
5567 DEBUG(0, ("NetServerEnum2 error: Couldn't find primary domain controller\
5568 for domain %s\n", domain_name
));
5573 if (!(mem_ctx
= talloc_init("establishing trust relationship to "
5574 "domain %s", domain_name
))) {
5575 DEBUG(0, ("talloc_init() failed\n"));
5581 * Call LsaOpenPolicy and LsaQueryInfo
5584 pipe_hnd
= cli_rpc_pipe_open_noauth(cli
, PI_LSARPC
, &nt_status
);
5586 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n", nt_errstr(nt_status
) ));
5588 talloc_destroy(mem_ctx
);
5592 nt_status
= rpccli_lsa_open_policy2(pipe_hnd
, mem_ctx
, True
, SEC_RIGHTS_QUERY_VALUE
,
5594 if (NT_STATUS_IS_ERR(nt_status
)) {
5595 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
5596 nt_errstr(nt_status
)));
5598 talloc_destroy(mem_ctx
);
5602 /* Querying info level 5 */
5604 nt_status
= rpccli_lsa_query_info_policy(pipe_hnd
, mem_ctx
, &connect_hnd
,
5606 &domain_name_pol
, &domain_sid
);
5607 if (NT_STATUS_IS_ERR(nt_status
)) {
5608 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
5609 nt_errstr(nt_status
)));
5611 talloc_destroy(mem_ctx
);
5615 /* There should be actually query info level 3 (following nt serv behaviour),
5616 but I still don't know if it's _really_ necessary */
5619 * Store the password in secrets db
5622 if (!pdb_set_trusteddom_pw(domain_name
, opt_password
, domain_sid
)) {
5623 DEBUG(0, ("Storing password for trusted domain failed.\n"));
5625 talloc_destroy(mem_ctx
);
5630 * Close the pipes and clean up
5633 nt_status
= rpccli_lsa_Close(pipe_hnd
, mem_ctx
, &connect_hnd
);
5634 if (NT_STATUS_IS_ERR(nt_status
)) {
5635 DEBUG(0, ("Couldn't close LSA pipe. Error was %s\n",
5636 nt_errstr(nt_status
)));
5638 talloc_destroy(mem_ctx
);
5644 talloc_destroy(mem_ctx
);
5646 d_printf("Trust to domain %s established\n", domain_name
);
5651 * Revoke trust relationship to the remote domain
5653 * @param argc standard argc
5654 * @param argv standard argv without initial components
5656 * @return Integer status (0 means success)
5659 static int rpc_trustdom_revoke(int argc
, const char **argv
)
5664 if (argc
< 1) return -1;
5666 /* generate upper cased domain name */
5667 domain_name
= smb_xstrdup(argv
[0]);
5668 strupper_m(domain_name
);
5670 /* delete password of the trust */
5671 if (!pdb_del_trusteddom_pw(domain_name
)) {
5672 DEBUG(0, ("Failed to revoke relationship to the trusted domain %s\n",
5679 SAFE_FREE(domain_name
);
5684 * Usage for 'net rpc trustdom' command
5686 * @param argc standard argc
5687 * @param argv standard argv without inital components
5689 * @return Integer status returned to shell
5692 static int rpc_trustdom_usage(int argc
, const char **argv
)
5694 d_printf(" net rpc trustdom add \t\t add trusting domain's account\n");
5695 d_printf(" net rpc trustdom del \t\t delete trusting domain's account\n");
5696 d_printf(" net rpc trustdom establish \t establish relationship to trusted domain\n");
5697 d_printf(" net rpc trustdom revoke \t abandon relationship to trusted domain\n");
5698 d_printf(" net rpc trustdom list \t show current interdomain trust relationships\n");
5699 d_printf(" net rpc trustdom vampire \t vampire interdomain trust relationships from remote server\n");
5704 static NTSTATUS
rpc_query_domain_sid(const DOM_SID
*domain_sid
,
5705 const char *domain_name
,
5706 struct cli_state
*cli
,
5707 struct rpc_pipe_client
*pipe_hnd
,
5708 TALLOC_CTX
*mem_ctx
,
5713 sid_to_string(str_sid
, domain_sid
);
5714 d_printf("%s\n", str_sid
);
5715 return NT_STATUS_OK
;
5718 static void print_trusted_domain(DOM_SID
*dom_sid
, const char *trusted_dom_name
)
5720 fstring ascii_sid
, padding
;
5721 int pad_len
, col_len
= 20;
5723 /* convert sid into ascii string */
5724 sid_to_string(ascii_sid
, dom_sid
);
5726 /* calculate padding space for d_printf to look nicer */
5727 pad_len
= col_len
- strlen(trusted_dom_name
);
5728 padding
[pad_len
] = 0;
5729 do padding
[--pad_len
] = ' '; while (pad_len
);
5731 d_printf("%s%s%s\n", trusted_dom_name
, padding
, ascii_sid
);
5734 static NTSTATUS
vampire_trusted_domain(struct rpc_pipe_client
*pipe_hnd
,
5735 TALLOC_CTX
*mem_ctx
,
5738 const char *trusted_dom_name
)
5741 LSA_TRUSTED_DOMAIN_INFO
*info
;
5742 char *cleartextpwd
= NULL
;
5745 nt_status
= rpccli_lsa_query_trusted_domain_info_by_sid(pipe_hnd
, mem_ctx
, pol
, 4, &dom_sid
, &info
);
5747 if (NT_STATUS_IS_ERR(nt_status
)) {
5748 DEBUG(0,("Could not query trusted domain info. Error was %s\n",
5749 nt_errstr(nt_status
)));
5753 data
= data_blob(NULL
, info
->password
.password
.length
);
5755 memcpy(data
.data
, info
->password
.password
.data
, info
->password
.password
.length
);
5756 data
.length
= info
->password
.password
.length
;
5758 cleartextpwd
= decrypt_trustdom_secret(pipe_hnd
->cli
->pwd
.password
, &data
);
5760 if (cleartextpwd
== NULL
) {
5761 DEBUG(0,("retrieved NULL password\n"));
5762 nt_status
= NT_STATUS_UNSUCCESSFUL
;
5766 if (!pdb_set_trusteddom_pw(trusted_dom_name
, cleartextpwd
, &dom_sid
)) {
5767 DEBUG(0, ("Storing password for trusted domain failed.\n"));
5768 nt_status
= NT_STATUS_UNSUCCESSFUL
;
5772 #ifdef DEBUG_PASSWORD
5773 DEBUG(100,("sucessfully vampired trusted domain [%s], sid: [%s], password: [%s]\n",
5774 trusted_dom_name
, sid_string_static(&dom_sid
), cleartextpwd
));
5778 SAFE_FREE(cleartextpwd
);
5779 data_blob_free(&data
);
5784 static int rpc_trustdom_vampire(int argc
, const char **argv
)
5786 /* common variables */
5787 TALLOC_CTX
* mem_ctx
;
5788 struct cli_state
*cli
= NULL
;
5789 struct rpc_pipe_client
*pipe_hnd
= NULL
;
5791 const char *domain_name
= NULL
;
5792 DOM_SID
*queried_dom_sid
;
5793 POLICY_HND connect_hnd
;
5795 /* trusted domains listing variables */
5796 unsigned int num_domains
, enum_ctx
= 0;
5798 DOM_SID
*domain_sids
;
5799 char **trusted_dom_names
;
5804 * Listing trusted domains (stored in secrets.tdb, if local)
5807 mem_ctx
= talloc_init("trust relationships vampire");
5810 * set domain and pdc name to local samba server (default)
5811 * or to remote one given in command line
5814 if (StrCaseCmp(opt_workgroup
, lp_workgroup())) {
5815 domain_name
= opt_workgroup
;
5816 opt_target_workgroup
= opt_workgroup
;
5818 fstrcpy(pdc_name
, global_myname());
5819 domain_name
= talloc_strdup(mem_ctx
, lp_workgroup());
5820 opt_target_workgroup
= domain_name
;
5823 /* open \PIPE\lsarpc and open policy handle */
5824 if (!(cli
= net_make_ipc_connection(NET_FLAGS_PDC
))) {
5825 DEBUG(0, ("Couldn't connect to domain controller\n"));
5826 talloc_destroy(mem_ctx
);
5830 pipe_hnd
= cli_rpc_pipe_open_noauth(cli
, PI_LSARPC
, &nt_status
);
5832 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n",
5833 nt_errstr(nt_status
) ));
5835 talloc_destroy(mem_ctx
);
5839 nt_status
= rpccli_lsa_open_policy2(pipe_hnd
, mem_ctx
, False
, SEC_RIGHTS_QUERY_VALUE
,
5841 if (NT_STATUS_IS_ERR(nt_status
)) {
5842 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
5843 nt_errstr(nt_status
)));
5845 talloc_destroy(mem_ctx
);
5849 /* query info level 5 to obtain sid of a domain being queried */
5850 nt_status
= rpccli_lsa_query_info_policy(
5851 pipe_hnd
, mem_ctx
, &connect_hnd
, 5 /* info level */,
5852 &dummy
, &queried_dom_sid
);
5854 if (NT_STATUS_IS_ERR(nt_status
)) {
5855 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
5856 nt_errstr(nt_status
)));
5858 talloc_destroy(mem_ctx
);
5863 * Keep calling LsaEnumTrustdom over opened pipe until
5864 * the end of enumeration is reached
5867 d_printf("Vampire trusted domains:\n\n");
5870 nt_status
= rpccli_lsa_enum_trust_dom(pipe_hnd
, mem_ctx
, &connect_hnd
, &enum_ctx
,
5872 &trusted_dom_names
, &domain_sids
);
5874 if (NT_STATUS_IS_ERR(nt_status
)) {
5875 DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
5876 nt_errstr(nt_status
)));
5878 talloc_destroy(mem_ctx
);
5882 for (i
= 0; i
< num_domains
; i
++) {
5884 print_trusted_domain(&(domain_sids
[i
]), trusted_dom_names
[i
]);
5886 nt_status
= vampire_trusted_domain(pipe_hnd
, mem_ctx
, &connect_hnd
,
5887 domain_sids
[i
], trusted_dom_names
[i
]);
5888 if (!NT_STATUS_IS_OK(nt_status
)) {
5890 talloc_destroy(mem_ctx
);
5896 * in case of no trusted domains say something rather
5897 * than just display blank line
5899 if (!num_domains
) d_printf("none\n");
5901 } while (NT_STATUS_EQUAL(nt_status
, STATUS_MORE_ENTRIES
));
5903 /* close this connection before doing next one */
5904 nt_status
= rpccli_lsa_Close(pipe_hnd
, mem_ctx
, &connect_hnd
);
5905 if (NT_STATUS_IS_ERR(nt_status
)) {
5906 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
5907 nt_errstr(nt_status
)));
5909 talloc_destroy(mem_ctx
);
5913 /* close lsarpc pipe and connection to IPC$ */
5916 talloc_destroy(mem_ctx
);
5920 static int rpc_trustdom_list(int argc
, const char **argv
)
5922 /* common variables */
5923 TALLOC_CTX
* mem_ctx
;
5924 struct cli_state
*cli
= NULL
, *remote_cli
= NULL
;
5925 struct rpc_pipe_client
*pipe_hnd
= NULL
;
5927 const char *domain_name
= NULL
;
5928 DOM_SID
*queried_dom_sid
;
5930 int ascii_dom_name_len
;
5931 POLICY_HND connect_hnd
;
5933 /* trusted domains listing variables */
5934 unsigned int num_domains
, enum_ctx
= 0;
5935 int i
, pad_len
, col_len
= 20;
5936 DOM_SID
*domain_sids
;
5937 char **trusted_dom_names
;
5941 /* trusting domains listing variables */
5942 POLICY_HND domain_hnd
;
5943 char **trusting_dom_names
;
5944 uint32
*trusting_dom_rids
;
5947 * Listing trusted domains (stored in secrets.tdb, if local)
5950 mem_ctx
= talloc_init("trust relationships listing");
5953 * set domain and pdc name to local samba server (default)
5954 * or to remote one given in command line
5957 if (StrCaseCmp(opt_workgroup
, lp_workgroup())) {
5958 domain_name
= opt_workgroup
;
5959 opt_target_workgroup
= opt_workgroup
;
5961 fstrcpy(pdc_name
, global_myname());
5962 domain_name
= talloc_strdup(mem_ctx
, lp_workgroup());
5963 opt_target_workgroup
= domain_name
;
5966 /* open \PIPE\lsarpc and open policy handle */
5967 if (!(cli
= net_make_ipc_connection(NET_FLAGS_PDC
))) {
5968 DEBUG(0, ("Couldn't connect to domain controller\n"));
5969 talloc_destroy(mem_ctx
);
5973 pipe_hnd
= cli_rpc_pipe_open_noauth(cli
, PI_LSARPC
, &nt_status
);
5975 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n",
5976 nt_errstr(nt_status
) ));
5978 talloc_destroy(mem_ctx
);
5982 nt_status
= rpccli_lsa_open_policy2(pipe_hnd
, mem_ctx
, False
, SEC_RIGHTS_QUERY_VALUE
,
5984 if (NT_STATUS_IS_ERR(nt_status
)) {
5985 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
5986 nt_errstr(nt_status
)));
5988 talloc_destroy(mem_ctx
);
5992 /* query info level 5 to obtain sid of a domain being queried */
5993 nt_status
= rpccli_lsa_query_info_policy(
5994 pipe_hnd
, mem_ctx
, &connect_hnd
, 5 /* info level */,
5995 &dummy
, &queried_dom_sid
);
5997 if (NT_STATUS_IS_ERR(nt_status
)) {
5998 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
5999 nt_errstr(nt_status
)));
6001 talloc_destroy(mem_ctx
);
6006 * Keep calling LsaEnumTrustdom over opened pipe until
6007 * the end of enumeration is reached
6010 d_printf("Trusted domains list:\n\n");
6013 nt_status
= rpccli_lsa_enum_trust_dom(pipe_hnd
, mem_ctx
, &connect_hnd
, &enum_ctx
,
6015 &trusted_dom_names
, &domain_sids
);
6017 if (NT_STATUS_IS_ERR(nt_status
)) {
6018 DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
6019 nt_errstr(nt_status
)));
6021 talloc_destroy(mem_ctx
);
6025 for (i
= 0; i
< num_domains
; i
++) {
6026 print_trusted_domain(&(domain_sids
[i
]), trusted_dom_names
[i
]);
6030 * in case of no trusted domains say something rather
6031 * than just display blank line
6033 if (!num_domains
) d_printf("none\n");
6035 } while (NT_STATUS_EQUAL(nt_status
, STATUS_MORE_ENTRIES
));
6037 /* close this connection before doing next one */
6038 nt_status
= rpccli_lsa_Close(pipe_hnd
, mem_ctx
, &connect_hnd
);
6039 if (NT_STATUS_IS_ERR(nt_status
)) {
6040 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
6041 nt_errstr(nt_status
)));
6043 talloc_destroy(mem_ctx
);
6047 cli_rpc_pipe_close(pipe_hnd
);
6050 * Listing trusting domains (stored in passdb backend, if local)
6053 d_printf("\nTrusting domains list:\n\n");
6056 * Open \PIPE\samr and get needed policy handles
6058 pipe_hnd
= cli_rpc_pipe_open_noauth(cli
, PI_SAMR
, &nt_status
);
6060 DEBUG(0, ("Could not initialise samr pipe. Error was %s\n", nt_errstr(nt_status
)));
6062 talloc_destroy(mem_ctx
);
6067 nt_status
= rpccli_samr_connect(pipe_hnd
, mem_ctx
, SA_RIGHT_SAM_OPEN_DOMAIN
,
6069 if (!NT_STATUS_IS_OK(nt_status
)) {
6070 DEBUG(0, ("Couldn't open SAMR policy handle. Error was %s\n",
6071 nt_errstr(nt_status
)));
6073 talloc_destroy(mem_ctx
);
6077 /* SamrOpenDomain - we have to open domain policy handle in order to be
6078 able to enumerate accounts*/
6079 nt_status
= rpccli_samr_open_domain(pipe_hnd
, mem_ctx
, &connect_hnd
,
6080 SA_RIGHT_DOMAIN_ENUM_ACCOUNTS
,
6081 queried_dom_sid
, &domain_hnd
);
6082 if (!NT_STATUS_IS_OK(nt_status
)) {
6083 DEBUG(0, ("Couldn't open domain object. Error was %s\n",
6084 nt_errstr(nt_status
)));
6086 talloc_destroy(mem_ctx
);
6091 * perform actual enumeration
6094 enum_ctx
= 0; /* reset enumeration context from last enumeration */
6097 nt_status
= rpccli_samr_enum_dom_users(pipe_hnd
, mem_ctx
, &domain_hnd
,
6098 &enum_ctx
, ACB_DOMTRUST
, 0xffff,
6099 &trusting_dom_names
, &trusting_dom_rids
,
6101 if (NT_STATUS_IS_ERR(nt_status
)) {
6102 DEBUG(0, ("Couldn't enumerate accounts. Error was: %s\n",
6103 nt_errstr(nt_status
)));
6105 talloc_destroy(mem_ctx
);
6109 for (i
= 0; i
< num_domains
; i
++) {
6112 * get each single domain's sid (do we _really_ need this ?):
6113 * 1) connect to domain's pdc
6114 * 2) query the pdc for domain's sid
6117 /* get rid of '$' tail */
6118 ascii_dom_name_len
= strlen(trusting_dom_names
[i
]);
6119 if (ascii_dom_name_len
&& ascii_dom_name_len
< FSTRING_LEN
)
6120 trusting_dom_names
[i
][ascii_dom_name_len
- 1] = '\0';
6122 /* calculate padding space for d_printf to look nicer */
6123 pad_len
= col_len
- strlen(trusting_dom_names
[i
]);
6124 padding
[pad_len
] = 0;
6125 do padding
[--pad_len
] = ' '; while (pad_len
);
6127 /* set opt_* variables to remote domain */
6128 strupper_m(trusting_dom_names
[i
]);
6129 opt_workgroup
= talloc_strdup(mem_ctx
, trusting_dom_names
[i
]);
6130 opt_target_workgroup
= opt_workgroup
;
6132 d_printf("%s%s", trusting_dom_names
[i
], padding
);
6134 /* connect to remote domain controller */
6135 remote_cli
= net_make_ipc_connection(NET_FLAGS_PDC
| NET_FLAGS_ANONYMOUS
);
6137 /* query for domain's sid */
6138 if (run_rpc_command(remote_cli
, PI_LSARPC
, 0, rpc_query_domain_sid
, argc
, argv
))
6139 d_fprintf(stderr
, "couldn't get domain's sid\n");
6141 cli_shutdown(remote_cli
);
6144 d_fprintf(stderr
, "domain controller is not responding\n");
6148 if (!num_domains
) d_printf("none\n");
6150 } while (NT_STATUS_EQUAL(nt_status
, STATUS_MORE_ENTRIES
));
6152 /* close opened samr and domain policy handles */
6153 nt_status
= rpccli_samr_close(pipe_hnd
, mem_ctx
, &domain_hnd
);
6154 if (!NT_STATUS_IS_OK(nt_status
)) {
6155 DEBUG(0, ("Couldn't properly close domain policy handle for domain %s\n", domain_name
));
6158 nt_status
= rpccli_samr_close(pipe_hnd
, mem_ctx
, &connect_hnd
);
6159 if (!NT_STATUS_IS_OK(nt_status
)) {
6160 DEBUG(0, ("Couldn't properly close samr policy handle for domain %s\n", domain_name
));
6163 /* close samr pipe and connection to IPC$ */
6166 talloc_destroy(mem_ctx
);
6171 * Entrypoint for 'net rpc trustdom' code
6173 * @param argc standard argc
6174 * @param argv standard argv without initial components
6176 * @return Integer status (0 means success)
6179 static int rpc_trustdom(int argc
, const char **argv
)
6181 struct functable func
[] = {
6182 {"add", rpc_trustdom_add
},
6183 {"del", rpc_trustdom_del
},
6184 {"establish", rpc_trustdom_establish
},
6185 {"revoke", rpc_trustdom_revoke
},
6186 {"help", rpc_trustdom_usage
},
6187 {"list", rpc_trustdom_list
},
6188 {"vampire", rpc_trustdom_vampire
},
6193 rpc_trustdom_usage(argc
, argv
);
6197 return (net_run_function(argc
, argv
, func
, rpc_user_usage
));
6201 * Check if a server will take rpc commands
6202 * @param flags Type of server to connect to (PDC, DMB, localhost)
6203 * if the host is not explicitly specified
6204 * @return BOOL (true means rpc supported)
6206 BOOL
net_rpc_check(unsigned flags
)
6208 struct cli_state
*cli
;
6210 struct in_addr server_ip
;
6211 char *server_name
= NULL
;
6214 /* flags (i.e. server type) may depend on command */
6215 if (!net_find_server(NULL
, flags
, &server_ip
, &server_name
))
6218 if ((cli
= cli_initialise()) == NULL
) {
6222 status
= cli_connect(cli
, server_name
, &server_ip
);
6223 if (!NT_STATUS_IS_OK(status
))
6225 if (!attempt_netbios_session_request(&cli
, global_myname(),
6226 server_name
, &server_ip
))
6228 if (!cli_negprot(cli
))
6230 if (cli
->protocol
< PROTOCOL_NT1
)
6239 /* dump sam database via samsync rpc calls */
6240 static int rpc_samdump(int argc
, const char **argv
) {
6241 return run_rpc_command(NULL
, PI_NETLOGON
, NET_FLAGS_ANONYMOUS
, rpc_samdump_internals
,
6245 /* syncronise sam database via samsync rpc calls */
6246 static int rpc_vampire(int argc
, const char **argv
) {
6247 return run_rpc_command(NULL
, PI_NETLOGON
, NET_FLAGS_ANONYMOUS
, rpc_vampire_internals
,
6252 * Migrate everything from a print-server
6254 * @param argc Standard main() style argc
6255 * @param argv Standard main() style argv. Initial components are already
6258 * @return A shell status integer (0 for success)
6260 * The order is important !
6261 * To successfully add drivers the print-queues have to exist !
6262 * Applying ACLs should be the last step, because you're easily locked out
6265 static int rpc_printer_migrate_all(int argc
, const char **argv
)
6270 printf("no server to migrate\n");
6274 ret
= run_rpc_command(NULL
, PI_SPOOLSS
, 0, rpc_printer_migrate_printers_internals
, argc
, argv
);
6278 ret
= run_rpc_command(NULL
, PI_SPOOLSS
, 0, rpc_printer_migrate_drivers_internals
, argc
, argv
);
6282 ret
= run_rpc_command(NULL
, PI_SPOOLSS
, 0, rpc_printer_migrate_forms_internals
, argc
, argv
);
6286 ret
= run_rpc_command(NULL
, PI_SPOOLSS
, 0, rpc_printer_migrate_settings_internals
, argc
, argv
);
6290 return run_rpc_command(NULL
, PI_SPOOLSS
, 0, rpc_printer_migrate_security_internals
, argc
, argv
);
6295 * Migrate print-drivers from a print-server
6297 * @param argc Standard main() style argc
6298 * @param argv Standard main() style argv. Initial components are already
6301 * @return A shell status integer (0 for success)
6303 static int rpc_printer_migrate_drivers(int argc
, const char **argv
)
6306 printf("no server to migrate\n");
6310 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6311 rpc_printer_migrate_drivers_internals
,
6316 * Migrate print-forms from a print-server
6318 * @param argc Standard main() style argc
6319 * @param argv Standard main() style argv. Initial components are already
6322 * @return A shell status integer (0 for success)
6324 static int rpc_printer_migrate_forms(int argc
, const char **argv
)
6327 printf("no server to migrate\n");
6331 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6332 rpc_printer_migrate_forms_internals
,
6337 * Migrate printers from a print-server
6339 * @param argc Standard main() style argc
6340 * @param argv Standard main() style argv. Initial components are already
6343 * @return A shell status integer (0 for success)
6345 static int rpc_printer_migrate_printers(int argc
, const char **argv
)
6348 printf("no server to migrate\n");
6352 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6353 rpc_printer_migrate_printers_internals
,
6358 * Migrate printer-ACLs from a print-server
6360 * @param argc Standard main() style argc
6361 * @param argv Standard main() style argv. Initial components are already
6364 * @return A shell status integer (0 for success)
6366 static int rpc_printer_migrate_security(int argc
, const char **argv
)
6369 printf("no server to migrate\n");
6373 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6374 rpc_printer_migrate_security_internals
,
6379 * Migrate printer-settings from a print-server
6381 * @param argc Standard main() style argc
6382 * @param argv Standard main() style argv. Initial components are already
6385 * @return A shell status integer (0 for success)
6387 static int rpc_printer_migrate_settings(int argc
, const char **argv
)
6390 printf("no server to migrate\n");
6394 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6395 rpc_printer_migrate_settings_internals
,
6400 * 'net rpc printer' entrypoint.
6401 * @param argc Standard main() style argc
6402 * @param argv Standard main() style argv. Initial components are already
6406 int rpc_printer_migrate(int argc
, const char **argv
)
6409 /* ouch: when addriver and setdriver are called from within
6410 rpc_printer_migrate_drivers_internals, the printer-queue already
6413 struct functable func
[] = {
6414 {"all", rpc_printer_migrate_all
},
6415 {"drivers", rpc_printer_migrate_drivers
},
6416 {"forms", rpc_printer_migrate_forms
},
6417 {"help", rpc_printer_usage
},
6418 {"printers", rpc_printer_migrate_printers
},
6419 {"security", rpc_printer_migrate_security
},
6420 {"settings", rpc_printer_migrate_settings
},
6424 return net_run_function(argc
, argv
, func
, rpc_printer_usage
);
6429 * List printers on a remote RPC server
6431 * @param argc Standard main() style argc
6432 * @param argv Standard main() style argv. Initial components are already
6435 * @return A shell status integer (0 for success)
6437 static int rpc_printer_list(int argc
, const char **argv
)
6440 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6441 rpc_printer_list_internals
,
6446 * List printer-drivers on a remote RPC server
6448 * @param argc Standard main() style argc
6449 * @param argv Standard main() style argv. Initial components are already
6452 * @return A shell status integer (0 for success)
6454 static int rpc_printer_driver_list(int argc
, const char **argv
)
6457 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6458 rpc_printer_driver_list_internals
,
6463 * Publish printer in ADS via MSRPC
6465 * @param argc Standard main() style argc
6466 * @param argv Standard main() style argv. Initial components are already
6469 * @return A shell status integer (0 for success)
6471 static int rpc_printer_publish_publish(int argc
, const char **argv
)
6474 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6475 rpc_printer_publish_publish_internals
,
6480 * Update printer in ADS via MSRPC
6482 * @param argc Standard main() style argc
6483 * @param argv Standard main() style argv. Initial components are already
6486 * @return A shell status integer (0 for success)
6488 static int rpc_printer_publish_update(int argc
, const char **argv
)
6491 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6492 rpc_printer_publish_update_internals
,
6497 * UnPublish printer in ADS via MSRPC
6499 * @param argc Standard main() style argc
6500 * @param argv Standard main() style argv. Initial components are already
6503 * @return A shell status integer (0 for success)
6505 static int rpc_printer_publish_unpublish(int argc
, const char **argv
)
6508 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6509 rpc_printer_publish_unpublish_internals
,
6514 * List published printers via MSRPC
6516 * @param argc Standard main() style argc
6517 * @param argv Standard main() style argv. Initial components are already
6520 * @return A shell status integer (0 for success)
6522 static int rpc_printer_publish_list(int argc
, const char **argv
)
6525 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6526 rpc_printer_publish_list_internals
,
6532 * Publish printer in ADS
6534 * @param argc Standard main() style argc
6535 * @param argv Standard main() style argv. Initial components are already
6538 * @return A shell status integer (0 for success)
6540 static int rpc_printer_publish(int argc
, const char **argv
)
6543 struct functable func
[] = {
6544 {"publish", rpc_printer_publish_publish
},
6545 {"update", rpc_printer_publish_update
},
6546 {"unpublish", rpc_printer_publish_unpublish
},
6547 {"list", rpc_printer_publish_list
},
6548 {"help", rpc_printer_usage
},
6553 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6554 rpc_printer_publish_list_internals
,
6557 return net_run_function(argc
, argv
, func
, rpc_printer_usage
);
6563 * Display rpc printer help page.
6564 * @param argc Standard main() style argc
6565 * @param argv Standard main() style argv. Initial components are already
6568 int rpc_printer_usage(int argc
, const char **argv
)
6570 return net_help_printer(argc
, argv
);
6574 * 'net rpc printer' entrypoint.
6575 * @param argc Standard main() style argc
6576 * @param argv Standard main() style argv. Initial components are already
6579 int net_rpc_printer(int argc
, const char **argv
)
6581 struct functable func
[] = {
6582 {"list", rpc_printer_list
},
6583 {"migrate", rpc_printer_migrate
},
6584 {"driver", rpc_printer_driver_list
},
6585 {"publish", rpc_printer_publish
},
6590 return run_rpc_command(NULL
, PI_SPOOLSS
, 0,
6591 rpc_printer_list_internals
,
6594 return net_run_function(argc
, argv
, func
, rpc_printer_usage
);
6597 /****************************************************************************/
6601 * Basic usage function for 'net rpc'
6602 * @param argc Standard main() style argc
6603 * @param argv Standard main() style argv. Initial components are already
6607 int net_rpc_usage(int argc
, const char **argv
)
6609 d_printf(" net rpc info \t\t\tshow basic info about a domain \n");
6610 d_printf(" net rpc join \t\t\tto join a domain \n");
6611 d_printf(" net rpc oldjoin \t\t\tto join a domain created in server manager\n");
6612 d_printf(" net rpc testjoin \t\ttests that a join is valid\n");
6613 d_printf(" net rpc user \t\t\tto add, delete and list users\n");
6614 d_printf(" net rpc password <username> [<password>] -Uadmin_username%%admin_pass\n");
6615 d_printf(" net rpc group \t\tto list groups\n");
6616 d_printf(" net rpc share \t\tto add, delete, list and migrate shares\n");
6617 d_printf(" net rpc printer \t\tto list and migrate printers\n");
6618 d_printf(" net rpc file \t\t\tto list open files\n");
6619 d_printf(" net rpc changetrustpw \tto change the trust account password\n");
6620 d_printf(" net rpc getsid \t\tfetch the domain sid into the local secrets.tdb\n");
6621 d_printf(" net rpc vampire \t\tsyncronise an NT PDC's users and groups into the local passdb\n");
6622 d_printf(" net rpc samdump \t\tdiplay an NT PDC's users, groups and other data\n");
6623 d_printf(" net rpc trustdom \t\tto create trusting domain's account or establish trust\n");
6624 d_printf(" net rpc abortshutdown \tto abort the shutdown of a remote server\n");
6625 d_printf(" net rpc shutdown \t\tto shutdown a remote server\n");
6626 d_printf(" net rpc rights\t\tto manage privileges assigned to SIDs\n");
6627 d_printf(" net rpc registry\t\tto manage registry hives\n");
6628 d_printf(" net rpc service\t\tto start, stop and query services\n");
6629 d_printf(" net rpc audit\t\t\tto modify global auditing settings\n");
6630 d_printf(" net rpc shell\t\t\tto open an interactive shell for remote server/account management\n");
6632 d_printf("'net rpc shutdown' also accepts the following miscellaneous options:\n"); /* misc options */
6633 d_printf("\t-r or --reboot\trequest remote server reboot on shutdown\n");
6634 d_printf("\t-f or --force\trequest the remote server force its shutdown\n");
6635 d_printf("\t-t or --timeout=<timeout>\tnumber of seconds before shutdown\n");
6636 d_printf("\t-C or --comment=<message>\ttext message to display on impending shutdown\n");
6642 * Help function for 'net rpc'. Calls command specific help if requested
6643 * or displays usage of net rpc
6644 * @param argc Standard main() style argc
6645 * @param argv Standard main() style argv. Initial components are already
6649 int net_rpc_help(int argc
, const char **argv
)
6651 struct functable func
[] = {
6652 {"join", rpc_join_usage
},
6653 {"user", rpc_user_usage
},
6654 {"group", rpc_group_usage
},
6655 {"share", rpc_share_usage
},
6656 /*{"changetrustpw", rpc_changetrustpw_usage}, */
6657 {"trustdom", rpc_trustdom_usage
},
6658 /*{"abortshutdown", rpc_shutdown_abort_usage},*/
6659 /*{"shutdown", rpc_shutdown_usage}, */
6660 {"vampire", rpc_vampire_usage
},
6665 net_rpc_usage(argc
, argv
);
6669 return (net_run_function(argc
, argv
, func
, rpc_user_usage
));
6673 * 'net rpc' entrypoint.
6674 * @param argc Standard main() style argc
6675 * @param argv Standard main() style argv. Initial components are already
6679 int net_rpc(int argc
, const char **argv
)
6681 struct functable func
[] = {
6682 {"audit", net_rpc_audit
},
6683 {"info", net_rpc_info
},
6684 {"join", net_rpc_join
},
6685 {"oldjoin", net_rpc_oldjoin
},
6686 {"testjoin", net_rpc_testjoin
},
6687 {"user", net_rpc_user
},
6688 {"password", rpc_user_password
},
6689 {"group", net_rpc_group
},
6690 {"share", net_rpc_share
},
6691 {"file", net_rpc_file
},
6692 {"printer", net_rpc_printer
},
6693 {"changetrustpw", net_rpc_changetrustpw
},
6694 {"trustdom", rpc_trustdom
},
6695 {"abortshutdown", rpc_shutdown_abort
},
6696 {"shutdown", rpc_shutdown
},
6697 {"samdump", rpc_samdump
},
6698 {"vampire", rpc_vampire
},
6699 {"getsid", net_rpc_getsid
},
6700 {"rights", net_rpc_rights
},
6701 {"service", net_rpc_service
},
6702 {"registry", net_rpc_registry
},
6703 {"shell", net_rpc_shell
},
6704 {"help", net_rpc_help
},
6707 return net_run_function(argc
, argv
, func
, net_rpc_usage
);