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"
26 static int net_mode_share;
27 static bool sync_files(struct copy_clistate *cp_clistate, const char *mask);
32 * @brief RPC based subcommands for the 'net' utility.
34 * This file should contain much of the functionality that used to
35 * be found in rpcclient, execpt that the commands should change
36 * less often, and the fucntionality should be sane (the user is not
37 * expected to know a rid/sid before they conduct an operation etc.)
39 * @todo Perhaps eventually these should be split out into a number
40 * of files, as this could get quite big.
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 NTSTATUS net_get_remote_domain_sid(struct cli_state *cli, TALLOC_CTX *mem_ctx,
55 const char **domain_name)
57 struct rpc_pipe_client *lsa_pipe;
59 NTSTATUS result = NT_STATUS_OK;
60 union lsa_PolicyInformation *info = NULL;
62 result = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
64 if (!NT_STATUS_IS_OK(result)) {
65 d_fprintf(stderr, "Could not initialise lsa pipe\n");
69 result = rpccli_lsa_open_policy(lsa_pipe, mem_ctx, false,
70 SEC_RIGHTS_MAXIMUM_ALLOWED,
72 if (!NT_STATUS_IS_OK(result)) {
73 d_fprintf(stderr, "open_policy failed: %s\n",
78 result = rpccli_lsa_QueryInfoPolicy(lsa_pipe, mem_ctx,
80 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
82 if (!NT_STATUS_IS_OK(result)) {
83 d_fprintf(stderr, "lsaquery failed: %s\n",
88 *domain_name = info->account_domain.name.string;
89 *domain_sid = info->account_domain.sid;
91 rpccli_lsa_Close(lsa_pipe, mem_ctx, &pol);
92 TALLOC_FREE(lsa_pipe);
98 * Run a single RPC command, from start to finish.
100 * @param pipe_name the pipe to connect to (usually a PIPE_ constant)
101 * @param conn_flag a NET_FLAG_ combination. Passed to
102 * net_make_ipc_connection.
103 * @param argc Standard main() style argc.
104 * @param argv Standard main() style argv. Initial components are already
106 * @return A shell status integer (0 for success).
109 int run_rpc_command(struct net_context *c,
110 struct cli_state *cli_arg,
111 const struct ndr_syntax_id *interface,
117 struct cli_state *cli = NULL;
118 struct rpc_pipe_client *pipe_hnd = NULL;
122 const char *domain_name;
124 /* make use of cli_state handed over as an argument, if possible */
126 nt_status = net_make_ipc_connection(c, conn_flags, &cli);
127 if (!NT_STATUS_IS_OK(nt_status)) {
128 DEBUG(1, ("failed to make ipc connection: %s\n",
129 nt_errstr(nt_status)));
142 if (!(mem_ctx = talloc_init("run_rpc_command"))) {
143 DEBUG(0, ("talloc_init() failed\n"));
148 nt_status = net_get_remote_domain_sid(cli, mem_ctx, &domain_sid,
150 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) ));
171 if (conn_flags & NET_FLAGS_SEAL) {
172 nt_status = cli_rpc_pipe_open_ntlmssp(
174 PIPE_AUTH_LEVEL_PRIVACY,
175 lp_workgroup(), c->opt_user_name,
176 c->opt_password, &pipe_hnd);
178 nt_status = cli_rpc_pipe_open_noauth(
182 if (!NT_STATUS_IS_OK(nt_status)) {
183 DEBUG(0, ("Could not initialise pipe %s. Error was %s\n",
184 cli_get_pipe_name_from_iface(
185 debug_ctx(), cli, interface),
186 nt_errstr(nt_status) ));
193 nt_status = fn(c, domain_sid, domain_name, cli, pipe_hnd, mem_ctx, argc, argv);
195 if (!NT_STATUS_IS_OK(nt_status)) {
196 DEBUG(1, ("rpc command function failed! (%s)\n", nt_errstr(nt_status)));
198 DEBUG(5, ("rpc command function succedded\n"));
201 if (!(conn_flags & NET_FLAGS_NO_PIPE)) {
203 TALLOC_FREE(pipe_hnd);
207 /* close the connection only if it was opened here */
212 talloc_destroy(mem_ctx);
213 return (!NT_STATUS_IS_OK(nt_status));
217 * Force a change of the trust acccount password.
219 * All parameters are provided by the run_rpc_command function, except for
220 * argc, argv which are passed through.
222 * @param domain_sid The domain sid acquired from the remote server.
223 * @param cli A cli_state connected to the server.
224 * @param mem_ctx Talloc context, destroyed on completion of the function.
225 * @param argc Standard main() style argc.
226 * @param argv Standard main() style argv. Initial components are already
229 * @return Normal NTSTATUS return.
232 static NTSTATUS rpc_changetrustpw_internals(struct net_context *c,
233 const DOM_SID *domain_sid,
234 const char *domain_name,
235 struct cli_state *cli,
236 struct rpc_pipe_client *pipe_hnd,
242 return trust_pw_find_change_and_store_it(pipe_hnd, mem_ctx, c->opt_target_workgroup);
246 * Force a change of the trust acccount password.
248 * @param argc Standard main() style argc.
249 * @param argv Standard main() style argv. Initial components are already
252 * @return A shell status integer (0 for success).
255 int net_rpc_changetrustpw(struct net_context *c, int argc, const char **argv)
257 if (c->display_usage) {
259 "net rpc changetrustpw\n"
260 " Change the machine trust password\n");
264 return run_rpc_command(c, NULL, &ndr_table_netlogon.syntax_id,
265 NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
266 rpc_changetrustpw_internals,
271 * Join a domain, the old way.
273 * This uses 'machinename' as the inital password, and changes it.
275 * The password should be created with 'server manager' or equiv first.
277 * All parameters are provided by the run_rpc_command function, except for
278 * argc, argv which are passed through.
280 * @param domain_sid The domain sid acquired from the remote server.
281 * @param cli A cli_state connected to the server.
282 * @param mem_ctx Talloc context, destroyed on completion of the function.
283 * @param argc Standard main() style argc.
284 * @param argv Standard main() style argv. Initial components are already
287 * @return Normal NTSTATUS return.
290 static NTSTATUS rpc_oldjoin_internals(struct net_context *c,
291 const DOM_SID *domain_sid,
292 const char *domain_name,
293 struct cli_state *cli,
294 struct rpc_pipe_client *pipe_hnd,
300 fstring trust_passwd;
301 unsigned char orig_trust_passwd_hash[16];
303 uint32 sec_channel_type;
305 result = cli_rpc_pipe_open_noauth(cli, &ndr_table_netlogon.syntax_id,
307 if (!NT_STATUS_IS_OK(result)) {
308 DEBUG(0,("rpc_oldjoin_internals: netlogon pipe open to machine %s failed. "
311 nt_errstr(result) ));
316 check what type of join - if the user want's to join as
317 a BDC, the server must agree that we are a BDC.
320 sec_channel_type = get_sec_channel_type(argv[0]);
322 sec_channel_type = get_sec_channel_type(NULL);
325 fstrcpy(trust_passwd, global_myname());
326 strlower_m(trust_passwd);
329 * Machine names can be 15 characters, but the max length on
330 * a password is 14. --jerry
333 trust_passwd[14] = '\0';
335 E_md4hash(trust_passwd, orig_trust_passwd_hash);
337 result = trust_pw_change_and_store_it(pipe_hnd, mem_ctx, c->opt_target_workgroup,
338 orig_trust_passwd_hash,
341 if (NT_STATUS_IS_OK(result))
342 printf("Joined domain %s.\n", c->opt_target_workgroup);
345 if (!secrets_store_domain_sid(c->opt_target_workgroup, domain_sid)) {
346 DEBUG(0, ("error storing domain sid for %s\n", c->opt_target_workgroup));
347 result = NT_STATUS_UNSUCCESSFUL;
354 * Join a domain, the old way.
356 * @param argc Standard main() style argc.
357 * @param argv Standard main() style argv. Initial components are already
360 * @return A shell status integer (0 for success).
363 static int net_rpc_perform_oldjoin(struct net_context *c, int argc, const char **argv)
365 return run_rpc_command(c, NULL, &ndr_table_netlogon.syntax_id,
366 NET_FLAGS_NO_PIPE | NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
367 rpc_oldjoin_internals,
372 * Join a domain, the old way. This function exists to allow
373 * the message to be displayed when oldjoin was explicitly
374 * requested, but not when it was implied by "net rpc join".
376 * @param argc Standard main() style argc.
377 * @param argv Standard main() style argv. Initial components are already
380 * @return A shell status integer (0 for success).
383 static int net_rpc_oldjoin(struct net_context *c, int argc, const char **argv)
387 if (c->display_usage) {
390 " Join a domain the old way\n");
394 rc = net_rpc_perform_oldjoin(c, argc, argv);
397 d_fprintf(stderr, "Failed to join domain\n");
404 * 'net rpc join' entrypoint.
405 * @param argc Standard main() style argc.
406 * @param argv Standard main() style argv. Initial components are already
409 * Main 'net_rpc_join()' (where the admin username/password is used) is
411 * Try to just change the password, but if that doesn't work, use/prompt
412 * for a username/password.
415 int net_rpc_join(struct net_context *c, int argc, const char **argv)
417 if (c->display_usage) {
419 "net rpc join -U <username>[%%password] <type>\n"
421 " username\tName of the admin user"
422 " password\tPassword of the admin user, will "
423 "prompt if not specified\n"
424 " type\tCan be one of the following:\n"
425 "\t\tMEMBER\tJoin as member server (default)\n"
426 "\t\tBDC\tJoin as BDC\n"
427 "\t\tPDC\tJoin as PDC\n");
431 if (lp_server_role() == ROLE_STANDALONE) {
432 d_printf("cannot join as standalone machine\n");
436 if (strlen(global_myname()) > 15) {
437 d_printf("Our netbios name can be at most 15 chars long, "
438 "\"%s\" is %u chars long\n",
439 global_myname(), (unsigned int)strlen(global_myname()));
443 if ((net_rpc_perform_oldjoin(c, argc, argv) == 0))
446 return net_rpc_join_newstyle(c, argc, argv);
450 * display info about a rpc domain
452 * All parameters are provided by the run_rpc_command function, except for
453 * argc, argv which are passed through.
455 * @param domain_sid The domain sid acquired from the remote server
456 * @param cli A cli_state connected to the server.
457 * @param mem_ctx Talloc context, destroyed on completion of the function.
458 * @param argc Standard main() style argc.
459 * @param argv Standard main() style argv. Initial components are already
462 * @return Normal NTSTATUS return.
465 NTSTATUS rpc_info_internals(struct net_context *c,
466 const DOM_SID *domain_sid,
467 const char *domain_name,
468 struct cli_state *cli,
469 struct rpc_pipe_client *pipe_hnd,
474 POLICY_HND connect_pol, domain_pol;
475 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
476 union samr_DomainInfo *info = NULL;
479 sid_to_fstring(sid_str, domain_sid);
481 /* Get sam policy handle */
482 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
484 MAXIMUM_ALLOWED_ACCESS,
486 if (!NT_STATUS_IS_OK(result)) {
487 d_fprintf(stderr, "Could not connect to SAM: %s\n", nt_errstr(result));
491 /* Get domain policy handle */
492 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
494 MAXIMUM_ALLOWED_ACCESS,
495 CONST_DISCARD(struct dom_sid2 *, domain_sid),
497 if (!NT_STATUS_IS_OK(result)) {
498 d_fprintf(stderr, "Could not open domain: %s\n", nt_errstr(result));
502 result = rpccli_samr_QueryDomainInfo(pipe_hnd, mem_ctx,
506 if (NT_STATUS_IS_OK(result)) {
507 d_printf("Domain Name: %s\n", info->general.domain_name.string);
508 d_printf("Domain SID: %s\n", sid_str);
509 d_printf("Sequence number: %llu\n",
510 (unsigned long long)info->general.sequence_num);
511 d_printf("Num users: %u\n", info->general.num_users);
512 d_printf("Num domain groups: %u\n", info->general.num_groups);
513 d_printf("Num local groups: %u\n", info->general.num_aliases);
521 * 'net rpc info' entrypoint.
522 * @param argc Standard main() style argc.
523 * @param argv Standard main() style argv. Initial components are already
527 int net_rpc_info(struct net_context *c, int argc, const char **argv)
529 if (c->display_usage) {
532 " Display information about the domain\n");
536 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id,
537 NET_FLAGS_PDC, rpc_info_internals,
542 * Fetch domain SID into the local secrets.tdb.
544 * All parameters are provided by the run_rpc_command function, except for
545 * argc, argv which are passed through.
547 * @param domain_sid The domain sid acquired from the remote server.
548 * @param cli A cli_state connected to the server.
549 * @param mem_ctx Talloc context, destroyed on completion of the function.
550 * @param argc Standard main() style argc.
551 * @param argv Standard main() style argv. Initial components are already
554 * @return Normal NTSTATUS return.
557 static NTSTATUS rpc_getsid_internals(struct net_context *c,
558 const DOM_SID *domain_sid,
559 const char *domain_name,
560 struct cli_state *cli,
561 struct rpc_pipe_client *pipe_hnd,
568 sid_to_fstring(sid_str, domain_sid);
569 d_printf("Storing SID %s for Domain %s in secrets.tdb\n",
570 sid_str, domain_name);
572 if (!secrets_store_domain_sid(domain_name, domain_sid)) {
573 DEBUG(0,("Can't store domain SID\n"));
574 return NT_STATUS_UNSUCCESSFUL;
581 * 'net rpc getsid' entrypoint.
582 * @param argc Standard main() style argc.
583 * @param argv Standard main() style argv. Initial components are already
587 int net_rpc_getsid(struct net_context *c, int argc, const char **argv)
589 if (c->display_usage) {
592 " Fetch domain SID into local secrets.tdb\n");
596 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id,
597 NET_FLAGS_ANONYMOUS | NET_FLAGS_PDC,
598 rpc_getsid_internals,
602 /****************************************************************************/
605 * Basic usage function for 'net rpc user'.
606 * @param argc Standard main() style argc.
607 * @param argv Standard main() style argv. Initial components are already
611 static int rpc_user_usage(struct net_context *c, int argc, const char **argv)
613 return net_user_usage(c, argc, argv);
617 * Add a new user to a remote RPC server.
619 * @param argc Standard main() style argc.
620 * @param argv Standard main() style argv. Initial components are already
623 * @return A shell status integer (0 for success).
626 static int rpc_user_add(struct net_context *c, int argc, const char **argv)
628 NET_API_STATUS status;
629 struct USER_INFO_1 info1;
630 uint32_t parm_error = 0;
632 if (argc < 1 || c->display_usage) {
633 rpc_user_usage(c, argc, argv);
639 info1.usri1_name = argv[0];
641 info1.usri1_password = argv[1];
644 status = NetUserAdd(c->opt_host, 1, (uint8_t *)&info1, &parm_error);
647 d_fprintf(stderr, "Failed to add user '%s' with: %s.\n",
648 argv[0], libnetapi_get_error_string(c->netapi_ctx,
652 d_printf("Added user '%s'.\n", argv[0]);
659 * Rename a user on a remote RPC server.
661 * @param argc Standard main() style argc.
662 * @param argv Standard main() style argv. Initial components are already
665 * @return A shell status integer (0 for success).
668 static int rpc_user_rename(struct net_context *c, int argc, const char **argv)
670 NET_API_STATUS status;
671 struct USER_INFO_0 u0;
672 uint32_t parm_err = 0;
674 if (argc != 2 || c->display_usage) {
675 rpc_user_usage(c, argc, argv);
679 u0.usri0_name = argv[1];
681 status = NetUserSetInfo(c->opt_host, argv[0],
682 0, (uint8_t *)&u0, &parm_err);
684 d_fprintf(stderr, "Failed to rename user from %s to %s - %s\n",
686 libnetapi_get_error_string(c->netapi_ctx, status));
688 d_printf("Renamed user from %s to %s\n", argv[0], argv[1]);
695 * Delete a user from a remote RPC server.
697 * @param argc Standard main() style argc.
698 * @param argv Standard main() style argv. Initial components are already
701 * @return A shell status integer (0 for success).
704 static int rpc_user_delete(struct net_context *c, int argc, const char **argv)
706 NET_API_STATUS status;
708 if (argc < 1 || c->display_usage) {
709 rpc_user_usage(c, argc, argv);
713 status = NetUserDel(c->opt_host, argv[0]);
716 d_fprintf(stderr, "Failed to delete user '%s' with: %s.\n",
718 libnetapi_get_error_string(c->netapi_ctx, status));
721 d_printf("Deleted user '%s'.\n", argv[0]);
728 * Set a user's password on a remote RPC server.
730 * @param argc Standard main() style argc.
731 * @param argv Standard main() style argv. Initial components are already
734 * @return A shell status integer (0 for success).
737 static int rpc_user_password(struct net_context *c, int argc, const char **argv)
739 NET_API_STATUS status;
741 struct USER_INFO_1003 u1003;
742 uint32_t parm_err = 0;
744 if (argc < 1 || c->display_usage) {
745 rpc_user_usage(c, argc, argv);
750 u1003.usri1003_password = argv[1];
752 asprintf(&prompt, "Enter new password for %s:", argv[0]);
753 u1003.usri1003_password = getpass(prompt);
757 status = NetUserSetInfo(c->opt_host, argv[0], 1003, (uint8_t *)&u1003, &parm_err);
759 /* Display results */
761 d_fprintf(stderr, "Failed to set password for '%s' with: %s.\n",
762 argv[0], libnetapi_get_error_string(c->netapi_ctx,
771 * List a user's groups from a remote RPC server.
773 * @param argc Standard main() style argc.
774 * @param argv Standard main() style argv. Initial components are already
777 * @return A shell status integer (0 for success)
780 static int rpc_user_info(struct net_context *c, int argc, const char **argv)
783 NET_API_STATUS status;
784 struct GROUP_USERS_INFO_0 *u0 = NULL;
785 uint32_t entries_read = 0;
786 uint32_t total_entries = 0;
790 if (argc < 1 || c->display_usage) {
791 rpc_user_usage(c, argc, argv);
795 status = NetUserGetGroups(c->opt_host,
803 d_fprintf(stderr, "Failed to get groups for '%s' with: %s.\n",
804 argv[0], libnetapi_get_error_string(c->netapi_ctx,
809 for (i=0; i < entries_read; i++) {
810 printf("%s\n", u0->grui0_name);
818 * List users on a remote RPC server.
820 * All parameters are provided by the run_rpc_command function, except for
821 * argc, argv which are passed through.
823 * @param domain_sid The domain sid acquired from the remote server.
824 * @param cli A cli_state connected to the server.
825 * @param mem_ctx Talloc context, destroyed on completion of the function.
826 * @param argc Standard main() style argc.
827 * @param argv Standard main() style argv. Initial components are already
830 * @return Normal NTSTATUS return.
833 static int rpc_user_list(struct net_context *c, int argc, const char **argv)
835 NET_API_STATUS status;
836 uint32_t start_idx=0, num_entries, i, loop_count = 0;
837 struct NET_DISPLAY_USER *info = NULL;
840 /* Query domain users */
841 if (c->opt_long_list_entries)
842 d_printf("\nUser name Comment"
843 "\n-----------------------------\n");
845 uint32_t max_entries, max_size;
847 get_query_dispinfo_params(
848 loop_count, &max_entries, &max_size);
850 status = NetQueryDisplayInformation(c->opt_host,
857 if (status != 0 && status != ERROR_MORE_DATA) {
861 info = (struct NET_DISPLAY_USER *)buffer;
863 for (i = 0; i < num_entries; i++) {
865 if (c->opt_long_list_entries)
866 printf("%-21.21s %s\n", info->usri1_name,
867 info->usri1_comment);
869 printf("%s\n", info->usri1_name);
873 NetApiBufferFree(buffer);
876 start_idx += num_entries;
878 } while (status == ERROR_MORE_DATA);
884 * 'net rpc user' entrypoint.
885 * @param argc Standard main() style argc.
886 * @param argv Standard main() style argv. Initial components are already
890 int net_rpc_user(struct net_context *c, int argc, const char **argv)
892 NET_API_STATUS status;
894 struct functable func[] = {
899 "Add specified user",
901 " Add specified user"
907 "List domain groups of user",
908 "net rpc user info\n"
909 " Lis domain groups of user"
915 "Remove specified user",
916 "net rpc user delete\n"
917 " Remove specified user"
923 "Change user password",
924 "net rpc user password\n"
925 " Change user password"
931 "Rename specified user",
932 "net rpc user rename\n"
933 " Rename specified user"
935 {NULL, NULL, 0, NULL, NULL}
938 status = libnetapi_init(&c->netapi_ctx);
942 libnetapi_set_username(c->netapi_ctx, c->opt_user_name);
943 libnetapi_set_password(c->netapi_ctx, c->opt_password);
944 if (c->opt_kerberos) {
945 libnetapi_set_use_kerberos(c->netapi_ctx);
949 if (c->display_usage) {
950 d_printf("Usage:\n");
951 d_printf("net rpc user\n"
952 " List all users\n");
953 net_display_usage_from_functable(func);
957 return rpc_user_list(c, argc, argv);
960 return net_run_function(c, argc, argv, "net rpc user", func);
963 static NTSTATUS rpc_sh_user_list(struct net_context *c,
965 struct rpc_sh_ctx *ctx,
966 struct rpc_pipe_client *pipe_hnd,
967 int argc, const char **argv)
969 return werror_to_ntstatus(W_ERROR(rpc_user_list(c, argc, argv)));
972 static NTSTATUS rpc_sh_user_info(struct net_context *c,
974 struct rpc_sh_ctx *ctx,
975 struct rpc_pipe_client *pipe_hnd,
976 int argc, const char **argv)
978 return werror_to_ntstatus(W_ERROR(rpc_user_info(c, argc, argv)));
981 static NTSTATUS rpc_sh_handle_user(struct net_context *c,
983 struct rpc_sh_ctx *ctx,
984 struct rpc_pipe_client *pipe_hnd,
985 int argc, const char **argv,
987 struct net_context *c,
989 struct rpc_sh_ctx *ctx,
990 struct rpc_pipe_client *pipe_hnd,
991 POLICY_HND *user_hnd,
992 int argc, const char **argv))
994 POLICY_HND connect_pol, domain_pol, user_pol;
995 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
998 enum lsa_SidType type;
1001 d_fprintf(stderr, "usage: %s <username>\n", ctx->whoami);
1002 return NT_STATUS_INVALID_PARAMETER;
1005 ZERO_STRUCT(connect_pol);
1006 ZERO_STRUCT(domain_pol);
1007 ZERO_STRUCT(user_pol);
1009 result = net_rpc_lookup_name(c, mem_ctx, rpc_pipe_np_smb_conn(pipe_hnd),
1010 argv[0], NULL, NULL, &sid, &type);
1011 if (!NT_STATUS_IS_OK(result)) {
1012 d_fprintf(stderr, "Could not lookup %s: %s\n", argv[0],
1017 if (type != SID_NAME_USER) {
1018 d_fprintf(stderr, "%s is a %s, not a user\n", argv[0],
1019 sid_type_lookup(type));
1020 result = NT_STATUS_NO_SUCH_USER;
1024 if (!sid_peek_check_rid(ctx->domain_sid, &sid, &rid)) {
1025 d_fprintf(stderr, "%s is not in our domain\n", argv[0]);
1026 result = NT_STATUS_NO_SUCH_USER;
1030 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1032 MAXIMUM_ALLOWED_ACCESS,
1034 if (!NT_STATUS_IS_OK(result)) {
1038 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1040 MAXIMUM_ALLOWED_ACCESS,
1043 if (!NT_STATUS_IS_OK(result)) {
1047 result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
1049 MAXIMUM_ALLOWED_ACCESS,
1052 if (!NT_STATUS_IS_OK(result)) {
1056 result = fn(c, mem_ctx, ctx, pipe_hnd, &user_pol, argc-1, argv+1);
1059 if (is_valid_policy_hnd(&user_pol)) {
1060 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
1062 if (is_valid_policy_hnd(&domain_pol)) {
1063 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
1065 if (is_valid_policy_hnd(&connect_pol)) {
1066 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1071 static NTSTATUS rpc_sh_user_show_internals(struct net_context *c,
1072 TALLOC_CTX *mem_ctx,
1073 struct rpc_sh_ctx *ctx,
1074 struct rpc_pipe_client *pipe_hnd,
1075 POLICY_HND *user_hnd,
1076 int argc, const char **argv)
1079 union samr_UserInfo *info = NULL;
1082 d_fprintf(stderr, "usage: %s show <username>\n", ctx->whoami);
1083 return NT_STATUS_INVALID_PARAMETER;
1086 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1090 if (!NT_STATUS_IS_OK(result)) {
1094 d_printf("user rid: %d, group rid: %d\n",
1096 info->info21.primary_gid);
1101 static NTSTATUS rpc_sh_user_show(struct net_context *c,
1102 TALLOC_CTX *mem_ctx,
1103 struct rpc_sh_ctx *ctx,
1104 struct rpc_pipe_client *pipe_hnd,
1105 int argc, const char **argv)
1107 return rpc_sh_handle_user(c, mem_ctx, ctx, pipe_hnd, argc, argv,
1108 rpc_sh_user_show_internals);
1111 #define FETCHSTR(name, rec) \
1112 do { if (strequal(ctx->thiscmd, name)) { \
1113 oldval = talloc_strdup(mem_ctx, info->info21.rec.string); } \
1116 #define SETSTR(name, rec, flag) \
1117 do { if (strequal(ctx->thiscmd, name)) { \
1118 init_lsa_String(&(info->info21.rec), argv[0]); \
1119 info->info21.fields_present |= SAMR_FIELD_##flag; } \
1122 static NTSTATUS rpc_sh_user_str_edit_internals(struct net_context *c,
1123 TALLOC_CTX *mem_ctx,
1124 struct rpc_sh_ctx *ctx,
1125 struct rpc_pipe_client *pipe_hnd,
1126 POLICY_HND *user_hnd,
1127 int argc, const char **argv)
1130 const char *username;
1131 const char *oldval = "";
1132 union samr_UserInfo *info = NULL;
1135 d_fprintf(stderr, "usage: %s <username> [new value|NULL]\n",
1137 return NT_STATUS_INVALID_PARAMETER;
1140 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1144 if (!NT_STATUS_IS_OK(result)) {
1148 username = talloc_strdup(mem_ctx, info->info21.account_name.string);
1150 FETCHSTR("fullname", full_name);
1151 FETCHSTR("homedir", home_directory);
1152 FETCHSTR("homedrive", home_drive);
1153 FETCHSTR("logonscript", logon_script);
1154 FETCHSTR("profilepath", profile_path);
1155 FETCHSTR("description", description);
1158 d_printf("%s's %s: [%s]\n", username, ctx->thiscmd, oldval);
1162 if (strcmp(argv[0], "NULL") == 0) {
1166 ZERO_STRUCT(info->info21);
1168 SETSTR("fullname", full_name, FULL_NAME);
1169 SETSTR("homedir", home_directory, HOME_DIRECTORY);
1170 SETSTR("homedrive", home_drive, HOME_DRIVE);
1171 SETSTR("logonscript", logon_script, LOGON_SCRIPT);
1172 SETSTR("profilepath", profile_path, PROFILE_PATH);
1173 SETSTR("description", description, DESCRIPTION);
1175 result = rpccli_samr_SetUserInfo(pipe_hnd, mem_ctx,
1180 d_printf("Set %s's %s from [%s] to [%s]\n", username,
1181 ctx->thiscmd, oldval, argv[0]);
1188 #define HANDLEFLG(name, rec) \
1189 do { if (strequal(ctx->thiscmd, name)) { \
1190 oldval = (oldflags & ACB_##rec) ? "yes" : "no"; \
1192 newflags = oldflags | ACB_##rec; \
1194 newflags = oldflags & ~ACB_##rec; \
1197 static NTSTATUS rpc_sh_user_str_edit(struct net_context *c,
1198 TALLOC_CTX *mem_ctx,
1199 struct rpc_sh_ctx *ctx,
1200 struct rpc_pipe_client *pipe_hnd,
1201 int argc, const char **argv)
1203 return rpc_sh_handle_user(c, mem_ctx, ctx, pipe_hnd, argc, argv,
1204 rpc_sh_user_str_edit_internals);
1207 static NTSTATUS rpc_sh_user_flag_edit_internals(struct net_context *c,
1208 TALLOC_CTX *mem_ctx,
1209 struct rpc_sh_ctx *ctx,
1210 struct rpc_pipe_client *pipe_hnd,
1211 POLICY_HND *user_hnd,
1212 int argc, const char **argv)
1215 const char *username;
1216 const char *oldval = "unknown";
1217 uint32 oldflags, newflags;
1219 union samr_UserInfo *info = NULL;
1222 ((argc == 1) && !strequal(argv[0], "yes") &&
1223 !strequal(argv[0], "no"))) {
1224 d_fprintf(stderr, "usage: %s <username> [yes|no]\n",
1226 return NT_STATUS_INVALID_PARAMETER;
1229 newval = strequal(argv[0], "yes");
1231 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1235 if (!NT_STATUS_IS_OK(result)) {
1239 username = talloc_strdup(mem_ctx, info->info21.account_name.string);
1240 oldflags = info->info21.acct_flags;
1241 newflags = info->info21.acct_flags;
1243 HANDLEFLG("disabled", DISABLED);
1244 HANDLEFLG("pwnotreq", PWNOTREQ);
1245 HANDLEFLG("autolock", AUTOLOCK);
1246 HANDLEFLG("pwnoexp", PWNOEXP);
1249 d_printf("%s's %s flag: %s\n", username, ctx->thiscmd, oldval);
1253 ZERO_STRUCT(info->info21);
1255 info->info21.acct_flags = newflags;
1256 info->info21.fields_present = SAMR_FIELD_ACCT_FLAGS;
1258 result = rpccli_samr_SetUserInfo(pipe_hnd, mem_ctx,
1263 if (NT_STATUS_IS_OK(result)) {
1264 d_printf("Set %s's %s flag from [%s] to [%s]\n", username,
1265 ctx->thiscmd, oldval, argv[0]);
1273 static NTSTATUS rpc_sh_user_flag_edit(struct net_context *c,
1274 TALLOC_CTX *mem_ctx,
1275 struct rpc_sh_ctx *ctx,
1276 struct rpc_pipe_client *pipe_hnd,
1277 int argc, const char **argv)
1279 return rpc_sh_handle_user(c, mem_ctx, ctx, pipe_hnd, argc, argv,
1280 rpc_sh_user_flag_edit_internals);
1283 struct rpc_sh_cmd *net_rpc_user_edit_cmds(struct net_context *c,
1284 TALLOC_CTX *mem_ctx,
1285 struct rpc_sh_ctx *ctx)
1287 static struct rpc_sh_cmd cmds[] = {
1289 { "fullname", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1290 "Show/Set a user's full name" },
1292 { "homedir", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1293 "Show/Set a user's home directory" },
1295 { "homedrive", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1296 "Show/Set a user's home drive" },
1298 { "logonscript", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1299 "Show/Set a user's logon script" },
1301 { "profilepath", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1302 "Show/Set a user's profile path" },
1304 { "description", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_str_edit,
1305 "Show/Set a user's description" },
1307 { "disabled", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_flag_edit,
1308 "Show/Set whether a user is disabled" },
1310 { "autolock", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_flag_edit,
1311 "Show/Set whether a user locked out" },
1313 { "pwnotreq", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_flag_edit,
1314 "Show/Set whether a user does not need a password" },
1316 { "pwnoexp", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_flag_edit,
1317 "Show/Set whether a user's password does not expire" },
1319 { NULL, NULL, 0, NULL, NULL }
1325 struct rpc_sh_cmd *net_rpc_user_cmds(struct net_context *c,
1326 TALLOC_CTX *mem_ctx,
1327 struct rpc_sh_ctx *ctx)
1329 static struct rpc_sh_cmd cmds[] = {
1331 { "list", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_list,
1332 "List available users" },
1334 { "info", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_info,
1335 "List the domain groups a user is member of" },
1337 { "show", NULL, &ndr_table_samr.syntax_id, rpc_sh_user_show,
1338 "Show info about a user" },
1340 { "edit", net_rpc_user_edit_cmds, 0, NULL,
1341 "Show/Modify a user's fields" },
1343 { NULL, NULL, 0, NULL, NULL }
1349 /****************************************************************************/
1352 * Basic usage function for 'net rpc group'.
1353 * @param argc Standard main() style argc.
1354 * @param argv Standard main() style argv. Initial components are already
1358 static int rpc_group_usage(struct net_context *c, int argc, const char **argv)
1360 return net_group_usage(c, argc, argv);
1364 * Delete group on a remote RPC server.
1366 * All parameters are provided by the run_rpc_command function, except for
1367 * argc, argv which are passed through.
1369 * @param domain_sid The domain sid acquired from the remote server.
1370 * @param cli A cli_state connected to the server.
1371 * @param mem_ctx Talloc context, destroyed on completion of the function.
1372 * @param argc Standard main() style argc.
1373 * @param argv Standard main() style argv. Initial components are already
1376 * @return Normal NTSTATUS return.
1379 static NTSTATUS rpc_group_delete_internals(struct net_context *c,
1380 const DOM_SID *domain_sid,
1381 const char *domain_name,
1382 struct cli_state *cli,
1383 struct rpc_pipe_client *pipe_hnd,
1384 TALLOC_CTX *mem_ctx,
1388 POLICY_HND connect_pol, domain_pol, group_pol, user_pol;
1389 bool group_is_primary = false;
1390 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1392 struct samr_RidTypeArray *rids = NULL;
1395 /* DOM_GID *user_gids; */
1397 struct samr_Ids group_rids, name_types;
1398 struct lsa_String lsa_acct_name;
1399 union samr_UserInfo *info = NULL;
1401 if (argc < 1 || c->display_usage) {
1402 rpc_group_usage(c, argc,argv);
1403 return NT_STATUS_OK; /* ok? */
1406 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1408 MAXIMUM_ALLOWED_ACCESS,
1411 if (!NT_STATUS_IS_OK(result)) {
1412 d_fprintf(stderr, "Request samr_Connect2 failed\n");
1416 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1418 MAXIMUM_ALLOWED_ACCESS,
1419 CONST_DISCARD(struct dom_sid2 *, domain_sid),
1422 if (!NT_STATUS_IS_OK(result)) {
1423 d_fprintf(stderr, "Request open_domain failed\n");
1427 init_lsa_String(&lsa_acct_name, argv[0]);
1429 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
1435 if (!NT_STATUS_IS_OK(result)) {
1436 d_fprintf(stderr, "Lookup of '%s' failed\n",argv[0]);
1440 switch (name_types.ids[0])
1442 case SID_NAME_DOM_GRP:
1443 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
1445 MAXIMUM_ALLOWED_ACCESS,
1448 if (!NT_STATUS_IS_OK(result)) {
1449 d_fprintf(stderr, "Request open_group failed");
1453 group_rid = group_rids.ids[0];
1455 result = rpccli_samr_QueryGroupMember(pipe_hnd, mem_ctx,
1459 if (!NT_STATUS_IS_OK(result)) {
1460 d_fprintf(stderr, "Unable to query group members of %s",argv[0]);
1464 if (c->opt_verbose) {
1465 d_printf("Domain Group %s (rid: %d) has %d members\n",
1466 argv[0],group_rid, rids->count);
1469 /* Check if group is anyone's primary group */
1470 for (i = 0; i < rids->count; i++)
1472 result = rpccli_samr_OpenUser(pipe_hnd, mem_ctx,
1474 MAXIMUM_ALLOWED_ACCESS,
1478 if (!NT_STATUS_IS_OK(result)) {
1479 d_fprintf(stderr, "Unable to open group member %d\n",
1484 result = rpccli_samr_QueryUserInfo(pipe_hnd, mem_ctx,
1489 if (!NT_STATUS_IS_OK(result)) {
1490 d_fprintf(stderr, "Unable to lookup userinfo for group member %d\n",
1495 if (info->info21.primary_gid == group_rid) {
1496 if (c->opt_verbose) {
1497 d_printf("Group is primary group of %s\n",
1498 info->info21.account_name.string);
1500 group_is_primary = true;
1503 rpccli_samr_Close(pipe_hnd, mem_ctx, &user_pol);
1506 if (group_is_primary) {
1507 d_fprintf(stderr, "Unable to delete group because some "
1508 "of it's members have it as primary group\n");
1509 result = NT_STATUS_MEMBERS_PRIMARY_GROUP;
1513 /* remove all group members */
1514 for (i = 0; i < rids->count; i++)
1517 d_printf("Remove group member %d...",
1519 result = rpccli_samr_DeleteGroupMember(pipe_hnd, mem_ctx,
1523 if (NT_STATUS_IS_OK(result)) {
1528 d_printf("failed\n");
1533 result = rpccli_samr_DeleteDomainGroup(pipe_hnd, mem_ctx,
1537 /* removing a local group is easier... */
1538 case SID_NAME_ALIAS:
1539 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
1541 MAXIMUM_ALLOWED_ACCESS,
1545 if (!NT_STATUS_IS_OK(result)) {
1546 d_fprintf(stderr, "Request open_alias failed\n");
1550 result = rpccli_samr_DeleteDomAlias(pipe_hnd, mem_ctx,
1554 d_fprintf(stderr, "%s is of type %s. This command is only for deleting local or global groups\n",
1555 argv[0],sid_type_lookup(name_types.ids[0]));
1556 result = NT_STATUS_UNSUCCESSFUL;
1560 if (NT_STATUS_IS_OK(result)) {
1562 d_printf("Deleted %s '%s'\n",sid_type_lookup(name_types.ids[0]),argv[0]);
1564 d_fprintf(stderr, "Deleting of %s failed: %s\n",argv[0],
1565 get_friendly_nt_error_msg(result));
1573 static int rpc_group_delete(struct net_context *c, int argc, const char **argv)
1575 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
1576 rpc_group_delete_internals, argc,argv);
1579 static int rpc_group_add_internals(struct net_context *c, int argc, const char **argv)
1581 NET_API_STATUS status;
1582 struct GROUP_INFO_1 info1;
1583 uint32_t parm_error = 0;
1585 if (argc != 1 || c->display_usage) {
1586 rpc_group_usage(c, argc, argv);
1592 info1.grpi1_name = argv[0];
1593 if (c->opt_comment && strlen(c->opt_comment) > 0) {
1594 info1.grpi1_comment = c->opt_comment;
1597 status = NetGroupAdd(c->opt_host, 1, (uint8_t *)&info1, &parm_error);
1600 d_fprintf(stderr, "Failed to add group '%s' with: %s.\n",
1601 argv[0], libnetapi_get_error_string(c->netapi_ctx,
1605 d_printf("Added group '%s'.\n", argv[0]);
1611 static int rpc_alias_add_internals(struct net_context *c, int argc, const char **argv)
1613 NET_API_STATUS status;
1614 struct LOCALGROUP_INFO_1 info1;
1615 uint32_t parm_error = 0;
1617 if (argc != 1 || c->display_usage) {
1618 rpc_group_usage(c, argc, argv);
1624 info1.lgrpi1_name = argv[0];
1625 if (c->opt_comment && strlen(c->opt_comment) > 0) {
1626 info1.lgrpi1_comment = c->opt_comment;
1629 status = NetLocalGroupAdd(c->opt_host, 1, (uint8_t *)&info1, &parm_error);
1632 d_fprintf(stderr, "Failed to add alias '%s' with: %s.\n",
1633 argv[0], libnetapi_get_error_string(c->netapi_ctx,
1637 d_printf("Added alias '%s'.\n", argv[0]);
1643 static int rpc_group_add(struct net_context *c, int argc, const char **argv)
1645 if (c->opt_localgroup)
1646 return rpc_alias_add_internals(c, argc, argv);
1648 return rpc_group_add_internals(c, argc, argv);
1651 static NTSTATUS get_sid_from_name(struct cli_state *cli,
1652 TALLOC_CTX *mem_ctx,
1655 enum lsa_SidType *type)
1657 DOM_SID *sids = NULL;
1658 enum lsa_SidType *types = NULL;
1659 struct rpc_pipe_client *pipe_hnd;
1661 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1663 result = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
1665 if (!NT_STATUS_IS_OK(result)) {
1669 result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, false,
1670 SEC_RIGHTS_MAXIMUM_ALLOWED, &lsa_pol);
1672 if (!NT_STATUS_IS_OK(result)) {
1676 result = rpccli_lsa_lookup_names(pipe_hnd, mem_ctx, &lsa_pol, 1,
1677 &name, NULL, 1, &sids, &types);
1679 if (NT_STATUS_IS_OK(result)) {
1680 sid_copy(sid, &sids[0]);
1684 rpccli_lsa_Close(pipe_hnd, mem_ctx, &lsa_pol);
1688 TALLOC_FREE(pipe_hnd);
1691 if (!NT_STATUS_IS_OK(result) && (StrnCaseCmp(name, "S-", 2) == 0)) {
1693 /* Try as S-1-5-whatever */
1697 if (string_to_sid(&tmp_sid, name)) {
1698 sid_copy(sid, &tmp_sid);
1699 *type = SID_NAME_UNKNOWN;
1700 result = NT_STATUS_OK;
1707 static NTSTATUS rpc_add_groupmem(struct rpc_pipe_client *pipe_hnd,
1708 TALLOC_CTX *mem_ctx,
1709 const DOM_SID *group_sid,
1712 POLICY_HND connect_pol, domain_pol;
1715 POLICY_HND group_pol;
1717 struct samr_Ids rids, rid_types;
1718 struct lsa_String lsa_acct_name;
1722 sid_copy(&sid, group_sid);
1724 if (!sid_split_rid(&sid, &group_rid)) {
1725 return NT_STATUS_UNSUCCESSFUL;
1728 /* Get sam policy handle */
1729 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1731 MAXIMUM_ALLOWED_ACCESS,
1733 if (!NT_STATUS_IS_OK(result)) {
1737 /* Get domain policy handle */
1738 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1740 MAXIMUM_ALLOWED_ACCESS,
1743 if (!NT_STATUS_IS_OK(result)) {
1747 init_lsa_String(&lsa_acct_name, member);
1749 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
1756 if (!NT_STATUS_IS_OK(result)) {
1757 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
1761 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
1763 MAXIMUM_ALLOWED_ACCESS,
1767 if (!NT_STATUS_IS_OK(result)) {
1771 result = rpccli_samr_AddGroupMember(pipe_hnd, mem_ctx,
1774 0x0005); /* unknown flags */
1777 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1781 static NTSTATUS rpc_add_aliasmem(struct rpc_pipe_client *pipe_hnd,
1782 TALLOC_CTX *mem_ctx,
1783 const DOM_SID *alias_sid,
1786 POLICY_HND connect_pol, domain_pol;
1789 POLICY_HND alias_pol;
1792 enum lsa_SidType member_type;
1796 sid_copy(&sid, alias_sid);
1798 if (!sid_split_rid(&sid, &alias_rid)) {
1799 return NT_STATUS_UNSUCCESSFUL;
1802 result = get_sid_from_name(rpc_pipe_np_smb_conn(pipe_hnd), mem_ctx,
1803 member, &member_sid, &member_type);
1805 if (!NT_STATUS_IS_OK(result)) {
1806 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
1810 /* Get sam policy handle */
1811 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1813 MAXIMUM_ALLOWED_ACCESS,
1815 if (!NT_STATUS_IS_OK(result)) {
1819 /* Get domain policy handle */
1820 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1822 MAXIMUM_ALLOWED_ACCESS,
1825 if (!NT_STATUS_IS_OK(result)) {
1829 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
1831 MAXIMUM_ALLOWED_ACCESS,
1835 if (!NT_STATUS_IS_OK(result)) {
1839 result = rpccli_samr_AddAliasMember(pipe_hnd, mem_ctx,
1843 if (!NT_STATUS_IS_OK(result)) {
1848 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1852 static NTSTATUS rpc_group_addmem_internals(struct net_context *c,
1853 const DOM_SID *domain_sid,
1854 const char *domain_name,
1855 struct cli_state *cli,
1856 struct rpc_pipe_client *pipe_hnd,
1857 TALLOC_CTX *mem_ctx,
1862 enum lsa_SidType group_type;
1864 if (argc != 2 || c->display_usage) {
1866 "net rpc group addmem <group> <member>\n"
1867 " Add a member to a group\n"
1868 " group\tGroup to add member to\n"
1869 " member\tMember to add to group\n");
1870 return NT_STATUS_UNSUCCESSFUL;
1873 if (!NT_STATUS_IS_OK(get_sid_from_name(cli, mem_ctx, argv[0],
1874 &group_sid, &group_type))) {
1875 d_fprintf(stderr, "Could not lookup group name %s\n", argv[0]);
1876 return NT_STATUS_UNSUCCESSFUL;
1879 if (group_type == SID_NAME_DOM_GRP) {
1880 NTSTATUS result = rpc_add_groupmem(pipe_hnd, mem_ctx,
1881 &group_sid, argv[1]);
1883 if (!NT_STATUS_IS_OK(result)) {
1884 d_fprintf(stderr, "Could not add %s to %s: %s\n",
1885 argv[1], argv[0], nt_errstr(result));
1890 if (group_type == SID_NAME_ALIAS) {
1891 NTSTATUS result = rpc_add_aliasmem(pipe_hnd, mem_ctx,
1892 &group_sid, argv[1]);
1894 if (!NT_STATUS_IS_OK(result)) {
1895 d_fprintf(stderr, "Could not add %s to %s: %s\n",
1896 argv[1], argv[0], nt_errstr(result));
1901 d_fprintf(stderr, "Can only add members to global or local groups "
1902 "which %s is not\n", argv[0]);
1904 return NT_STATUS_UNSUCCESSFUL;
1907 static int rpc_group_addmem(struct net_context *c, int argc, const char **argv)
1909 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
1910 rpc_group_addmem_internals,
1914 static NTSTATUS rpc_del_groupmem(struct net_context *c,
1915 struct rpc_pipe_client *pipe_hnd,
1916 TALLOC_CTX *mem_ctx,
1917 const DOM_SID *group_sid,
1920 POLICY_HND connect_pol, domain_pol;
1923 POLICY_HND group_pol;
1925 struct samr_Ids rids, rid_types;
1926 struct lsa_String lsa_acct_name;
1930 sid_copy(&sid, group_sid);
1932 if (!sid_split_rid(&sid, &group_rid))
1933 return NT_STATUS_UNSUCCESSFUL;
1935 /* Get sam policy handle */
1936 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
1938 MAXIMUM_ALLOWED_ACCESS,
1940 if (!NT_STATUS_IS_OK(result))
1943 /* Get domain policy handle */
1944 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
1946 MAXIMUM_ALLOWED_ACCESS,
1949 if (!NT_STATUS_IS_OK(result))
1952 init_lsa_String(&lsa_acct_name, member);
1954 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
1960 if (!NT_STATUS_IS_OK(result)) {
1961 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
1965 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
1967 MAXIMUM_ALLOWED_ACCESS,
1971 if (!NT_STATUS_IS_OK(result))
1974 result = rpccli_samr_DeleteGroupMember(pipe_hnd, mem_ctx,
1979 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
1983 static NTSTATUS rpc_del_aliasmem(struct rpc_pipe_client *pipe_hnd,
1984 TALLOC_CTX *mem_ctx,
1985 const DOM_SID *alias_sid,
1988 POLICY_HND connect_pol, domain_pol;
1991 POLICY_HND alias_pol;
1994 enum lsa_SidType member_type;
1998 sid_copy(&sid, alias_sid);
2000 if (!sid_split_rid(&sid, &alias_rid))
2001 return NT_STATUS_UNSUCCESSFUL;
2003 result = get_sid_from_name(rpc_pipe_np_smb_conn(pipe_hnd), mem_ctx,
2004 member, &member_sid, &member_type);
2006 if (!NT_STATUS_IS_OK(result)) {
2007 d_fprintf(stderr, "Could not lookup up group member %s\n", member);
2011 /* Get sam policy handle */
2012 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2014 MAXIMUM_ALLOWED_ACCESS,
2016 if (!NT_STATUS_IS_OK(result)) {
2020 /* Get domain policy handle */
2021 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2023 MAXIMUM_ALLOWED_ACCESS,
2026 if (!NT_STATUS_IS_OK(result)) {
2030 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2032 MAXIMUM_ALLOWED_ACCESS,
2036 if (!NT_STATUS_IS_OK(result))
2039 result = rpccli_samr_DeleteAliasMember(pipe_hnd, mem_ctx,
2043 if (!NT_STATUS_IS_OK(result))
2047 rpccli_samr_Close(pipe_hnd, mem_ctx, &connect_pol);
2051 static NTSTATUS rpc_group_delmem_internals(struct net_context *c,
2052 const DOM_SID *domain_sid,
2053 const char *domain_name,
2054 struct cli_state *cli,
2055 struct rpc_pipe_client *pipe_hnd,
2056 TALLOC_CTX *mem_ctx,
2061 enum lsa_SidType group_type;
2063 if (argc != 2 || c->display_usage) {
2065 "net rpc group delmem <group> <member>\n"
2066 " Delete a member from a group\n"
2067 " group\tGroup to delete member from\n"
2068 " member\tMember to delete from group\n");
2069 return NT_STATUS_UNSUCCESSFUL;
2072 if (!NT_STATUS_IS_OK(get_sid_from_name(cli, mem_ctx, argv[0],
2073 &group_sid, &group_type))) {
2074 d_fprintf(stderr, "Could not lookup group name %s\n", argv[0]);
2075 return NT_STATUS_UNSUCCESSFUL;
2078 if (group_type == SID_NAME_DOM_GRP) {
2079 NTSTATUS result = rpc_del_groupmem(c, pipe_hnd, mem_ctx,
2080 &group_sid, argv[1]);
2082 if (!NT_STATUS_IS_OK(result)) {
2083 d_fprintf(stderr, "Could not del %s from %s: %s\n",
2084 argv[1], argv[0], nt_errstr(result));
2089 if (group_type == SID_NAME_ALIAS) {
2090 NTSTATUS result = rpc_del_aliasmem(pipe_hnd, mem_ctx,
2091 &group_sid, argv[1]);
2093 if (!NT_STATUS_IS_OK(result)) {
2094 d_fprintf(stderr, "Could not del %s from %s: %s\n",
2095 argv[1], argv[0], nt_errstr(result));
2100 d_fprintf(stderr, "Can only delete members from global or local groups "
2101 "which %s is not\n", argv[0]);
2103 return NT_STATUS_UNSUCCESSFUL;
2106 static int rpc_group_delmem(struct net_context *c, int argc, const char **argv)
2108 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
2109 rpc_group_delmem_internals,
2114 * List groups on a remote RPC server.
2116 * All parameters are provided by the run_rpc_command function, except for
2117 * argc, argv which are passes through.
2119 * @param domain_sid The domain sid acquired from the remote server.
2120 * @param cli A cli_state connected to the server.
2121 * @param mem_ctx Talloc context, destroyed on completion of the function.
2122 * @param argc Standard main() style argc.
2123 * @param argv Standard main() style argv. Initial components are already
2126 * @return Normal NTSTATUS return.
2129 static NTSTATUS rpc_group_list_internals(struct net_context *c,
2130 const DOM_SID *domain_sid,
2131 const char *domain_name,
2132 struct cli_state *cli,
2133 struct rpc_pipe_client *pipe_hnd,
2134 TALLOC_CTX *mem_ctx,
2138 POLICY_HND connect_pol, domain_pol;
2139 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2140 uint32 start_idx=0, max_entries=250, num_entries, i, loop_count = 0;
2141 struct samr_SamArray *groups = NULL;
2142 bool global = false;
2144 bool builtin = false;
2146 if (c->display_usage) {
2148 "net rpc group list [global] [local] [builtin]\n"
2149 " List groups on RPC server\n"
2150 " global\tList global groups\n"
2151 " local\tList local groups\n"
2152 " builtin\tList builtin groups\n"
2153 " If none of global, local or builtin is "
2154 "specified, all three options are considered set\n");
2155 return NT_STATUS_OK;
2164 for (i=0; i<argc; i++) {
2165 if (strequal(argv[i], "global"))
2168 if (strequal(argv[i], "local"))
2171 if (strequal(argv[i], "builtin"))
2175 /* Get sam policy handle */
2177 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2179 MAXIMUM_ALLOWED_ACCESS,
2181 if (!NT_STATUS_IS_OK(result)) {
2185 /* Get domain policy handle */
2187 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2189 MAXIMUM_ALLOWED_ACCESS,
2190 CONST_DISCARD(struct dom_sid2 *, domain_sid),
2192 if (!NT_STATUS_IS_OK(result)) {
2196 /* Query domain groups */
2197 if (c->opt_long_list_entries)
2198 d_printf("\nGroup name Comment"
2199 "\n-----------------------------\n");
2201 uint32_t max_size, total_size, returned_size;
2202 union samr_DispInfo info;
2206 get_query_dispinfo_params(
2207 loop_count, &max_entries, &max_size);
2209 result = rpccli_samr_QueryDisplayInfo(pipe_hnd, mem_ctx,
2218 num_entries = info.info3.count;
2219 start_idx += info.info3.count;
2221 if (!NT_STATUS_IS_OK(result) &&
2222 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2225 for (i = 0; i < num_entries; i++) {
2227 const char *group = NULL;
2228 const char *desc = NULL;
2230 group = info.info3.entries[i].account_name.string;
2231 desc = info.info3.entries[i].description.string;
2233 if (c->opt_long_list_entries)
2234 printf("%-21.21s %-50.50s\n",
2237 printf("%s\n", group);
2239 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2240 /* query domain aliases */
2245 result = rpccli_samr_EnumDomainAliases(pipe_hnd, mem_ctx,
2251 if (!NT_STATUS_IS_OK(result) &&
2252 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2255 for (i = 0; i < num_entries; i++) {
2257 const char *description = NULL;
2259 if (c->opt_long_list_entries) {
2261 POLICY_HND alias_pol;
2262 union samr_AliasInfo *info = NULL;
2264 if ((NT_STATUS_IS_OK(rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2267 groups->entries[i].idx,
2269 (NT_STATUS_IS_OK(rpccli_samr_QueryAliasInfo(pipe_hnd, mem_ctx,
2273 (NT_STATUS_IS_OK(rpccli_samr_Close(pipe_hnd, mem_ctx,
2275 description = info->description.string;
2279 if (description != NULL) {
2280 printf("%-21.21s %-50.50s\n",
2281 groups->entries[i].name.string,
2284 printf("%s\n", groups->entries[i].name.string);
2287 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2288 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
2289 /* Get builtin policy handle */
2291 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2293 MAXIMUM_ALLOWED_ACCESS,
2294 CONST_DISCARD(struct dom_sid2 *, &global_sid_Builtin),
2296 if (!NT_STATUS_IS_OK(result)) {
2299 /* query builtin aliases */
2302 if (!builtin) break;
2304 result = rpccli_samr_EnumDomainAliases(pipe_hnd, mem_ctx,
2310 if (!NT_STATUS_IS_OK(result) &&
2311 !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES))
2314 for (i = 0; i < num_entries; i++) {
2316 const char *description = NULL;
2318 if (c->opt_long_list_entries) {
2320 POLICY_HND alias_pol;
2321 union samr_AliasInfo *info = NULL;
2323 if ((NT_STATUS_IS_OK(rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2326 groups->entries[i].idx,
2328 (NT_STATUS_IS_OK(rpccli_samr_QueryAliasInfo(pipe_hnd, mem_ctx,
2332 (NT_STATUS_IS_OK(rpccli_samr_Close(pipe_hnd, mem_ctx,
2334 description = info->description.string;
2338 if (description != NULL) {
2339 printf("%-21.21s %-50.50s\n",
2340 groups->entries[i].name.string,
2343 printf("%s\n", groups->entries[i].name.string);
2346 } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
2352 static int rpc_group_list(struct net_context *c, int argc, const char **argv)
2354 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
2355 rpc_group_list_internals,
2359 static NTSTATUS rpc_list_group_members(struct net_context *c,
2360 struct rpc_pipe_client *pipe_hnd,
2361 TALLOC_CTX *mem_ctx,
2362 const char *domain_name,
2363 const DOM_SID *domain_sid,
2364 POLICY_HND *domain_pol,
2368 POLICY_HND group_pol;
2369 uint32 num_members, *group_rids;
2371 struct samr_RidTypeArray *rids = NULL;
2372 struct lsa_Strings names;
2373 struct samr_Ids types;
2376 sid_to_fstring(sid_str, domain_sid);
2378 result = rpccli_samr_OpenGroup(pipe_hnd, mem_ctx,
2380 MAXIMUM_ALLOWED_ACCESS,
2384 if (!NT_STATUS_IS_OK(result))
2387 result = rpccli_samr_QueryGroupMember(pipe_hnd, mem_ctx,
2391 if (!NT_STATUS_IS_OK(result))
2394 num_members = rids->count;
2395 group_rids = rids->rids;
2397 while (num_members > 0) {
2398 int this_time = 512;
2400 if (num_members < this_time)
2401 this_time = num_members;
2403 result = rpccli_samr_LookupRids(pipe_hnd, mem_ctx,
2410 if (!NT_STATUS_IS_OK(result))
2413 /* We only have users as members, but make the output
2414 the same as the output of alias members */
2416 for (i = 0; i < this_time; i++) {
2418 if (c->opt_long_list_entries) {
2419 printf("%s-%d %s\\%s %d\n", sid_str,
2420 group_rids[i], domain_name,
2421 names.names[i].string,
2424 printf("%s\\%s\n", domain_name,
2425 names.names[i].string);
2429 num_members -= this_time;
2433 return NT_STATUS_OK;
2436 static NTSTATUS rpc_list_alias_members(struct net_context *c,
2437 struct rpc_pipe_client *pipe_hnd,
2438 TALLOC_CTX *mem_ctx,
2439 POLICY_HND *domain_pol,
2443 struct rpc_pipe_client *lsa_pipe;
2444 POLICY_HND alias_pol, lsa_pol;
2446 DOM_SID *alias_sids;
2449 enum lsa_SidType *types;
2451 struct lsa_SidArray sid_array;
2453 result = rpccli_samr_OpenAlias(pipe_hnd, mem_ctx,
2455 MAXIMUM_ALLOWED_ACCESS,
2459 if (!NT_STATUS_IS_OK(result))
2462 result = rpccli_samr_GetMembersInAlias(pipe_hnd, mem_ctx,
2466 if (!NT_STATUS_IS_OK(result)) {
2467 d_fprintf(stderr, "Couldn't list alias members\n");
2471 num_members = sid_array.num_sids;
2473 if (num_members == 0) {
2474 return NT_STATUS_OK;
2477 result = cli_rpc_pipe_open_noauth(rpc_pipe_np_smb_conn(pipe_hnd),
2478 &ndr_table_lsarpc.syntax_id,
2480 if (!NT_STATUS_IS_OK(result)) {
2481 d_fprintf(stderr, "Couldn't open LSA pipe. Error was %s\n",
2482 nt_errstr(result) );
2486 result = rpccli_lsa_open_policy(lsa_pipe, mem_ctx, true,
2487 SEC_RIGHTS_MAXIMUM_ALLOWED, &lsa_pol);
2489 if (!NT_STATUS_IS_OK(result)) {
2490 d_fprintf(stderr, "Couldn't open LSA policy handle\n");
2491 TALLOC_FREE(lsa_pipe);
2495 alias_sids = TALLOC_ZERO_ARRAY(mem_ctx, DOM_SID, num_members);
2497 d_fprintf(stderr, "Out of memory\n");
2498 TALLOC_FREE(lsa_pipe);
2499 return NT_STATUS_NO_MEMORY;
2502 for (i=0; i<num_members; i++) {
2503 sid_copy(&alias_sids[i], sid_array.sids[i].sid);
2506 result = rpccli_lsa_lookup_sids(lsa_pipe, mem_ctx, &lsa_pol,
2507 num_members, alias_sids,
2508 &domains, &names, &types);
2510 if (!NT_STATUS_IS_OK(result) &&
2511 !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED)) {
2512 d_fprintf(stderr, "Couldn't lookup SIDs\n");
2513 TALLOC_FREE(lsa_pipe);
2517 for (i = 0; i < num_members; i++) {
2519 sid_to_fstring(sid_str, &alias_sids[i]);
2521 if (c->opt_long_list_entries) {
2522 printf("%s %s\\%s %d\n", sid_str,
2523 domains[i] ? domains[i] : "*unknown*",
2524 names[i] ? names[i] : "*unknown*", types[i]);
2527 printf("%s\\%s\n", domains[i], names[i]);
2529 printf("%s\n", sid_str);
2533 TALLOC_FREE(lsa_pipe);
2534 return NT_STATUS_OK;
2537 static NTSTATUS rpc_group_members_internals(struct net_context *c,
2538 const DOM_SID *domain_sid,
2539 const char *domain_name,
2540 struct cli_state *cli,
2541 struct rpc_pipe_client *pipe_hnd,
2542 TALLOC_CTX *mem_ctx,
2547 POLICY_HND connect_pol, domain_pol;
2548 struct samr_Ids rids, rid_types;
2549 struct lsa_String lsa_acct_name;
2551 /* Get sam policy handle */
2553 result = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
2555 MAXIMUM_ALLOWED_ACCESS,
2558 if (!NT_STATUS_IS_OK(result))
2561 /* Get domain policy handle */
2563 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2565 MAXIMUM_ALLOWED_ACCESS,
2566 CONST_DISCARD(struct dom_sid2 *, domain_sid),
2569 if (!NT_STATUS_IS_OK(result))
2572 init_lsa_String(&lsa_acct_name, argv[0]); /* sure? */
2574 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
2581 if (!NT_STATUS_IS_OK(result)) {
2583 /* Ok, did not find it in the global sam, try with builtin */
2585 DOM_SID sid_Builtin;
2587 rpccli_samr_Close(pipe_hnd, mem_ctx, &domain_pol);
2589 sid_copy(&sid_Builtin, &global_sid_Builtin);
2591 result = rpccli_samr_OpenDomain(pipe_hnd, mem_ctx,
2593 MAXIMUM_ALLOWED_ACCESS,
2597 if (!NT_STATUS_IS_OK(result)) {
2598 d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2602 result = rpccli_samr_LookupNames(pipe_hnd, mem_ctx,
2609 if (!NT_STATUS_IS_OK(result)) {
2610 d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2615 if (rids.count != 1) {
2616 d_fprintf(stderr, "Couldn't find group %s\n", argv[0]);
2620 if (rid_types.ids[0] == SID_NAME_DOM_GRP) {
2621 return rpc_list_group_members(c, pipe_hnd, mem_ctx, domain_name,
2622 domain_sid, &domain_pol,
2626 if (rid_types.ids[0] == SID_NAME_ALIAS) {
2627 return rpc_list_alias_members(c, pipe_hnd, mem_ctx, &domain_pol,
2631 return NT_STATUS_NO_SUCH_GROUP;
2634 static int rpc_group_members(struct net_context *c, int argc, const char **argv)
2636 if (argc != 1 || c->display_usage) {
2637 return rpc_group_usage(c, argc, argv);
2640 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
2641 rpc_group_members_internals,
2645 static int rpc_group_rename_internals(struct net_context *c, int argc, const char **argv)
2647 NET_API_STATUS status;
2648 struct GROUP_INFO_0 g0;
2652 d_printf("Usage: 'net rpc group rename group newname'\n");
2656 g0.grpi0_name = argv[1];
2658 status = NetGroupSetInfo(c->opt_host,
2665 d_fprintf(stderr, "Renaming group %s failed with: %s\n",
2666 argv[0], libnetapi_get_error_string(c->netapi_ctx,
2674 static int rpc_group_rename(struct net_context *c, int argc, const char **argv)
2676 if (argc != 2 || c->display_usage) {
2677 return rpc_group_usage(c, argc, argv);
2680 return rpc_group_rename_internals(c, argc, argv);
2684 * 'net rpc group' entrypoint.
2685 * @param argc Standard main() style argc.
2686 * @param argv Standard main() style argv. Initial components are already
2690 int net_rpc_group(struct net_context *c, int argc, const char **argv)
2692 NET_API_STATUS status;
2694 struct functable func[] = {
2699 "Create specified group",
2700 "net rpc group add\n"
2701 " Create specified group"
2707 "Delete specified group",
2708 "net rpc group delete\n"
2709 " Delete specified group"
2715 "Add member to group",
2716 "net rpc group addmem\n"
2717 " Add member to group"
2723 "Remove member from group",
2724 "net rpc group delmem\n"
2725 " Remove member from group"
2732 "net rpc group list\n"
2739 "List group members",
2740 "net rpc group members\n"
2741 " List group members"
2748 "net rpc group rename\n"
2751 {NULL, NULL, 0, NULL, NULL}
2754 status = libnetapi_init(&c->netapi_ctx);
2758 libnetapi_set_username(c->netapi_ctx, c->opt_user_name);
2759 libnetapi_set_password(c->netapi_ctx, c->opt_password);
2760 if (c->opt_kerberos) {
2761 libnetapi_set_use_kerberos(c->netapi_ctx);
2765 if (c->display_usage) {
2766 d_printf("Usage:\n");
2767 d_printf("net rpc group\n"
2768 " Alias for net rpc group list global local "
2770 net_display_usage_from_functable(func);
2774 return run_rpc_command(c, NULL, &ndr_table_samr.syntax_id, 0,
2775 rpc_group_list_internals,
2779 return net_run_function(c, argc, argv, "net rpc group", func);
2782 /****************************************************************************/
2784 static int rpc_share_usage(struct net_context *c, int argc, const char **argv)
2786 return net_share_usage(c, argc, argv);
2790 * Add a share on a remote RPC server.
2792 * @param argc Standard main() style argc.
2793 * @param argv Standard main() style argv. Initial components are already
2796 * @return A shell status integer (0 for success).
2799 static int rpc_share_add(struct net_context *c, int argc, const char **argv)
2801 NET_API_STATUS status;
2804 uint32 type = STYPE_DISKTREE; /* only allow disk shares to be added */
2805 uint32 num_users=0, perms=0;
2806 char *password=NULL; /* don't allow a share password */
2807 struct SHARE_INFO_2 i2;
2808 uint32_t parm_error = 0;
2810 if ((argc < 1) || !strchr(argv[0], '=') || c->display_usage) {
2811 return rpc_share_usage(c, argc, argv);
2814 if ((sharename = talloc_strdup(c, argv[0])) == NULL) {
2818 path = strchr(sharename, '=');
2825 i2.shi2_netname = sharename;
2826 i2.shi2_type = type;
2827 i2.shi2_remark = c->opt_comment;
2828 i2.shi2_permissions = perms;
2829 i2.shi2_max_uses = c->opt_maxusers;
2830 i2.shi2_current_uses = num_users;
2831 i2.shi2_path = path;
2832 i2.shi2_passwd = password;
2834 status = NetShareAdd(c->opt_host,
2839 printf("NetShareAdd failed with: %s\n",
2840 libnetapi_get_error_string(c->netapi_ctx, status));
2847 * Delete a share on a remote RPC server.
2849 * @param domain_sid The domain sid acquired from the remote server.
2850 * @param argc Standard main() style argc.
2851 * @param argv Standard main() style argv. Initial components are already
2854 * @return A shell status integer (0 for success).
2856 static int rpc_share_delete(struct net_context *c, int argc, const char **argv)
2858 if (argc < 1 || c->display_usage) {
2859 return rpc_share_usage(c, argc, argv);
2862 return NetShareDel(c->opt_host, argv[0], 0);
2866 * Formatted print of share info
2868 * @param r pointer to SHARE_INFO_1 to format
2871 static void display_share_info_1(struct net_context *c,
2872 struct SHARE_INFO_1 *r)
2874 if (c->opt_long_list_entries) {
2875 d_printf("%-12s %-8.8s %-50s\n",
2877 net_share_type_str(r->shi1_type & ~(STYPE_TEMPORARY|STYPE_HIDDEN)),
2880 d_printf("%s\n", r->shi1_netname);
2884 static WERROR get_share_info(struct net_context *c,
2885 struct rpc_pipe_client *pipe_hnd,
2886 TALLOC_CTX *mem_ctx,
2890 struct srvsvc_NetShareInfoCtr *info_ctr)
2894 union srvsvc_NetShareInfo info;
2896 /* no specific share requested, enumerate all */
2899 uint32_t preferred_len = 0xffffffff;
2900 uint32_t total_entries = 0;
2901 uint32_t resume_handle = 0;
2903 info_ctr->level = level;
2905 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, mem_ctx,
2915 /* request just one share */
2916 status = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx,
2923 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result)) {
2928 ZERO_STRUCTP(info_ctr);
2930 info_ctr->level = level;
2935 struct srvsvc_NetShareCtr1 *ctr1;
2937 ctr1 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr1);
2938 W_ERROR_HAVE_NO_MEMORY(ctr1);
2941 ctr1->array = info.info1;
2943 info_ctr->ctr.ctr1 = ctr1;
2947 struct srvsvc_NetShareCtr2 *ctr2;
2949 ctr2 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr2);
2950 W_ERROR_HAVE_NO_MEMORY(ctr2);
2953 ctr2->array = info.info2;
2955 info_ctr->ctr.ctr2 = ctr2;
2959 struct srvsvc_NetShareCtr502 *ctr502;
2961 ctr502 = TALLOC_ZERO_P(mem_ctx, struct srvsvc_NetShareCtr502);
2962 W_ERROR_HAVE_NO_MEMORY(ctr502);
2965 ctr502->array = info.info502;
2967 info_ctr->ctr.ctr502 = ctr502;
2975 * 'net rpc share list' entrypoint.
2976 * @param argc Standard main() style argc.
2977 * @param argv Standard main() style argv. Initial components are already
2980 static int rpc_share_list(struct net_context *c, int argc, const char **argv)
2982 NET_API_STATUS status;
2983 struct SHARE_INFO_1 *i1 = NULL;
2984 uint32_t entries_read = 0;
2985 uint32_t total_entries = 0;
2986 uint32_t resume_handle = 0;
2987 uint32_t i, level = 1;
2989 if (c->display_usage) {
2991 "net rpc share list\n"
2992 " List shares on remote server\n");
2996 status = NetShareEnum(c->opt_host,
3007 /* Display results */
3009 if (c->opt_long_list_entries) {
3011 "\nEnumerating shared resources (exports) on remote server:\n\n"
3012 "\nShare name Type Description\n"
3013 "---------- ---- -----------\n");
3015 for (i = 0; i < entries_read; i++)
3016 display_share_info_1(c, &i1[i]);
3021 static bool check_share_availability(struct cli_state *cli, const char *netname)
3023 if (!cli_send_tconX(cli, netname, "A:", "", 0)) {
3024 d_printf("skipping [%s]: not a file share.\n", netname);
3034 static bool check_share_sanity(struct net_context *c, struct cli_state *cli,
3035 const char *netname, uint32 type)
3037 /* only support disk shares */
3038 if (! ( type == STYPE_DISKTREE || type == (STYPE_DISKTREE | STYPE_HIDDEN)) ) {
3039 printf("share [%s] is not a diskshare (type: %x)\n", netname, type);
3043 /* skip builtin shares */
3044 /* FIXME: should print$ be added too ? */
3045 if (strequal(netname,"IPC$") || strequal(netname,"ADMIN$") ||
3046 strequal(netname,"global"))
3049 if (c->opt_exclude && in_list(netname, c->opt_exclude, false)) {
3050 printf("excluding [%s]\n", netname);
3054 return check_share_availability(cli, netname);
3058 * Migrate shares from a remote RPC server to the local RPC server.
3060 * All parameters are provided by the run_rpc_command function, except for
3061 * argc, argv which are passed through.
3063 * @param domain_sid The domain sid acquired from the remote server.
3064 * @param cli A cli_state connected to the server.
3065 * @param mem_ctx Talloc context, destroyed on completion of the function.
3066 * @param argc Standard main() style argc.
3067 * @param argv Standard main() style argv. Initial components are already
3070 * @return Normal NTSTATUS return.
3073 static NTSTATUS rpc_share_migrate_shares_internals(struct net_context *c,
3074 const DOM_SID *domain_sid,
3075 const char *domain_name,
3076 struct cli_state *cli,
3077 struct rpc_pipe_client *pipe_hnd,
3078 TALLOC_CTX *mem_ctx,
3083 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;