2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
4 Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
5 Copyright (C) 2002 Jim McDonough (jmcd@us.ibm.com)
6 Copyright (C) 2004,2008 Guenther Deschner (gd@samba.org)
7 Copyright (C) 2005 Jeremy Allison (jra@samba.org)
8 Copyright (C) 2006 Jelmer Vernooij (jelmer@samba.org)
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "utils/net.h"
25 #include "../libcli/auth/libcli_auth.h"
27 static int net_mode_share;
28 static bool sync_files(struct copy_clistate *cp_clistate, const char *mask);
33 * @brief RPC based subcommands for the 'net' utility.
35 * This file should contain much of the functionality that used to
36 * be found in rpcclient, execpt that the commands should change
37 * less often, and the fucntionality should be sane (the user is not
38 * expected to know a rid/sid before they conduct an operation etc.)
40 * @todo Perhaps eventually these should be split out into a number
41 * of files, as this could get quite big.
46 * Many of the RPC functions need the domain sid. This function gets
47 * it at the start of every run
49 * @param cli A cli_state already connected to the remote machine
51 * @return The Domain SID of the remote machine.
54 NTSTATUS net_get_remote_domain_sid(struct cli_state *cli, TALLOC_CTX *mem_ctx,
56 const char **domain_name)
58 struct rpc_pipe_client *lsa_pipe = NULL;
59 struct policy_handle pol;
60 NTSTATUS result = NT_STATUS_OK;
61 union lsa_PolicyInformation *info = NULL;
63 result = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
65 if (!NT_STATUS_IS_OK(result)) {
66 d_fprintf(stderr, "Could not initialise lsa pipe\n");
70 result = rpccli_lsa_open_policy(lsa_pipe, mem_ctx, false,
71 SEC_FLAG_MAXIMUM_ALLOWED,
73 if (!NT_STATUS_IS_OK(result)) {
74 d_fprintf(stderr, "open_policy failed: %s\n",
79 result = rpccli_lsa_QueryInfoPolicy(lsa_pipe, mem_ctx,
81 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
83 if (!NT_STATUS_IS_OK(result)) {
84 d_fprintf(stderr, "lsaquery failed: %s\n",
89 *domain_name = info->account_domain.name.string;
90 *domain_sid = info->account_domain.sid;
92 rpccli_lsa_Close(lsa_pipe, mem_ctx, &pol);
93 TALLOC_FREE(lsa_pipe);
99 * Run a single RPC command, from start to finish.
101 * @param pipe_name the pipe to connect to (usually a PIPE_ constant)
102 * @param conn_flag a NET_FLAG_ combination. Passed to
103 * net_make_ipc_connection.
104 * @param argc Standard main() style argc.
105 * @param argv Standard main() style argv. Initial components are already
107 * @return A shell status integer (0 for success).
110 int run_rpc_command(struct net_context *c,
111 struct cli_state *cli_arg,
112 const struct ndr_syntax_id *interface,
118 struct cli_state *cli = NULL;
119 struct rpc_pipe_client *pipe_hnd = NULL;
123 const char *domain_name;
126 /* make use of cli_state handed over as an argument, if possible */
128 nt_status = net_make_ipc_connection(c, conn_flags, &cli);
129 if (!NT_STATUS_IS_OK(nt_status)) {
130 DEBUG(1, ("failed to make ipc connection: %s\n",
131 nt_errstr(nt_status)));
144 if (!(mem_ctx = talloc_init("run_rpc_command"))) {
145 DEBUG(0, ("talloc_init() failed\n"));
149 nt_status = net_get_remote_domain_sid(cli, mem_ctx, &domain_sid,
151 if (!NT_STATUS_IS_OK(nt_status)) {
155 if (!(conn_flags & NET_FLAGS_NO_PIPE)) {
156 if (lp_client_schannel()
157 && (ndr_syntax_id_equal(interface,
158 &ndr_table_netlogon.syntax_id))) {
159 /* Always try and create an schannel netlogon pipe. */
160 nt_status = cli_rpc_pipe_open_schannel(
162 PIPE_AUTH_LEVEL_PRIVACY, domain_name,
164 if (!NT_STATUS_IS_OK(nt_status)) {
165 DEBUG(0, ("Could not initialise schannel netlogon pipe. Error was %s\n",
166 nt_errstr(nt_status) ));
170 if (conn_flags & NET_FLAGS_SEAL) {
171 nt_status = cli_rpc_pipe_open_ntlmssp(
173 PIPE_AUTH_LEVEL_PRIVACY,
174 lp_workgroup(), c->opt_user_name,
175 c->opt_password, &pipe_hnd);
177 nt_status = cli_rpc_pipe_open_noauth(
181 if (!NT_STATUS_IS_OK(nt_status)) {
182 DEBUG(0, ("Could not initialise pipe %s. Error was %s\n",
183 get_pipe_name_from_iface(interface),
184 nt_errstr(nt_status) ));
190 nt_status = fn(c, domain_sid, domain_name, cli, pipe_hnd, mem_ctx, argc, argv);
192 if (!NT_STATUS_IS_OK(nt_status)) {
193 DEBUG(1, ("rpc command function failed! (%s)\n", nt_errstr(nt_status)));
196 DEBUG(5, ("rpc command function succedded\n"));
199 if (!(conn_flags & NET_FLAGS_NO_PIPE)) {
201 TALLOC_FREE(pipe_hnd);
206 /* close the connection only if it was opened here */
211 talloc_destroy(mem_ctx);
216 * Force a change of the trust acccount password.
218 * All parameters are provided by the run_rpc_command function, except for
219 * argc, argv which are passed through.
221 * @param domain_sid The domain sid acquired from the remote server.
222 * @param cli A cli_state connected to the server.
223 * @param mem_ctx Talloc context, destroyed on completion of the function.
224 * @param argc Standard main() style argc.
225 * @param argv Standard main() style argv. Initial components are already
228 * @return Normal NTSTATUS return.
231 static NTSTATUS rpc_changetrustpw_internals(struct net_context *c,
232 const DOM_SID *domain_sid,
233 const char *domain_name,
234 struct cli_state *cli,
235 struct rpc_pipe_client *pipe_hnd,
241 return trust_pw_find_change_and_store_it(pipe_hnd, mem_ctx, c->opt_target_workgroup);
245 * Force a change of the trust acccount password.
247 * @param argc Standard main() style argc.
248 * @param argv Standard main() style argv. Initial components are already
251 * @return A shell status integer (0 for success).
254 int net_rpc_changetrustpw(struct net_context *c, int argc, const char **argv)
256 if (c->display_usage) {
258 "net rpc changetrustpw\n"
259 " Change the machine trust password\n");
263 return run_rpc_command(c, NULL, &ndr_table_netlogon.syntax_id,
264 NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
265 rpc_changetrustpw_internals,
270 * Join a domain, the old way.
272 * This uses 'machinename' as the inital password, and changes it.
274 * The password should be created with 'server manager' or equiv first.
276 * All parameters are provided by the run_rpc_command function, except for
277 * argc, argv which are passed through.
279 * @param domain_sid The domain sid acquired from the remote server.
280 * @param cli A cli_state connected to the server.
281 * @param mem_ctx Talloc context, destroyed on completion of the function.
282 * @param argc Standard main() style argc.
283 * @param argv Standard main() style argv. Initial components are already
286 * @return Normal NTSTATUS return.
289 static NTSTATUS rpc_oldjoin_internals(struct net_context *c,
290 const DOM_SID *domain_sid,
291 const char *domain_name,
292 struct cli_state *cli,
293 struct rpc_pipe_client *pipe_hnd,
299 fstring trust_passwd;
300 unsigned char orig_trust_passwd_hash[16];
302 uint32 sec_channel_type;
304 result = cli_rpc_pipe_open_noauth(cli, &ndr_table_netlogon.syntax_id,
306 if (!NT_STATUS_IS_OK(result)) {
307 DEBUG(0,("rpc_oldjoin_internals: netlogon pipe open to machine %s failed. "
310 nt_errstr(result) ));
315 check what type of join - if the user want's to join as
316 a BDC, the server must agree that we are a BDC.
319 sec_channel_type = get_sec_channel_type(argv[0]);
321 sec_channel_type = get_sec_channel_type(NULL);
324 fstrcpy(trust_passwd, global_myname());
325 strlower_m(trust_passwd);
328 * Machine names can be 15 characters, but the max length on
329 * a password is 14. --jerry
332 trust_passwd[14] = '\0';
334 E_md4hash(trust_passwd, orig_trust_passwd_hash);
336 result = trust_pw_change_and_store_it(pipe_hnd, mem_ctx, c->opt_target_workgroup,
337 orig_trust_passwd_hash,
340 if (NT_STATUS_IS_OK(result))
341 printf("Joined domain %s.\n", c->opt_target_workgroup);
344 if (!secrets_store_domain_sid(c->opt_target_workgroup, domain_sid)) {
345 DEBUG(0, ("error storing domain sid for %s\n", c->opt_target_workgroup));
346 result = NT_STATUS_UNSUCCESSFUL;
353 * Join a domain, the old way.
355 * @param argc Standard main() style argc.
356 * @param argv Standard main() style argv. Initial components are already
359 * @return A shell status integer (0 for success).
362 static int net_rpc_perform_oldjoin(struct net_context *c, int argc, const char **argv)
364 return run_rpc_command(c, NULL, &ndr_table_netlogon.syntax_id,
365 NET_FLAGS_NO_PIPE | NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
366 rpc_oldjoin_internals,
371 * Join a domain, the old way. This function exists to allow
372 * the message to be displayed when oldjoin was explicitly
373 * requested, but not when it was implied by "net rpc join".
375 * @param argc Standard main() style argc.
376 * @param argv Standard main() style argv. Initial components are already
379 * @return A shell status integer (0 for success).
382 static int net_rpc_oldjoin(struct net_context *c, int argc, const char **argv)
386 if (c->display_usage) {
389 " Join a domain the old way\n");
393 rc = net_rpc_perform_oldjoin(c, argc, argv);
396 d_fprintf(stderr, "Failed to join domain\n");
403 * 'net rpc join' entrypoint.
404 * @param argc Standard main() style argc.
405 * @param argv Standard main() style argv. Initial components are already
408 * Main 'net_rpc_join()' (where the admin username/password is used) is
410 * Try to just change the password, but if that doesn't work, use/prompt
411 * for a username/password.
414 int net_rpc_join(struct net_context *c, int argc, const char **argv)
416 if (c->display_usage) {
418 "net rpc join -U <username>[%%password] <type>\n"
420 " username\tName of the admin user"
421 " password\tPassword of the admin user, will "
422 "prompt if not specified\n"
423 " type\tCan be one of the following:\n"
424 "\t\tMEMBER\tJoin as member server (default)\n"
425 "\t\tBDC\tJoin as BDC\n"
426 "\t\tPDC\tJoin as PDC\n");
430 if (lp_server_role() == ROLE_STANDALONE) {
431 d_printf("cannot join as standalone machine\n");
435 if (strlen(global_myname()) > 15) {
436 d_printf("Our netbios name can be at most 15 chars long, "
437 "\"%s\" is %u chars long\n",
438 global_myname(), (unsigned int)strlen(global_myname()));
442 if ((net_rpc_perform_oldjoin(c, argc, argv) == 0))
445 return net_rpc_join_newstyle(c, argc, argv);
449 * display info about a rpc domain
451 * All parameters are provided by the run_rpc_command function, except for
452 * argc, argv which are passed through.
454 * @param domain_sid The domain sid acquired from the remote server
455 * @param cli A cli_state connected to the server.
456 * @param mem_ctx Talloc context, destroyed on completion of the function.
457 * @param argc Standard main() style argc.
458 * @param argv Standard main() style argv. Initial components are already
461 * @return Normal NTSTATUS return.
464 NTSTATUS rpc_info_internals(struct net_context *c,
465 const DOM_SID *domain_sid,
466 const char *domain_name,
467 struct cli_state *cli,
468 struct rpc_pipe_client *pipe_hnd,
473 struct policy_handle connect_pol, domain_pol;
474 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
475 union samr_DomainInfo *info = NULL;
478 sid_to_fstring(sid_str, domain_sid);
480 /* Get sam policy handle */
481 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
483 MAXIMUM_ALLOWED_ACCESS,
485 if (!NT_STATUS_IS_OK(result)) {
486 d_fprintf(stderr, "Could not connect to SAM: %s\n", nt_errstr(result));
490 /* Get domain policy handle */
491 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
493 MAXIMUM_ALLOWED_ACCESS,
494 CONST_DISCARD(struct dom_sid2 *, domain_sid),
496 if (!NT_STATUS_IS_OK(result)) {
497 d_fprintf(stderr, "Could not open domain: %s\n", nt_errstr(result));
501 result = rpccli_samr_QueryDomainInfo(pipe_hnd, mem_ctx,
505 if (NT_STATUS_IS_OK(result)) {
506 d_printf("Domain Name: %s\n", info->general.domain_name.string);
507 d_printf("Domain SID: %s\n", sid_str);
508 d_printf("Sequence number: %llu\n",
509 (unsigned long long)info->general.sequence_num);
510 d_printf("Num users: %u\n", info->general.num_users);
511 d_printf("Num domain groups: %u\n", info->general.num_groups);
512 d_printf("Num local groups: %u\n", info->general.num_aliases);
520 * 'net rpc info' entrypoint.
521 * @param argc Standard main() style argc.
522 * @param argv Standard main() style argv. Initial components are already
526 int net_rpc_info(struct net_context *c, int argc, const char **argv)
528 if (c->display_usage) {
531 " Display information about the domain\n");
535 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id,
536 NET_FLAGS_PDC, rpc_info_internals,
541 * Fetch domain SID into the local secrets.tdb.
543 * All parameters are provided by the run_rpc_command function, except for
544 * argc, argv which are passed through.
546 * @param domain_sid The domain sid acquired from the remote server.
547 * @param cli A cli_state connected to the server.
548 * @param mem_ctx Talloc context, destroyed on completion of the function.
549 * @param argc Standard main() style argc.
550 * @param argv Standard main() style argv. Initial components are already
553 * @return Normal NTSTATUS return.
556 static NTSTATUS rpc_getsid_internals(struct net_context *c,
557 const DOM_SID *domain_sid,
558 const char *domain_name,
559 struct cli_state *cli,
560 struct rpc_pipe_client *pipe_hnd,
567 sid_to_fstring(sid_str, domain_sid);
568 d_printf("Storing SID %s for Domain %s in secrets.tdb\n",
569 sid_str, domain_name);
571 if (!secrets_store_domain_sid(domain_name, domain_sid)) {
572 DEBUG(0,("Can't store domain SID\n"));
573 return NT_STATUS_UNSUCCESSFUL;
580 * 'net rpc getsid' entrypoint.
581 * @param argc Standard main() style argc.
582 * @param argv Standard main() style argv. Initial components are already
586 int net_rpc_getsid(struct net_context *c, int argc, const char **argv)
588 if (c->display_usage) {
591 " Fetch domain SID into local secrets.tdb\n");
595 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id,
596 NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
597 rpc_getsid_internals,
601 /****************************************************************************/
604 * Basic usage function for 'net rpc user'.
605 * @param argc Standard main() style argc.
606 * @param argv Standard main() style argv. Initial components are already
610 static int rpc_user_usage(struct net_context *c, int argc, const char **argv)
612 return net_user_usage(c, argc, argv);
616 * Add a new user to a remote RPC server.
618 * @param argc Standard main() style argc.
619 * @param argv Standard main() style argv. Initial components are already
622 * @return A shell status integer (0 for success).
625 static int rpc_user_add(struct net_context *c, int argc, const char **argv)
627 NET_API_STATUS status;
628 struct USER_INFO_1 info1;
629 uint32_t parm_error = 0;
631 if (argc < 1 || c->display_usage) {
632 rpc_user_usage(c, argc, argv);
638 info1.usri1_name = argv[0];
640 info1.usri1_password = argv[1];
643 status = NetUserAdd(c->opt_host, 1, (uint8_t *)&info1, &parm_error);
646 d_fprintf(stderr, "Failed to add user '%s' with: %s.\n",
647 argv[0], libnetapi_get_error_string(c->netapi_ctx,
651 d_printf("Added user '%s'.\n", argv[0]);
658 * Rename a user on a remote RPC server.
660 * @param argc Standard main() style argc.
661 * @param argv Standard main() style argv. Initial components are already
664 * @return A shell status integer (0 for success).
667 static int rpc_user_rename(struct net_context *c, int argc, const char **argv)
669 NET_API_STATUS status;
670 struct USER_INFO_0 u0;
671 uint32_t parm_err = 0;
673 if (argc != 2 || c->display_usage) {
674 rpc_user_usage(c, argc, argv);
678 u0.usri0_name = argv[1];
680 status = NetUserSetInfo(c->opt_host, argv[0],
681 0, (uint8_t *)&u0, &parm_err);
683 d_fprintf(stderr, "Failed to rename user from %s to %s - %s\n",
685 libnetapi_get_error_string(c->netapi_ctx, status));
687 d_printf("Renamed user from %s to %s\n", argv[0], argv[1]);
694 * Delete a user from a remote RPC server.
696 * @param argc Standard main() style argc.
697 * @param argv Standard main() style argv. Initial components are already
700 * @return A shell status integer (0 for success).
703 static int rpc_user_delete(struct net_context *c, int argc, const char **argv)
705 NET_API_STATUS status;
707 if (argc < 1 || c->display_usage) {
708 rpc_user_usage(c, argc, argv);
712 status = NetUserDel(c->opt_host, argv[0]);
715 d_fprintf(stderr, "Failed to delete user '%s' with: %s.\n",
717 libnetapi_get_error_string(c->netapi_ctx, status));
720 d_printf("Deleted user '%s'.\n", argv[0]);
727 * Set a user's password on a remote RPC server.
729 * @param argc Standard main() style argc.
730 * @param argv Standard main() style argv. Initial components are already
733 * @return A shell status integer (0 for success).
736 static int rpc_user_password(struct net_context *c, int argc, const char **argv)
738 NET_API_STATUS status;
740 struct USER_INFO_1003 u1003;
741 uint32_t parm_err = 0;
743 if (argc < 1 || c->display_usage) {
744 rpc_user_usage(c, argc, argv);
749 u1003.usri1003_password = argv[1];
751 if (asprintf(&prompt, "Enter new password for %s:", argv[0]) == -1) {
754 u1003.usri1003_password = getpass(prompt);
758 status = NetUserSetInfo(c->opt_host, argv[0], 1003, (uint8_t *)&u1003, &parm_err);
760 /* Display results */
762 d_fprintf(stderr, "Failed to set password for '%s' with: %s.\n",
763 argv[0], libnetapi_get_error_string(c->netapi_ctx,
772 * List a user's groups from a remote RPC server.
774 * @param argc Standard main() style argc.
775 * @param argv Standard main() style argv. Initial components are already
778 * @return A shell status integer (0 for success)
781 static int rpc_user_info(struct net_context *c, int argc, const char **argv)
784 NET_API_STATUS status;
785 struct GROUP_USERS_INFO_0 *u0 = NULL;
786 uint32_t entries_read = 0;
787 uint32_t total_entries = 0;
791 if (argc < 1 || c->display_usage) {
792 rpc_user_usage(c, argc, argv);
796 status = NetUserGetGroups(c->opt_host,
799 (uint8_t **)(void *)&u0,
804 d_fprintf(stderr, "Failed to get groups for '%s' with: %s.\n",
805 argv[0], libnetapi_get_error_string(c->netapi_ctx,
810 for (i=0; i < entries_read; i++) {
811 printf("%s\n", u0->grui0_name);
819 * List users on a remote RPC server.
821 * All parameters are provided by the run_rpc_command function, except for
822 * argc, argv which are passed through.
824 * @param domain_sid The domain sid acquired from the remote server.
825 * @param cli A cli_state connected to the server.
826 * @param mem_ctx Talloc context, destroyed on completion of the function.
827 * @param argc Standard main() style argc.
828 * @param argv Standard main() style argv. Initial components are already
831 * @return Normal NTSTATUS return.
834 static int rpc_user_list(struct net_context *c, int argc, const char **argv)
836 NET_API_STATUS status;
837 uint32_t start_idx=0, num_entries, i, loop_count = 0;
838 struct NET_DISPLAY_USER *info = NULL;
841 /* Query domain users */
842 if (c->opt_long_list_entries)
843 d_printf("\nUser name Comment"
844 "\n-----------------------------\n");
846 uint32_t max_entries, max_size;
848 get_query_dispinfo_params(
849 loop_count, &max_entries, &max_size);
851 status = NetQueryDisplayInformation(c->opt_host,
858 if (status != 0 && status != ERROR_MORE_DATA) {
862 info = (struct NET_DISPLAY_USER *)buffer;
864 for (i = 0; i < num_entries; i++) {
866 if (c->opt_long_list_entries)
867 printf("%-21.21s %s\n", info->usri1_name,
868 info->usri1_comment);
870 printf("%s\n", info->usri1_name);
874 NetApiBufferFree(buffer);
877 start_idx += num_entries;
879 } while (status == ERROR_MORE_DATA);
885 * 'net rpc user' entrypoint.
886 * @param argc Standard main() style argc.
887 * @param argv Standard main() style argv. Initial components are already
891 int net_rpc_user(struct net_context *c, int argc, const char **argv)
893 NET_API_STATUS status;
895 struct functable func[] = {
900 "Add specified user",
902 " Add specified user"
908 "List domain groups of user",
909 "net rpc user info\n"
910 " Lis domain groups of user"
916 "Remove specified user",
917 "net rpc user delete\n"
918 " Remove specified user"
924 "Change user password",
925 "net rpc user password\n"
926 " Change user password"
932 "Rename specified user",
933 "net rpc user rename\n"
934 " Rename specified user"
936 {NULL, NULL, 0, NULL, NULL}
939 status = libnetapi_init(&c->netapi_ctx);
943 libnetapi_set_username(c->netapi_ctx, c->opt_user_name);
944 libnetapi_set_password(c->netapi_ctx, c->opt_password);
945 if (c->opt_kerberos) {
946 libnetapi_set_use_kerberos(c->netapi_ctx);
950 if (c->display_usage) {
951 d_printf("Usage:\n");
952 d_printf("net rpc user\n"
953 " List all users\n");
954 net_display_usage_from_functable(func);
958 return rpc_user_list(c, argc, argv);
961 return net_run_function(c, argc, argv, "net rpc user", func);
964 static NTSTATUS rpc_sh_user_list(struct net_context *c,
966 struct rpc_sh_ctx *ctx,
967 struct rpc_pipe_client *pipe_hnd,
968 int argc, const char **argv)
970 return werror_to_ntstatus(W_ERROR(rpc_user_list(c, argc, argv)));
973 static NTSTATUS rpc_sh_user_info(struct net_context *c,
975 struct rpc_sh_ctx *ctx,
976 struct rpc_pipe_client *pipe_hnd,
977 int argc, const char **argv)
979 return werror_to_ntstatus(W_ERROR(rpc_user_info(c, argc, argv)));
982 static NTSTATUS rpc_sh_handle_user(struct net_context *c,
984 struct rpc_sh_ctx *ctx,
985 struct rpc_pipe_client *pipe_hnd,
986 int argc, const char **argv,
988 struct net_context *c,
990 struct rpc_sh_ctx *ctx,
991 struct rpc_pipe_client *pipe_hnd,
992 struct policy_handle *user_hnd,
993 int argc, const char **argv))
995 struct policy_handle connect_pol, domain_pol, user_pol;
996 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
999 enum lsa_SidType type;
1002 d_fprintf(stderr, "usage: %s <username>\n", ctx->whoami);
1003 return NT_STATUS_INVALID_PARAMETER;
1006 ZERO_STRUCT(connect_pol);
1007 ZERO_STRUCT(domain_pol);
1008 ZERO_STRUCT(user_pol);
1010 result = net_rpc_lookup_name(c, mem_ctx, rpc_pipe_np_smb_conn(pipe_hnd),
1011 argv[0], NULL, NULL, &sid, &type);
1012 if (!NT_STATUS_IS_OK(result)) {
1013 d_fprintf(stderr, "Could not lookup %s: %s\n", argv[0],
1018 if (type != SID_NAME_USER) {
1019 d_fprintf(stderr, "%s is a %s, not a user\n", argv[0],
1020 sid_type_lookup(type));
1021 result = NT_STATUS_NO_SUCH_USER;
1025 if (!sid_peek_check_rid(ctx->domain_sid, &sid, &rid)) {
1026 d_fprintf(stderr, "%s is not in our domain\n", argv[0]);
1027 result = NT_STATUS_NO_SUCH_USER;
1031 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1033 MAXIMUM_ALLOWED_ACCESS,
1035 if (!NT_STATUS_IS_OK(result)) {
1039 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1041 MAXIMUM_ALLOWED_ACCESS,
1044 if (!NT_STATUS_IS_OK(result)) {
1048 result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
1050 MAXIMUM_ALLOWED_ACCESS,
1053 if (!NT_STATUS_IS_OK(result)) {
1057 result = fn(c, mem_ctx, ctx, pipe_hnd, &user_pol, argc-1, argv+1);
1060 if (is_valid_policy_hnd(&user_pol)) {
1061 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
1063 if (is_valid_policy_hnd(&domain_pol)) {
1064 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
1066 if (is_valid_policy_hnd(&connect_pol)) {
1067 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1072 static NTSTATUS rpc_sh_user_show_internals(struct net_context *c,
1073 TALLOC_CTX *mem_ctx,
1074 struct rpc_sh_ctx *ctx,
1075 struct rpc_pipe_client *pipe_hnd,
1076 struct policy_handle *user_hnd,
1077 int argc, const char **argv)
1080 union samr_UserInfo *info = NULL;
1083 d_fprintf(stderr, "usage: %s show <username>\n", ctx->whoami);
1084 return NT_STATUS_INVALID_PARAMETER;
1087 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1091 if (!NT_STATUS_IS_OK(result)) {
1095 d_printf("user rid: %d, group rid: %d\n",
1097 info->info21.primary_gid);
1102 static NTSTATUS rpc_sh_user_show(struct net_context *c,
1103 TALLOC_CTX *mem_ctx,
1104 struct rpc_sh_ctx *ctx,
1105 struct rpc_pipe_client *pipe_hnd,
1106 int argc, const char **argv)
1108 return rpc_sh_handle_user(c, mem_ctx, ctx, pipe_hnd, argc, argv,
1109 rpc_sh_user_show_internals);
1112 #define FETCHSTR(name, rec) \
1113 do { if (strequal(ctx->thiscmd, name)) { \
1114 oldval = talloc_strdup(mem_ctx, info->info21.rec.string); } \
1117 #define SETSTR(name, rec, flag) \
1118 do { if (strequal(ctx->thiscmd, name)) { \
1119 init_lsa_String(&(info->info21.rec), argv[0]); \
1120 info->info21.fields_present |= SAMR_FIELD_##flag; } \
1123 static NTSTATUS rpc_sh_user_str_edit_internals(struct net_context *c,
1124 TALLOC_CTX *mem_ctx,
1125 struct rpc_sh_ctx *ctx,
1126 struct rpc_pipe_client *pipe_hnd,
1127 struct policy_handle *user_hnd,
1128 int argc, const char **argv)
1131 const char *username;
1132 const char *oldval = "";
1133 union samr_UserInfo *info = NULL;
1136 d_fprintf(stderr, "usage: %s <username> [new value|NULL]\n",
1138 return NT_STATUS_INVALID_PARAMETER;
1141 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1145 if (!NT_STATUS_IS_OK(result)) {
1149 username = talloc_strdup(mem_ctx, info->info21.account_name.string);
1151 FETCHSTR("fullname", full_name);
1152 FETCHSTR("homedir", home_directory);
1153 FETCHSTR("homedrive", home_drive);
1154 FETCHSTR("logonscript", logon_script);
1155 FETCHSTR("profilepath", profile_path);
1156 FETCHSTR("description", description);
1159 d_printf("%s's %s: [%s]\n", username, ctx->thiscmd, oldval);
1163 if (strcmp(argv[0], "NULL") == 0) {
1167 ZERO_STRUCT(info->info21);
1169 SETSTR("fullname", full_name, FULL_NAME);
1170 SETSTR("homedir", home_directory, HOME_DIRECTORY);
1171 SETSTR("homedrive", home_drive, HOME_DRIVE);
1172 SETSTR("logonscript", logon_script, LOGON_SCRIPT);
1173 SETSTR("profilepath", profile_path, PROFILE_PATH);
1174 SETSTR("description", description, DESCRIPTION);
1176 result = rpccli_samr_SetUserInfo(pipe_hnd, mem_ctx,
1181 d_printf("Set %s's %s from [%s] to [%s]\n", username,
1182 ctx->thiscmd, oldval, argv[0]);
1189 #define HANDLEFLG(name, rec) \
1190 do { if (strequal(ctx->thiscmd, name)) { \
1191 oldval = (oldflags & ACB_##rec) ? "yes" : "no"; \
1193 newflags = oldflags | ACB_##rec; \
1195 newflags = oldflags & ~ACB_##rec; \
1198 static NTSTATUS rpc_sh_user_str_edit(struct net_context *c,
1199 TALLOC_CTX *mem_ctx,
1200 struct rpc_sh_ctx *ctx,
1201 struct rpc_pipe_client *pipe_hnd,
1202 int argc, const char **argv)
1204 return rpc_sh_handle_user(c, mem_ctx, ctx, pipe_hnd, argc, argv,
1205 rpc_sh_user_str_edit_internals);
1208 static NTSTATUS rpc_sh_user_flag_edit_internals(struct net_context *c,
1209 TALLOC_CTX *mem_ctx,
1210 struct rpc_sh_ctx *ctx,
1211 struct rpc_pipe_client *pipe_hnd,
1212 struct policy_handle *user_hnd,
1213 int argc, const char **argv)
1216 const char *username;
1217 const char *oldval = "unknown";
1218 uint32 oldflags, newflags;
1220 union samr_UserInfo *info = NULL;
1223 ((argc == 1) && !strequal(argv[0], "yes") &&
1224 !strequal(argv[0], "no"))) {
1225 d_fprintf(stderr, "usage: %s <username> [yes|no]\n",
1227 return NT_STATUS_INVALID_PARAMETER;
1230 newval = strequal(argv[0], "yes");
1232 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1236 if (!NT_STATUS_IS_OK(result)) {
1240 username = talloc_strdup(mem_ctx, info->info21.account_name.string);
1241 oldflags = info->info21.acct_flags;
1242 newflags = info->info21.acct_flags;
1244 HANDLEFLG("disabled", DISABLED);
1245 HANDLEFLG("pwnotreq", PWNOTREQ);
1246 HANDLEFLG("autolock", AUTOLOCK);
1247 HANDLEFLG("pwnoexp", PWNOEXP);
1250 d_printf("%s's %s flag: %s\n", username, ctx->thiscmd, oldval);
1254 ZERO_STRUCT(info->info21);
1256 info->info21.acct_flags = newflags;
1257 info->info21.fields_present = SAMR_FIELD_ACCT_FLAGS;
1259 result = rpccli_samr_SetUserInfo(pipe_hnd, mem_ctx,
1264 if (NT_STATUS_IS_OK(result)) {
1265 d_printf("Set %s's %s flag from [%s] to [%s]\n", username,
1266 ctx->thiscmd, oldval, argv[0]);
1274 static NTSTATUS rpc_sh_user_flag_edit(struct net_context *c,
1275 TALLOC_CTX *mem_ctx,
1276 struct rpc_sh_ctx *ctx,
1277 struct rpc_pipe_client *pipe_hnd,
1278 int argc, const char **argv)
1280 return rpc_sh_handle_user(c, mem_ctx, ctx, pipe_hnd, argc, argv,
1281 rpc_sh_user_flag_edit_internals);
1284 struct rpc_sh_cmd *net_rpc_user_edit_cmds(struct net_context *c,
1285 TALLOC_CTX *mem_ctx,
1286 struct rpc_sh_ctx *ctx)
1288 static struct rpc_sh_cmd cmds[] = {
1290 { "fullname", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1291 "Show/Set a user's full name" },
1293 { "homedir", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1294 "Show/Set a user's home directory" },
1296 { "homedrive", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1297 "Show/Set a user's home drive" },
1299 { "logonscript", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1300 "Show/Set a user's logon script" },
1302 { "profilepath", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1303 "Show/Set a user's profile path" },
1305 { "description", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1306 "Show/Set a user's description" },
1308 { "disabled", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_flag_edit,
1309 "Show/Set whether a user is disabled" },
1311 { "autolock", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_flag_edit,
1312 "Show/Set whether a user locked out" },
1314 { "pwnotreq", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_flag_edit,
1315 "Show/Set whether a user does not need a password" },
1317 { "pwnoexp", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_flag_edit,
1318 "Show/Set whether a user's password does not expire" },
1320 { NULL, NULL, 0, NULL, NULL }
1326 struct rpc_sh_cmd *net_rpc_user_cmds(struct net_context *c,
1327 TALLOC_CTX *mem_ctx,
1328 struct rpc_sh_ctx *ctx)
1330 static struct rpc_sh_cmd cmds[] = {
1332 { "list", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_list,
1333 "List available users" },
1335 { "info", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_info,
1336 "List the domain groups a user is member of" },
1338 { "show", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_show,
1339 "Show info about a user" },
1341 { "edit", net_rpc_user_edit_cmds, 0, NULL,
1342 "Show/Modify a user's fields" },
1344 { NULL, NULL, 0, NULL, NULL }
1350 /****************************************************************************/
1353 * Basic usage function for 'net rpc group'.
1354 * @param argc Standard main() style argc.
1355 * @param argv Standard main() style argv. Initial components are already
1359 static int rpc_group_usage(struct net_context *c, int argc, const char **argv)
1361 return net_group_usage(c, argc, argv);
1365 * Delete group on a remote RPC server.
1367 * All parameters are provided by the run_rpc_command function, except for
1368 * argc, argv which are passed through.
1370 * @param domain_sid The domain sid acquired from the remote server.
1371 * @param cli A cli_state connected to the server.
1372 * @param mem_ctx Talloc context, destroyed on completion of the function.
1373 * @param argc Standard main() style argc.
1374 * @param argv Standard main() style argv. Initial components are already
1377 * @return Normal NTSTATUS return.
1380 static NTSTATUS rpc_group_delete_internals(struct net_context *c,
1381 const DOM_SID *domain_sid,
1382 const char *domain_name,
1383 struct cli_state *cli,
1384 struct rpc_pipe_client *pipe_hnd,
1385 TALLOC_CTX *mem_ctx,
1389 struct policy_handle connect_pol, domain_pol, group_pol, user_pol;
1390 bool group_is_primary = false;
1391 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1393 struct samr_RidTypeArray *rids = NULL;
1396 /* struct samr_RidWithAttribute *user_gids; */
1398 struct samr_Ids group_rids, name_types;
1399 struct lsa_String lsa_acct_name;
1400 union samr_UserInfo *info = NULL;
1402 if (argc < 1 || c->display_usage) {
1403 rpc_group_usage(c, argc,argv);
1404 return NT_STATUS_OK; /* ok? */
1407 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1409 MAXIMUM_ALLOWED_ACCESS,
1412 if (!NT_STATUS_IS_OK(result)) {
1413 d_fprintf(stderr, "Request samr_Connect2 failed\n");
1417 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1419 MAXIMUM_ALLOWED_ACCESS,
1420 CONST_DISCARD(struct dom_sid2 *, domain_sid),
1423 if (!NT_STATUS_IS_OK(result)) {
1424 d_fprintf(stderr, "Request open_domain failed\n");
1428 init_lsa_String(&lsa_acct_name, argv[0]);
1430 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
1436 if (!NT_STATUS_IS_OK(result)) {
1437 d_fprintf(stderr, "Lookup of '%s' failed\n",argv[0]);
1441 switch (name_types.ids[0])
1443 case SID_NAME_DOM_GRP:
1444 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
1446 MAXIMUM_ALLOWED_ACCESS,
1449 if (!NT_STATUS_IS_OK(result)) {
1450 d_fprintf(stderr, "Request open_group failed");
1454 group_rid = group_rids.ids[0];
1456 result = rpccli_samr_QueryGroupMember(pipe_hnd, mem_ctx,
1460 if (!NT_STATUS_IS_OK(result)) {
1461 d_fprintf(stderr, "Unable to query group members of %s",argv[0]);
1465 if (c->opt_verbose) {
1466 d_printf("Domain Group %s (rid: %d) has %d members\n",
1467 argv[0],group_rid, rids->count);
1470 /* Check if group is anyone's primary group */
1471 for (i = 0; i < rids->count; i++)
1473 result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
1475 MAXIMUM_ALLOWED_ACCESS,
1479 if (!NT_STATUS_IS_OK(result)) {
1480 d_fprintf(stderr, "Unable to open group member %d\n",
1485 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1490 if (!NT_STATUS_IS_OK(result)) {
1491 d_fprintf(stderr, "Unable to lookup userinfo for group member %d\n",
1496 if (info->info21.primary_gid == group_rid) {
1497 if (c->opt_verbose) {
1498 d_printf("Group is primary group of %s\n",
1499 info->info21.account_name.string);
1501 group_is_primary = true;
1504 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
1507 if (group_is_primary) {
1508 d_fprintf(stderr, "Unable to delete group because some "
1509 "of it's members have it as primary group\n");
1510 result = NT_STATUS_MEMBERS_PRIMARY_GROUP;
1514 /* remove all group members */
1515 for (i = 0; i < rids->count; i++)
1518 d_printf("Remove group member %d...",
1520 result = rpccli_samr_DeleteGroupMember(pipe_hnd, mem_ctx,
1524 if (NT_STATUS_IS_OK(result)) {
1529 d_printf("failed\n");
1534 result = rpccli_samr_DeleteDomainGroup(pipe_hnd, mem_ctx,
1538 /* removing a local group is easier... */
1539 case SID_NAME_ALIAS:
1540 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
1542 MAXIMUM_ALLOWED_ACCESS,
1546 if (!NT_STATUS_IS_OK(result)) {
1547 d_fprintf(stderr, "Request open_alias failed\n");
1551 result = rpccli_samr_DeleteDomAlias(pipe_hnd, mem_ctx,
1555 d_fprintf(stderr, "%s is of type %s. This command is only for deleting local or global groups\n",
1556 argv[0],sid_type_lookup(name_types.ids[0]));
1557 result = NT_STATUS_UNSUCCESSFUL;
1561 if (NT_STATUS_IS_OK(result)) {
1563 d_printf("Deleted %s '%s'\n",sid_type_lookup(name_types.ids[0]),argv[0]);
1565 d_fprintf(stderr, "Deleting of %s failed: %s\n",argv[0],
1566 get_friendly_nt_error_msg(result));
1574 static int rpc_group_delete(struct net_context *c, int argc, const char **argv)
1576 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
1577 rpc_group_delete_internals, argc,argv);
1580 static int rpc_group_add_internals(struct net_context *c, int argc, const char **argv)
1582 NET_API_STATUS status;
1583 struct GROUP_INFO_1 info1;
1584 uint32_t parm_error = 0;
1586 if (argc != 1 || c->display_usage) {
1587 rpc_group_usage(c, argc, argv);
1593 info1.grpi1_name = argv[0];
1594 if (c->opt_comment && strlen(c->opt_comment) > 0) {
1595 info1.grpi1_comment = c->opt_comment;
1598 status = NetGroupAdd(c->opt_host, 1, (uint8_t *)&info1, &parm_error);
1601 d_fprintf(stderr, "Failed to add group '%s' with: %s.\n",
1602 argv[0], libnetapi_get_error_string(c->netapi_ctx,
1606 d_printf("Added group '%s'.\n", argv[0]);
1612 static int rpc_alias_add_internals(struct net_context *c, int argc, const char **argv)
1614 NET_API_STATUS status;
1615 struct LOCALGROUP_INFO_1 info1;
1616 uint32_t parm_error = 0;
1618 if (argc != 1 || c->display_usage) {
1619 rpc_group_usage(c, argc, argv);
1625 info1.lgrpi1_name = argv[0];
1626 if (c->opt_comment && strlen(c->opt_comment) > 0) {
1627 info1.lgrpi1_comment = c->opt_comment;
1630 status = NetLocalGroupAdd(c->opt_host, 1, (uint8_t *)&info1, &parm_error);
1633 d_fprintf(stderr, "Failed to add alias '%s' with: %s.\n",
1634 argv[0], libnetapi_get_error_string(c->netapi_ctx,
1638 d_printf("Added alias '%s'.\n", argv[0]);
1644 static int rpc_group_add(struct net_context *c, int argc, const char **argv)
1646 if (c->opt_localgroup)
1647 return rpc_alias_add_internals(c, argc, argv);
1649 return rpc_group_add_internals(c, argc, argv);
1652 static NTSTATUS get_sid_from_name(struct cli_state *cli,
1653 TALLOC_CTX *mem_ctx,
1656 enum lsa_SidType *type)
1658 DOM_SID *sids = NULL;
1659 enum lsa_SidType *types = NULL;
1660 struct rpc_pipe_client *pipe_hnd = NULL;
1661 struct policy_handle lsa_pol;
1662 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1664 result = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
1666 if (!NT_STATUS_IS_OK(result)) {
1670 result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, false,
1671 SEC_FLAG_MAXIMUM_ALLOWED, &lsa_pol);
1673 if (!NT_STATUS_IS_OK(result)) {
1677 result = rpccli_lsa_lookup_names(pipe_hnd, mem_ctx, &lsa_pol, 1,
1678 &name, NULL, 1, &sids, &types);
1680 if (NT_STATUS_IS_OK(result)) {
1681 sid_copy(sid, &sids[0]);
1685 rpccli_lsa_Close(pipe_hnd, mem_ctx, &lsa_pol);
1689 TALLOC_FREE(pipe_hnd);
1692 if (!NT_STATUS_IS_OK(result) && (StrnCaseCmp(name, "S-", 2) == 0)) {
1694 /* Try as S-1-5-whatever */
1698 if (string_to_sid(&tmp_sid, name)) {
1699 sid_copy(sid, &tmp_sid);
1700 *type = SID_NAME_UNKNOWN;
1701 result = NT_STATUS_OK;
1708 static NTSTATUS rpc_add_groupmem(struct rpc_pipe_client *pipe_hnd,
1709 TALLOC_CTX *mem_ctx,
1710 const DOM_SID *group_sid,
1713 struct policy_handle connect_pol, domain_pol;
1716 struct policy_handle group_pol;
1718 struct samr_Ids rids, rid_types;
1719 struct lsa_String lsa_acct_name;
1723 sid_copy(&sid, group_sid);
1725 if (!sid_split_rid(&sid, &group_rid)) {
1726 return NT_STATUS_UNSUCCESSFUL;
1729 /* Get sam policy handle */
1730 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1732 MAXIMUM_ALLOWED_ACCESS,
1734 if (!NT_STATUS_IS_OK(result)) {
1738 /* Get domain policy handle */
1739 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1741 MAXIMUM_ALLOWED_ACCESS,
1744 if (!NT_STATUS_IS_OK(result)) {
1748 init_lsa_String(&lsa_acct_name, member);
1750 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
1757 if (!NT_STATUS_IS_OK(result)) {
1758 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
1762 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
1764 MAXIMUM_ALLOWED_ACCESS,
1768 if (!NT_STATUS_IS_OK(result)) {
1772 result = rpccli_samr_AddGroupMember(pipe_hnd, mem_ctx,
1775 0x0005); /* unknown flags */
1778 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1782 static NTSTATUS rpc_add_aliasmem(struct rpc_pipe_client *pipe_hnd,
1783 TALLOC_CTX *mem_ctx,
1784 const DOM_SID *alias_sid,
1787 struct policy_handle connect_pol, domain_pol;
1790 struct policy_handle alias_pol;
1793 enum lsa_SidType member_type;
1797 sid_copy(&sid, alias_sid);
1799 if (!sid_split_rid(&sid, &alias_rid)) {
1800 return NT_STATUS_UNSUCCESSFUL;
1803 result = get_sid_from_name(rpc_pipe_np_smb_conn(pipe_hnd), mem_ctx,
1804 member, &member_sid, &member_type);
1806 if (!NT_STATUS_IS_OK(result)) {
1807 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
1811 /* Get sam policy handle */
1812 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1814 MAXIMUM_ALLOWED_ACCESS,
1816 if (!NT_STATUS_IS_OK(result)) {
1820 /* Get domain policy handle */
1821 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1823 MAXIMUM_ALLOWED_ACCESS,
1826 if (!NT_STATUS_IS_OK(result)) {
1830 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
1832 MAXIMUM_ALLOWED_ACCESS,
1836 if (!NT_STATUS_IS_OK(result)) {
1840 result = rpccli_samr_AddAliasMember(pipe_hnd, mem_ctx,
1844 if (!NT_STATUS_IS_OK(result)) {
1849 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1853 static NTSTATUS rpc_group_addmem_internals(struct net_context *c,
1854 const DOM_SID *domain_sid,
1855 const char *domain_name,
1856 struct cli_state *cli,
1857 struct rpc_pipe_client *pipe_hnd,
1858 TALLOC_CTX *mem_ctx,
1863 enum lsa_SidType group_type;
1865 if (argc != 2 || c->display_usage) {
1867 "net rpc group addmem <group> <member>\n"
1868 " Add a member to a group\n"
1869 " group\tGroup to add member to\n"
1870 " member\tMember to add to group\n");
1871 return NT_STATUS_UNSUCCESSFUL;
1874 if (!NT_STATUS_IS_OK(get_sid_from_name(cli, mem_ctx, argv[0],
1875 &group_sid, &group_type))) {
1876 d_fprintf(stderr, "Could not lookup group name %s\n", argv[0]);
1877 return NT_STATUS_UNSUCCESSFUL;
1880 if (group_type == SID_NAME_DOM_GRP) {
1881 NTSTATUS result = rpc_add_groupmem(pipe_hnd, mem_ctx,
1882 &group_sid, argv[1]);
1884 if (!NT_STATUS_IS_OK(result)) {
1885 d_fprintf(stderr, "Could not add %s to %s: %s\n",
1886 argv[1], argv[0], nt_errstr(result));
1891 if (group_type == SID_NAME_ALIAS) {
1892 NTSTATUS result = rpc_add_aliasmem(pipe_hnd, mem_ctx,
1893 &group_sid, argv[1]);
1895 if (!NT_STATUS_IS_OK(result)) {
1896 d_fprintf(stderr, "Could not add %s to %s: %s\n",
1897 argv[1], argv[0], nt_errstr(result));
1902 d_fprintf(stderr, "Can only add members to global or local groups "
1903 "which %s is not\n", argv[0]);
1905 return NT_STATUS_UNSUCCESSFUL;
1908 static int rpc_group_addmem(struct net_context *c, int argc, const char **argv)
1910 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
1911 rpc_group_addmem_internals,
1915 static NTSTATUS rpc_del_groupmem(struct net_context *c,
1916 struct rpc_pipe_client *pipe_hnd,
1917 TALLOC_CTX *mem_ctx,
1918 const DOM_SID *group_sid,
1921 struct policy_handle connect_pol, domain_pol;
1924 struct policy_handle group_pol;
1926 struct samr_Ids rids, rid_types;
1927 struct lsa_String lsa_acct_name;
1931 sid_copy(&sid, group_sid);
1933 if (!sid_split_rid(&sid, &group_rid))
1934 return NT_STATUS_UNSUCCESSFUL;
1936 /* Get sam policy handle */
1937 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1939 MAXIMUM_ALLOWED_ACCESS,
1941 if (!NT_STATUS_IS_OK(result))
1944 /* Get domain policy handle */
1945 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1947 MAXIMUM_ALLOWED_ACCESS,
1950 if (!NT_STATUS_IS_OK(result))
1953 init_lsa_String(&lsa_acct_name, member);
1955 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
1961 if (!NT_STATUS_IS_OK(result)) {
1962 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
1966 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
1968 MAXIMUM_ALLOWED_ACCESS,
1972 if (!NT_STATUS_IS_OK(result))
1975 result = rpccli_samr_DeleteGroupMember(pipe_hnd, mem_ctx,
1980 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1984 static NTSTATUS rpc_del_aliasmem(struct rpc_pipe_client *pipe_hnd,
1985 TALLOC_CTX *mem_ctx,
1986 const DOM_SID *alias_sid,
1989 struct policy_handle connect_pol, domain_pol;
1992 struct policy_handle alias_pol;
1995 enum lsa_SidType member_type;
1999 sid_copy(&sid, alias_sid);
2001 if (!sid_split_rid(&sid, &alias_rid))
2002 return NT_STATUS_UNSUCCESSFUL;
2004 result = get_sid_from_name(rpc_pipe_np_smb_conn(pipe_hnd), mem_ctx,
2005 member, &member_sid, &member_type);
2007 if (!NT_STATUS_IS_OK(result)) {
2008 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
2012 /* Get sam policy handle */
2013 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2015 MAXIMUM_ALLOWED_ACCESS,
2017 if (!NT_STATUS_IS_OK(result)) {
2021 /* Get domain policy handle */
2022 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2024 MAXIMUM_ALLOWED_ACCESS,
2027 if (!NT_STATUS_IS_OK(result)) {
2031 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2033 MAXIMUM_ALLOWED_ACCESS,
2037 if (!NT_STATUS_IS_OK(result))
2040 result = rpccli_samr_DeleteAliasMember(pipe_hnd, mem_ctx,
2044 if (!NT_STATUS_IS_OK(result))
2048 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
2052 static NTSTATUS rpc_group_delmem_internals(struct net_context *c,
2053 const DOM_SID *domain_sid,
2054 const char *domain_name,
2055 struct cli_state *cli,
2056 struct rpc_pipe_client *pipe_hnd,
2057 TALLOC_CTX *mem_ctx,
2062 enum lsa_SidType group_type;
2064 if (argc != 2 || c->display_usage) {
2066 "net rpc group delmem <group> <member>\n"
2067 " Delete a member from a group\n"
2068 " group\tGroup to delete member from\n"
2069 " member\tMember to delete from group\n");
2070 return NT_STATUS_UNSUCCESSFUL;
2073 if (!NT_STATUS_IS_OK(get_sid_from_name(cli, mem_ctx, argv[0],
2074 &group_sid, &group_type))) {
2075 d_fprintf(stderr, "Could not lookup group name %s\n", argv[0]);
2076 return NT_STATUS_UNSUCCESSFUL;
2079 if (group_type == SID_NAME_DOM_GRP) {
2080 NTSTATUS result = rpc_del_groupmem(c, pipe_hnd, mem_ctx,
2081 &group_sid, argv[1]);
2083 if (!NT_STATUS_IS_OK(result)) {
2084 d_fprintf(stderr, "Could not del %s from %s: %s\n",
2085 argv[1], argv[0], nt_errstr(result));
2090 if (group_type == SID_NAME_ALIAS) {
2091 NTSTATUS result = rpc_del_aliasmem(pipe_hnd, mem_ctx,
2092 &group_sid, argv[1]);
2094 if (!NT_STATUS_IS_OK(result)) {
2095 d_fprintf(stderr, "Could not del %s from %s: %s\n",
2096 argv[1], argv[0], nt_errstr(result));
2101 d_fprintf(stderr, "Can only delete members from global or local groups "
2102 "which %s is not\n", argv[0]);
2104 return NT_STATUS_UNSUCCESSFUL;
2107 static int rpc_group_delmem(struct net_context *c, int argc, const char **argv)
2109 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
2110 rpc_group_delmem_internals,
2115 * List groups on a remote RPC server.
2117 * All parameters are provided by the run_rpc_command function, except for
2118 * argc, argv which are passes through.
2120 * @param domain_sid The domain sid acquired from the remote server.
2121 * @param cli A cli_state connected to the server.
2122 * @param mem_ctx Talloc context, destroyed on completion of the function.
2123 * @param argc Standard main() style argc.
2124 * @param argv Standard main() style argv. Initial components are already
2127 * @return Normal NTSTATUS return.
2130 static NTSTATUS rpc_group_list_internals(struct net_context *c,
2131 const DOM_SID *domain_sid,
2132 const char *domain_name,
2133 struct cli_state *cli,
2134 struct rpc_pipe_client *pipe_hnd,
2135 TALLOC_CTX *mem_ctx,
2139 struct policy_handle connect_pol, domain_pol;
2140 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2141 uint32 start_idx=0, max_entries=250, num_entries, i, loop_count = 0;
2142 struct samr_SamArray *groups = NULL;
2143 bool global = false;
2145 bool builtin = false;
2147 if (c->display_usage) {
2149 "net rpc group list [global] [local] [builtin]\n"
2150 " List groups on RPC server\n"
2151 " global\tList global groups\n"
2152 " local\tList local groups\n"
2153 " builtin\tList builtin groups\n"
2154 " If none of global, local or builtin is "
2155 "specified, all three options are considered set\n");
2156 return NT_STATUS_OK;
2165 for (i=0; i<argc; i++) {
2166 if (strequal(argv[i], "global"))
2169 if (strequal(argv[i], "local"))
2172 if (strequal(argv[i], "builtin"))
2176 /* Get sam policy handle */
2178 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2180 MAXIMUM_ALLOWED_ACCESS,
2182 if (!NT_STATUS_IS_OK(result)) {
2186 /* Get domain policy handle */
2188 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2190 MAXIMUM_ALLOWED_ACCESS,
2191 CONST_DISCARD(struct dom_sid2 *, domain_sid),
2193 if (!NT_STATUS_IS_OK(result)) {
2197 /* Query domain groups */
2198 if (c->opt_long_list_entries)
2199 d_printf("\nGroup name Comment"
2200 "\n-----------------------------\n");
2202 uint32_t max_size, total_size, returned_size;
2203 union samr_DispInfo info;
2207 get_query_dispinfo_params(
2208 loop_count, &max_entries, &max_size);
2210 result = rpccli_samr_QueryDisplayInfo(pipe_hnd, mem_ctx,
2219 num_entries = info.info3.count;
2220 start_idx += info.info3.count;
2222 if (!NT_STATUS_IS_OK(result) &&
2223 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2226 for (i = 0; i < num_entries; i++) {
2228 const char *group = NULL;
2229 const char *desc = NULL;
2231 group = info.info3.entries[i].account_name.string;
2232 desc = info.info3.entries[i].description.string;
2234 if (c->opt_long_list_entries)
2235 printf("%-21.21s %-50.50s\n",
2238 printf("%s\n", group);
2240 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2241 /* query domain aliases */
2246 result = rpccli_samr_EnumDomainAliases(pipe_hnd, mem_ctx,
2252 if (!NT_STATUS_IS_OK(result) &&
2253 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2256 for (i = 0; i < num_entries; i++) {
2258 const char *description = NULL;
2260 if (c->opt_long_list_entries) {
2262 struct policy_handle alias_pol;
2263 union samr_AliasInfo *info = NULL;
2265 if ((NT_STATUS_IS_OK(rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2268 groups->entries[i].idx,
2270 (NT_STATUS_IS_OK(rpccli_samr_QueryAliasInfo(pipe_hnd, mem_ctx,
2274 (NT_STATUS_IS_OK(rpccli_samr_Close(pipe_hnd, mem_ctx,
2276 description = info->description.string;
2280 if (description != NULL) {
2281 printf("%-21.21s %-50.50s\n",
2282 groups->entries[i].name.string,
2285 printf("%s\n", groups->entries[i].name.string);
2288 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2289 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
2290 /* Get builtin policy handle */
2292 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2294 MAXIMUM_ALLOWED_ACCESS,
2295 CONST_DISCARD(struct dom_sid2 *, &global_sid_Builtin),
2297 if (!NT_STATUS_IS_OK(result)) {
2300 /* query builtin aliases */
2303 if (!builtin) break;
2305 result = rpccli_samr_EnumDomainAliases(pipe_hnd, mem_ctx,
2311 if (!NT_STATUS_IS_OK(result) &&
2312 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2315 for (i = 0; i < num_entries; i++) {
2317 const char *description = NULL;
2319 if (c->opt_long_list_entries) {
2321 struct policy_handle alias_pol;
2322 union samr_AliasInfo *info = NULL;
2324 if ((NT_STATUS_IS_OK(rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2327 groups->entries[i].idx,
2329 (NT_STATUS_IS_OK(rpccli_samr_QueryAliasInfo(pipe_hnd, mem_ctx,
2333 (NT_STATUS_IS_OK(rpccli_samr_Close(pipe_hnd, mem_ctx,
2335 description = info->description.string;
2339 if (description != NULL) {
2340 printf("%-21.21s %-50.50s\n",
2341 groups->entries[i].name.string,
2344 printf("%s\n", groups->entries[i].name.string);
2347 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2353 static int rpc_group_list(struct net_context *c, int argc, const char **argv)
2355 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
2356 rpc_group_list_internals,
2360 static NTSTATUS rpc_list_group_members(struct net_context *c,
2361 struct rpc_pipe_client *pipe_hnd,
2362 TALLOC_CTX *mem_ctx,
2363 const char *domain_name,
2364 const DOM_SID *domain_sid,
2365 struct policy_handle *domain_pol,
2369 struct policy_handle group_pol;
2370 uint32 num_members, *group_rids;
2372 struct samr_RidTypeArray *rids = NULL;
2373 struct lsa_Strings names;
2374 struct samr_Ids types;
2377 sid_to_fstring(sid_str, domain_sid);
2379 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
2381 MAXIMUM_ALLOWED_ACCESS,
2385 if (!NT_STATUS_IS_OK(result))
2388 result = rpccli_samr_QueryGroupMember(pipe_hnd, mem_ctx,
2392 if (!NT_STATUS_IS_OK(result))
2395 num_members = rids->count;
2396 group_rids = rids->rids;
2398 while (num_members > 0) {
2399 int this_time = 512;
2401 if (num_members < this_time)
2402 this_time = num_members;
2404 result = rpccli_samr_LookupRids(pipe_hnd, mem_ctx,
2411 if (!NT_STATUS_IS_OK(result))
2414 /* We only have users as members, but make the output
2415 the same as the output of alias members */
2417 for (i = 0; i < this_time; i++) {
2419 if (c->opt_long_list_entries) {
2420 printf("%s-%d %s\\%s %d\n", sid_str,
2421 group_rids[i], domain_name,
2422 names.names[i].string,
2425 printf("%s\\%s\n", domain_name,
2426 names.names[i].string);
2430 num_members -= this_time;
2434 return NT_STATUS_OK;
2437 static NTSTATUS rpc_list_alias_members(struct net_context *c,
2438 struct rpc_pipe_client *pipe_hnd,
2439 TALLOC_CTX *mem_ctx,
2440 struct policy_handle *domain_pol,
2444 struct rpc_pipe_client *lsa_pipe;
2445 struct policy_handle alias_pol, lsa_pol;
2447 DOM_SID *alias_sids;
2450 enum lsa_SidType *types;
2452 struct lsa_SidArray sid_array;
2454 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2456 MAXIMUM_ALLOWED_ACCESS,
2460 if (!NT_STATUS_IS_OK(result))
2463 result = rpccli_samr_GetMembersInAlias(pipe_hnd, mem_ctx,
2467 if (!NT_STATUS_IS_OK(result)) {
2468 d_fprintf(stderr, "Couldn't list alias members\n");
2472 num_members = sid_array.num_sids;
2474 if (num_members == 0) {
2475 return NT_STATUS_OK;
2478 result = cli_rpc_pipe_open_noauth(rpc_pipe_np_smb_conn(pipe_hnd),
2479 &ndr_table_lsarpc.syntax_id,
2481 if (!NT_STATUS_IS_OK(result)) {
2482 d_fprintf(stderr, "Couldn't open LSA pipe. Error was %s\n",
2483 nt_errstr(result) );
2487 result = rpccli_lsa_open_policy(lsa_pipe, mem_ctx, true,
2488 SEC_FLAG_MAXIMUM_ALLOWED, &lsa_pol);
2490 if (!NT_STATUS_IS_OK(result)) {
2491 d_fprintf(stderr, "Couldn't open LSA policy handle\n");
2492 TALLOC_FREE(lsa_pipe);
2496 alias_sids = TALLOC_ZERO_ARRAY(mem_ctx, DOM_SID, num_members);
2498 d_fprintf(stderr, "Out of memory\n");
2499 TALLOC_FREE(lsa_pipe);
2500 return NT_STATUS_NO_MEMORY;
2503 for (i=0; i<num_members; i++) {
2504 sid_copy(&alias_sids[i], sid_array.sids[i].sid);
2507 result = rpccli_lsa_lookup_sids(lsa_pipe, mem_ctx, &lsa_pol,
2508 num_members, alias_sids,
2509 &domains, &names, &types);
2511 if (!NT_STATUS_IS_OK(result) &&
2512 !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED)) {
2513 d_fprintf(stderr, "Couldn't lookup SIDs\n");
2514 TALLOC_FREE(lsa_pipe);
2518 for (i = 0; i < num_members; i++) {
2520 sid_to_fstring(sid_str, &alias_sids[i]);
2522 if (c->opt_long_list_entries) {
2523 printf("%s %s\\%s %d\n", sid_str,
2524 domains[i] ? domains[i] : "*unknown*",
2525 names[i] ? names[i] : "*unknown*", types[i]);
2528 printf("%s\\%s\n", domains[i], names[i]);
2530 printf("%s\n", sid_str);
2534 TALLOC_FREE(lsa_pipe);
2535 return NT_STATUS_OK;
2538 static NTSTATUS rpc_group_members_internals(struct net_context *c,
2539 const DOM_SID *domain_sid,
2540 const char *domain_name,
2541 struct cli_state *cli,
2542 struct rpc_pipe_client *pipe_hnd,
2543 TALLOC_CTX *mem_ctx,
2548 struct policy_handle connect_pol, domain_pol;
2549 struct samr_Ids rids, rid_types;
2550 struct lsa_String lsa_acct_name;
2552 /* Get sam policy handle */
2554 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2556 MAXIMUM_ALLOWED_ACCESS,
2559 if (!NT_STATUS_IS_OK(result))
2562 /* Get domain policy handle */
2564 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2566 MAXIMUM_ALLOWED_ACCESS,
2567 CONST_DISCARD(struct dom_sid2 *, domain_sid),
2570 if (!NT_STATUS_IS_OK(result))
2573 init_lsa_String(&lsa_acct_name, argv[0]); /* sure? */
2575 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
2582 if (!NT_STATUS_IS_OK(result)) {
2584 /* Ok, did not find it in the global sam, try with builtin */
2586 DOM_SID sid_Builtin;
2588 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
2590 sid_copy(&sid_Builtin, &global_sid_Builtin);
2592 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2594 MAXIMUM_ALLOWED_ACCESS,
2598 if (!NT_STATUS_IS_OK(result)) {
2599 d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2603 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
2610 if (!NT_STATUS_IS_OK(result)) {
2611 d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2616 if (rids.count != 1) {
2617 d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2621 if (rid_types.ids[0] == SID_NAME_DOM_GRP) {
2622 return rpc_list_group_members(c, pipe_hnd, mem_ctx, domain_name,
2623 domain_sid, &domain_pol,
2627 if (rid_types.ids[0] == SID_NAME_ALIAS) {
2628 return rpc_list_alias_members(c, pipe_hnd, mem_ctx, &domain_pol,
2632 return NT_STATUS_NO_SUCH_GROUP;
2635 static int rpc_group_members(struct net_context *c, int argc, const char **argv)
2637 if (argc != 1 || c->display_usage) {
2638 return rpc_group_usage(c, argc, argv);
2641 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
2642 rpc_group_members_internals,
2646 static int rpc_group_rename_internals(struct net_context *c, int argc, const char **argv)
2648 NET_API_STATUS status;
2649 struct GROUP_INFO_0 g0;
2653 d_printf("Usage: 'net rpc group rename group newname'\n");
2657 g0.grpi0_name = argv[1];
2659 status = NetGroupSetInfo(c->opt_host,
2666 d_fprintf(stderr, "Renaming group %s failed with: %s\n",
2667 argv[0], libnetapi_get_error_string(c->netapi_ctx,
2675 static int rpc_group_rename(struct net_context *c, int argc, const char **argv)
2677 if (argc != 2 || c->display_usage) {
2678 return rpc_group_usage(c, argc, argv);
2681 return rpc_group_rename_internals(c, argc, argv);
2685 * 'net rpc group' entrypoint.
2686 * @param argc Standard main() style argc.
2687 * @param argv Standard main() style argv. Initial components are already
2691 int net_rpc_group(struct net_context *c, int argc, const char **argv)
2693 NET_API_STATUS status;
2695 struct functable func[] = {
2700 "Create specified group",
2701 "net rpc group add\n"
2702 " Create specified group"
2708 "Delete specified group",
2709 "net rpc group delete\n"
2710 " Delete specified group"
2716 "Add member to group",
2717 "net rpc group addmem\n"
2718 " Add member to group"
2724 "Remove member from group",
2725 "net rpc group delmem\n"
2726 " Remove member from group"
2733 "net rpc group list\n"
2740 "List group members",
2741 "net rpc group members\n"
2742 " List group members"
2749 "net rpc group rename\n"
2752 {NULL, NULL, 0, NULL, NULL}
2755 status = libnetapi_init(&c->netapi_ctx);
2759 libnetapi_set_username(c->netapi_ctx, c->opt_user_name);
2760 libnetapi_set_password(c->netapi_ctx, c->opt_password);
2761 if (c->opt_kerberos) {
2762 libnetapi_set_use_kerberos(c->netapi_ctx);
2766 if (c->display_usage) {
2767 d_printf("Usage:\n");
2768 d_printf("net rpc group\n"
2769 " Alias for net rpc group list global local "
2771 net_display_usage_from_functable(func);
2775 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
2776 rpc_group_list_internals,
2780 return net_run_function(c, argc, argv, "net rpc group", func);
2783 /****************************************************************************/
2785 static int rpc_share_usage(struct net_context *c, int argc, const char **argv)
2787 return net_share_usage(c, argc, argv);
2791 * Add a share on a remote RPC server.
2793 * @param argc Standard main() style argc.
2794 * @param argv Standard main() style argv. Initial components are already
2797 * @return A shell status integer (0 for success).
2800 static int rpc_share_add(struct net_context *c, int argc, const char **argv)
2802 NET_API_STATUS status;
2805 uint32 type = STYPE_DISKTREE; /* only allow disk shares to be added */
2806 uint32 num_users=0, perms=0;
2807 char *password=NULL; /* don't allow a share password */
2808 struct SHARE_INFO_2 i2;
2809 uint32_t parm_error = 0;
2811 if ((argc < 1) || !strchr(argv[0], '=') || c->display_usage) {
2812 return rpc_share_usage(c, argc, argv);
2815 if ((sharename = talloc_strdup(c, argv[0])) == NULL) {
2819 path = strchr(sharename, '=');
2826 i2.shi2_netname = sharename;
2827 i2.shi2_type = type;
2828 i2.shi2_remark = c->opt_comment;
2829 i2.shi2_permissions = perms;
2830 i2.shi2_max_uses = c->opt_maxusers;
2831 i2.shi2_current_uses = num_users;
2832 i2.shi2_path = path;
2833 i2.shi2_passwd = password;
2835 status = NetShareAdd(c->opt_host,
2840 printf("NetShareAdd failed with: %s\n",
2841 libnetapi_get_error_string(c->netapi_ctx, status));
2848 * Delete a share on a remote RPC server.
2850 * @param domain_sid The domain sid acquired from the remote server.
2851 * @param argc Standard main() style argc.
2852 * @param argv Standard main() style argv. Initial components are already
2855 * @return A shell status integer (0 for success).
2857 static int rpc_share_delete(struct net_context *c, int argc, const char **argv)
2859 if (argc < 1 || c->display_usage) {
2860 return rpc_share_usage(c, argc, argv);
2863 return NetShareDel(c->opt_host, argv[0], 0);
2867 * Formatted print of share info
2869 * @param r pointer to SHARE_INFO_1 to format
2872 static void display_share_info_1(struct net_context *c,
2873 struct SHARE_INFO_1 *r)
2875 if (c->opt_long_list_entries) {
2876 d_printf("%-12s %-8.8s %-50s\n",
2878 net_share_type_str(r->shi1_type & ~(STYPE_TEMPORARY|STYPE_HIDDEN)),
2881 d_printf("%s\n", r->shi1_netname);
2885 static WERROR get_share_info(struct net_context *c,
2886 struct rpc_pipe_client *pipe_hnd,
2887 TALLOC_CTX *mem_ctx,
2891 struct srvsvc_NetShareInfoCtr *info_ctr)
2895 union srvsvc_NetShareInfo info;
2897 /* no specific share requested, enumerate all */
2900 uint32_t preferred_len = 0xffffffff;
2901 uint32_t total_entries = 0;
2902 uint32_t resume_handle = 0;
2904 info_ctr->level = level;
2906 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, mem_ctx,
2916 /* request just one share */
2917 status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
2924 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
2929 ZERO_STRUCTP(info_ctr);
2931 info_ctr->level = level;
2936 struct srvsvc_NetShareCtr1 *ctr1;
2938 ctr1 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr1);
2939 W_ERROR_HAVE_NO_MEMORY(ctr1);
2942 ctr1->array = info.info1;
2944 info_ctr->ctr.ctr1 = ctr1;
2948 struct srvsvc_NetShareCtr2 *ctr2;
2950 ctr2 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr2);
2951 W_ERROR_HAVE_NO_MEMORY(ctr2);
2954 ctr2->array = info.info2;
2956 info_ctr->ctr.ctr2 = ctr2;
2960 struct srvsvc_NetShareCtr502 *ctr502;
2962 ctr502 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr502);
2963 W_ERROR_HAVE_NO_MEMORY(ctr502);
2966 ctr502->array = info.info502;
2968 info_ctr->ctr.ctr502 = ctr502;
2976 * 'net rpc share list' entrypoint.
2977 * @param argc Standard main() style argc.
2978 * @param argv Standard main() style argv. Initial components are already
2981 static int rpc_share_list(struct net_context *c, int argc, const char **argv)
2983 NET_API_STATUS status;
2984 struct SHARE_INFO_1 *i1 = NULL;
2985 uint32_t entries_read = 0;
2986 uint32_t total_entries = 0;
2987 uint32_t resume_handle = 0;
2988 uint32_t i, level = 1;
2990 if (c->display_usage) {
2992 "net rpc share list\n"
2993 " List shares on remote server\n");
2997 status = NetShareEnum(c->opt_host,
2999 (uint8_t **)(void *)&i1,
3008 /* Display results */
3010 if (c->opt_long_list_entries) {
3012 "\nEnumerating shared resources (exports) on remote server:\n\n"
3013 "\nShare name Type Description\n"
3014 "---------- ---- -----------\n");
3016 for (i = 0; i < entries_read; i++)
3017 display_share_info_1(c, &i1[i]);
3022 static bool check_share_availability(struct cli_state *cli, const char *netname)
3024 if (!NT_STATUS_IS_OK(cli_tcon_andx(cli, netname, "A:", "", 0))) {
3025 d_printf("skipping [%s]: not a file share.\n", netname);
3035 static bool check_share_sanity(struct net_context *c, struct cli_state *cli,
3036 const char *netname, uint32 type)
3038 /* only support disk shares */
3039 if (! ( type == STYPE_DISKTREE || type == (STYPE_DISKTREE | STYPE_HIDDEN)) ) {
3040 printf("share [%s] is not a diskshare (type: %x)\n", netname, type);
3044 /* skip builtin shares */
3045 /* FIXME: should print$ be added too ? */
3046 if (strequal(netname,"IPC$") || strequal(netname,"ADMIN$") ||
3047 strequal(netname,"global"))
3050 if (c->opt_exclude && in_list(netname, c->opt_exclude, false)) {
3051 printf("excluding [%s]\n", netname);
3055 return check_share_availability(cli, netname);
3059 * Migrate shares from a remote RPC server to the local RPC server.
3061 * All parameters are provided by the run_rpc_command function, except for
3062 * argc, argv which are passed through.
3064 * @param domain_sid The domain sid acquired from the remote server.
3065 * @param cli A cli_state connected to the server.
3066 * @param mem_ctx Talloc context, destroyed on completion of the function.
3067 * @param argc Standard main() style argc.
3068 * @param argv Standard main() style argv. Initial components are already
3071 * @return Normal NTSTATUS return.
3074 static NTSTATUS rpc_share_migrate_shares_internals(struct net_context *c,
3075 const DOM_SID *domain_sid,
3076 const char *domain_name,
3077 struct cli_state *cli,
3078 struct rpc_pipe_client *pipe_hnd,
3079 TALLOC_CTX *mem_ctx,
3084 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
3085 struct srvsvc_NetShareInfoCtr ctr_src;
3087 struct rpc_pipe_client *srvsvc_pipe = NULL;
3088 struct cli_state *cli_dst = NULL;
3089 uint32 level = 502; /* includes secdesc */
3090 uint32_t parm_error = 0;
3092 result = get_share_info(c, pipe_hnd, mem_ctx, level, argc, argv,
3094 if (!W_ERROR_IS_OK(result))
3097 /* connect destination PI_SRVSVC */
3098 nt_status = connect_dst_pipe(c, &cli_dst, &srvsvc_pipe,
3099 &ndr_table_srvsvc.syntax_id);
3100 if (!NT_STATUS_IS_OK(nt_status))