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)
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
22 #include "../utils/net.h"
24 extern pstring global_myname
;
29 * @brief RPC based subcommands for the 'net' utility.
31 * This file should contain much of the functionality that used to
32 * be found in rpcclient, execpt that the commands should change
33 * less often, and the fucntionality should be sane (the user is not
34 * expected to know a rid/sid before they conduct an operation etc.)
36 * @todo Perhaps eventually these should be split out into a number
37 * of files, as this could get quite big.
41 /* A function of this type is passed to the 'run_rpc_command' wrapper */
42 typedef NTSTATUS (*rpc_command_fn
)(const DOM_SID
*, struct cli_state
*, TALLOC_CTX
*, int, const char **);
45 * Many of the RPC functions need the domain sid. This function gets
46 * it at the start of every run
48 * @param cli A cli_state already connected to the remote machine
50 * @return The Domain SID of the remote machine.
53 static DOM_SID
*net_get_remote_domain_sid(struct cli_state
*cli
)
57 NTSTATUS result
= NT_STATUS_OK
;
58 uint32 info_class
= 5;
62 if (!(domain_sid
= malloc(sizeof(DOM_SID
)))){
63 DEBUG(0,("net_get_remote_domain_sid: malloc returned NULL!\n"));
67 if (!(mem_ctx
=talloc_init()))
69 DEBUG(0,("net_get_remote_domain_sid: talloc_init returned NULL!\n"));
74 if (!cli_nt_session_open (cli
, PIPE_LSARPC
)) {
75 fprintf(stderr
, "could not initialise lsa pipe\n");
79 result
= cli_lsa_open_policy(cli
, mem_ctx
, True
,
80 SEC_RIGHTS_MAXIMUM_ALLOWED
,
82 if (!NT_STATUS_IS_OK(result
)) {
86 result
= cli_lsa_query_info_policy(cli
, mem_ctx
, &pol
, info_class
,
87 domain_name
, domain_sid
);
88 if (!NT_STATUS_IS_OK(result
)) {
92 cli_lsa_close(cli
, mem_ctx
, &pol
);
93 cli_nt_session_close(cli
);
94 talloc_destroy(mem_ctx
);
99 fprintf(stderr
, "could not obtain sid for domain %s\n", cli
->domain
);
101 if (!NT_STATUS_IS_OK(result
)) {
102 fprintf(stderr
, "error: %s\n", nt_errstr(result
));
109 * Run a single RPC command, from start to finish.
111 * @param pipe_name the pipe to connect to (usually a PIPE_ constant)
112 * @param conn_flag a NET_FLAG_ combination. Passed to
113 * net_make_ipc_connection.
114 * @param argc Standard main() style argc
115 * @param argc Standard main() style argv. Initial components are already
117 * @return A shell status integer (0 for success)
120 static int run_rpc_command(struct cli_state
*cli_arg
, const char *pipe_name
, int conn_flags
,
122 int argc
, const char **argv
)
124 struct cli_state
*cli
= NULL
;
129 /* make use of cli_state handed over as an argument, if possible */
131 cli
= net_make_ipc_connection(conn_flags
);
139 domain_sid
= net_get_remote_domain_sid(cli
);
143 if (!(mem_ctx
= talloc_init())) {
144 DEBUG(0, ("talloc_init() failed\n"));
149 if (!cli_nt_session_open(cli
, pipe_name
)) {
150 DEBUG(0, ("Could not initialise %s pipe\n", pipe_name
));
153 nt_status
= fn(domain_sid
, cli
, mem_ctx
, argc
, argv
);
155 if (!NT_STATUS_IS_OK(nt_status
)) {
156 DEBUG(1, ("rpc command function failed! (%s)\n", nt_errstr(nt_status
)));
158 DEBUG(5, ("rpc command function succedded\n"));
162 if (cli
->nt_pipe_fnum
)
163 cli_nt_session_close(cli
);
165 /* close the connection only if it was opened here */
169 talloc_destroy(mem_ctx
);
171 return (!NT_STATUS_IS_OK(nt_status
));
175 /****************************************************************************/
179 * Force a change of the trust acccount password.
181 * All parameters are provided by the run_rpc_command function, except for
182 * argc, argv which are passes through.
184 * @param domain_sid The domain sid aquired from the remote server
185 * @param cli A cli_state connected to the server.
186 * @param mem_ctx Talloc context, destoyed on compleation of the function.
187 * @param argc Standard main() style argc
188 * @param argc Standard main() style argv. Initial components are already
191 * @return Normal NTSTATUS return.
194 static NTSTATUS
rpc_changetrustpw_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
195 int argc
, const char **argv
) {
197 return trust_pw_find_change_and_store_it(cli
, mem_ctx
, opt_target_workgroup
);
201 * Force a change of the trust acccount password.
203 * @param argc Standard main() style argc
204 * @param argc Standard main() style argv. Initial components are already
207 * @return A shell status integer (0 for success)
210 static int rpc_changetrustpw(int argc
, const char **argv
)
212 return run_rpc_command(NULL
, PIPE_NETLOGON
, NET_FLAGS_ANONYMOUS
| NET_FLAGS_PDC
, rpc_changetrustpw_internals
,
217 /****************************************************************************/
221 * Join a domain, the old way.
223 * This uses 'machinename' as the inital password, and changes it.
225 * The password should be created with 'server manager' or eqiv first.
227 * All parameters are provided by the run_rpc_command function, except for
228 * argc, argv which are passes through.
230 * @param domain_sid The domain sid aquired from the remote server
231 * @param cli A cli_state connected to the server.
232 * @param mem_ctx Talloc context, destoyed on compleation of the function.
233 * @param argc Standard main() style argc
234 * @param argc Standard main() style argv. Initial components are already
237 * @return Normal NTSTATUS return.
240 static NTSTATUS
rpc_join_oldstyle_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
241 int argc
, const char **argv
) {
243 extern pstring global_myname
;
244 fstring trust_passwd
;
245 unsigned char orig_trust_passwd_hash
[16];
248 fstrcpy(trust_passwd
, global_myname
);
249 strlower(trust_passwd
);
252 * Machine names can be 15 characters, but the max length on
253 * a password is 14. --jerry
256 trust_passwd
[14] = '\0';
258 E_md4hash(trust_passwd
, orig_trust_passwd_hash
);
260 result
= trust_pw_change_and_store_it(cli
, mem_ctx
, orig_trust_passwd_hash
);
262 if (NT_STATUS_IS_OK(result
))
263 printf("Joined domain %s.\n",lp_workgroup());
269 * Join a domain, the old way.
271 * @param argc Standard main() style argc
272 * @param argc Standard main() style argv. Initial components are already
275 * @return A shell status integer (0 for success)
278 static int net_rpc_join_oldstyle(int argc
, const char **argv
)
280 return run_rpc_command(NULL
, PIPE_NETLOGON
, NET_FLAGS_ANONYMOUS
| NET_FLAGS_PDC
, rpc_join_oldstyle_internals
,
285 * Basic usage function for 'net rpc join'
286 * @param argc Standard main() style argc
287 * @param argc Standard main() style argv. Initial components are already
291 static int rpc_join_usage(int argc
, const char **argv
)
293 d_printf("net rpc join -U <username>[%%password] [options]\n"\
294 "\t to join a domain with admin username & password\n"\
295 "\t\t password will be prompted if none is specified\n");
296 d_printf("net rpc join [options except -U]\n"\
297 "\t to join a domain created in server manager\n\n\n");
299 net_common_flags_usage(argc
, argv
);
304 * 'net rpc join' entrypoint.
305 * @param argc Standard main() style argc
306 * @param argc Standard main() style argv. Initial components are already
309 * Main 'net_rpc_join()' (where the admain username/password is used) is
311 * Assume if a -U is specified, it's the new style, otherwise it's the
315 int net_rpc_join(int argc
, const char **argv
)
317 if ((net_rpc_join_oldstyle(argc
, argv
) == 0))
320 return net_rpc_join_newstyle(argc
, argv
);
326 * display info about a rpc domain
328 * All parameters are provided by the run_rpc_command function, except for
329 * argc, argv which are passes through.
331 * @param domain_sid The domain sid acquired from the remote server
332 * @param cli A cli_state connected to the server.
333 * @param mem_ctx Talloc context, destoyed on completion of the function.
334 * @param argc Standard main() style argc
335 * @param argv Standard main() style argv. Initial components are already
338 * @return Normal NTSTATUS return.
342 rpc_info_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
,
343 TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
345 POLICY_HND connect_pol
, domain_pol
;
346 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
350 sid_to_string(sid_str
, domain_sid
);
352 /* Get sam policy handle */
353 result
= cli_samr_connect(cli
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
355 if (!NT_STATUS_IS_OK(result
)) {
359 /* Get domain policy handle */
360 result
= cli_samr_open_domain(cli
, mem_ctx
, &connect_pol
,
361 MAXIMUM_ALLOWED_ACCESS
,
362 domain_sid
, &domain_pol
);
363 if (!NT_STATUS_IS_OK(result
)) {
368 result
= cli_samr_query_dom_info(cli
, mem_ctx
, &domain_pol
,
370 if (NT_STATUS_IS_OK(result
)) {
371 TALLOC_CTX
*ctx
= talloc_init();
372 d_printf("Domain Name: %s\n", unistr2_tdup(ctx
, &ctr
.info
.inf2
.uni_domain
));
373 d_printf("Domain SID: %s\n", sid_str
);
374 d_printf("Sequence number: %u\n", ctr
.info
.inf2
.seq_num
);
375 d_printf("Num users: %u\n", ctr
.info
.inf2
.num_domain_usrs
);
376 d_printf("Num domain groups: %u\n", ctr
.info
.inf2
.num_domain_grps
);
377 d_printf("Num local groups: %u\n", ctr
.info
.inf2
.num_local_grps
);
387 * 'net rpc info' entrypoint.
388 * @param argc Standard main() style argc
389 * @param argc Standard main() style argv. Initial components are already
392 int net_rpc_info(int argc
, const char **argv
)
394 return run_rpc_command(NULL
, PIPE_SAMR
, NET_FLAGS_ANONYMOUS
| NET_FLAGS_PDC
,
401 * Fetch domain SID into the local secrets.tdb
403 * All parameters are provided by the run_rpc_command function, except for
404 * argc, argv which are passes through.
406 * @param domain_sid The domain sid acquired from the remote server
407 * @param cli A cli_state connected to the server.
408 * @param mem_ctx Talloc context, destoyed on completion of the function.
409 * @param argc Standard main() style argc
410 * @param argv Standard main() style argv. Initial components are already
413 * @return Normal NTSTATUS return.
417 rpc_getsid_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
,
418 TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
422 sid_to_string(sid_str
, domain_sid
);
423 d_printf("Storing SID %s for Domain %s in secrets.tdb\n",
424 sid_str
, lp_workgroup());
426 if (!secrets_store_domain_sid(global_myname
, domain_sid
)) {
427 DEBUG(0,("pdb_generate_sam_sid: "
428 "Can't store domain SID as a pdc/bdc.\n"));
429 return NT_STATUS_UNSUCCESSFUL
;
437 * 'net rpc getsid' entrypoint.
438 * @param argc Standard main() style argc
439 * @param argc Standard main() style argv. Initial components are already
442 int net_rpc_getsid(int argc
, const char **argv
)
444 return run_rpc_command(NULL
, PIPE_SAMR
, NET_FLAGS_ANONYMOUS
| NET_FLAGS_PDC
,
445 rpc_getsid_internals
,
450 /****************************************************************************/
453 * Basic usage function for 'net rpc user'
454 * @param argc Standard main() style argc.
455 * @param argv Standard main() style argv. Initial components are already
459 static int rpc_user_usage(int argc
, const char **argv
)
461 return net_help_user(argc
, argv
);
465 * Add a new user to a remote RPC server
467 * All parameters are provided by the run_rpc_command function, except for
468 * argc, argv which are passes through.
470 * @param domain_sid The domain sid acquired from the remote server
471 * @param cli A cli_state connected to the server.
472 * @param mem_ctx Talloc context, destoyed on completion of the function.
473 * @param argc Standard main() style argc
474 * @param argv Standard main() style argv. Initial components are already
477 * @return Normal NTSTATUS return.
480 static NTSTATUS
rpc_user_add_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
481 int argc
, const char **argv
) {
483 POLICY_HND connect_pol
, domain_pol
, user_pol
;
484 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
485 const char *acct_name
;
487 uint32 unknown
, user_rid
;
490 d_printf("User must be specified\n");
491 rpc_user_usage(argc
, argv
);
497 /* Get sam policy handle */
499 result
= cli_samr_connect(cli
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
501 if (!NT_STATUS_IS_OK(result
)) {
505 /* Get domain policy handle */
507 result
= cli_samr_open_domain(cli
, mem_ctx
, &connect_pol
,
508 MAXIMUM_ALLOWED_ACCESS
,
509 domain_sid
, &domain_pol
);
510 if (!NT_STATUS_IS_OK(result
)) {
514 /* Create domain user */
516 acb_info
= ACB_NORMAL
;
517 unknown
= 0xe005000b; /* No idea what this is - a permission mask? */
519 result
= cli_samr_create_dom_user(cli
, mem_ctx
, &domain_pol
,
520 acct_name
, acb_info
, unknown
,
521 &user_pol
, &user_rid
);
522 if (!NT_STATUS_IS_OK(result
)) {
527 if (!NT_STATUS_IS_OK(result
)) {
528 d_printf("Failed to add user %s - %s\n", acct_name
,
531 d_printf("Added user %s\n", acct_name
);
537 * Add a new user to a remote RPC server
539 * @param argc Standard main() style argc
540 * @param argv Standard main() style argv. Initial components are already
543 * @return A shell status integer (0 for success)
546 static int rpc_user_add(int argc
, const char **argv
)
548 return run_rpc_command(NULL
, PIPE_SAMR
, 0, rpc_user_add_internals
,
553 * Delete a user from a remote RPC server
555 * All parameters are provided by the run_rpc_command function, except for
556 * argc, argv which are passes through.
558 * @param domain_sid The domain sid acquired from the remote server
559 * @param cli A cli_state connected to the server.
560 * @param mem_ctx Talloc context, destoyed on completion of the function.
561 * @param argc Standard main() style argc
562 * @param argv Standard main() style argv. Initial components are already
565 * @return Normal NTSTATUS return.
568 static NTSTATUS
rpc_user_del_internals(const DOM_SID
*domain_sid
,
569 struct cli_state
*cli
,
571 int argc
, const char **argv
)
573 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
574 POLICY_HND connect_pol
, domain_pol
, user_pol
;
577 d_printf("User must be specified\n");
578 rpc_user_usage(argc
, argv
);
581 /* Get sam policy and domain handles */
583 result
= cli_samr_connect(cli
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
586 if (!NT_STATUS_IS_OK(result
)) {
590 result
= cli_samr_open_domain(cli
, mem_ctx
, &connect_pol
,
591 MAXIMUM_ALLOWED_ACCESS
,
592 domain_sid
, &domain_pol
);
594 if (!NT_STATUS_IS_OK(result
)) {
598 /* Get handle on user */
601 uint32
*user_rids
, num_rids
, *name_types
;
602 uint32 flags
= 0x000003e8; /* Unknown */
604 result
= cli_samr_lookup_names(cli
, mem_ctx
, &domain_pol
,
606 &num_rids
, &user_rids
,
609 if (!NT_STATUS_IS_OK(result
)) {
613 result
= cli_samr_open_user(cli
, mem_ctx
, &domain_pol
,
614 MAXIMUM_ALLOWED_ACCESS
,
615 user_rids
[0], &user_pol
);
617 if (!NT_STATUS_IS_OK(result
)) {
624 result
= cli_samr_delete_dom_user(cli
, mem_ctx
, &user_pol
);
626 if (!NT_STATUS_IS_OK(result
)) {
630 /* Display results */
638 * Delete a user from a remote RPC server
640 * @param argc Standard main() style argc
641 * @param argv Standard main() style argv. Initial components are already
644 * @return A shell status integer (0 for success)
647 static int rpc_user_delete(int argc
, const char **argv
)
649 return run_rpc_command(NULL
, PIPE_SAMR
, 0, rpc_user_del_internals
,
654 * List user's groups on a remote RPC server
656 * All parameters are provided by the run_rpc_command function, except for
657 * argc, argv which are passes through.
659 * @param domain_sid The domain sid acquired from the remote server
660 * @param cli A cli_state connected to the server.
661 * @param mem_ctx Talloc context, destoyed on completion of the function.
662 * @param argc Standard main() style argc
663 * @param argv Standard main() style argv. Initial components are already
666 * @return Normal NTSTATUS return.
670 rpc_user_info_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
,
671 TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
673 POLICY_HND connect_pol
, domain_pol
, user_pol
;
674 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
675 uint32
*rids
, num_rids
, *name_types
, num_names
;
676 uint32 flags
= 0x000003e8; /* Unknown */
682 d_printf("User must be specified\n");
683 rpc_user_usage(argc
, argv
);
686 /* Get sam policy handle */
688 result
= cli_samr_connect(cli
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
690 if (!NT_STATUS_IS_OK(result
)) goto done
;
692 /* Get domain policy handle */
694 result
= cli_samr_open_domain(cli
, mem_ctx
, &connect_pol
,
695 MAXIMUM_ALLOWED_ACCESS
,
696 domain_sid
, &domain_pol
);
697 if (!NT_STATUS_IS_OK(result
)) goto done
;
699 /* Get handle on user */
701 result
= cli_samr_lookup_names(cli
, mem_ctx
, &domain_pol
,
703 &num_rids
, &rids
, &name_types
);
705 if (!NT_STATUS_IS_OK(result
)) goto done
;
707 result
= cli_samr_open_user(cli
, mem_ctx
, &domain_pol
,
708 MAXIMUM_ALLOWED_ACCESS
,
710 if (!NT_STATUS_IS_OK(result
)) goto done
;
712 result
= cli_samr_query_usergroups(cli
, mem_ctx
, &user_pol
,
713 &num_rids
, &user_gids
);
717 rids
= (uint32
*)talloc(mem_ctx
, sizeof(uint32
) * num_rids
);
719 for (i
= 0; i
< num_rids
; i
++)
720 rids
[i
] = user_gids
[i
].g_rid
;
722 result
= cli_samr_lookup_rids(cli
, mem_ctx
, &domain_pol
,
723 flags
, num_rids
, rids
,
724 &num_names
, &names
, &name_types
);
726 if (!NT_STATUS_IS_OK(result
)) {
730 /* Display results */
732 for (i
= 0; i
< num_names
; i
++)
733 printf("%s\n", names
[i
]);
740 * List a user's groups from a remote RPC server
742 * @param argc Standard main() style argc
743 * @param argv Standard main() style argv. Initial components are already
746 * @return A shell status integer (0 for success)
749 static int rpc_user_info(int argc
, const char **argv
)
751 return run_rpc_command(NULL
, PIPE_SAMR
, 0, rpc_user_info_internals
,
756 * List users on a remote RPC server
758 * All parameters are provided by the run_rpc_command function, except for
759 * argc, argv which are passes through.
761 * @param domain_sid The domain sid acquired from the remote server
762 * @param cli A cli_state connected to the server.
763 * @param mem_ctx Talloc context, destoyed on completion of the function.
764 * @param argc Standard main() style argc
765 * @param argv Standard main() style argv. Initial components are already
768 * @return Normal NTSTATUS return.
772 rpc_user_list_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
,
773 TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
775 POLICY_HND connect_pol
, domain_pol
;
776 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
777 uint32 start_idx
=0, max_entries
=250, num_entries
, i
;
778 SAM_DISPINFO_CTR ctr
;
779 SAM_DISPINFO_1 info1
;
781 /* Get sam policy handle */
783 result
= cli_samr_connect(cli
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
785 if (!NT_STATUS_IS_OK(result
)) {
789 /* Get domain policy handle */
791 result
= cli_samr_open_domain(cli
, mem_ctx
, &connect_pol
,
792 MAXIMUM_ALLOWED_ACCESS
,
793 domain_sid
, &domain_pol
);
794 if (!NT_STATUS_IS_OK(result
)) {
798 /* Query domain users */
801 ctr
.sam
.info1
= &info1
;
802 if (opt_long_list_entries
)
803 d_printf("\nUser name Comment"\
804 "\n-----------------------------\n");
807 result
= cli_samr_query_dispinfo(cli
, mem_ctx
, &domain_pol
,
808 &start_idx
, 1, &num_entries
,
810 for (i
= 0; i
< num_entries
; i
++) {
811 unistr2_to_ascii(user
, &(&ctr
.sam
.info1
->str
[i
])->uni_acct_name
, sizeof(user
)-1);
812 if (opt_long_list_entries
)
813 unistr2_to_ascii(desc
, &(&ctr
.sam
.info1
->str
[i
])->uni_acct_desc
, sizeof(desc
)-1);
815 if (opt_long_list_entries
)
816 printf("%-21.21s %-50.50s\n", user
, desc
);
818 printf("%s\n", user
);
820 } while (!NT_STATUS_IS_OK(result
));
827 * 'net rpc user' entrypoint.
828 * @param argc Standard main() style argc
829 * @param argc Standard main() style argv. Initial components are already
833 int net_rpc_user(int argc
, const char **argv
)
835 struct functable func
[] = {
836 {"add", rpc_user_add
},
837 {"info", rpc_user_info
},
838 {"delete", rpc_user_delete
},
843 if (opt_long_list_entries
) {
846 return run_rpc_command(NULL
,PIPE_SAMR
, 0,
847 rpc_user_list_internals
,
851 return net_run_function(argc
, argv
, func
, rpc_user_usage
);
855 /****************************************************************************/
858 * Basic usage function for 'net rpc group'
859 * @param argc Standard main() style argc.
860 * @param argv Standard main() style argv. Initial components are already
864 static int rpc_group_usage(int argc
, const char **argv
)
866 return net_help_group(argc
, argv
);
870 * List groups on a remote RPC server
872 * All parameters are provided by the run_rpc_command function, except for
873 * argc, argv which are passes through.
875 * @param domain_sid The domain sid acquired from the remote server
876 * @param cli A cli_state connected to the server.
877 * @param mem_ctx Talloc context, destoyed on completion of the function.
878 * @param argc Standard main() style argc
879 * @param argv Standard main() style argv. Initial components are already
882 * @return Normal NTSTATUS return.
886 rpc_group_list_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
,
887 TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
889 POLICY_HND connect_pol
, domain_pol
;
890 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
891 uint32 start_idx
=0, max_entries
=250, num_entries
, i
;
892 struct acct_info
*groups
;
893 DOM_SID global_sid_Builtin
;
895 string_to_sid(&global_sid_Builtin
, "S-1-5-32");
897 /* Get sam policy handle */
899 result
= cli_samr_connect(cli
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
901 if (!NT_STATUS_IS_OK(result
)) {
905 /* Get domain policy handle */
907 result
= cli_samr_open_domain(cli
, mem_ctx
, &connect_pol
,
908 MAXIMUM_ALLOWED_ACCESS
,
909 domain_sid
, &domain_pol
);
910 if (!NT_STATUS_IS_OK(result
)) {
914 /* Query domain groups */
915 if (opt_long_list_entries
)
916 d_printf("\nGroup name Comment"\
917 "\n-----------------------------\n");
919 result
= cli_samr_enum_dom_groups(cli
, mem_ctx
, &domain_pol
,
920 &start_idx
, max_entries
,
921 &groups
, &num_entries
);
923 for (i
= 0; i
< num_entries
; i
++) {
924 if (opt_long_list_entries
)
925 printf("%-21.21s %-50.50s\n",
927 groups
[i
].acct_desc
);
929 printf("%-21.21s\n", groups
[i
].acct_name
);
931 } while (!NT_STATUS_IS_OK(result
));
932 /* query domain aliases */
934 result
= cli_samr_enum_als_groups(cli
, mem_ctx
, &domain_pol
,
935 &start_idx
, max_entries
,
936 &groups
, &num_entries
);
938 for (i
= 0; i
< num_entries
; i
++) {
939 if (opt_long_list_entries
)
940 printf("%-21.21s %-50.50s\n",
942 groups
[i
].acct_desc
);
944 printf("%-21.21s\n", groups
[i
].acct_name
);
946 } while (!NT_STATUS_IS_OK(result
));
947 cli_samr_close(cli
, mem_ctx
, &domain_pol
);
948 /* Get builtin policy handle */
950 result
= cli_samr_open_domain(cli
, mem_ctx
, &connect_pol
,
951 MAXIMUM_ALLOWED_ACCESS
,
952 &global_sid_Builtin
, &domain_pol
);
953 if (!NT_STATUS_IS_OK(result
)) {
956 /* query builtin aliases */
958 result
= cli_samr_enum_als_groups(cli
, mem_ctx
, &domain_pol
,
959 &start_idx
, max_entries
,
960 &groups
, &num_entries
);
962 for (i
= 0; i
< num_entries
; i
++) {
963 if (opt_long_list_entries
)
964 printf("%-21.21s %-50.50s\n",
966 groups
[i
].acct_desc
);
968 printf("%s\n", groups
[i
].acct_name
);
970 } while (!NT_STATUS_IS_OK(result
));
977 * 'net rpc group' entrypoint.
978 * @param argc Standard main() style argc
979 * @param argc Standard main() style argv. Initial components are already
983 int net_rpc_group(int argc
, const char **argv
)
985 struct functable func
[] = {
987 {"add", rpc_group_add
},
988 {"delete", rpc_group_delete
},
994 if (opt_long_list_entries
) {
997 return run_rpc_command(NULL
, PIPE_SAMR
, 0,
998 rpc_group_list_internals
,
1002 return net_run_function(argc
, argv
, func
, rpc_group_usage
);
1005 /****************************************************************************/
1007 static int rpc_share_usage(int argc
, const char **argv
)
1009 return net_help_share(argc
, argv
);
1013 * Add a share on a remote RPC server
1015 * All parameters are provided by the run_rpc_command function, except for
1016 * argc, argv which are passes through.
1018 * @param domain_sid The domain sid acquired from the remote server
1019 * @param cli A cli_state connected to the server.
1020 * @param mem_ctx Talloc context, destoyed on completion of the function.
1021 * @param argc Standard main() style argc
1022 * @param argv Standard main() style argv. Initial components are already
1025 * @return Normal NTSTATUS return.
1028 rpc_share_add_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
,
1029 TALLOC_CTX
*mem_ctx
,int argc
, const char **argv
)
1032 char *sharename
=talloc_strdup(mem_ctx
, argv
[0]);
1034 uint32 type
=0; /* only allow disk shares to be added */
1035 uint32 num_users
=0, perms
=0;
1036 char *password
=NULL
; /* don't allow a share password */
1038 path
= strchr(sharename
, '=');
1040 return NT_STATUS_UNSUCCESSFUL
;
1043 result
= cli_srvsvc_net_share_add(cli
, mem_ctx
, sharename
, type
,
1044 opt_comment
, perms
, opt_maxusers
,
1045 num_users
, path
, password
);
1046 return W_ERROR_IS_OK(result
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
1049 static int rpc_share_add(int argc
, const char **argv
)
1051 if ((argc
< 1) || !strchr(argv
[0], '=')) {
1052 DEBUG(1,("Sharename or path not specified on add\n"));
1053 return rpc_share_usage(argc
, argv
);
1055 return run_rpc_command(NULL
, PIPE_SRVSVC
, 0,
1056 rpc_share_add_internals
,
1061 * Delete a share on a remote RPC server
1063 * All parameters are provided by the run_rpc_command function, except for
1064 * argc, argv which are passes through.
1066 * @param domain_sid The domain sid acquired from the remote server
1067 * @param cli A cli_state connected to the server.
1068 * @param mem_ctx Talloc context, destoyed on completion of the function.
1069 * @param argc Standard main() style argc
1070 * @param argv Standard main() style argv. Initial components are already
1073 * @return Normal NTSTATUS return.
1076 rpc_share_del_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
,
1077 TALLOC_CTX
*mem_ctx
,int argc
, const char **argv
)
1081 result
= cli_srvsvc_net_share_del(cli
, mem_ctx
, argv
[0]);
1082 return W_ERROR_IS_OK(result
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
1086 * Delete a share on a remote RPC server
1088 * @param domain_sid The domain sid acquired from the remote server
1089 * @param argc Standard main() style argc
1090 * @param argv Standard main() style argv. Initial components are already
1093 * @return A shell status integer (0 for success)
1095 static int rpc_share_delete(int argc
, const char **argv
)
1098 DEBUG(1,("Sharename not specified on delete\n"));
1099 return rpc_share_usage(argc
, argv
);
1101 return run_rpc_command(NULL
, PIPE_SRVSVC
, 0,
1102 rpc_share_del_internals
,
1107 * Formatted print of share info
1109 * @param info1 pointer to SRV_SHARE_INFO_1 to format
1112 static void display_share_info_1(SRV_SHARE_INFO_1
*info1
)
1114 fstring netname
= "", remark
= "";
1116 rpcstr_pull_unistr2_fstring(netname
, &info1
->info_1_str
.uni_netname
);
1117 rpcstr_pull_unistr2_fstring(remark
, &info1
->info_1_str
.uni_remark
);
1119 if (opt_long_list_entries
) {
1120 d_printf("%-12.12s %-8.8s %-50.50s\n",
1121 netname
, share_type
[info1
->info_1
.type
], remark
);
1123 d_printf("%-12.12s\n", netname
);
1129 * List shares on a remote RPC server
1131 * All parameters are provided by the run_rpc_command function, except for
1132 * argc, argv which are passes through.
1134 * @param domain_sid The domain sid acquired from the remote server
1135 * @param cli A cli_state connected to the server.
1136 * @param mem_ctx Talloc context, destoyed on completion of the function.
1137 * @param argc Standard main() style argc
1138 * @param argv Standard main() style argv. Initial components are already
1141 * @return Normal NTSTATUS return.
1145 rpc_share_list_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
,
1146 TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
1148 SRV_SHARE_INFO_CTR ctr
;
1151 uint32 preferred_len
= 0xffffffff, i
;
1153 init_enum_hnd(&hnd
, 0);
1155 result
= cli_srvsvc_net_share_enum(
1156 cli
, mem_ctx
, 1, &ctr
, preferred_len
, &hnd
);
1158 if (!W_ERROR_IS_OK(result
))
1161 /* Display results */
1163 if (opt_long_list_entries
) {
1165 "\nEnumerating shared resources (exports) on remote server:\n\n"\
1166 "\nShare name Type Description\n"\
1167 "---------- ---- -----------\n");
1169 for (i
= 0; i
< ctr
.num_entries
; i
++)
1170 display_share_info_1(&ctr
.share
.info1
[i
]);
1172 return W_ERROR_IS_OK(result
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
1176 * 'net rpc share' entrypoint.
1177 * @param argc Standard main() style argc
1178 * @param argv Standard main() style argv. Initial components are already
1182 int net_rpc_share(int argc
, const char **argv
)
1184 struct functable func
[] = {
1185 {"add", rpc_share_add
},
1186 {"delete", rpc_share_delete
},
1191 return run_rpc_command(NULL
, PIPE_SRVSVC
, 0,
1192 rpc_share_list_internals
,
1195 return net_run_function(argc
, argv
, func
, rpc_share_usage
);
1198 /****************************************************************************/
1200 static int rpc_file_usage(int argc
, const char **argv
)
1202 return net_help_file(argc
, argv
);
1206 * Close a file on a remote RPC server
1208 * All parameters are provided by the run_rpc_command function, except for
1209 * argc, argv which are passes through.
1211 * @param domain_sid The domain sid acquired from the remote server
1212 * @param cli A cli_state connected to the server.
1213 * @param mem_ctx Talloc context, destoyed on completion of the function.
1214 * @param argc Standard main() style argc
1215 * @param argv Standard main() style argv. Initial components are already
1218 * @return Normal NTSTATUS return.
1221 rpc_file_close_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
,
1222 TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
1225 result
= cli_srvsvc_net_file_close(cli
, mem_ctx
, atoi(argv
[0]));
1226 return W_ERROR_IS_OK(result
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
1230 * Close a file on a remote RPC server
1232 * @param argc Standard main() style argc
1233 * @param argv Standard main() style argv. Initial components are already
1236 * @return A shell status integer (0 for success)
1238 static int rpc_file_close(int argc
, const char **argv
)
1241 DEBUG(1, ("No fileid given on close\n"));
1242 return(rpc_file_usage(argc
, argv
));
1245 return run_rpc_command(NULL
, PIPE_SRVSVC
, 0,
1246 rpc_file_close_internals
,
1251 * Formatted print of open file info
1253 * @param info3 FILE_INFO_3 contents
1254 * @param str3 strings for FILE_INFO_3
1257 static void display_file_info_3(FILE_INFO_3
*info3
, FILE_INFO_3_STR
*str3
)
1259 fstring user
= "", path
= "";
1261 rpcstr_pull_unistr2_fstring(user
, &str3
->uni_user_name
);
1262 rpcstr_pull_unistr2_fstring(path
, &str3
->uni_path_name
);
1264 d_printf("%-7.1d %-20.20s 0x%-4.2x %-6.1d %s\n",
1265 info3
->id
, user
, info3
->perms
, info3
->num_locks
, path
);
1269 * List open files on a remote RPC server
1271 * All parameters are provided by the run_rpc_command function, except for
1272 * argc, argv which are passes through.
1274 * @param domain_sid The domain sid acquired from the remote server
1275 * @param cli A cli_state connected to the server.
1276 * @param mem_ctx Talloc context, destoyed on completion of the function.
1277 * @param argc Standard main() style argc
1278 * @param argv Standard main() style argv. Initial components are already
1281 * @return Normal NTSTATUS return.
1285 rpc_file_list_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
,
1286 TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
1288 SRV_FILE_INFO_CTR ctr
;
1291 uint32 preferred_len
= 0xffffffff, i
;
1292 const char *username
=NULL
;
1294 init_enum_hnd(&hnd
, 0);
1296 /* if argc > 0, must be user command */
1298 username
= smb_xstrdup(argv
[0]);
1300 result
= cli_srvsvc_net_file_enum(
1301 cli
, mem_ctx
, 3, username
, &ctr
, preferred_len
, &hnd
);
1303 if (!W_ERROR_IS_OK(result
))
1306 /* Display results */
1309 "\nEnumerating open files on remote server:\n\n"\
1310 "\nFileId Opened by Perms Locks Path"\
1311 "\n------ --------- ----- ----- ---- \n");
1312 for (i
= 0; i
< ctr
.num_entries
; i
++)
1313 display_file_info_3(&ctr
.file
.info3
[i
].info_3
,
1314 &ctr
.file
.info3
[i
].info_3_str
);
1316 return W_ERROR_IS_OK(result
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
1321 * List files for a user on a remote RPC server
1323 * @param argc Standard main() style argc
1324 * @param argv Standard main() style argv. Initial components are already
1327 * @return A shell status integer (0 for success)
1329 static int rpc_file_user(int argc
, const char **argv
)
1332 DEBUG(1, ("No username given\n"));
1333 return(rpc_file_usage(argc
, argv
));
1336 return run_rpc_command(NULL
, PIPE_SRVSVC
, 0,
1337 rpc_file_list_internals
,
1343 * 'net rpc file' entrypoint.
1344 * @param argc Standard main() style argc
1345 * @param argv Standard main() style argv. Initial components are already
1349 int net_rpc_file(int argc
, const char **argv
)
1351 struct functable func
[] = {
1352 {"close", rpc_file_close
},
1353 {"user", rpc_file_user
},
1355 {"info", rpc_file_info
},
1361 return run_rpc_command(NULL
, PIPE_SRVSVC
, 0,
1362 rpc_file_list_internals
,
1365 return net_run_function(argc
, argv
, func
, rpc_file_usage
);
1368 /****************************************************************************/
1373 * ABORT the shutdown of a remote RPC Server
1375 * All parameters are provided by the run_rpc_command function, except for
1376 * argc, argv which are passed through.
1378 * @param domain_sid The domain sid aquired from the remote server
1379 * @param cli A cli_state connected to the server.
1380 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1381 * @param argc Standard main() style argc
1382 * @param argv Standard main() style argv. Initial components are already
1385 * @return Normal NTSTATUS return.
1388 static NTSTATUS
rpc_shutdown_abort_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1389 int argc
, const char **argv
)
1391 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
1393 result
= cli_reg_abort_shutdown(cli
, mem_ctx
);
1395 if (NT_STATUS_IS_OK(result
))
1396 DEBUG(5,("cmd_reg_abort_shutdown: query succeeded\n"));
1398 DEBUG(5,("cmd_reg_abort_shutdown: query failed\n"));
1405 * ABORT the Shut down of a remote RPC server
1407 * @param argc Standard main() style argc
1408 * @param argv Standard main() style argv. Initial components are already
1411 * @return A shell status integer (0 for success)
1414 static int rpc_shutdown_abort(int argc
, const char **argv
)
1416 return run_rpc_command(NULL
, PIPE_WINREG
, 0, rpc_shutdown_abort_internals
,
1421 * Shut down a remote RPC Server
1423 * All parameters are provided by the run_rpc_command function, except for
1424 * argc, argv which are passes through.
1426 * @param domain_sid The domain sid aquired from the remote server
1427 * @param cli A cli_state connected to the server.
1428 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1429 * @param argc Standard main() style argc
1430 * @param argc Standard main() style argv. Initial components are already
1433 * @return Normal NTSTATUS return.
1436 static NTSTATUS
rpc_shutdown_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1437 int argc
, const char **argv
)
1439 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
1440 char *msg
= "This machine will be shutdown shortly";
1441 uint32 timeout
= 20;
1443 BOOL reboot
= opt_reboot
;
1444 BOOL force
= opt_force
;
1449 struct poptOption long_options
[] = {
1450 {"message", 'm', POPT_ARG_STRING
, &msg
},
1451 {"timeout", 't', POPT_ARG_INT
, &timeout
},
1452 {"reboot", 'r', POPT_ARG_NONE
, &reboot
},
1453 {"force", 'f', POPT_ARG_NONE
, &force
},
1457 pc
= poptGetContext(NULL
, argc
, (const char **) argv
, long_options
,
1458 POPT_CONTEXT_KEEP_FIRST
);
1460 rc
= poptGetNextOpt(pc
);
1463 /* an error occurred during option processing */
1464 DEBUG(0, ("%s: %s\n",
1465 poptBadOption(pc
, POPT_BADOPTION_NOALIAS
),
1467 return NT_STATUS_INVALID_PARAMETER
;
1471 flgs
|= REG_REBOOT_ON_SHUTDOWN
;
1474 flgs
|= REG_FORCE_SHUTDOWN
;
1480 timeout
= opt_timeout
;
1483 /* create an entry */
1484 result
= cli_reg_shutdown(cli
, mem_ctx
, msg
, timeout
, flgs
);
1486 if (NT_STATUS_IS_OK(result
))
1487 DEBUG(5,("Shutdown of remote machine succeeded\n"));
1489 DEBUG(0,("Shutdown of remote machine failed!\n"));
1495 * Shut down a remote RPC server
1497 * @param argc Standard main() style argc
1498 * @param argc Standard main() style argv. Initial components are already
1501 * @return A shell status integer (0 for success)
1504 static int rpc_shutdown(int argc
, const char **argv
)
1506 return run_rpc_command(NULL
, PIPE_WINREG
, 0, rpc_shutdown_internals
,
1510 /***************************************************************************
1511 NT Domain trusts code (i.e. 'net rpc trustdom' functionality)
1513 ***************************************************************************/
1516 * Add interdomain trust account to the RPC server.
1517 * All parameters (except for argc and argv) are passed by run_rpc_command
1520 * @param domain_sid The domain sid acquired from the server
1521 * @param cli A cli_state connected to the server.
1522 * @param mem_ctx Talloc context, destoyed on completion of the function.
1523 * @param argc Standard main() style argc
1524 * @param argc Standard main() style argv. Initial components are already
1527 * @return normal NTSTATUS return code
1530 static NTSTATUS
rpc_trustdom_add_internals(const DOM_SID
*domain_sid
, struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1531 int argc
, const char **argv
) {
1533 POLICY_HND connect_pol
, domain_pol
, user_pol
;
1534 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
1537 uint32 unknown
, user_rid
;
1540 d_printf("Usage: net rpc trustdom add <domain_name>\n");
1541 return NT_STATUS_INVALID_PARAMETER
;
1545 * Make valid trusting domain account (ie. uppercased and with '$' appended)
1548 if (asprintf(&acct_name
, "%s$", argv
[0]) < 0) {
1549 return NT_STATUS_NO_MEMORY
;
1552 strupper(acct_name
);
1554 /* Get samr policy handle */
1555 result
= cli_samr_connect(cli
, mem_ctx
, MAXIMUM_ALLOWED_ACCESS
,
1557 if (!NT_STATUS_IS_OK(result
)) {
1561 /* Get domain policy handle */
1562 result
= cli_samr_open_domain(cli
, mem_ctx
, &connect_pol
,
1563 MAXIMUM_ALLOWED_ACCESS
,
1564 domain_sid
, &domain_pol
);
1565 if (!NT_STATUS_IS_OK(result
)) {
1569 /* Create trusting domain's account */
1570 acb_info
= ACB_DOMTRUST
;
1571 unknown
= 0xe005000b; /* No idea what this is - a permission mask?
1572 mimir: yes, most probably it is */
1574 result
= cli_samr_create_dom_user(cli
, mem_ctx
, &domain_pol
,
1575 acct_name
, acb_info
, unknown
,
1576 &user_pol
, &user_rid
);
1577 if (!NT_STATUS_IS_OK(result
)) {
1582 SAFE_FREE(acct_name
);
1587 * Create interdomain trust account for a remote domain.
1589 * @param argc standard argc
1590 * @param argv standard argv without initial components
1592 * @return Integer status (0 means success)
1595 static int rpc_trustdom_add(int argc
, const char **argv
)
1597 return run_rpc_command(NULL
, PIPE_SAMR
, 0, rpc_trustdom_add_internals
,
1603 * Delete interdomain trust account for a remote domain.
1605 * @param argc standard argc
1606 * @param argv standard argv without initial components
1608 * @return Integer status (0 means success)
1611 static int rpc_trustdom_del(int argc
, const char **argv
)
1613 d_printf("Sorry, not yet implemented.\n");
1619 * Establish trust relationship to a trusting domain.
1620 * Interdomain account must already be created on remote PDC.
1622 * @param argc standard argc
1623 * @param argv standard argv without initial components
1625 * @return Integer status (0 means success)
1628 extern char *opt_user_name
;
1629 extern char *opt_password
;
1630 extern char *opt_workgroup
;
1632 static int rpc_trustdom_establish(int argc
, const char **argv
)
1634 struct cli_state
*cli
;
1635 struct in_addr server_ip
;
1636 POLICY_HND connect_hnd
;
1637 TALLOC_CTX
*mem_ctx
;
1640 WKS_INFO_100 wks_info
;
1647 * Connect to \\server\ipc$ as 'our domain' account with password
1651 d_printf("Usage: net rpc trustdom establish <domain_name>\n");
1655 domain_name
= smb_xstrdup(argv
[0]);
1656 strupper(domain_name
);
1659 * opt_workgroup will be used by connection functions further,
1660 * hence it should be set to remote domain name instead of ours
1662 if (opt_workgroup
) {
1663 SAFE_FREE(opt_workgroup
);
1664 opt_workgroup
= smb_xstrdup(domain_name
);
1667 asprintf(&acct_name
, "%s$", lp_workgroup());
1668 strupper(acct_name
);
1670 opt_user_name
= acct_name
;
1672 /* find the domain controller */
1673 if (!net_find_dc(&server_ip
, pdc_name
, domain_name
)) {
1674 DEBUG(0, ("Coulnd find domain controller for domain %s\n", domain_name
));
1678 /* connect to ipc$ as username/password */
1679 nt_status
= connect_to_ipc(&cli
, &server_ip
, pdc_name
);
1680 if (!NT_STATUS_EQUAL(nt_status
, NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT
)) {
1682 /* Is it trusting domain account for sure ? */
1683 DEBUG(0, ("Couldn't verify trusting domain account. Error was %s\n",
1684 nt_errstr(nt_status
)));
1689 * Connect to \\server\ipc$ again (this time anonymously)
1692 nt_status
= connect_to_ipc_anonymous(&cli
, &server_ip
, (char*)pdc_name
);
1694 if (NT_STATUS_IS_ERR(nt_status
)) {
1695 DEBUG(0, ("Couldn't connect to domain %s controller. Error was %s.\n",
1696 domain_name
, nt_errstr(nt_status
)));
1700 * Use NetServerEnum2 to make sure we're talking to a proper server
1703 if (!cli_get_pdc_name(cli
, domain_name
, (char*)pdc_name
)) {
1704 DEBUG(0, ("NetServerEnum2 error: Couldn't find primary domain controller\
1705 for domain %s\n", domain_name
));
1709 * Call WksQueryInfo to check remote server's capabilities
1710 * note: It is now used only to get unicode domain name
1713 if (!cli_nt_session_open(cli
, PIPE_WKSSVC
)) {
1714 DEBUG(0, ("Couldn't not initialise wkssvc pipe\n"));
1718 if (!(mem_ctx
= talloc_init_named("establishing trust relationship to domain %s",
1720 DEBUG(0, ("talloc_init() failed\n"));
1725 nt_status
= cli_wks_query_info(cli
, mem_ctx
, &wks_info
);
1727 if (NT_STATUS_IS_ERR(nt_status
)) {
1728 DEBUG(0, ("WksQueryInfo call failed.\n"));
1732 if (cli
->nt_pipe_fnum
)
1733 cli_nt_session_close(cli
);
1737 * Call LsaOpenPolicy and LsaQueryInfo
1740 if (!(mem_ctx
= talloc_init())) {
1741 DEBUG(0, ("talloc_init() failed\n"));
1746 if (!cli_nt_session_open(cli
, PIPE_LSARPC
)) {
1747 DEBUG(0, ("Could not initialise lsa pipe\n"));
1752 nt_status
= cli_lsa_open_policy2(cli
, mem_ctx
, True
, SEC_RIGHTS_QUERY_VALUE
,
1754 if (NT_STATUS_IS_ERR(nt_status
)) {
1755 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
1756 nt_errstr(nt_status
)));
1760 /* Querying info level 5 */
1762 nt_status
= cli_lsa_query_info_policy(cli
, mem_ctx
, &connect_hnd
,
1763 5 /* info level */, domain_name
,
1765 if (NT_STATUS_IS_ERR(nt_status
)) {
1766 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
1767 nt_errstr(nt_status
)));
1774 /* There should be actually query info level 3 (following nt serv behaviour),
1775 but I still don't know if it's _really_ necessary */
1778 * Store the password in secrets db
1781 if (!secrets_store_trusted_domain_password(domain_name
, wks_info
.uni_lan_grp
.buffer
,
1782 wks_info
.uni_lan_grp
.uni_str_len
, opt_password
,
1784 DEBUG(0, ("Storing password for trusted domain failed.\n"));
1789 * Close the pipes and clean up
1792 nt_status
= cli_lsa_close(cli
, mem_ctx
, &connect_hnd
);
1793 if (NT_STATUS_IS_ERR(nt_status
)) {
1794 DEBUG(0, ("Couldn't close LSA pipe. Error was %s\n",
1795 nt_errstr(nt_status
)));
1799 if (cli
->nt_pipe_fnum
)
1800 cli_nt_session_close(cli
);
1802 talloc_destroy(mem_ctx
);
1804 DEBUG(0, ("Success!\n"));
1809 * Revoke trust relationship to the remote domain
1811 * @param argc standard argc
1812 * @param argv standard argv without initial components
1814 * @return Integer status (0 means success)
1817 static int rpc_trustdom_revoke(int argc
, const char **argv
)
1821 if (argc
< 1) return -1;
1823 /* generate upper cased domain name */
1824 domain_name
= smb_xstrdup(argv
[0]);
1825 strupper(domain_name
);
1827 /* delete password of the trust */
1828 if (!trusted_domain_password_delete(domain_name
)) {
1829 DEBUG(0, ("Failed to revoke relationship to the trusted domain %s\n",
1838 * Usage for 'net rpc trustdom' command
1840 * @param argc standard argc
1841 * @param argv standard argv without inital components
1843 * @return Integer status returned to shell
1846 static int rpc_trustdom_usage(int argc
, const char **argv
)
1848 d_printf(" net rpc trustdom add \t\t add trusting domain's account\n");
1849 d_printf(" net rpc trustdom del \t\t delete trusting domain's account\n");
1850 d_printf(" net rpc trustdom establish \t establish relationship to trusted domain\n");
1851 d_printf(" net rpc trustdom revoke \t abandon relationship to trusted domain\n");
1852 d_printf(" net rpc trustdom list \t show current interdomain trust relationships\n");
1857 static NTSTATUS
rpc_query_domain_sid(const DOM_SID
*domain_sid
, struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1858 int argc
, const char **argv
)
1861 sid_to_string(str_sid
, domain_sid
);
1862 d_printf("%s\n", str_sid
);
1863 return NT_STATUS_OK
;
1867 extern char* opt_workgroup
;
1868 extern char* opt_target_worgroup
;
1869 extern char* opt_host
;
1870 extern char* opt_password
;
1872 static int rpc_trustdom_list(int argc
, const char **argv
)
1874 /* common variables */
1875 TALLOC_CTX
* mem_ctx
;
1876 struct cli_state
*cli
, *remote_cli
;
1878 char *domain_name
= NULL
;
1879 DOM_SID queried_dom_sid
;
1880 fstring ascii_sid
, padding
;
1881 int ascii_dom_name_len
;
1882 POLICY_HND connect_hnd
;
1884 /* trusted domains listing variables */
1886 int num_domains
, i
, pad_len
, col_len
= 20;
1887 DOM_SID
*domain_sids
;
1888 char **trusted_dom_names
;
1891 /* trusting domains listing variables */
1892 POLICY_HND domain_hnd
;
1893 char **trusting_dom_names
;
1894 uint32
*trusting_dom_rids
;
1897 * Listing trusted domains (stored in secrets.tdb, if local)
1900 mem_ctx
= talloc_init_named("trust relationships listing");
1903 * set domain and pdc name to local samba server (default)
1904 * or to remote one given in command line
1906 strupper(opt_workgroup
);
1907 if (strcmp(opt_workgroup
, lp_workgroup())) {
1908 domain_name
= opt_workgroup
;
1909 if (opt_target_workgroup
) SAFE_FREE(opt_target_workgroup
);
1910 opt_target_workgroup
= opt_workgroup
;
1912 safe_strcpy(pdc_name
, global_myname
, FSTRING_LEN
);
1913 domain_name
= talloc_strdup(mem_ctx
, lp_workgroup());
1914 if (opt_target_workgroup
) SAFE_FREE(opt_target_workgroup
);
1915 opt_target_workgroup
= domain_name
;
1918 /* open \PIPE\lsarpc and open policy handle */
1919 if (!(cli
= net_make_ipc_connection(NET_FLAGS_PDC
))) {
1920 DEBUG(0, ("Couldn't connect to domain controller\n"));
1924 if (!cli_nt_session_open(cli
, PIPE_LSARPC
)) {
1925 DEBUG(0, ("Could not initialise lsa pipe\n"));
1929 nt_status
= cli_lsa_open_policy2(cli
, mem_ctx
, True
, SEC_RIGHTS_QUERY_VALUE
,
1931 if (NT_STATUS_IS_ERR(nt_status
)) {
1932 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
1933 nt_errstr(nt_status
)));
1937 /* query info level 5 to obtain sid of a domain being queried */
1938 nt_status
= cli_lsa_query_info_policy(cli
, mem_ctx
, &connect_hnd
,
1939 5 /* info level */, domain_name
, &queried_dom_sid
);
1940 if (NT_STATUS_IS_ERR(nt_status
)) {
1941 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
1942 nt_errstr(nt_status
)));
1947 * Keep calling LsaEnumTrustdom over opened pipe until
1948 * the end of enumeration is reached
1951 d_printf("Trusted domains list:\n\n");
1954 nt_status
= cli_lsa_enum_trust_dom(cli
, mem_ctx
, &connect_hnd
, &enum_ctx
,
1956 &trusted_dom_names
, &domain_sids
);
1958 if (NT_STATUS_IS_ERR(nt_status
)) {
1959 DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
1960 nt_errstr(nt_status
)));
1964 for (i
= 0; i
< num_domains
; i
++) {
1965 /* convert sid into ascii string */
1966 sid_to_string(ascii_sid
, &(domain_sids
[i
]));
1968 /* calculate padding space for d_printf to look nicer */
1969 pad_len
= col_len
- strlen(trusted_dom_names
[i
]);
1970 padding
[pad_len
] = 0;
1971 do padding
[--pad_len
] = ' '; while (pad_len
);
1973 d_printf("%s%s%s\n", trusted_dom_names
[i
], padding
, ascii_sid
);
1977 * in case of no trusted domains say something rather
1978 * than just display blank line
1980 if (!num_domains
) d_printf("none\n");
1982 } while (NT_STATUS_EQUAL(nt_status
, STATUS_MORE_ENTRIES
));
1984 /* close this connection before doing next one */
1985 nt_status
= cli_lsa_close(cli
, mem_ctx
, &connect_hnd
);
1986 if (NT_STATUS_IS_ERR(nt_status
)) {
1987 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
1988 nt_errstr(nt_status
)));
1992 cli_nt_session_close(cli
);
1995 * Listing trusting domains (stored in passdb backend, if local)
1998 d_printf("\nTrusting domains list:\n\n");
2001 * Open \PIPE\samr and get needed policy handles
2003 if (!cli_nt_session_open(cli
, PIPE_SAMR
)) {
2004 DEBUG(0, ("Could not initialise samr pipe\n"));
2009 nt_status
= cli_samr_connect(cli
, mem_ctx
, SAMR_ACCESS_OPEN_DOMAIN
,
2011 if (!NT_STATUS_IS_OK(nt_status
)) {
2012 DEBUG(0, ("Couldn't open SAMR policy handle. Error was %s\n",
2013 nt_errstr(nt_status
)));
2017 /* SamrOpenDomain - we have to open domain policy handle in order to be
2018 able to enumerate accounts*/
2019 nt_status
= cli_samr_open_domain(cli
, mem_ctx
, &connect_hnd
,
2020 DOMAIN_ACCESS_ENUM_ACCOUNTS
,
2021 &queried_dom_sid
, &domain_hnd
);
2022 if (!NT_STATUS_IS_OK(nt_status
)) {
2023 DEBUG(0, ("Couldn't open domain object. Error was %s\n",
2024 nt_errstr(nt_status
)));
2029 * perform actual enumeration
2032 enum_ctx
= 0; /* reset enumeration context from last enumeration */
2035 nt_status
= cli_samr_enum_dom_users(cli
, mem_ctx
, &domain_hnd
,
2036 &enum_ctx
, ACB_DOMTRUST
, 0xffff,
2037 &trusting_dom_names
, &trusting_dom_rids
,
2039 if (NT_STATUS_IS_ERR(nt_status
)) {
2040 DEBUG(0, ("Couldn't enumerate accounts. Error was: %s\n",
2041 nt_errstr(nt_status
)));
2045 for (i
= 0; i
< num_domains
; i
++) {
2048 * get each single domain's sid (do we _really_ need this ?):
2049 * 1) connect to domain's pdc
2050 * 2) query the pdc for domain's sid
2053 /* get rid of '$' tail */
2054 ascii_dom_name_len
= strlen(trusting_dom_names
[i
]);
2055 if (ascii_dom_name_len
&& ascii_dom_name_len
< FSTRING_LEN
)
2056 trusting_dom_names
[i
][ascii_dom_name_len
- 1] = '\0';
2058 /* calculate padding space for d_printf to look nicer */
2059 pad_len
= col_len
- strlen(trusting_dom_names
[i
]);
2060 padding
[pad_len
] = 0;
2061 do padding
[--pad_len
] = ' '; while (pad_len
);
2063 /* set opt_* variables to remote domain */
2064 strupper(trusting_dom_names
[i
]);
2065 opt_workgroup
= talloc_strdup(mem_ctx
, trusting_dom_names
[i
]);
2066 if (opt_target_workgroup
) SAFE_FREE(opt_target_workgroup
);
2067 opt_target_workgroup
= opt_workgroup
;
2069 d_printf("%s%s", trusting_dom_names
[i
], padding
);
2071 /* connect to remote domain controller */
2072 remote_cli
= net_make_ipc_connection(NET_FLAGS_PDC
| NET_FLAGS_ANONYMOUS
);
2074 /* query for domain's sid */
2075 if (run_rpc_command(remote_cli
, PIPE_LSARPC
, 0, rpc_query_domain_sid
, argc
, argv
))
2076 d_printf("couldn't get domain's sid\n");
2078 cli_shutdown(remote_cli
);
2081 d_printf("domain controller is not responding\n");
2085 if (!num_domains
) d_printf("none\n");
2087 } while (NT_STATUS_EQUAL(nt_status
, STATUS_MORE_ENTRIES
));
2089 /* close opened samr and domain policy handles */
2090 nt_status
= cli_samr_close(cli
, mem_ctx
, &domain_hnd
);
2091 if (!NT_STATUS_IS_OK(nt_status
)) {
2092 DEBUG(0, ("Couldn't properly close domain policy handle for domain %s\n", domain_name
));
2095 nt_status
= cli_samr_close(cli
, mem_ctx
, &connect_hnd
);
2096 if (!NT_STATUS_IS_OK(nt_status
)) {
2097 DEBUG(0, ("Couldn't properly close samr policy handle for domain %s\n", domain_name
));
2100 /* close samr pipe and connection to IPC$ */
2101 cli_nt_session_close(cli
);
2104 talloc_destroy(mem_ctx
);
2109 * Entrypoint for 'net rpc trustdom' code
2111 * @param argc standard argc
2112 * @param argv standard argv without initial components
2114 * @return Integer status (0 means success)
2117 static int rpc_trustdom(int argc
, const char **argv
)
2119 struct functable func
[] = {
2120 {"add", rpc_trustdom_add
},
2121 {"del", rpc_trustdom_del
},
2122 {"establish", rpc_trustdom_establish
},
2123 {"revoke", rpc_trustdom_revoke
},
2124 {"help", rpc_trustdom_usage
},
2125 {"list", rpc_trustdom_list
},
2130 rpc_trustdom_usage(argc
, argv
);
2134 return (net_run_function(argc
, argv
, func
, rpc_user_usage
));
2138 * Check if a server will take rpc commands
2139 * @param flags Type of server to connect to (PDC, DMB, localhost)
2140 * if the host is not explicitly specified
2141 * @return BOOL (true means rpc supported)
2143 BOOL
net_rpc_check(unsigned flags
)
2145 struct cli_state cli
;
2147 struct in_addr server_ip
;
2148 char *server_name
= NULL
;
2150 /* flags (i.e. server type) may depend on command */
2151 if (!net_find_server(flags
, &server_ip
, &server_name
))
2155 if (cli_initialise(&cli
) == False
)
2158 if (!cli_connect(&cli
, server_name
, &server_ip
))
2160 if (!attempt_netbios_session_request(&cli
, global_myname
,
2161 server_name
, &server_ip
))
2163 if (!cli_negprot(&cli
))
2165 if (cli
.protocol
< PROTOCOL_NT1
)
2175 /****************************************************************************/
2179 * Basic usage function for 'net rpc'
2180 * @param argc Standard main() style argc
2181 * @param argv Standard main() style argv. Initial components are already
2185 int net_rpc_usage(int argc
, const char **argv
)
2187 d_printf(" net rpc info \t\t\tshow basic info about a domain \n");
2188 d_printf(" net rpc join \t\t\tto join a domain \n");
2189 d_printf(" net rpc testjoin \t\ttests that a join is valid\n");
2190 d_printf(" net rpc user \t\t\tto add, delete and list users\n");
2191 d_printf(" net rpc group \t\tto list groups\n");
2192 d_printf(" net rpc share \t\tto add, delete, and list shares\n");
2193 d_printf(" net rpc file \t\t\tto list open files\n");
2194 d_printf(" net rpc changetrustpw \tto change the trust account password\n");
2195 d_printf(" net rpc getsid \t\tfetch the domain sid into the local secrets.tdb\n");
2196 d_printf(" net rpc trustdom \t\tto create trusting domain's account\n"
2197 "\t\t\t\t\tor establish trust\n");
2198 d_printf(" net rpc abortshutdown \tto abort the shutdown of a remote server\n");
2199 d_printf(" net rpc shutdown \t\tto shutdown a remote server\n");
2201 d_printf("'net rpc shutdown' also accepts the following miscellaneous options:\n"); /* misc options */
2202 d_printf("\t-r or --reboot\trequest remote server reboot on shutdown\n");
2203 d_printf("\t-f or --force\trequest the remote server force its shutdown\n");
2204 d_printf("\t-t or --timeout=<timeout>\tnumber of seconds before shutdown\n");
2205 d_printf("\t-c or --comment=<message>\ttext message to display on impending shutdown\n");
2211 * Help function for 'net rpc'. Calls command specific help if requested
2212 * or displays usage of net rpc
2213 * @param argc Standard main() style argc
2214 * @param argv Standard main() style argv. Initial components are already
2218 int net_rpc_help(int argc
, const char **argv
)
2220 struct functable func
[] = {
2221 {"join", rpc_join_usage
},
2222 {"user", rpc_user_usage
},
2223 {"group", rpc_group_usage
},
2224 {"share", rpc_share_usage
},
2225 /*{"changetrustpw", rpc_changetrustpw_usage}, */
2226 {"trustdom", rpc_trustdom_usage
},
2227 /*{"abortshutdown", rpc_shutdown_abort_usage},*/
2228 /*{"shutdown", rpc_shutdown_usage}, */
2233 net_rpc_usage(argc
, argv
);
2237 return (net_run_function(argc
, argv
, func
, rpc_user_usage
));
2242 * 'net rpc' entrypoint.
2243 * @param argc Standard main() style argc
2244 * @param argv Standard main() style argv. Initial components are already
2248 int net_rpc(int argc
, const char **argv
)
2250 struct functable func
[] = {
2251 {"info", net_rpc_info
},
2252 {"join", net_rpc_join
},
2253 {"testjoin", net_rpc_testjoin
},
2254 {"user", net_rpc_user
},
2255 {"group", net_rpc_group
},
2256 {"share", net_rpc_share
},
2257 {"file", net_rpc_file
},
2258 {"changetrustpw", rpc_changetrustpw
},
2259 {"trustdom", rpc_trustdom
},
2260 {"abortshutdown", rpc_shutdown_abort
},
2261 {"shutdown", rpc_shutdown
},
2262 {"samdump", rpc_samdump
},
2263 {"vampire", rpc_samdump
},
2264 {"getsid", net_rpc_getsid
},
2265 {"help", net_rpc_help
},
2268 return net_run_function(argc
, argv
, func
, net_rpc_usage
);