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 "rpc_client/cli_pipe.h"
26 #include "../libcli/auth/libcli_auth.h"
27 #include "../librpc/gen_ndr/ndr_samr_c.h"
28 #include "rpc_client/cli_samr.h"
29 #include "rpc_client/init_samr.h"
30 #include "../librpc/gen_ndr/ndr_lsa_c.h"
31 #include "rpc_client/cli_lsarpc.h"
32 #include "../librpc/gen_ndr/ndr_netlogon_c.h"
33 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
34 #include "../librpc/gen_ndr/ndr_spoolss.h"
35 #include "../librpc/gen_ndr/ndr_initshutdown_c.h"
36 #include "../librpc/gen_ndr/ndr_winreg_c.h"
38 #include "lib/netapi/netapi.h"
39 #include "lib/netapi/netapi_net.h"
40 #include "rpc_client/init_lsa.h"
41 #include "../libcli/security/security.h"
42 #include "libsmb/libsmb.h"
43 #include "libsmb/clirap.h"
44 #include "nsswitch/libwbclient/wbclient.h"
46 #include "../libcli/smb/smbXcli_base.h"
48 static int net_mode_share
;
49 static NTSTATUS
sync_files(struct copy_clistate
*cp_clistate
, const char *mask
);
54 * @brief RPC based subcommands for the 'net' utility.
56 * This file should contain much of the functionality that used to
57 * be found in rpcclient, execpt that the commands should change
58 * less often, and the fucntionality should be sane (the user is not
59 * expected to know a rid/sid before they conduct an operation etc.)
61 * @todo Perhaps eventually these should be split out into a number
62 * of files, as this could get quite big.
67 * Many of the RPC functions need the domain sid. This function gets
68 * it at the start of every run
70 * @param cli A cli_state already connected to the remote machine
72 * @return The Domain SID of the remote machine.
75 NTSTATUS
net_get_remote_domain_sid(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
76 struct dom_sid
**domain_sid
,
77 const char **domain_name
)
79 struct rpc_pipe_client
*lsa_pipe
= NULL
;
80 struct policy_handle pol
;
81 NTSTATUS status
, result
;
82 union lsa_PolicyInformation
*info
= NULL
;
83 struct dcerpc_binding_handle
*b
;
85 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_lsarpc
.syntax_id
,
87 if (!NT_STATUS_IS_OK(status
)) {
88 d_fprintf(stderr
, _("Could not initialise lsa pipe\n"));
92 b
= lsa_pipe
->binding_handle
;
94 status
= rpccli_lsa_open_policy(lsa_pipe
, mem_ctx
, false,
95 SEC_FLAG_MAXIMUM_ALLOWED
,
97 if (!NT_STATUS_IS_OK(status
)) {
98 d_fprintf(stderr
, "open_policy %s: %s\n",
104 status
= dcerpc_lsa_QueryInfoPolicy(b
, mem_ctx
,
106 LSA_POLICY_INFO_ACCOUNT_DOMAIN
,
109 if (!NT_STATUS_IS_OK(status
)) {
110 d_fprintf(stderr
, "lsaquery %s: %s\n",
115 if (!NT_STATUS_IS_OK(result
)) {
116 d_fprintf(stderr
, "lsaquery %s: %s\n",
122 *domain_name
= info
->account_domain
.name
.string
;
123 *domain_sid
= info
->account_domain
.sid
;
125 dcerpc_lsa_Close(b
, mem_ctx
, &pol
, &result
);
126 TALLOC_FREE(lsa_pipe
);
132 * Run a single RPC command, from start to finish.
134 * @param pipe_name the pipe to connect to (usually a PIPE_ constant)
135 * @param conn_flag a NET_FLAG_ combination. Passed to
136 * net_make_ipc_connection.
137 * @param argc Standard main() style argc.
138 * @param argv Standard main() style argv. Initial components are already
140 * @return A shell status integer (0 for success).
143 int run_rpc_command(struct net_context
*c
,
144 struct cli_state
*cli_arg
,
145 const struct ndr_interface_table
*table
,
151 struct cli_state
*cli
= NULL
;
152 struct rpc_pipe_client
*pipe_hnd
= NULL
;
155 struct dom_sid
*domain_sid
;
156 const char *domain_name
;
159 /* make use of cli_state handed over as an argument, if possible */
161 nt_status
= net_make_ipc_connection(c
, conn_flags
, &cli
);
162 if (!NT_STATUS_IS_OK(nt_status
)) {
163 DEBUG(1, ("failed to make ipc connection: %s\n",
164 nt_errstr(nt_status
)));
177 if (!(mem_ctx
= talloc_init("run_rpc_command"))) {
178 DEBUG(0, ("talloc_init() failed\n"));
182 nt_status
= net_get_remote_domain_sid(cli
, mem_ctx
, &domain_sid
,
184 if (!NT_STATUS_IS_OK(nt_status
)) {
188 if (!(conn_flags
& NET_FLAGS_NO_PIPE
)) {
189 if (lp_client_schannel()
190 && (ndr_syntax_id_equal(&table
->syntax_id
,
191 &ndr_table_netlogon
.syntax_id
))) {
192 /* Always try and create an schannel netlogon pipe. */
193 nt_status
= cli_rpc_pipe_open_schannel(
194 cli
, &table
->syntax_id
, NCACN_NP
,
195 DCERPC_AUTH_LEVEL_PRIVACY
, domain_name
,
197 if (!NT_STATUS_IS_OK(nt_status
)) {
198 DEBUG(0, ("Could not initialise schannel netlogon pipe. Error was %s\n",
199 nt_errstr(nt_status
) ));
203 if (conn_flags
& NET_FLAGS_SEAL
) {
204 nt_status
= cli_rpc_pipe_open_generic_auth(
206 (conn_flags
& NET_FLAGS_TCP
) ?
207 NCACN_IP_TCP
: NCACN_NP
,
208 DCERPC_AUTH_TYPE_NTLMSSP
,
209 DCERPC_AUTH_LEVEL_PRIVACY
,
210 smbXcli_conn_remote_name(cli
->conn
),
211 lp_workgroup(), c
->opt_user_name
,
212 c
->opt_password
, &pipe_hnd
);
214 nt_status
= cli_rpc_pipe_open_noauth(
215 cli
, &table
->syntax_id
,
218 if (!NT_STATUS_IS_OK(nt_status
)) {
219 DEBUG(0, ("Could not initialise pipe %s. Error was %s\n",
221 nt_errstr(nt_status
) ));
227 nt_status
= fn(c
, domain_sid
, domain_name
, cli
, pipe_hnd
, mem_ctx
, argc
, argv
);
229 if (!NT_STATUS_IS_OK(nt_status
)) {
230 DEBUG(1, ("rpc command function failed! (%s)\n", nt_errstr(nt_status
)));
233 DEBUG(5, ("rpc command function succedded\n"));
236 if (!(conn_flags
& NET_FLAGS_NO_PIPE
)) {
238 TALLOC_FREE(pipe_hnd
);
243 /* close the connection only if it was opened here */
248 talloc_destroy(mem_ctx
);
253 * Force a change of the trust acccount password.
255 * All parameters are provided by the run_rpc_command function, except for
256 * argc, argv which are passed through.
258 * @param domain_sid The domain sid acquired from the remote server.
259 * @param cli A cli_state connected to the server.
260 * @param mem_ctx Talloc context, destroyed on completion of the function.
261 * @param argc Standard main() style argc.
262 * @param argv Standard main() style argv. Initial components are already
265 * @return Normal NTSTATUS return.
268 static NTSTATUS
rpc_changetrustpw_internals(struct net_context
*c
,
269 const struct dom_sid
*domain_sid
,
270 const char *domain_name
,
271 struct cli_state
*cli
,
272 struct rpc_pipe_client
*pipe_hnd
,
279 status
= trust_pw_find_change_and_store_it(pipe_hnd
, mem_ctx
, c
->opt_target_workgroup
);
280 if (!NT_STATUS_IS_OK(status
)) {
281 d_fprintf(stderr
, _("Failed to change machine account password: %s\n"),
290 * Force a change of the trust acccount password.
292 * @param argc Standard main() style argc.
293 * @param argv Standard main() style argv. Initial components are already
296 * @return A shell status integer (0 for success).
299 int net_rpc_changetrustpw(struct net_context
*c
, int argc
, const char **argv
)
301 if (c
->display_usage
) {
303 "net rpc changetrustpw\n"
306 _("Change the machine trust password"));
310 return run_rpc_command(c
, NULL
, &ndr_table_netlogon
,
311 NET_FLAGS_ANONYMOUS
| NET_FLAGS_PDC
,
312 rpc_changetrustpw_internals
,
317 * Join a domain, the old way.
319 * This uses 'machinename' as the inital password, and changes it.
321 * The password should be created with 'server manager' or equiv first.
323 * All parameters are provided by the run_rpc_command function, except for
324 * argc, argv which are passed through.
326 * @param domain_sid The domain sid acquired from the remote server.
327 * @param cli A cli_state connected to the server.
328 * @param mem_ctx Talloc context, destroyed on completion of the function.
329 * @param argc Standard main() style argc.
330 * @param argv Standard main() style argv. Initial components are already
333 * @return Normal NTSTATUS return.
336 static NTSTATUS
rpc_oldjoin_internals(struct net_context
*c
,
337 const struct dom_sid
*domain_sid
,
338 const char *domain_name
,
339 struct cli_state
*cli
,
340 struct rpc_pipe_client
*pipe_hnd
,
346 fstring trust_passwd
;
347 unsigned char orig_trust_passwd_hash
[16];
349 enum netr_SchannelType sec_channel_type
;
351 result
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_netlogon
.syntax_id
,
353 if (!NT_STATUS_IS_OK(result
)) {
354 DEBUG(0,("rpc_oldjoin_internals: netlogon pipe open to machine %s failed. "
356 smbXcli_conn_remote_name(cli
->conn
),
357 nt_errstr(result
) ));
362 check what type of join - if the user want's to join as
363 a BDC, the server must agree that we are a BDC.
366 sec_channel_type
= get_sec_channel_type(argv
[0]);
368 sec_channel_type
= get_sec_channel_type(NULL
);
371 fstrcpy(trust_passwd
, lp_netbios_name());
372 strlower_m(trust_passwd
);
375 * Machine names can be 15 characters, but the max length on
376 * a password is 14. --jerry
379 trust_passwd
[14] = '\0';
381 E_md4hash(trust_passwd
, orig_trust_passwd_hash
);
383 result
= trust_pw_change_and_store_it(pipe_hnd
, mem_ctx
, c
->opt_target_workgroup
,
385 orig_trust_passwd_hash
,
388 if (NT_STATUS_IS_OK(result
))
389 printf(_("Joined domain %s.\n"), c
->opt_target_workgroup
);
392 if (!secrets_store_domain_sid(c
->opt_target_workgroup
, domain_sid
)) {
393 DEBUG(0, ("error storing domain sid for %s\n", c
->opt_target_workgroup
));
394 result
= NT_STATUS_UNSUCCESSFUL
;
401 * Join a domain, the old way.
403 * @param argc Standard main() style argc.
404 * @param argv Standard main() style argv. Initial components are already
407 * @return A shell status integer (0 for success).
410 static int net_rpc_perform_oldjoin(struct net_context
*c
, int argc
, const char **argv
)
412 return run_rpc_command(c
, NULL
, &ndr_table_netlogon
,
413 NET_FLAGS_NO_PIPE
| NET_FLAGS_ANONYMOUS
| NET_FLAGS_PDC
,
414 rpc_oldjoin_internals
,
419 * Join a domain, the old way. This function exists to allow
420 * the message to be displayed when oldjoin was explicitly
421 * requested, but not when it was implied by "net rpc join".
423 * @param argc Standard main() style argc.
424 * @param argv Standard main() style argv. Initial components are already
427 * @return A shell status integer (0 for success).
430 static int net_rpc_oldjoin(struct net_context
*c
, int argc
, const char **argv
)
434 if (c
->display_usage
) {
439 _("Join a domain the old way"));
443 rc
= net_rpc_perform_oldjoin(c
, argc
, argv
);
446 d_fprintf(stderr
, _("Failed to join domain\n"));
453 * 'net rpc join' entrypoint.
454 * @param argc Standard main() style argc.
455 * @param argv Standard main() style argv. Initial components are already
458 * Main 'net_rpc_join()' (where the admin username/password is used) is
460 * Try to just change the password, but if that doesn't work, use/prompt
461 * for a username/password.
464 int net_rpc_join(struct net_context
*c
, int argc
, const char **argv
)
466 if (c
->display_usage
) {
469 _("net rpc join -U <username>[%%password] <type>\n"
471 " username\tName of the admin user"
472 " password\tPassword of the admin user, will "
473 "prompt if not specified\n"
474 " type\tCan be one of the following:\n"
475 "\t\tMEMBER\tJoin as member server (default)\n"
476 "\t\tBDC\tJoin as BDC\n"
477 "\t\tPDC\tJoin as PDC\n"));
481 if (lp_server_role() == ROLE_STANDALONE
) {
482 d_printf(_("cannot join as standalone machine\n"));
486 if (strlen(lp_netbios_name()) > 15) {
487 d_printf(_("Our netbios name can be at most 15 chars long, "
488 "\"%s\" is %u chars long\n"),
489 lp_netbios_name(), (unsigned int)strlen(lp_netbios_name()));
493 if ((net_rpc_perform_oldjoin(c
, argc
, argv
) == 0))
496 return net_rpc_join_newstyle(c
, argc
, argv
);
500 * display info about a rpc domain
502 * All parameters are provided by the run_rpc_command function, except for
503 * argc, argv which are passed through.
505 * @param domain_sid The domain sid acquired from the remote server
506 * @param cli A cli_state connected to the server.
507 * @param mem_ctx Talloc context, destroyed on completion of the function.
508 * @param argc Standard main() style argc.
509 * @param argv Standard main() style argv. Initial components are already
512 * @return Normal NTSTATUS return.
515 NTSTATUS
rpc_info_internals(struct net_context
*c
,
516 const struct dom_sid
*domain_sid
,
517 const char *domain_name
,
518 struct cli_state
*cli
,
519 struct rpc_pipe_client
*pipe_hnd
,
524 struct policy_handle connect_pol
, domain_pol
;
525 NTSTATUS status
, result
;
526 union samr_DomainInfo
*info
= NULL
;
528 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
530 sid_to_fstring(sid_str
, domain_sid
);
532 /* Get sam policy handle */
533 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
535 MAXIMUM_ALLOWED_ACCESS
,
538 if (!NT_STATUS_IS_OK(status
)) {
539 d_fprintf(stderr
, _("Could not connect to SAM: %s\n"),
544 if (!NT_STATUS_IS_OK(result
)) {
546 d_fprintf(stderr
, _("Could not connect to SAM: %s\n"),
551 /* Get domain policy handle */
552 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
554 MAXIMUM_ALLOWED_ACCESS
,
555 discard_const_p(struct dom_sid2
, domain_sid
),
558 if (!NT_STATUS_IS_OK(status
)) {
559 d_fprintf(stderr
, _("Could not open domain: %s\n"),
563 if (!NT_STATUS_IS_OK(result
)) {
565 d_fprintf(stderr
, _("Could not open domain: %s\n"),
570 status
= dcerpc_samr_QueryDomainInfo(b
, mem_ctx
,
575 if (!NT_STATUS_IS_OK(status
)) {
579 if (NT_STATUS_IS_OK(result
)) {
580 d_printf(_("Domain Name: %s\n"),
581 info
->general
.domain_name
.string
);
582 d_printf(_("Domain SID: %s\n"), sid_str
);
583 d_printf(_("Sequence number: %llu\n"),
584 (unsigned long long)info
->general
.sequence_num
);
585 d_printf(_("Num users: %u\n"), info
->general
.num_users
);
586 d_printf(_("Num domain groups: %u\n"),info
->general
.num_groups
);
587 d_printf(_("Num local groups: %u\n"),info
->general
.num_aliases
);
595 * 'net rpc info' entrypoint.
596 * @param argc Standard main() style argc.
597 * @param argv Standard main() style argv. Initial components are already
601 int net_rpc_info(struct net_context
*c
, int argc
, const char **argv
)
603 if (c
->display_usage
) {
608 _("Display information about the domain"));
612 return run_rpc_command(c
, NULL
, &ndr_table_samr
,
613 NET_FLAGS_PDC
, rpc_info_internals
,
618 * Fetch domain SID into the local secrets.tdb.
620 * All parameters are provided by the run_rpc_command function, except for
621 * argc, argv which are passed through.
623 * @param domain_sid The domain sid acquired from the remote server.
624 * @param cli A cli_state connected to the server.
625 * @param mem_ctx Talloc context, destroyed on completion of the function.
626 * @param argc Standard main() style argc.
627 * @param argv Standard main() style argv. Initial components are already
630 * @return Normal NTSTATUS return.
633 static NTSTATUS
rpc_getsid_internals(struct net_context
*c
,
634 const struct dom_sid
*domain_sid
,
635 const char *domain_name
,
636 struct cli_state
*cli
,
637 struct rpc_pipe_client
*pipe_hnd
,
644 sid_to_fstring(sid_str
, domain_sid
);
645 d_printf(_("Storing SID %s for Domain %s in secrets.tdb\n"),
646 sid_str
, domain_name
);
648 if (!secrets_store_domain_sid(domain_name
, domain_sid
)) {
649 DEBUG(0,("Can't store domain SID\n"));
650 return NT_STATUS_UNSUCCESSFUL
;
657 * 'net rpc getsid' entrypoint.
658 * @param argc Standard main() style argc.
659 * @param argv Standard main() style argv. Initial components are already
663 int net_rpc_getsid(struct net_context
*c
, int argc
, const char **argv
)
665 int conn_flags
= NET_FLAGS_PDC
;
667 if (!c
->opt_user_specified
) {
668 conn_flags
|= NET_FLAGS_ANONYMOUS
;
671 if (c
->display_usage
) {
676 _("Fetch domain SID into local secrets.tdb"));
680 return run_rpc_command(c
, NULL
, &ndr_table_samr
,
682 rpc_getsid_internals
,
686 /****************************************************************************/
689 * Basic usage function for 'net rpc user'.
690 * @param argc Standard main() style argc.
691 * @param argv Standard main() style argv. Initial components are already
695 static int rpc_user_usage(struct net_context
*c
, int argc
, const char **argv
)
697 return net_user_usage(c
, argc
, argv
);
701 * Add a new user to a remote RPC server.
703 * @param argc Standard main() style argc.
704 * @param argv Standard main() style argv. Initial components are already
707 * @return A shell status integer (0 for success).
710 static int rpc_user_add(struct net_context
*c
, int argc
, const char **argv
)
712 NET_API_STATUS status
;
713 struct USER_INFO_1 info1
;
714 uint32_t parm_error
= 0;
716 if (argc
< 1 || c
->display_usage
) {
717 rpc_user_usage(c
, argc
, argv
);
723 info1
.usri1_name
= argv
[0];
725 info1
.usri1_password
= argv
[1];
728 status
= NetUserAdd(c
->opt_host
, 1, (uint8_t *)&info1
, &parm_error
);
731 d_fprintf(stderr
,_("Failed to add user '%s' with error: %s.\n"),
732 argv
[0], libnetapi_get_error_string(c
->netapi_ctx
,
736 d_printf(_("Added user '%s'.\n"), argv
[0]);
743 * Rename a user on a remote RPC server.
745 * @param argc Standard main() style argc.
746 * @param argv Standard main() style argv. Initial components are already
749 * @return A shell status integer (0 for success).
752 static int rpc_user_rename(struct net_context
*c
, int argc
, const char **argv
)
754 NET_API_STATUS status
;
755 struct USER_INFO_0 u0
;
756 uint32_t parm_err
= 0;
758 if (argc
!= 2 || c
->display_usage
) {
759 rpc_user_usage(c
, argc
, argv
);
763 u0
.usri0_name
= argv
[1];
765 status
= NetUserSetInfo(c
->opt_host
, argv
[0],
766 0, (uint8_t *)&u0
, &parm_err
);
769 _("Failed to rename user from %s to %s - %s\n"),
771 libnetapi_get_error_string(c
->netapi_ctx
, status
));
773 d_printf(_("Renamed user from %s to %s\n"), argv
[0], argv
[1]);
780 * Set a user's primary group
782 * @param argc Standard main() style argc.
783 * @param argv Standard main() style argv. Initial components are already
786 * @return A shell status integer (0 for success).
789 static int rpc_user_setprimarygroup(struct net_context
*c
, int argc
,
792 NET_API_STATUS status
;
794 struct GROUP_INFO_2
*g2
;
795 struct USER_INFO_1051 u1051
;
796 uint32_t parm_err
= 0;
798 if (argc
!= 2 || c
->display_usage
) {
799 rpc_user_usage(c
, argc
, argv
);
803 status
= NetGroupGetInfo(c
->opt_host
, argv
[1], 2, &buffer
);
805 d_fprintf(stderr
, _("Failed to find group name %s -- %s\n"),
807 libnetapi_get_error_string(c
->netapi_ctx
, status
));
810 g2
= (struct GROUP_INFO_2
*)buffer
;
812 u1051
.usri1051_primary_group_id
= g2
->grpi2_group_id
;
814 NetApiBufferFree(buffer
);
816 status
= NetUserSetInfo(c
->opt_host
, argv
[0], 1051,
817 (uint8_t *)&u1051
, &parm_err
);
820 _("Failed to set user's primary group %s to %s - "
821 "%s\n"), argv
[0], argv
[1],
822 libnetapi_get_error_string(c
->netapi_ctx
, status
));
824 d_printf(_("Set primary group of user %s to %s\n"), argv
[0],
831 * Delete a user from a remote RPC server.
833 * @param argc Standard main() style argc.
834 * @param argv Standard main() style argv. Initial components are already
837 * @return A shell status integer (0 for success).
840 static int rpc_user_delete(struct net_context
*c
, int argc
, const char **argv
)
842 NET_API_STATUS status
;
844 if (argc
< 1 || c
->display_usage
) {
845 rpc_user_usage(c
, argc
, argv
);
849 status
= NetUserDel(c
->opt_host
, argv
[0]);
852 d_fprintf(stderr
, _("Failed to delete user '%s' with: %s.\n"),
854 libnetapi_get_error_string(c
->netapi_ctx
, status
));
857 d_printf(_("Deleted user '%s'.\n"), argv
[0]);
864 * Set a user's password on a remote RPC server.
866 * @param argc Standard main() style argc.
867 * @param argv Standard main() style argv. Initial components are already
870 * @return A shell status integer (0 for success).
873 static int rpc_user_password(struct net_context
*c
, int argc
, const char **argv
)
875 NET_API_STATUS status
;
877 struct USER_INFO_1003 u1003
;
878 uint32_t parm_err
= 0;
881 if (argc
< 1 || c
->display_usage
) {
882 rpc_user_usage(c
, argc
, argv
);
887 u1003
.usri1003_password
= argv
[1];
889 ret
= asprintf(&prompt
, _("Enter new password for %s:"),
894 u1003
.usri1003_password
= talloc_strdup(c
, getpass(prompt
));
896 if (u1003
.usri1003_password
== NULL
) {
901 status
= NetUserSetInfo(c
->opt_host
, argv
[0], 1003, (uint8_t *)&u1003
, &parm_err
);
903 /* Display results */
906 _("Failed to set password for '%s' with error: %s.\n"),
907 argv
[0], libnetapi_get_error_string(c
->netapi_ctx
,
916 * List a user's groups from a remote RPC server.
918 * @param argc Standard main() style argc.
919 * @param argv Standard main() style argv. Initial components are already
922 * @return A shell status integer (0 for success)
925 static int rpc_user_info(struct net_context
*c
, int argc
, const char **argv
)
928 NET_API_STATUS status
;
929 struct GROUP_USERS_INFO_0
*u0
= NULL
;
930 uint32_t entries_read
= 0;
931 uint32_t total_entries
= 0;
935 if (argc
< 1 || c
->display_usage
) {
936 rpc_user_usage(c
, argc
, argv
);
940 status
= NetUserGetGroups(c
->opt_host
,
943 (uint8_t **)(void *)&u0
,
949 _("Failed to get groups for '%s' with error: %s.\n"),
950 argv
[0], libnetapi_get_error_string(c
->netapi_ctx
,
955 for (i
=0; i
< entries_read
; i
++) {
956 printf("%s\n", u0
->grui0_name
);
964 * List users on a remote RPC server.
966 * All parameters are provided by the run_rpc_command function, except for
967 * argc, argv which are passed through.
969 * @param domain_sid The domain sid acquired from the remote server.
970 * @param cli A cli_state connected to the server.
971 * @param mem_ctx Talloc context, destroyed on completion of the function.
972 * @param argc Standard main() style argc.
973 * @param argv Standard main() style argv. Initial components are already
976 * @return Normal NTSTATUS return.
979 static int rpc_user_list(struct net_context
*c
, int argc
, const char **argv
)
981 NET_API_STATUS status
;
982 uint32_t start_idx
=0, num_entries
, i
, loop_count
= 0;
983 struct NET_DISPLAY_USER
*info
= NULL
;
986 /* Query domain users */
987 if (c
->opt_long_list_entries
)
988 d_printf(_("\nUser name Comment"
989 "\n-----------------------------\n"));
991 uint32_t max_entries
, max_size
;
993 dcerpc_get_query_dispinfo_params(
994 loop_count
, &max_entries
, &max_size
);
996 status
= NetQueryDisplayInformation(c
->opt_host
,
1003 if (status
!= 0 && status
!= ERROR_MORE_DATA
) {
1007 info
= (struct NET_DISPLAY_USER
*)buffer
;
1009 for (i
= 0; i
< num_entries
; i
++) {
1011 if (c
->opt_long_list_entries
)
1012 printf("%-21.21s %s\n", info
->usri1_name
,
1013 info
->usri1_comment
);
1015 printf("%s\n", info
->usri1_name
);
1019 NetApiBufferFree(buffer
);
1022 start_idx
+= num_entries
;
1024 } while (status
== ERROR_MORE_DATA
);
1030 * 'net rpc user' entrypoint.
1031 * @param argc Standard main() style argc.
1032 * @param argv Standard main() style argv. Initial components are already
1036 int net_rpc_user(struct net_context
*c
, int argc
, const char **argv
)
1038 NET_API_STATUS status
;
1040 struct functable func
[] = {
1045 N_("Add specified user"),
1046 N_("net rpc user add\n"
1047 " Add specified user")
1053 N_("List domain groups of user"),
1054 N_("net rpc user info\n"
1055 " List domain groups of user")
1061 N_("Remove specified user"),
1062 N_("net rpc user delete\n"
1063 " Remove specified user")
1069 N_("Change user password"),
1070 N_("net rpc user password\n"
1071 " Change user password")
1077 N_("Rename specified user"),
1078 N_("net rpc user rename\n"
1079 " Rename specified user")
1083 rpc_user_setprimarygroup
,
1085 "Set a user's primary group",
1086 "net rpc user setprimarygroup\n"
1087 " Set a user's primary group"
1089 {NULL
, NULL
, 0, NULL
, NULL
}
1092 status
= libnetapi_net_init(&c
->netapi_ctx
);
1096 libnetapi_set_username(c
->netapi_ctx
, c
->opt_user_name
);
1097 libnetapi_set_password(c
->netapi_ctx
, c
->opt_password
);
1098 if (c
->opt_kerberos
) {
1099 libnetapi_set_use_kerberos(c
->netapi_ctx
);
1103 if (c
->display_usage
) {
1108 _("List all users"));
1109 net_display_usage_from_functable(func
);
1113 return rpc_user_list(c
, argc
, argv
);
1116 return net_run_function(c
, argc
, argv
, "net rpc user", func
);
1119 static NTSTATUS
rpc_sh_user_list(struct net_context
*c
,
1120 TALLOC_CTX
*mem_ctx
,
1121 struct rpc_sh_ctx
*ctx
,
1122 struct rpc_pipe_client
*pipe_hnd
,
1123 int argc
, const char **argv
)
1125 return werror_to_ntstatus(W_ERROR(rpc_user_list(c
, argc
, argv
)));
1128 static NTSTATUS
rpc_sh_user_info(struct net_context
*c
,
1129 TALLOC_CTX
*mem_ctx
,
1130 struct rpc_sh_ctx
*ctx
,
1131 struct rpc_pipe_client
*pipe_hnd
,
1132 int argc
, const char **argv
)
1134 return werror_to_ntstatus(W_ERROR(rpc_user_info(c
, argc
, argv
)));
1137 static NTSTATUS
rpc_sh_handle_user(struct net_context
*c
,
1138 TALLOC_CTX
*mem_ctx
,
1139 struct rpc_sh_ctx
*ctx
,
1140 struct rpc_pipe_client
*pipe_hnd
,
1141 int argc
, const char **argv
,
1143 struct net_context
*c
,
1144 TALLOC_CTX
*mem_ctx
,
1145 struct rpc_sh_ctx
*ctx
,
1146 struct rpc_pipe_client
*pipe_hnd
,
1147 struct policy_handle
*user_hnd
,
1148 int argc
, const char **argv
))
1150 struct policy_handle connect_pol
, domain_pol
, user_pol
;
1151 NTSTATUS status
, result
;
1154 enum lsa_SidType type
;
1155 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1158 d_fprintf(stderr
, "%s %s <username>\n", _("Usage:"),
1160 return NT_STATUS_INVALID_PARAMETER
;
1163 ZERO_STRUCT(connect_pol
);
1164 ZERO_STRUCT(domain_pol
);
1165 ZERO_STRUCT(user_pol
);
1167 status
= net_rpc_lookup_name(c
, mem_ctx
, rpc_pipe_np_smb_conn(pipe_hnd
),
1168 argv
[0], NULL
, NULL
, &sid
, &type
);
1169 if (!NT_STATUS_IS_OK(status
)) {
1170 d_fprintf(stderr
, _("Could not lookup %s: %s\n"), argv
[0],
1175 if (type
!= SID_NAME_USER
) {
1176 d_fprintf(stderr
, _("%s is a %s, not a user\n"), argv
[0],
1177 sid_type_lookup(type
));
1178 status
= NT_STATUS_NO_SUCH_USER
;
1182 if (!sid_peek_check_rid(ctx
->domain_sid
, &sid
, &rid
)) {
1183 d_fprintf(stderr
, _("%s is not in our domain\n"), argv
[0]);
1184 status
= NT_STATUS_NO_SUCH_USER
;
1188 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
1190 MAXIMUM_ALLOWED_ACCESS
,
1193 if (!NT_STATUS_IS_OK(status
)) {
1196 if (!NT_STATUS_IS_OK(result
)) {
1201 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
1203 MAXIMUM_ALLOWED_ACCESS
,
1207 if (!NT_STATUS_IS_OK(status
)) {
1210 if (!NT_STATUS_IS_OK(result
)) {
1215 status
= dcerpc_samr_OpenUser(b
, mem_ctx
,
1217 MAXIMUM_ALLOWED_ACCESS
,
1221 if (!NT_STATUS_IS_OK(status
)) {
1224 if (!NT_STATUS_IS_OK(result
)) {
1229 status
= fn(c
, mem_ctx
, ctx
, pipe_hnd
, &user_pol
, argc
-1, argv
+1);
1232 if (is_valid_policy_hnd(&user_pol
)) {
1233 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1235 if (is_valid_policy_hnd(&domain_pol
)) {
1236 dcerpc_samr_Close(b
, mem_ctx
, &domain_pol
, &result
);
1238 if (is_valid_policy_hnd(&connect_pol
)) {
1239 dcerpc_samr_Close(b
, mem_ctx
, &connect_pol
, &result
);
1244 static NTSTATUS
rpc_sh_user_show_internals(struct net_context
*c
,
1245 TALLOC_CTX
*mem_ctx
,
1246 struct rpc_sh_ctx
*ctx
,
1247 struct rpc_pipe_client
*pipe_hnd
,
1248 struct policy_handle
*user_hnd
,
1249 int argc
, const char **argv
)
1251 NTSTATUS status
, result
;
1252 union samr_UserInfo
*info
= NULL
;
1253 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1256 d_fprintf(stderr
, "%s %s show <username>\n", _("Usage:"),
1258 return NT_STATUS_INVALID_PARAMETER
;
1261 status
= dcerpc_samr_QueryUserInfo(b
, mem_ctx
,
1266 if (!NT_STATUS_IS_OK(status
)) {
1269 if (!NT_STATUS_IS_OK(result
)) {
1273 d_printf(_("user rid: %d, group rid: %d\n"),
1275 info
->info21
.primary_gid
);
1280 static NTSTATUS
rpc_sh_user_show(struct net_context
*c
,
1281 TALLOC_CTX
*mem_ctx
,
1282 struct rpc_sh_ctx
*ctx
,
1283 struct rpc_pipe_client
*pipe_hnd
,
1284 int argc
, const char **argv
)
1286 return rpc_sh_handle_user(c
, mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
1287 rpc_sh_user_show_internals
);
1290 #define FETCHSTR(name, rec) \
1291 do { if (strequal(ctx->thiscmd, name)) { \
1292 oldval = talloc_strdup(mem_ctx, info->info21.rec.string); } \
1295 #define SETSTR(name, rec, flag) \
1296 do { if (strequal(ctx->thiscmd, name)) { \
1297 init_lsa_String(&(info->info21.rec), argv[0]); \
1298 info->info21.fields_present |= SAMR_FIELD_##flag; } \
1301 static NTSTATUS
rpc_sh_user_str_edit_internals(struct net_context
*c
,
1302 TALLOC_CTX
*mem_ctx
,
1303 struct rpc_sh_ctx
*ctx
,
1304 struct rpc_pipe_client
*pipe_hnd
,
1305 struct policy_handle
*user_hnd
,
1306 int argc
, const char **argv
)
1308 NTSTATUS status
, result
;
1309 const char *username
;
1310 const char *oldval
= "";
1311 union samr_UserInfo
*info
= NULL
;
1312 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1315 d_fprintf(stderr
, "%s %s <username> [new value|NULL]\n",
1316 _("Usage:"), ctx
->whoami
);
1317 return NT_STATUS_INVALID_PARAMETER
;
1320 status
= dcerpc_samr_QueryUserInfo(b
, mem_ctx
,
1325 if (!NT_STATUS_IS_OK(status
)) {
1328 if (!NT_STATUS_IS_OK(result
)) {
1332 username
= talloc_strdup(mem_ctx
, info
->info21
.account_name
.string
);
1334 FETCHSTR("fullname", full_name
);
1335 FETCHSTR("homedir", home_directory
);
1336 FETCHSTR("homedrive", home_drive
);
1337 FETCHSTR("logonscript", logon_script
);
1338 FETCHSTR("profilepath", profile_path
);
1339 FETCHSTR("description", description
);
1342 d_printf(_("%s's %s: [%s]\n"), username
, ctx
->thiscmd
, oldval
);
1346 if (strcmp(argv
[0], "NULL") == 0) {
1350 ZERO_STRUCT(info
->info21
);
1352 SETSTR("fullname", full_name
, FULL_NAME
);
1353 SETSTR("homedir", home_directory
, HOME_DIRECTORY
);
1354 SETSTR("homedrive", home_drive
, HOME_DRIVE
);
1355 SETSTR("logonscript", logon_script
, LOGON_SCRIPT
);
1356 SETSTR("profilepath", profile_path
, PROFILE_PATH
);
1357 SETSTR("description", description
, DESCRIPTION
);
1359 status
= dcerpc_samr_SetUserInfo(b
, mem_ctx
,
1364 if (!NT_STATUS_IS_OK(status
)) {
1370 d_printf(_("Set %s's %s from [%s] to [%s]\n"), username
,
1371 ctx
->thiscmd
, oldval
, argv
[0]);
1378 #define HANDLEFLG(name, rec) \
1379 do { if (strequal(ctx->thiscmd, name)) { \
1380 oldval = (oldflags & ACB_##rec) ? "yes" : "no"; \
1382 newflags = oldflags | ACB_##rec; \
1384 newflags = oldflags & ~ACB_##rec; \
1387 static NTSTATUS
rpc_sh_user_str_edit(struct net_context
*c
,
1388 TALLOC_CTX
*mem_ctx
,
1389 struct rpc_sh_ctx
*ctx
,
1390 struct rpc_pipe_client
*pipe_hnd
,
1391 int argc
, const char **argv
)
1393 return rpc_sh_handle_user(c
, mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
1394 rpc_sh_user_str_edit_internals
);
1397 static NTSTATUS
rpc_sh_user_flag_edit_internals(struct net_context
*c
,
1398 TALLOC_CTX
*mem_ctx
,
1399 struct rpc_sh_ctx
*ctx
,
1400 struct rpc_pipe_client
*pipe_hnd
,
1401 struct policy_handle
*user_hnd
,
1402 int argc
, const char **argv
)
1404 NTSTATUS status
, result
;
1405 const char *username
;
1406 const char *oldval
= "unknown";
1407 uint32 oldflags
, newflags
;
1409 union samr_UserInfo
*info
= NULL
;
1410 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1413 ((argc
== 1) && !strequal(argv
[0], "yes") &&
1414 !strequal(argv
[0], "no"))) {
1415 /* TRANSATORS: The yes|no here are program keywords. Please do
1417 d_fprintf(stderr
, _("Usage: %s <username> [yes|no]\n"),
1419 return NT_STATUS_INVALID_PARAMETER
;
1422 newval
= strequal(argv
[0], "yes");
1424 status
= dcerpc_samr_QueryUserInfo(b
, mem_ctx
,
1429 if (!NT_STATUS_IS_OK(status
)) {
1432 if (!NT_STATUS_IS_OK(result
)) {
1436 username
= talloc_strdup(mem_ctx
, info
->info21
.account_name
.string
);
1437 oldflags
= info
->info21
.acct_flags
;
1438 newflags
= info
->info21
.acct_flags
;
1440 HANDLEFLG("disabled", DISABLED
);
1441 HANDLEFLG("pwnotreq", PWNOTREQ
);
1442 HANDLEFLG("autolock", AUTOLOCK
);
1443 HANDLEFLG("pwnoexp", PWNOEXP
);
1446 d_printf(_("%s's %s flag: %s\n"), username
, ctx
->thiscmd
,
1451 ZERO_STRUCT(info
->info21
);
1453 info
->info21
.acct_flags
= newflags
;
1454 info
->info21
.fields_present
= SAMR_FIELD_ACCT_FLAGS
;
1456 status
= dcerpc_samr_SetUserInfo(b
, mem_ctx
,
1461 if (!NT_STATUS_IS_OK(status
)) {
1465 if (NT_STATUS_IS_OK(result
)) {
1466 d_printf(_("Set %s's %s flag from [%s] to [%s]\n"), username
,
1467 ctx
->thiscmd
, oldval
, argv
[0]);
1475 static NTSTATUS
rpc_sh_user_flag_edit(struct net_context
*c
,
1476 TALLOC_CTX
*mem_ctx
,
1477 struct rpc_sh_ctx
*ctx
,
1478 struct rpc_pipe_client
*pipe_hnd
,
1479 int argc
, const char **argv
)
1481 return rpc_sh_handle_user(c
, mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
1482 rpc_sh_user_flag_edit_internals
);
1485 struct rpc_sh_cmd
*net_rpc_user_edit_cmds(struct net_context
*c
,
1486 TALLOC_CTX
*mem_ctx
,
1487 struct rpc_sh_ctx
*ctx
)
1489 static struct rpc_sh_cmd cmds
[] = {
1491 { "fullname", NULL
, &ndr_table_samr
, rpc_sh_user_str_edit
,
1492 N_("Show/Set a user's full name") },
1494 { "homedir", NULL
, &ndr_table_samr
, rpc_sh_user_str_edit
,
1495 N_("Show/Set a user's home directory") },
1497 { "homedrive", NULL
, &ndr_table_samr
, rpc_sh_user_str_edit
,
1498 N_("Show/Set a user's home drive") },
1500 { "logonscript", NULL
, &ndr_table_samr
, rpc_sh_user_str_edit
,
1501 N_("Show/Set a user's logon script") },
1503 { "profilepath", NULL
, &ndr_table_samr
, rpc_sh_user_str_edit
,
1504 N_("Show/Set a user's profile path") },
1506 { "description", NULL
, &ndr_table_samr
, rpc_sh_user_str_edit
,
1507 N_("Show/Set a user's description") },
1509 { "disabled", NULL
, &ndr_table_samr
, rpc_sh_user_flag_edit
,
1510 N_("Show/Set whether a user is disabled") },
1512 { "autolock", NULL
, &ndr_table_samr
, rpc_sh_user_flag_edit
,
1513 N_("Show/Set whether a user locked out") },
1515 { "pwnotreq", NULL
, &ndr_table_samr
, rpc_sh_user_flag_edit
,
1516 N_("Show/Set whether a user does not need a password") },
1518 { "pwnoexp", NULL
, &ndr_table_samr
, rpc_sh_user_flag_edit
,
1519 N_("Show/Set whether a user's password does not expire") },
1521 { NULL
, NULL
, 0, NULL
, NULL
}
1527 struct rpc_sh_cmd
*net_rpc_user_cmds(struct net_context
*c
,
1528 TALLOC_CTX
*mem_ctx
,
1529 struct rpc_sh_ctx
*ctx
)
1531 static struct rpc_sh_cmd cmds
[] = {
1533 { "list", NULL
, &ndr_table_samr
, rpc_sh_user_list
,
1534 N_("List available users") },
1536 { "info", NULL
, &ndr_table_samr
, rpc_sh_user_info
,
1537 N_("List the domain groups a user is member of") },
1539 { "show", NULL
, &ndr_table_samr
, rpc_sh_user_show
,
1540 N_("Show info about a user") },
1542 { "edit", net_rpc_user_edit_cmds
, 0, NULL
,
1543 N_("Show/Modify a user's fields") },
1545 { NULL
, NULL
, 0, NULL
, NULL
}
1551 /****************************************************************************/
1554 * Basic usage function for 'net rpc group'.
1555 * @param argc Standard main() style argc.
1556 * @param argv Standard main() style argv. Initial components are already
1560 static int rpc_group_usage(struct net_context
*c
, int argc
, const char **argv
)
1562 return net_group_usage(c
, argc
, argv
);
1566 * Delete group on a remote RPC server.
1568 * All parameters are provided by the run_rpc_command function, except for
1569 * argc, argv which are passed through.
1571 * @param domain_sid The domain sid acquired from the remote server.
1572 * @param cli A cli_state connected to the server.
1573 * @param mem_ctx Talloc context, destroyed on completion of the function.
1574 * @param argc Standard main() style argc.
1575 * @param argv Standard main() style argv. Initial components are already
1578 * @return Normal NTSTATUS return.
1581 static NTSTATUS
rpc_group_delete_internals(struct net_context
*c
,
1582 const struct dom_sid
*domain_sid
,
1583 const char *domain_name
,
1584 struct cli_state
*cli
,
1585 struct rpc_pipe_client
*pipe_hnd
,
1586 TALLOC_CTX
*mem_ctx
,
1590 struct policy_handle connect_pol
, domain_pol
, group_pol
, user_pol
;
1591 bool group_is_primary
= false;
1592 NTSTATUS status
, result
;
1594 struct samr_RidAttrArray
*rids
= NULL
;
1597 /* struct samr_RidWithAttribute *user_gids; */
1598 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1600 struct samr_Ids group_rids
, name_types
;
1601 struct lsa_String lsa_acct_name
;
1602 union samr_UserInfo
*info
= NULL
;
1604 if (argc
< 1 || c
->display_usage
) {
1605 rpc_group_usage(c
, argc
,argv
);
1606 return NT_STATUS_OK
; /* ok? */
1609 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
1611 MAXIMUM_ALLOWED_ACCESS
,
1614 if (!NT_STATUS_IS_OK(status
)) {
1615 d_fprintf(stderr
, _("Request samr_Connect2 failed\n"));
1619 if (!NT_STATUS_IS_OK(result
)) {
1621 d_fprintf(stderr
, _("Request samr_Connect2 failed\n"));
1625 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
1627 MAXIMUM_ALLOWED_ACCESS
,
1628 discard_const_p(struct dom_sid2
, domain_sid
),
1631 if (!NT_STATUS_IS_OK(status
)) {
1632 d_fprintf(stderr
, _("Request open_domain failed\n"));
1636 if (!NT_STATUS_IS_OK(result
)) {
1638 d_fprintf(stderr
, _("Request open_domain failed\n"));
1642 init_lsa_String(&lsa_acct_name
, argv
[0]);
1644 status
= dcerpc_samr_LookupNames(b
, mem_ctx
,
1651 if (!NT_STATUS_IS_OK(status
)) {
1652 d_fprintf(stderr
, _("Lookup of '%s' failed\n"),argv
[0]);
1656 if (!NT_STATUS_IS_OK(result
)) {
1658 d_fprintf(stderr
, _("Lookup of '%s' failed\n"),argv
[0]);
1662 switch (name_types
.ids
[0])
1664 case SID_NAME_DOM_GRP
:
1665 status
= dcerpc_samr_OpenGroup(b
, mem_ctx
,
1667 MAXIMUM_ALLOWED_ACCESS
,
1671 if (!NT_STATUS_IS_OK(status
)) {
1672 d_fprintf(stderr
, _("Request open_group failed"));
1676 if (!NT_STATUS_IS_OK(result
)) {
1678 d_fprintf(stderr
, _("Request open_group failed"));
1682 group_rid
= group_rids
.ids
[0];
1684 status
= dcerpc_samr_QueryGroupMember(b
, mem_ctx
,
1688 if (!NT_STATUS_IS_OK(status
)) {
1690 _("Unable to query group members of %s"),
1695 if (!NT_STATUS_IS_OK(result
)) {
1698 _("Unable to query group members of %s"),
1703 if (c
->opt_verbose
) {
1705 _("Domain Group %s (rid: %d) has %d members\n"),
1706 argv
[0],group_rid
, rids
->count
);
1709 /* Check if group is anyone's primary group */
1710 for (i
= 0; i
< rids
->count
; i
++)
1712 status
= dcerpc_samr_OpenUser(b
, mem_ctx
,
1714 MAXIMUM_ALLOWED_ACCESS
,
1718 if (!NT_STATUS_IS_OK(status
)) {
1720 _("Unable to open group member %d\n"),
1725 if (!NT_STATUS_IS_OK(result
)) {
1728 _("Unable to open group member %d\n"),
1733 status
= dcerpc_samr_QueryUserInfo(b
, mem_ctx
,
1738 if (!NT_STATUS_IS_OK(status
)) {
1740 _("Unable to lookup userinfo for group "
1746 if (!NT_STATUS_IS_OK(result
)) {
1749 _("Unable to lookup userinfo for group "
1755 if (info
->info21
.primary_gid
== group_rid
) {
1756 if (c
->opt_verbose
) {
1757 d_printf(_("Group is primary group "
1759 info
->info21
.account_name
.string
);
1761 group_is_primary
= true;
1764 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result
);
1767 if (group_is_primary
) {
1768 d_fprintf(stderr
, _("Unable to delete group because "
1769 "some of it's members have it as primary "
1771 status
= NT_STATUS_MEMBERS_PRIMARY_GROUP
;
1775 /* remove all group members */
1776 for (i
= 0; i
< rids
->count
; i
++)
1779 d_printf(_("Remove group member %d..."),
1781 status
= dcerpc_samr_DeleteGroupMember(b
, mem_ctx
,
1785 if (!NT_STATUS_IS_OK(status
)) {
1789 if (NT_STATUS_IS_OK(result
)) {
1791 d_printf(_("ok\n"));
1794 d_printf("%s\n", _("failed"));
1799 status
= dcerpc_samr_DeleteDomainGroup(b
, mem_ctx
,
1802 if (!NT_STATUS_IS_OK(status
)) {
1809 /* removing a local group is easier... */
1810 case SID_NAME_ALIAS
:
1811 status
= dcerpc_samr_OpenAlias(b
, mem_ctx
,
1813 MAXIMUM_ALLOWED_ACCESS
,
1817 if (!NT_STATUS_IS_OK(status
)) {
1818 d_fprintf(stderr
, _("Request open_alias failed\n"));
1821 if (!NT_STATUS_IS_OK(result
)) {
1823 d_fprintf(stderr
, _("Request open_alias failed\n"));
1827 status
= dcerpc_samr_DeleteDomAlias(b
, mem_ctx
,
1830 if (!NT_STATUS_IS_OK(status
)) {
1838 d_fprintf(stderr
, _("%s is of type %s. This command is only "
1839 "for deleting local or global groups\n"),
1840 argv
[0],sid_type_lookup(name_types
.ids
[0]));
1841 status
= NT_STATUS_UNSUCCESSFUL
;
1845 if (NT_STATUS_IS_OK(status
)) {
1847 d_printf(_("Deleted %s '%s'\n"),
1848 sid_type_lookup(name_types
.ids
[0]), argv
[0]);
1850 d_fprintf(stderr
, _("Deleting of %s failed: %s\n"), argv
[0],
1851 get_friendly_nt_error_msg(status
));
1859 static int rpc_group_delete(struct net_context
*c
, int argc
, const char **argv
)
1861 return run_rpc_command(c
, NULL
, &ndr_table_samr
, 0,
1862 rpc_group_delete_internals
, argc
,argv
);
1865 static int rpc_group_add_internals(struct net_context
*c
, int argc
, const char **argv
)
1867 NET_API_STATUS status
;
1868 struct GROUP_INFO_1 info1
;
1869 uint32_t parm_error
= 0;
1871 if (argc
!= 1 || c
->display_usage
) {
1872 rpc_group_usage(c
, argc
, argv
);
1878 info1
.grpi1_name
= argv
[0];
1879 if (c
->opt_comment
&& strlen(c
->opt_comment
) > 0) {
1880 info1
.grpi1_comment
= c
->opt_comment
;
1883 status
= NetGroupAdd(c
->opt_host
, 1, (uint8_t *)&info1
, &parm_error
);
1887 _("Failed to add group '%s' with error: %s.\n"),
1888 argv
[0], libnetapi_get_error_string(c
->netapi_ctx
,
1892 d_printf(_("Added group '%s'.\n"), argv
[0]);
1898 static int rpc_alias_add_internals(struct net_context
*c
, int argc
, const char **argv
)
1900 NET_API_STATUS status
;
1901 struct LOCALGROUP_INFO_1 info1
;
1902 uint32_t parm_error
= 0;
1904 if (argc
!= 1 || c
->display_usage
) {
1905 rpc_group_usage(c
, argc
, argv
);
1911 info1
.lgrpi1_name
= argv
[0];
1912 if (c
->opt_comment
&& strlen(c
->opt_comment
) > 0) {
1913 info1
.lgrpi1_comment
= c
->opt_comment
;
1916 status
= NetLocalGroupAdd(c
->opt_host
, 1, (uint8_t *)&info1
, &parm_error
);
1920 _("Failed to add alias '%s' with error: %s.\n"),
1921 argv
[0], libnetapi_get_error_string(c
->netapi_ctx
,
1925 d_printf(_("Added alias '%s'.\n"), argv
[0]);
1931 static int rpc_group_add(struct net_context
*c
, int argc
, const char **argv
)
1933 if (c
->opt_localgroup
)
1934 return rpc_alias_add_internals(c
, argc
, argv
);
1936 return rpc_group_add_internals(c
, argc
, argv
);
1939 static NTSTATUS
get_sid_from_name(struct cli_state
*cli
,
1940 TALLOC_CTX
*mem_ctx
,
1942 struct dom_sid
*sid
,
1943 enum lsa_SidType
*type
)
1945 struct dom_sid
*sids
= NULL
;
1946 enum lsa_SidType
*types
= NULL
;
1947 struct rpc_pipe_client
*pipe_hnd
= NULL
;
1948 struct policy_handle lsa_pol
;
1949 NTSTATUS status
, result
;
1950 struct dcerpc_binding_handle
*b
;
1952 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_lsarpc
.syntax_id
,
1954 if (!NT_STATUS_IS_OK(status
)) {
1958 b
= pipe_hnd
->binding_handle
;
1960 status
= rpccli_lsa_open_policy(pipe_hnd
, mem_ctx
, false,
1961 SEC_FLAG_MAXIMUM_ALLOWED
, &lsa_pol
);
1963 if (!NT_STATUS_IS_OK(status
)) {
1967 status
= rpccli_lsa_lookup_names(pipe_hnd
, mem_ctx
, &lsa_pol
, 1,
1968 &name
, NULL
, 1, &sids
, &types
);
1970 if (NT_STATUS_IS_OK(status
)) {
1971 sid_copy(sid
, &sids
[0]);
1975 dcerpc_lsa_Close(b
, mem_ctx
, &lsa_pol
, &result
);
1979 TALLOC_FREE(pipe_hnd
);
1982 if (!NT_STATUS_IS_OK(status
) && (strncasecmp_m(name
, "S-", 2) == 0)) {
1984 /* Try as S-1-5-whatever */
1986 struct dom_sid tmp_sid
;
1988 if (string_to_sid(&tmp_sid
, name
)) {
1989 sid_copy(sid
, &tmp_sid
);
1990 *type
= SID_NAME_UNKNOWN
;
1991 status
= NT_STATUS_OK
;
1998 static NTSTATUS
rpc_add_groupmem(struct rpc_pipe_client
*pipe_hnd
,
1999 TALLOC_CTX
*mem_ctx
,
2000 const struct dom_sid
*group_sid
,
2003 struct policy_handle connect_pol
, domain_pol
;
2004 NTSTATUS status
, result
;
2006 struct policy_handle group_pol
;
2007 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
2009 struct samr_Ids rids
, rid_types
;
2010 struct lsa_String lsa_acct_name
;
2014 sid_copy(&sid
, group_sid
);
2016 if (!sid_split_rid(&sid
, &group_rid
)) {
2017 return NT_STATUS_UNSUCCESSFUL
;
2020 /* Get sam policy handle */
2021 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
2023 MAXIMUM_ALLOWED_ACCESS
,
2026 if (!NT_STATUS_IS_OK(status
)) {
2029 if (!NT_STATUS_IS_OK(result
)) {
2033 /* Get domain policy handle */
2034 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
2036 MAXIMUM_ALLOWED_ACCESS
,
2040 if (!NT_STATUS_IS_OK(status
)) {
2043 if (!NT_STATUS_IS_OK(result
)) {
2047 init_lsa_String(&lsa_acct_name
, member
);
2049 status
= dcerpc_samr_LookupNames(b
, mem_ctx
,
2056 if (!NT_STATUS_IS_OK(status
)) {
2057 d_fprintf(stderr
, _("Could not lookup up group member %s\n"),
2062 if (!NT_STATUS_IS_OK(result
)) {
2064 d_fprintf(stderr
, _("Could not lookup up group member %s\n"),
2069 status
= dcerpc_samr_OpenGroup(b
, mem_ctx
,
2071 MAXIMUM_ALLOWED_ACCESS
,
2075 if (!NT_STATUS_IS_OK(status
)) {
2079 if (!NT_STATUS_IS_OK(result
)) {
2084 status
= dcerpc_samr_AddGroupMember(b
, mem_ctx
,
2087 0x0005, /* unknown flags */
2089 if (!NT_STATUS_IS_OK(status
)) {
2096 dcerpc_samr_Close(b
, mem_ctx
, &connect_pol
, &result
);
2100 static NTSTATUS
rpc_add_aliasmem(struct rpc_pipe_client
*pipe_hnd
,
2101 TALLOC_CTX
*mem_ctx
,
2102 const struct dom_sid
*alias_sid
,
2105 struct policy_handle connect_pol
, domain_pol
;
2106 NTSTATUS status
, result
;
2108 struct policy_handle alias_pol
;
2109 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
2111 struct dom_sid member_sid
;
2112 enum lsa_SidType member_type
;
2116 sid_copy(&sid
, alias_sid
);
2118 if (!sid_split_rid(&sid
, &alias_rid
)) {
2119 return NT_STATUS_UNSUCCESSFUL
;
2122 result
= get_sid_from_name(rpc_pipe_np_smb_conn(pipe_hnd
), mem_ctx
,
2123 member
, &member_sid
, &member_type
);
2125 if (!NT_STATUS_IS_OK(result
)) {
2126 d_fprintf(stderr
, _("Could not lookup up group member %s\n"),
2131 /* Get sam policy handle */
2132 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
2134 MAXIMUM_ALLOWED_ACCESS
,
2137 if (!NT_STATUS_IS_OK(status
)) {
2140 if (!NT_STATUS_IS_OK(result
)) {
2145 /* Get domain policy handle */
2146 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
2148 MAXIMUM_ALLOWED_ACCESS
,
2152 if (!NT_STATUS_IS_OK(status
)) {
2155 if (!NT_STATUS_IS_OK(result
)) {
2160 status
= dcerpc_samr_OpenAlias(b
, mem_ctx
,
2162 MAXIMUM_ALLOWED_ACCESS
,
2166 if (!NT_STATUS_IS_OK(status
)) {
2169 if (!NT_STATUS_IS_OK(result
)) {
2173 status
= dcerpc_samr_AddAliasMember(b
, mem_ctx
,
2177 if (!NT_STATUS_IS_OK(status
)) {
2184 dcerpc_samr_Close(b
, mem_ctx
, &connect_pol
, &result
);
2188 static NTSTATUS
rpc_group_addmem_internals(struct net_context
*c
,
2189 const struct dom_sid
*domain_sid
,
2190 const char *domain_name
,
2191 struct cli_state
*cli
,
2192 struct rpc_pipe_client
*pipe_hnd
,
2193 TALLOC_CTX
*mem_ctx
,
2197 struct dom_sid group_sid
;
2198 enum lsa_SidType group_type
;
2200 if (argc
!= 2 || c
->display_usage
) {
2203 _("net rpc group addmem <group> <member>\n"
2204 " Add a member to a group\n"
2205 " group\tGroup to add member to\n"
2206 " member\tMember to add to group\n"));
2207 return NT_STATUS_UNSUCCESSFUL
;
2210 if (!NT_STATUS_IS_OK(get_sid_from_name(cli
, mem_ctx
, argv
[0],
2211 &group_sid
, &group_type
))) {
2212 d_fprintf(stderr
, _("Could not lookup group name %s\n"),
2214 return NT_STATUS_UNSUCCESSFUL
;
2217 if (group_type
== SID_NAME_DOM_GRP
) {
2218 NTSTATUS result
= rpc_add_groupmem(pipe_hnd
, mem_ctx
,
2219 &group_sid
, argv
[1]);
2221 if (!NT_STATUS_IS_OK(result
)) {
2222 d_fprintf(stderr
, _("Could not add %s to %s: %s\n"),
2223 argv
[1], argv
[0], nt_errstr(result
));
2228 if (group_type
== SID_NAME_ALIAS
) {
2229 NTSTATUS result
= rpc_add_aliasmem(pipe_hnd
, mem_ctx
,
2230 &group_sid
, argv
[1]);
2232 if (!NT_STATUS_IS_OK(result
)) {
2233 d_fprintf(stderr
, _("Could not add %s to %s: %s\n"),
2234 argv
[1], argv
[0], nt_errstr(result
));
2239 d_fprintf(stderr
, _("Can only add members to global or local groups "
2240 "which %s is not\n"), argv
[0]);
2242 return NT_STATUS_UNSUCCESSFUL
;
2245 static int rpc_group_addmem(struct net_context
*c
, int argc
, const char **argv
)
2247 return run_rpc_command(c
, NULL
, &ndr_table_samr
, 0,
2248 rpc_group_addmem_internals
,
2252 static NTSTATUS
rpc_del_groupmem(struct net_context
*c
,
2253 struct rpc_pipe_client
*pipe_hnd
,
2254 TALLOC_CTX
*mem_ctx
,
2255 const struct dom_sid
*group_sid
,
2258 struct policy_handle connect_pol
, domain_pol
;
2259 NTSTATUS status
, result
;
2261 struct policy_handle group_pol
;
2262 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
2264 struct samr_Ids rids
, rid_types
;
2265 struct lsa_String lsa_acct_name
;
2269 sid_copy(&sid
, group_sid
);
2271 if (!sid_split_rid(&sid
, &group_rid
))
2272 return NT_STATUS_UNSUCCESSFUL
;
2274 /* Get sam policy handle */
2275 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
2277 MAXIMUM_ALLOWED_ACCESS
,
2280 if (!NT_STATUS_IS_OK(status
)) {
2283 if (!NT_STATUS_IS_OK(result
)) {
2288 /* Get domain policy handle */
2289 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
2291 MAXIMUM_ALLOWED_ACCESS
,
2295 if (!NT_STATUS_IS_OK(status
)) {
2298 if (!NT_STATUS_IS_OK(result
)) {
2302 init_lsa_String(&lsa_acct_name
, member
);
2304 status
= dcerpc_samr_LookupNames(b
, mem_ctx
,
2311 if (!NT_STATUS_IS_OK(status
)) {
2312 d_fprintf(stderr
, _("Could not lookup up group member %s\n"),
2317 if (!NT_STATUS_IS_OK(result
)) {
2319 d_fprintf(stderr
, _("Could not lookup up group member %s\n"),
2324 status
= dcerpc_samr_OpenGroup(b
, mem_ctx
,
2326 MAXIMUM_ALLOWED_ACCESS
,
2330 if (!NT_STATUS_IS_OK(status
)) {
2333 if (!NT_STATUS_IS_OK(result
)) {
2338 status
= dcerpc_samr_DeleteGroupMember(b
, mem_ctx
,
2342 if (!NT_STATUS_IS_OK(status
)) {
2348 dcerpc_samr_Close(b
, mem_ctx
, &connect_pol
, &result
);
2352 static NTSTATUS
rpc_del_aliasmem(struct rpc_pipe_client
*pipe_hnd
,
2353 TALLOC_CTX
*mem_ctx
,
2354 const struct dom_sid
*alias_sid
,
2357 struct policy_handle connect_pol
, domain_pol
;
2358 NTSTATUS status
, result
;
2360 struct policy_handle alias_pol
;
2361 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
2363 struct dom_sid member_sid
;
2364 enum lsa_SidType member_type
;
2368 sid_copy(&sid
, alias_sid
);
2370 if (!sid_split_rid(&sid
, &alias_rid
))
2371 return NT_STATUS_UNSUCCESSFUL
;
2373 result
= get_sid_from_name(rpc_pipe_np_smb_conn(pipe_hnd
), mem_ctx
,
2374 member
, &member_sid
, &member_type
);
2376 if (!NT_STATUS_IS_OK(result
)) {
2377 d_fprintf(stderr
, _("Could not lookup up group member %s\n"),
2382 /* Get sam policy handle */
2383 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
2385 MAXIMUM_ALLOWED_ACCESS
,
2388 if (!NT_STATUS_IS_OK(status
)) {
2391 if (!NT_STATUS_IS_OK(result
)) {
2396 /* Get domain policy handle */
2397 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
2399 MAXIMUM_ALLOWED_ACCESS
,
2403 if (!NT_STATUS_IS_OK(status
)) {
2406 if (!NT_STATUS_IS_OK(result
)) {
2411 status
= dcerpc_samr_OpenAlias(b
, mem_ctx
,
2413 MAXIMUM_ALLOWED_ACCESS
,
2417 if (!NT_STATUS_IS_OK(status
)) {
2421 if (!NT_STATUS_IS_OK(result
)) {
2425 status
= dcerpc_samr_DeleteAliasMember(b
, mem_ctx
,
2430 if (!NT_STATUS_IS_OK(status
)) {
2437 dcerpc_samr_Close(b
, mem_ctx
, &connect_pol
, &result
);
2441 static NTSTATUS
rpc_group_delmem_internals(struct net_context
*c
,
2442 const struct dom_sid
*domain_sid
,
2443 const char *domain_name
,
2444 struct cli_state
*cli
,
2445 struct rpc_pipe_client
*pipe_hnd
,
2446 TALLOC_CTX
*mem_ctx
,
2450 struct dom_sid group_sid
;
2451 enum lsa_SidType group_type
;
2453 if (argc
!= 2 || c
->display_usage
) {
2456 _("net rpc group delmem <group> <member>\n"
2457 " Delete a member from a group\n"
2458 " group\tGroup to delete member from\n"
2459 " member\tMember to delete from group\n"));
2460 return NT_STATUS_UNSUCCESSFUL
;
2463 if (!NT_STATUS_IS_OK(get_sid_from_name(cli
, mem_ctx
, argv
[0],
2464 &group_sid
, &group_type
))) {
2465 d_fprintf(stderr
, _("Could not lookup group name %s\n"),
2467 return NT_STATUS_UNSUCCESSFUL
;
2470 if (group_type
== SID_NAME_DOM_GRP
) {
2471 NTSTATUS result
= rpc_del_groupmem(c
, pipe_hnd
, mem_ctx
,
2472 &group_sid
, argv
[1]);
2474 if (!NT_STATUS_IS_OK(result
)) {
2475 d_fprintf(stderr
, _("Could not del %s from %s: %s\n"),
2476 argv
[1], argv
[0], nt_errstr(result
));
2481 if (group_type
== SID_NAME_ALIAS
) {
2482 NTSTATUS result
= rpc_del_aliasmem(pipe_hnd
, mem_ctx
,
2483 &group_sid
, argv
[1]);
2485 if (!NT_STATUS_IS_OK(result
)) {
2486 d_fprintf(stderr
, _("Could not del %s from %s: %s\n"),
2487 argv
[1], argv
[0], nt_errstr(result
));
2492 d_fprintf(stderr
, _("Can only delete members from global or local "
2493 "groups which %s is not\n"), argv
[0]);
2495 return NT_STATUS_UNSUCCESSFUL
;
2498 static int rpc_group_delmem(struct net_context
*c
, int argc
, const char **argv
)
2500 return run_rpc_command(c
, NULL
, &ndr_table_samr
, 0,
2501 rpc_group_delmem_internals
,
2506 * List groups on a remote RPC server.
2508 * All parameters are provided by the run_rpc_command function, except for
2509 * argc, argv which are passes through.
2511 * @param domain_sid The domain sid acquired from the remote server.
2512 * @param cli A cli_state connected to the server.
2513 * @param mem_ctx Talloc context, destroyed on completion of the function.
2514 * @param argc Standard main() style argc.
2515 * @param argv Standard main() style argv. Initial components are already
2518 * @return Normal NTSTATUS return.
2521 static NTSTATUS
rpc_group_list_internals(struct net_context
*c
,
2522 const struct dom_sid
*domain_sid
,
2523 const char *domain_name
,
2524 struct cli_state
*cli
,
2525 struct rpc_pipe_client
*pipe_hnd
,
2526 TALLOC_CTX
*mem_ctx
,
2530 struct policy_handle connect_pol
, domain_pol
;
2531 NTSTATUS status
, result
;
2532 uint32 start_idx
=0, max_entries
=250, num_entries
, i
, loop_count
= 0;
2533 struct samr_SamArray
*groups
= NULL
;
2534 bool global
= false;
2536 bool builtin
= false;
2537 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
2539 if (c
->display_usage
) {
2542 _("net rpc group list [global] [local] [builtin]\n"
2543 " List groups on RPC server\n"
2544 " global\tList global groups\n"
2545 " local\tList local groups\n"
2546 " builtin\tList builtin groups\n"
2547 " If none of global, local or builtin is "
2548 "specified, all three options are considered "
2550 return NT_STATUS_OK
;
2559 for (i
=0; i
<argc
; i
++) {
2560 if (strequal(argv
[i
], "global"))
2563 if (strequal(argv
[i
], "local"))
2566 if (strequal(argv
[i
], "builtin"))
2570 /* Get sam policy handle */
2572 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
2574 MAXIMUM_ALLOWED_ACCESS
,
2577 if (!NT_STATUS_IS_OK(status
)) {
2580 if (!NT_STATUS_IS_OK(result
)) {
2585 /* Get domain policy handle */
2587 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
2589 MAXIMUM_ALLOWED_ACCESS
,
2590 discard_const_p(struct dom_sid2
, domain_sid
),
2593 if (!NT_STATUS_IS_OK(status
)) {
2596 if (!NT_STATUS_IS_OK(result
)) {
2601 /* Query domain groups */
2602 if (c
->opt_long_list_entries
)
2603 d_printf(_("\nGroup name Comment"
2604 "\n-----------------------------\n"));
2606 uint32_t max_size
, total_size
, returned_size
;
2607 union samr_DispInfo info
;
2611 dcerpc_get_query_dispinfo_params(
2612 loop_count
, &max_entries
, &max_size
);
2614 status
= dcerpc_samr_QueryDisplayInfo(b
, mem_ctx
,
2624 if (!NT_STATUS_IS_OK(status
)) {
2627 num_entries
= info
.info3
.count
;
2628 start_idx
+= info
.info3
.count
;
2630 if (!NT_STATUS_IS_OK(result
) &&
2631 !NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
))
2634 for (i
= 0; i
< num_entries
; i
++) {
2636 const char *group
= NULL
;
2637 const char *desc
= NULL
;
2639 group
= info
.info3
.entries
[i
].account_name
.string
;
2640 desc
= info
.info3
.entries
[i
].description
.string
;
2642 if (c
->opt_long_list_entries
)
2643 printf("%-21.21s %-50.50s\n",
2646 printf("%s\n", group
);
2648 } while (NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
));
2649 /* query domain aliases */
2654 status
= dcerpc_samr_EnumDomainAliases(b
, mem_ctx
,
2661 if (!NT_STATUS_IS_OK(status
)) {
2664 if (!NT_STATUS_IS_OK(result
) &&
2665 !NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
))
2668 for (i
= 0; i
< num_entries
; i
++) {
2670 const char *description
= NULL
;
2672 if (c
->opt_long_list_entries
) {
2674 struct policy_handle alias_pol
;
2675 union samr_AliasInfo
*info
= NULL
;
2678 status
= dcerpc_samr_OpenAlias(b
, mem_ctx
,
2681 groups
->entries
[i
].idx
,
2684 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(_result
)) {
2685 status
= dcerpc_samr_QueryAliasInfo(b
, mem_ctx
,
2690 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(_result
)) {
2691 status
= dcerpc_samr_Close(b
, mem_ctx
,
2694 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(_result
)) {
2695 description
= info
->description
.string
;
2701 if (description
!= NULL
) {
2702 printf("%-21.21s %-50.50s\n",
2703 groups
->entries
[i
].name
.string
,
2706 printf("%s\n", groups
->entries
[i
].name
.string
);
2709 } while (NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
));
2710 dcerpc_samr_Close(b
, mem_ctx
, &domain_pol
, &result
);
2711 /* Get builtin policy handle */
2713 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
2715 MAXIMUM_ALLOWED_ACCESS
,
2716 discard_const_p(struct dom_sid2
, &global_sid_Builtin
),
2719 if (!NT_STATUS_IS_OK(status
)) {
2722 if (!NT_STATUS_IS_OK(result
)) {
2727 /* query builtin aliases */
2730 if (!builtin
) break;
2732 status
= dcerpc_samr_EnumDomainAliases(b
, mem_ctx
,
2739 if (!NT_STATUS_IS_OK(status
)) {
2742 if (!NT_STATUS_IS_OK(result
) &&
2743 !NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
)) {
2748 for (i
= 0; i
< num_entries
; i
++) {
2750 const char *description
= NULL
;
2752 if (c
->opt_long_list_entries
) {
2754 struct policy_handle alias_pol
;
2755 union samr_AliasInfo
*info
= NULL
;
2758 status
= dcerpc_samr_OpenAlias(b
, mem_ctx
,
2761 groups
->entries
[i
].idx
,
2764 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(_result
)) {
2765 status
= dcerpc_samr_QueryAliasInfo(b
, mem_ctx
,
2770 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(_result
)) {
2771 status
= dcerpc_samr_Close(b
, mem_ctx
,
2774 if (NT_STATUS_IS_OK(status
) && NT_STATUS_IS_OK(_result
)) {
2775 description
= info
->description
.string
;
2781 if (description
!= NULL
) {
2782 printf("%-21.21s %-50.50s\n",
2783 groups
->entries
[i
].name
.string
,
2786 printf("%s\n", groups
->entries
[i
].name
.string
);
2789 } while (NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
));
2797 static int rpc_group_list(struct net_context
*c
, int argc
, const char **argv
)
2799 return run_rpc_command(c
, NULL
, &ndr_table_samr
, 0,
2800 rpc_group_list_internals
,
2804 static NTSTATUS
rpc_list_group_members(struct net_context
*c
,
2805 struct rpc_pipe_client
*pipe_hnd
,
2806 TALLOC_CTX
*mem_ctx
,
2807 const char *domain_name
,
2808 const struct dom_sid
*domain_sid
,
2809 struct policy_handle
*domain_pol
,
2812 NTSTATUS result
, status
;
2813 struct policy_handle group_pol
;
2814 uint32 num_members
, *group_rids
;
2816 struct samr_RidAttrArray
*rids
= NULL
;
2817 struct lsa_Strings names
;
2818 struct samr_Ids types
;
2819 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
2822 sid_to_fstring(sid_str
, domain_sid
);
2824 status
= dcerpc_samr_OpenGroup(b
, mem_ctx
,
2826 MAXIMUM_ALLOWED_ACCESS
,
2830 if (!NT_STATUS_IS_OK(status
)) {
2833 if (!NT_STATUS_IS_OK(result
)) {
2837 status
= dcerpc_samr_QueryGroupMember(b
, mem_ctx
,
2841 if (!NT_STATUS_IS_OK(status
)) {
2844 if (!NT_STATUS_IS_OK(result
)) {
2848 num_members
= rids
->count
;
2849 group_rids
= rids
->rids
;
2851 while (num_members
> 0) {
2852 int this_time
= 512;
2854 if (num_members
< this_time
)
2855 this_time
= num_members
;
2857 status
= dcerpc_samr_LookupRids(b
, mem_ctx
,
2864 if (!NT_STATUS_IS_OK(status
)) {
2867 if (!NT_STATUS_IS_OK(result
)) {
2871 /* We only have users as members, but make the output
2872 the same as the output of alias members */
2874 for (i
= 0; i
< this_time
; i
++) {
2876 if (c
->opt_long_list_entries
) {
2877 printf("%s-%d %s\\%s %d\n", sid_str
,
2878 group_rids
[i
], domain_name
,
2879 names
.names
[i
].string
,
2882 printf("%s\\%s\n", domain_name
,
2883 names
.names
[i
].string
);
2887 num_members
-= this_time
;
2891 return NT_STATUS_OK
;
2894 static NTSTATUS
rpc_list_alias_members(struct net_context
*c
,
2895 struct rpc_pipe_client
*pipe_hnd
,
2896 TALLOC_CTX
*mem_ctx
,
2897 struct policy_handle
*domain_pol
,
2900 NTSTATUS result
, status
;
2901 struct rpc_pipe_client
*lsa_pipe
;
2902 struct policy_handle alias_pol
, lsa_pol
;
2904 struct dom_sid
*alias_sids
;
2907 enum lsa_SidType
*types
;
2909 struct lsa_SidArray sid_array
;
2910 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
2912 status
= dcerpc_samr_OpenAlias(b
, mem_ctx
,
2914 MAXIMUM_ALLOWED_ACCESS
,
2918 if (!NT_STATUS_IS_OK(status
)) {
2921 if (!NT_STATUS_IS_OK(result
)) {
2925 status
= dcerpc_samr_GetMembersInAlias(b
, mem_ctx
,
2929 if (!NT_STATUS_IS_OK(status
)) {
2930 d_fprintf(stderr
, _("Couldn't list alias members\n"));
2933 if (!NT_STATUS_IS_OK(result
)) {
2934 d_fprintf(stderr
, _("Couldn't list alias members\n"));
2938 num_members
= sid_array
.num_sids
;
2940 if (num_members
== 0) {
2941 return NT_STATUS_OK
;
2944 result
= cli_rpc_pipe_open_noauth(rpc_pipe_np_smb_conn(pipe_hnd
),
2945 &ndr_table_lsarpc
.syntax_id
,
2947 if (!NT_STATUS_IS_OK(result
)) {
2948 d_fprintf(stderr
, _("Couldn't open LSA pipe. Error was %s\n"),
2949 nt_errstr(result
) );
2953 result
= rpccli_lsa_open_policy(lsa_pipe
, mem_ctx
, true,
2954 SEC_FLAG_MAXIMUM_ALLOWED
, &lsa_pol
);
2956 if (!NT_STATUS_IS_OK(result
)) {
2957 d_fprintf(stderr
, _("Couldn't open LSA policy handle\n"));
2958 TALLOC_FREE(lsa_pipe
);
2962 alias_sids
= talloc_zero_array(mem_ctx
, struct dom_sid
, num_members
);
2964 d_fprintf(stderr
, _("Out of memory\n"));
2965 TALLOC_FREE(lsa_pipe
);
2966 return NT_STATUS_NO_MEMORY
;
2969 for (i
=0; i
<num_members
; i
++) {
2970 sid_copy(&alias_sids
[i
], sid_array
.sids
[i
].sid
);
2973 result
= rpccli_lsa_lookup_sids(lsa_pipe
, mem_ctx
, &lsa_pol
,
2974 num_members
, alias_sids
,
2975 &domains
, &names
, &types
);
2977 if (!NT_STATUS_IS_OK(result
) &&
2978 !NT_STATUS_EQUAL(result
, STATUS_SOME_UNMAPPED
)) {
2979 d_fprintf(stderr
, _("Couldn't lookup SIDs\n"));
2980 TALLOC_FREE(lsa_pipe
);
2984 for (i
= 0; i
< num_members
; i
++) {
2986 sid_to_fstring(sid_str
, &alias_sids
[i
]);
2988 if (c
->opt_long_list_entries
) {
2989 printf("%s %s\\%s %d\n", sid_str
,
2990 domains
[i
] ? domains
[i
] : _("*unknown*"),
2991 names
[i
] ? names
[i
] : _("*unknown*"), types
[i
]);
2994 printf("%s\\%s\n", domains
[i
], names
[i
]);
2996 printf("%s\n", sid_str
);
3000 TALLOC_FREE(lsa_pipe
);
3001 return NT_STATUS_OK
;
3004 static NTSTATUS
rpc_group_members_internals(struct net_context
*c
,
3005 const struct dom_sid
*domain_sid
,
3006 const char *domain_name
,
3007 struct cli_state
*cli
,
3008 struct rpc_pipe_client
*pipe_hnd
,
3009 TALLOC_CTX
*mem_ctx
,
3013 NTSTATUS result
, status
;
3014 struct policy_handle connect_pol
, domain_pol
;
3015 struct samr_Ids rids
, rid_types
;
3016 struct lsa_String lsa_acct_name
;
3017 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
3019 /* Get sam policy handle */
3021 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
3023 MAXIMUM_ALLOWED_ACCESS
,
3026 if (!NT_STATUS_IS_OK(status
)) {
3029 if (!NT_STATUS_IS_OK(result
)) {
3033 /* Get domain policy handle */
3035 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
3037 MAXIMUM_ALLOWED_ACCESS
,
3038 discard_const_p(struct dom_sid2
, domain_sid
),
3041 if (!NT_STATUS_IS_OK(status
)) {
3044 if (!NT_STATUS_IS_OK(result
)) {
3048 init_lsa_String(&lsa_acct_name
, argv
[0]); /* sure? */
3050 status
= dcerpc_samr_LookupNames(b
, mem_ctx
,
3057 if (!NT_STATUS_IS_OK(status
)) {
3061 if (!NT_STATUS_IS_OK(result
)) {
3063 /* Ok, did not find it in the global sam, try with builtin */
3065 struct dom_sid sid_Builtin
;
3067 dcerpc_samr_Close(b
, mem_ctx
, &domain_pol
, &result
);
3069 sid_copy(&sid_Builtin
, &global_sid_Builtin
);
3071 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
3073 MAXIMUM_ALLOWED_ACCESS
,
3077 if (!NT_STATUS_IS_OK(status
)) {
3080 if (!NT_STATUS_IS_OK(result
)) {
3081 d_fprintf(stderr
, _("Couldn't find group %s\n"),
3086 status
= dcerpc_samr_LookupNames(b
, mem_ctx
,
3093 if (!NT_STATUS_IS_OK(status
)) {
3096 if (!NT_STATUS_IS_OK(result
)) {
3097 d_fprintf(stderr
, _("Couldn't find group %s\n"),
3103 if (rids
.count
!= 1) {
3104 d_fprintf(stderr
, _("Couldn't find group %s\n"),
3109 if (rid_types
.ids
[0] == SID_NAME_DOM_GRP
) {
3110 return rpc_list_group_members(c
, pipe_hnd
, mem_ctx
, domain_name
,
3111 domain_sid
, &domain_pol
,
3115 if (rid_types
.ids
[0] == SID_NAME_ALIAS
) {
3116 return rpc_list_alias_members(c
, pipe_hnd
, mem_ctx
, &domain_pol
,
3120 return NT_STATUS_NO_SUCH_GROUP
;
3123 static int rpc_group_members(struct net_context
*c
, int argc
, const char **argv
)
3125 if (argc
!= 1 || c
->display_usage
) {
3126 return rpc_group_usage(c
, argc
, argv
);
3129 return run_rpc_command(c
, NULL
, &ndr_table_samr
, 0,
3130 rpc_group_members_internals
,
3134 static int rpc_group_rename_internals(struct net_context
*c
, int argc
, const char **argv
)
3136 NET_API_STATUS status
;
3137 struct GROUP_INFO_0 g0
;
3141 d_printf(_("Usage:\n"));
3142 d_printf("net rpc group rename group newname\n");
3146 g0
.grpi0_name
= argv
[1];
3148 status
= NetGroupSetInfo(c
->opt_host
,
3155 d_fprintf(stderr
, _("Renaming group %s failed with: %s\n"),
3156 argv
[0], libnetapi_get_error_string(c
->netapi_ctx
,
3164 static int rpc_group_rename(struct net_context
*c
, int argc
, const char **argv
)
3166 if (argc
!= 2 || c
->display_usage
) {
3167 return rpc_group_usage(c
, argc
, argv
);
3170 return rpc_group_rename_internals(c
, argc
, argv
);
3174 * 'net rpc group' entrypoint.
3175 * @param argc Standard main() style argc.
3176 * @param argv Standard main() style argv. Initial components are already
3180 int net_rpc_group(struct net_context
*c
, int argc
, const char **argv
)
3182 NET_API_STATUS status
;
3184 struct functable func
[] = {
3189 N_("Create specified group"),
3190 N_("net rpc group add\n"
3191 " Create specified group")
3197 N_("Delete specified group"),
3198 N_("net rpc group delete\n"
3199 " Delete specified group")
3205 N_("Add member to group"),
3206 N_("net rpc group addmem\n"
3207 " Add member to group")
3213 N_("Remove member from group"),
3214 N_("net rpc group delmem\n"
3215 " Remove member from group")
3222 N_("net rpc group list\n"
3229 N_("List group members"),
3230 N_("net rpc group members\n"
3231 " List group members")
3238 N_("net rpc group rename\n"
3241 {NULL
, NULL
, 0, NULL
, NULL
}
3244 status
= libnetapi_net_init(&c
->netapi_ctx
);
3248 libnetapi_set_username(c
->netapi_ctx
, c
->opt_user_name
);
3249 libnetapi_set_password(c
->netapi_ctx
, c
->opt_password
);
3250 if (c
->opt_kerberos
) {
3251 libnetapi_set_use_kerberos(c
->netapi_ctx
);
3255 if (c
->display_usage
) {
3256 d_printf(_("Usage:\n"));
3257 d_printf(_("net rpc group\n"
3258 " Alias for net rpc group list global "
3259 "local builtin\n"));
3260 net_display_usage_from_functable(func
);
3264 return run_rpc_command(c
, NULL
, &ndr_table_samr
, 0,
3265 rpc_group_list_internals
,
3269 return net_run_function(c
, argc
, argv
, "net rpc group", func
);
3272 /****************************************************************************/
3274 static int rpc_share_usage(struct net_context
*c
, int argc
, const char **argv
)
3276 return net_share_usage(c
, argc
, argv
);
3280 * Add a share on a remote RPC server.
3282 * @param argc Standard main() style argc.
3283 * @param argv Standard main() style argv. Initial components are already
3286 * @return A shell status integer (0 for success).
3289 static int rpc_share_add(struct net_context
*c
, int argc
, const char **argv
)
3291 NET_API_STATUS status
;
3294 uint32 type
= STYPE_DISKTREE
; /* only allow disk shares to be added */
3295 uint32 num_users
=0, perms
=0;
3296 char *password
=NULL
; /* don't allow a share password */
3297 struct SHARE_INFO_2 i2
;
3298 uint32_t parm_error
= 0;
3300 if ((argc
< 1) || !strchr(argv
[0], '=') || c
->display_usage
) {
3301 return rpc_share_usage(c
, argc
, argv
);
3304 if ((sharename
= talloc_strdup(c
, argv
[0])) == NULL
) {
3308 path
= strchr(sharename
, '=');
3315 i2
.shi2_netname
= sharename
;
3316 i2
.shi2_type
= type
;
3317 i2
.shi2_remark
= c
->opt_comment
;
3318 i2
.shi2_permissions
= perms
;
3319 i2
.shi2_max_uses
= c
->opt_maxusers
;
3320 i2
.shi2_current_uses
= num_users
;
3321 i2
.shi2_path
= path
;
3322 i2
.shi2_passwd
= password
;
3324 status
= NetShareAdd(c
->opt_host
,
3329 printf(_("NetShareAdd failed with: %s\n"),
3330 libnetapi_get_error_string(c
->netapi_ctx
, status
));
3337 * Delete a share on a remote RPC server.
3339 * @param domain_sid The domain sid acquired from the remote server.
3340 * @param argc Standard main() style argc.
3341 * @param argv Standard main() style argv. Initial components are already
3344 * @return A shell status integer (0 for success).
3346 static int rpc_share_delete(struct net_context
*c
, int argc
, const char **argv
)
3348 if (argc
< 1 || c
->display_usage
) {
3349 return rpc_share_usage(c
, argc
, argv
);
3352 return NetShareDel(c
->opt_host
, argv
[0], 0);
3356 * Formatted print of share info
3358 * @param r pointer to SHARE_INFO_1 to format
3361 static void display_share_info_1(struct net_context
*c
,
3362 struct SHARE_INFO_1
*r
)
3364 if (c
->opt_long_list_entries
) {
3365 d_printf("%-12s %-8.8s %-50s\n",
3367 net_share_type_str(r
->shi1_type
& ~(STYPE_TEMPORARY
|STYPE_HIDDEN
)),
3370 d_printf("%s\n", r
->shi1_netname
);
3374 static WERROR
get_share_info(struct net_context
*c
,
3375 struct rpc_pipe_client
*pipe_hnd
,
3376 TALLOC_CTX
*mem_ctx
,
3380 struct srvsvc_NetShareInfoCtr
*info_ctr
)
3384 union srvsvc_NetShareInfo info
;
3385 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
3387 /* no specific share requested, enumerate all */
3390 uint32_t preferred_len
= 0xffffffff;
3391 uint32_t total_entries
= 0;
3392 uint32_t resume_handle
= 0;
3394 info_ctr
->level
= level
;
3396 status
= dcerpc_srvsvc_NetShareEnumAll(b
, mem_ctx
,
3403 if (!NT_STATUS_IS_OK(status
)) {
3404 return ntstatus_to_werror(status
);
3409 /* request just one share */
3410 status
= dcerpc_srvsvc_NetShareGetInfo(b
, mem_ctx
,
3417 if (!NT_STATUS_IS_OK(status
)) {
3418 result
= ntstatus_to_werror(status
);
3422 if (!W_ERROR_IS_OK(result
)) {
3427 ZERO_STRUCTP(info_ctr
);
3429 info_ctr
->level
= level
;
3434 struct srvsvc_NetShareCtr1
*ctr1
;
3436 ctr1
= talloc_zero(mem_ctx
, struct srvsvc_NetShareCtr1
);
3437 W_ERROR_HAVE_NO_MEMORY(ctr1
);
3440 ctr1
->array
= info
.info1
;
3442 info_ctr
->ctr
.ctr1
= ctr1
;
3448 struct srvsvc_NetShareCtr2
*ctr2
;
3450 ctr2
= talloc_zero(mem_ctx
, struct srvsvc_NetShareCtr2
);
3451 W_ERROR_HAVE_NO_MEMORY(ctr2
);
3454 ctr2
->array
= info
.info2
;
3456 info_ctr
->ctr
.ctr2
= ctr2
;
3462 struct srvsvc_NetShareCtr502
*ctr502
;
3464 ctr502
= talloc_zero(mem_ctx
, struct srvsvc_NetShareCtr502
);
3465 W_ERROR_HAVE_NO_MEMORY(ctr502
);
3468 ctr502
->array
= info
.info502
;
3470 info_ctr
->ctr
.ctr502
= ctr502
;
3480 * 'net rpc share list' entrypoint.
3481 * @param argc Standard main() style argc.
3482 * @param argv Standard main() style argv. Initial components are already
3485 static int rpc_share_list(struct net_context
*c
, int argc
, const char **argv
)
3487 NET_API_STATUS status
;
3488 struct SHARE_INFO_1
*i1
= NULL
;
3489 uint32_t entries_read
= 0;
3490 uint32_t total_entries
= 0;
3491 uint32_t resume_handle
= 0;
3492 uint32_t i
, level
= 1;
3494 if (c
->display_usage
) {
3496 "net rpc share list\n"
3499 _("List shares on remote server"));
3503 status
= NetShareEnum(c
->opt_host
,
3505 (uint8_t **)(void *)&i1
,
3514 /* Display results */
3516 if (c
->opt_long_list_entries
) {
3518 "\nEnumerating shared resources (exports) on remote server:\n\n"
3519 "\nShare name Type Description\n"
3520 "---------- ---- -----------\n"));
3522 for (i
= 0; i
< entries_read
; i
++)
3523 display_share_info_1(c
, &i1
[i
]);
3528 static bool check_share_availability(struct cli_state
*cli
, const char *netname
)
3532 status
= cli_tree_connect(cli
, netname
, "A:", "", 0);
3533 if (!NT_STATUS_IS_OK(status
)) {
3534 d_printf(_("skipping [%s]: not a file share.\n"), netname
);
3538 status
= cli_tdis(cli
);
3539 if (!NT_STATUS_IS_OK(status
)) {
3540 d_printf(_("cli_tdis returned %s\n"), nt_errstr(status
));
3547 static bool check_share_sanity(struct net_context
*c
, struct cli_state
*cli
,
3548 const char *netname
, uint32 type
)
3550 /* only support disk shares */
3551 if (! ( type
== STYPE_DISKTREE
|| type
== (STYPE_DISKTREE
| STYPE_HIDDEN
)) ) {
3552 printf(_("share [%s] is not a diskshare (type: %x)\n"), netname
,
3557 /* skip builtin shares */
3558 /* FIXME: should print$ be added too ? */
3559 if (strequal(netname
,"IPC$") || strequal(netname
,"ADMIN$") ||
3560 strequal(netname
,"global"))
3563 if (c
->opt_exclude
&& in_list(netname
, c
->opt_exclude
, false)) {
3564 printf(_("excluding [%s]\n"), netname
);
3568 return check_share_availability(cli
, netname
);
3572 * Migrate shares from a remote RPC server to the local RPC server.
3574 * All parameters are provided by the run_rpc_command function, except for
3575 * argc, argv which are passed through.
3577 * @param domain_sid The domain sid acquired from the remote server.
3578 * @param cli A cli_state connected to the server.
3579 * @param mem_ctx Talloc context, destroyed on completion of the function.
3580 * @param argc Standard main() style argc.
3581 * @param argv Standard main() style argv. Initial components are already
3584 * @return Normal NTSTATUS return.
3587 static NTSTATUS
rpc_share_migrate_shares_internals(struct net_context
*c
,
3588 const struct dom_sid
*domain_sid
,
3589 const char *domain_name
,
3590 struct cli_state
*cli
,
3591 struct rpc_pipe_client
*pipe_hnd
,
3592 TALLOC_CTX
*mem_ctx
,
3597 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
3598 struct srvsvc_NetShareInfoCtr ctr_src
;
3600 struct rpc_pipe_client
*srvsvc_pipe
= NULL
;
3601 struct cli_state
*cli_dst
= NULL
;
3602 uint32 level
= 502; /* includes secdesc */
3603 uint32_t parm_error
= 0;
3604 struct dcerpc_binding_handle
*b
;
3606 result
= get_share_info(c
, pipe_hnd
, mem_ctx
, level
, argc
, argv
,
3608 if (!W_ERROR_IS_OK(result
))
3611 /* connect destination PI_SRVSVC */
3612 nt_status
= connect_dst_pipe(c
, &cli_dst
, &srvsvc_pipe
,
3613 &ndr_table_srvsvc
.syntax_id
);
3614 if (!NT_STATUS_IS_OK(nt_status
))
3617 b
= srvsvc_pipe
->binding_handle
;
3619 for (i
= 0; i
< ctr_src
.ctr
.ctr502
->count
; i
++) {
3621 union srvsvc_NetShareInfo info
;
3622 struct srvsvc_NetShareInfo502 info502
=
3623 ctr_src
.ctr
.ctr502
->array
[i
];
3625 /* reset error-code */
3626 nt_status
= NT_STATUS_UNSUCCESSFUL
;
3628 if (!check_share_sanity(c
, cli
, info502
.name
, info502
.type
))
3631 /* finally add the share on the dst server */
3633 printf(_("migrating: [%s], path: %s, comment: %s, without "
3635 info502
.name
, info502
.path
, info502
.comment
);
3637 info
.info502
= &info502
;
3639 nt_status
= dcerpc_srvsvc_NetShareAdd(b
, mem_ctx
,
3640 srvsvc_pipe
->desthost
,
3645 if (!NT_STATUS_IS_OK(nt_status
)) {
3646 printf(_("cannot add share: %s\n"),
3647 nt_errstr(nt_status
));
3650 if (W_ERROR_V(result
) == W_ERROR_V(WERR_FILE_EXISTS
)) {
3651 printf(_(" [%s] does already exist\n"),
3656 if (!W_ERROR_IS_OK(result
)) {
3657 nt_status
= werror_to_ntstatus(result
);
3658 printf(_("cannot add share: %s\n"),
3659 win_errstr(result
));
3665 nt_status
= NT_STATUS_OK
;
3669 cli_shutdown(cli_dst
);
3677 * Migrate shares from a RPC server to another.
3679 * @param argc Standard main() style argc.
3680 * @param argv Standard main() style argv. Initial components are already
3683 * @return A shell status integer (0 for success).
3685 static int rpc_share_migrate_shares(struct net_context
*c
, int argc
,
3688 if (c
->display_usage
) {
3690 "net rpc share migrate shares\n"
3693 _("Migrate shares to local server"));
3698 printf(_("no server to migrate\n"));
3702 return run_rpc_command(c
, NULL
, &ndr_table_srvsvc
, 0,
3703 rpc_share_migrate_shares_internals
,
3710 * @param f file_info
3711 * @param mask current search mask
3712 * @param state arg-pointer
3715 static NTSTATUS
copy_fn(const char *mnt
, struct file_info
*f
,
3716 const char *mask
, void *state
)
3718 static NTSTATUS nt_status
;
3719 static struct copy_clistate
*local_state
;
3720 static fstring filename
, new_mask
;
3723 struct net_context
*c
;
3725 local_state
= (struct copy_clistate
*)state
;
3726 nt_status
= NT_STATUS_UNSUCCESSFUL
;
3730 if (strequal(f
->name
, ".") || strequal(f
->name
, ".."))
3731 return NT_STATUS_OK
;
3733 DEBUG(3,("got mask: %s, name: %s\n", mask
, f
->name
));
3736 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
3738 DEBUG(3,("got dir: %s\n", f
->name
));
3740 fstrcpy(dir
, local_state
->cwd
);
3742 fstrcat(dir
, f
->name
);
3744 switch (net_mode_share
)
3746 case NET_MODE_SHARE_MIGRATE
:
3747 /* create that directory */
3748 nt_status
= net_copy_file(c
, local_state
->mem_ctx
,
3749 local_state
->cli_share_src
,
3750 local_state
->cli_share_dst
,
3752 c
->opt_acls
? true : false,
3753 c
->opt_attrs
? true : false,
3754 c
->opt_timestamps
? true:false,
3758 d_fprintf(stderr
, _("Unsupported mode %d\n"), net_mode_share
);
3759 return NT_STATUS_INTERNAL_ERROR
;
3762 if (!NT_STATUS_IS_OK(nt_status
)) {
3763 printf(_("could not handle dir %s: %s\n"),
3764 dir
, nt_errstr(nt_status
));
3768 /* search below that directory */
3769 if (strlcpy(new_mask
, dir
, sizeof(new_mask
)) >= sizeof(new_mask
)) {
3770 return NT_STATUS_NO_MEMORY
;
3772 if (strlcat(new_mask
, "\\*", sizeof(new_mask
)) >= sizeof(new_mask
)) {
3773 return NT_STATUS_NO_MEMORY
;
3776 old_dir
= local_state
->cwd
;
3777 local_state
->cwd
= dir
;
3778 nt_status
= sync_files(local_state
, new_mask
);
3779 if (!NT_STATUS_IS_OK(nt_status
)) {
3780 printf(_("could not handle files\n"));
3782 local_state
->cwd
= old_dir
;
3789 fstrcpy(filename
, local_state
->cwd
);
3790 fstrcat(filename
, "\\");
3791 fstrcat(filename
, f
->name
);
3793 DEBUG(3,("got file: %s\n", filename
));
3795 switch (net_mode_share
)
3797 case NET_MODE_SHARE_MIGRATE
:
3798 nt_status
= net_copy_file(c
, local_state
->mem_ctx
,
3799 local_state
->cli_share_src
,
3800 local_state
->cli_share_dst
,
3802 c
->opt_acls
? true : false,
3803 c
->opt_attrs
? true : false,
3804 c
->opt_timestamps
? true: false,
3808 d_fprintf(stderr
, _("Unsupported file mode %d\n"),
3810 return NT_STATUS_INTERNAL_ERROR
;
3813 if (!NT_STATUS_IS_OK(nt_status
))
3814 printf(_("could not handle file %s: %s\n"),
3815 filename
, nt_errstr(nt_status
));
3820 * sync files, can be called recursivly to list files
3821 * and then call copy_fn for each file
3823 * @param cp_clistate pointer to the copy_clistate we work with
3824 * @param mask the current search mask
3826 * @return Boolean result
3828 static NTSTATUS
sync_files(struct copy_clistate
*cp_clistate
, const char *mask
)
3830 struct cli_state
*targetcli
;
3831 char *targetpath
= NULL
;
3834 DEBUG(3,("calling cli_list with mask: %s\n", mask
));
3836 status
= cli_resolve_path(talloc_tos(), "", NULL
,
3837 cp_clistate
->cli_share_src
,
3838 mask
, &targetcli
, &targetpath
);
3839 if (!NT_STATUS_IS_OK(status
)) {
3840 d_fprintf(stderr
, _("cli_resolve_path %s failed with error: "
3842 mask
, nt_errstr(status
));
3846 status
= cli_list(targetcli
, targetpath
, cp_clistate
->attribute
,
3847 copy_fn
, cp_clistate
);
3848 if (!NT_STATUS_IS_OK(status
)) {
3849 d_fprintf(stderr
, _("listing %s failed with error: %s\n"),
3850 mask
, nt_errstr(status
));
3858 * Set the top level directory permissions before we do any further copies.
3859 * Should set up ACL inheritance.
3862 bool copy_top_level_perms(struct net_context
*c
,
3863 struct copy_clistate
*cp_clistate
,
3864 const char *sharename
)
3866 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
3868 switch (net_mode_share
) {
3869 case NET_MODE_SHARE_MIGRATE
:
3870 DEBUG(3,("calling net_copy_fileattr for '.' directory in share %s\n", sharename
));
3871 nt_status
= net_copy_fileattr(c
,
3872 cp_clistate
->mem_ctx
,
3873 cp_clistate
->cli_share_src
,
3874 cp_clistate
->cli_share_dst
,
3876 c
->opt_acls
? true : false,
3877 c
->opt_attrs
? true : false,
3878 c
->opt_timestamps
? true: false,
3882 d_fprintf(stderr
, _("Unsupported mode %d\n"), net_mode_share
);
3886 if (!NT_STATUS_IS_OK(nt_status
)) {
3887 printf(_("Could handle directory attributes for top level "
3888 "directory of share %s. Error %s\n"),
3889 sharename
, nt_errstr(nt_status
));
3897 * Sync all files inside a remote share to another share (over smb).
3899 * All parameters are provided by the run_rpc_command function, except for
3900 * argc, argv which are passed through.
3902 * @param domain_sid The domain sid acquired from the remote server.
3903 * @param cli A cli_state connected to the server.
3904 * @param mem_ctx Talloc context, destroyed on completion of the function.
3905 * @param argc Standard main() style argc.
3906 * @param argv Standard main() style argv. Initial components are already
3909 * @return Normal NTSTATUS return.
3912 static NTSTATUS
rpc_share_migrate_files_internals(struct net_context
*c
,
3913 const struct dom_sid
*domain_sid
,
3914 const char *domain_name
,
3915 struct cli_state
*cli
,
3916 struct rpc_pipe_client
*pipe_hnd
,
3917 TALLOC_CTX
*mem_ctx
,
3922 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
3923 struct srvsvc_NetShareInfoCtr ctr_src
;
3926 struct copy_clistate cp_clistate
;
3927 bool got_src_share
= false;
3928 bool got_dst_share
= false;
3929 const char *mask
= "\\*";
3932 dst
= SMB_STRDUP(c
->opt_destination
?c
->opt_destination
:"127.0.0.1");
3934 nt_status
= NT_STATUS_NO_MEMORY
;
3938 result
= get_share_info(c
, pipe_hnd
, mem_ctx
, level
, argc
, argv
,
3941 if (!W_ERROR_IS_OK(result
))
3944 for (i
= 0; i
< ctr_src
.ctr
.ctr502
->count
; i
++) {
3946 struct srvsvc_NetShareInfo502 info502
=
3947 ctr_src
.ctr
.ctr502
->array
[i
];
3949 if (!check_share_sanity(c
, cli
, info502
.name
, info502
.type
))
3952 /* one might not want to mirror whole discs :) */
3953 if (strequal(info502
.name
, "print$") || info502
.name
[1] == '$') {
3954 d_printf(_("skipping [%s]: builtin/hidden share\n"),
3959 switch (net_mode_share
)
3961 case NET_MODE_SHARE_MIGRATE
:
3965 d_fprintf(stderr
, _("Unsupported mode %d\n"),
3969 printf(_(" [%s] files and directories %s ACLs, %s DOS "
3972 c
->opt_acls
? _("including") : _("without"),
3973 c
->opt_attrs
? _("including") : _("without"),
3974 c
->opt_timestamps
? _("(preserving timestamps)") : "");
3976 cp_clistate
.mem_ctx
= mem_ctx
;
3977 cp_clistate
.cli_share_src
= NULL
;
3978 cp_clistate
.cli_share_dst
= NULL
;
3979 cp_clistate
.cwd
= NULL
;
3980 cp_clistate
.attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
;
3983 /* open share source */
3984 nt_status
= connect_to_service(c
, &cp_clistate
.cli_share_src
,
3985 smbXcli_conn_remote_sockaddr(cli
->conn
),
3986 smbXcli_conn_remote_name(cli
->conn
),
3987 info502
.name
, "A:");
3988 if (!NT_STATUS_IS_OK(nt_status
))
3991 got_src_share
= true;
3993 if (net_mode_share
== NET_MODE_SHARE_MIGRATE
) {
3994 /* open share destination */
3995 nt_status
= connect_to_service(c
, &cp_clistate
.cli_share_dst
,
3996 NULL
, dst
, info502
.name
, "A:");
3997 if (!NT_STATUS_IS_OK(nt_status
))
4000 got_dst_share
= true;
4003 if (!copy_top_level_perms(c
, &cp_clistate
, info502
.name
)) {
4004 d_fprintf(stderr
, _("Could not handle the top level "
4005 "directory permissions for the "
4006 "share: %s\n"), info502
.name
);
4007 nt_status
= NT_STATUS_UNSUCCESSFUL
;
4011 nt_status
= sync_files(&cp_clistate
, mask
);
4012 if (!NT_STATUS_IS_OK(nt_status
)) {
4013 d_fprintf(stderr
, _("could not handle files for share: "
4014 "%s\n"), info502
.name
);
4019 nt_status
= NT_STATUS_OK
;
4024 cli_shutdown(cp_clistate
.cli_share_src
);
4027 cli_shutdown(cp_clistate
.cli_share_dst
);
4034 static int rpc_share_migrate_files(struct net_context
*c
, int argc
, const char **argv
)
4036 if (c
->display_usage
) {
4038 "net share migrate files\n"
4041 _("Migrate files to local server"));
4046 d_printf(_("no server to migrate\n"));
4050 return run_rpc_command(c
, NULL
, &ndr_table_srvsvc
, 0,
4051 rpc_share_migrate_files_internals
,
4056 * Migrate share-ACLs from a remote RPC server to the local RPC server.
4058 * All parameters are provided by the run_rpc_command function, except for
4059 * argc, argv which are passed through.
4061 * @param domain_sid The domain sid acquired from the remote server.
4062 * @param cli A cli_state connected to the server.
4063 * @param mem_ctx Talloc context, destroyed on completion of the function.
4064 * @param argc Standard main() style argc.
4065 * @param argv Standard main() style argv. Initial components are already
4068 * @return Normal NTSTATUS return.
4071 static NTSTATUS
rpc_share_migrate_security_internals(struct net_context
*c
,
4072 const struct dom_sid
*domain_sid
,
4073 const char *domain_name
,
4074 struct cli_state
*cli
,
4075 struct rpc_pipe_client
*pipe_hnd
,
4076 TALLOC_CTX
*mem_ctx
,
4081 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
4082 struct srvsvc_NetShareInfoCtr ctr_src
;
4083 union srvsvc_NetShareInfo info
;
4085 struct rpc_pipe_client
*srvsvc_pipe
= NULL
;
4086 struct cli_state
*cli_dst
= NULL
;
4087 uint32 level
= 502; /* includes secdesc */
4088 uint32_t parm_error
= 0;
4089 struct dcerpc_binding_handle
*b
;
4091 result
= get_share_info(c
, pipe_hnd
, mem_ctx
, level
, argc
, argv
,
4094 if (!W_ERROR_IS_OK(result
))
4097 /* connect destination PI_SRVSVC */
4098 nt_status
= connect_dst_pipe(c
, &cli_dst
, &srvsvc_pipe
,
4099 &ndr_table_srvsvc
.syntax_id
);
4100 if (!NT_STATUS_IS_OK(nt_status
))
4103 b
= srvsvc_pipe
->binding_handle
;
4105 for (i
= 0; i
< ctr_src
.ctr
.ctr502
->count
; i
++) {
4107 struct srvsvc_NetShareInfo502 info502
=
4108 ctr_src
.ctr
.ctr502
->array
[i
];
4110 /* reset error-code */
4111 nt_status
= NT_STATUS_UNSUCCESSFUL
;
4113 if (!check_share_sanity(c
, cli
, info502
.name
, info502
.type
))
4116 printf(_("migrating: [%s], path: %s, comment: %s, including "
4118 info502
.name
, info502
.path
, info502
.comment
);
4121 display_sec_desc(info502
.sd_buf
.sd
);
4123 /* FIXME: shouldn't we be able to just set the security descriptor ? */
4124 info
.info502
= &info502
;
4126 /* finally modify the share on the dst server */
4127 nt_status
= dcerpc_srvsvc_NetShareSetInfo(b
, mem_ctx
,
4128 srvsvc_pipe
->desthost
,
4134 if (!NT_STATUS_IS_OK(nt_status
)) {
4135 printf(_("cannot set share-acl: %s\n"),
4136 nt_errstr(nt_status
));
4139 if (!W_ERROR_IS_OK(result
)) {
4140 nt_status
= werror_to_ntstatus(result
);
4141 printf(_("cannot set share-acl: %s\n"),
4142 win_errstr(result
));
4148 nt_status
= NT_STATUS_OK
;
4152 cli_shutdown(cli_dst
);
4160 * Migrate share-acls from a RPC server to another.
4162 * @param argc Standard main() style argc.
4163 * @param argv Standard main() style argv. Initial components are already
4166 * @return A shell status integer (0 for success).
4168 static int rpc_share_migrate_security(struct net_context
*c
, int argc
,
4171 if (c
->display_usage
) {
4173 "net rpc share migrate security\n"
4176 _("Migrate share-acls to local server"));
4181 d_printf(_("no server to migrate\n"));
4185 return run_rpc_command(c
, NULL
, &ndr_table_srvsvc
, 0,
4186 rpc_share_migrate_security_internals
,
4191 * Migrate shares (including share-definitions, share-acls and files with acls/attrs)
4192 * from one server to another.
4194 * @param argc Standard main() style argc.
4195 * @param argv Standard main() style argv. Initial components are already
4198 * @return A shell status integer (0 for success).
4201 static int rpc_share_migrate_all(struct net_context
*c
, int argc
,
4206 if (c
->display_usage
) {
4208 "net rpc share migrate all\n"
4211 _("Migrates shares including all share settings"));
4216 d_printf(_("no server to migrate\n"));
4220 /* order is important. we don't want to be locked out by the share-acl
4221 * before copying files - gd */
4223 ret
= run_rpc_command(c
, NULL
, &ndr_table_srvsvc
, 0,
4224 rpc_share_migrate_shares_internals
, argc
, argv
);
4228 ret
= run_rpc_command(c
, NULL
, &ndr_table_srvsvc
, 0,
4229 rpc_share_migrate_files_internals
, argc
, argv
);
4233 return run_rpc_command(c
, NULL
, &ndr_table_srvsvc
, 0,
4234 rpc_share_migrate_security_internals
, argc
,
4240 * 'net rpc share migrate' entrypoint.
4241 * @param argc Standard main() style argc.
4242 * @param argv Standard main() style argv. Initial components are already
4245 static int rpc_share_migrate(struct net_context
*c
, int argc
, const char **argv
)
4248 struct functable func
[] = {
4251 rpc_share_migrate_all
,
4253 N_("Migrate shares from remote to local server"),
4254 N_("net rpc share migrate all\n"
4255 " Migrate shares from remote to local server")
4259 rpc_share_migrate_files
,
4261 N_("Migrate files from remote to local server"),
4262 N_("net rpc share migrate files\n"
4263 " Migrate files from remote to local server")
4267 rpc_share_migrate_security
,
4269 N_("Migrate share-ACLs from remote to local server"),
4270 N_("net rpc share migrate security\n"
4271 " Migrate share-ACLs from remote to local server")
4275 rpc_share_migrate_shares
,
4277 N_("Migrate shares from remote to local server"),
4278 N_("net rpc share migrate shares\n"
4279 " Migrate shares from remote to local server")
4281 {NULL
, NULL
, 0, NULL
, NULL
}
4284 net_mode_share
= NET_MODE_SHARE_MIGRATE
;
4286 return net_run_function(c
, argc
, argv
, "net rpc share migrate", func
);
4292 struct dom_sid
*members
;
4295 static int num_server_aliases
;
4296 static struct full_alias
*server_aliases
;
4299 * Add an alias to the static list.
4301 static void push_alias(TALLOC_CTX
*mem_ctx
, struct full_alias
*alias
)
4303 if (server_aliases
== NULL
)
4304 server_aliases
= SMB_MALLOC_ARRAY(struct full_alias
, 100);
4306 server_aliases
[num_server_aliases
] = *alias
;
4307 num_server_aliases
+= 1;
4311 * For a specific domain on the server, fetch all the aliases
4312 * and their members. Add all of them to the server_aliases.
4315 static NTSTATUS
rpc_fetch_domain_aliases(struct rpc_pipe_client
*pipe_hnd
,
4316 TALLOC_CTX
*mem_ctx
,
4317 struct policy_handle
*connect_pol
,
4318 const struct dom_sid
*domain_sid
)
4320 uint32 start_idx
, max_entries
, num_entries
, i
;
4321 struct samr_SamArray
*groups
= NULL
;
4322 NTSTATUS result
, status
;
4323 struct policy_handle domain_pol
;
4324 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
4326 /* Get domain policy handle */
4328 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
4330 MAXIMUM_ALLOWED_ACCESS
,
4331 discard_const_p(struct dom_sid2
, domain_sid
),
4334 if (!NT_STATUS_IS_OK(status
)) {
4337 if (!NT_STATUS_IS_OK(result
)) {
4345 status
= dcerpc_samr_EnumDomainAliases(b
, mem_ctx
,
4352 if (!NT_STATUS_IS_OK(status
)) {
4355 for (i
= 0; i
< num_entries
; i
++) {
4357 struct policy_handle alias_pol
;
4358 struct full_alias alias
;
4359 struct lsa_SidArray sid_array
;
4363 status
= dcerpc_samr_OpenAlias(b
, mem_ctx
,
4365 MAXIMUM_ALLOWED_ACCESS
,
4366 groups
->entries
[i
].idx
,
4369 if (!NT_STATUS_IS_OK(status
)) {
4372 if (!NT_STATUS_IS_OK(_result
)) {
4377 status
= dcerpc_samr_GetMembersInAlias(b
, mem_ctx
,
4381 if (!NT_STATUS_IS_OK(status
)) {
4384 if (!NT_STATUS_IS_OK(_result
)) {
4389 alias
.num_members
= sid_array
.num_sids
;
4391 status
= dcerpc_samr_Close(b
, mem_ctx
, &alias_pol
, &_result
);
4392 if (!NT_STATUS_IS_OK(status
)) {
4395 if (!NT_STATUS_IS_OK(_result
)) {
4400 alias
.members
= NULL
;
4402 if (alias
.num_members
> 0) {
4403 alias
.members
= SMB_MALLOC_ARRAY(struct dom_sid
, alias
.num_members
);
4405 for (j
= 0; j
< alias
.num_members
; j
++)
4406 sid_copy(&alias
.members
[j
],
4407 sid_array
.sids
[j
].sid
);
4410 sid_compose(&alias
.sid
, domain_sid
,
4411 groups
->entries
[i
].idx
);
4413 push_alias(mem_ctx
, &alias
);
4415 } while (NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
));
4417 status
= NT_STATUS_OK
;
4420 dcerpc_samr_Close(b
, mem_ctx
, &domain_pol
, &result
);
4426 * Dump server_aliases as names for debugging purposes.
4429 static NTSTATUS
rpc_aliaslist_dump(struct net_context
*c
,
4430 const struct dom_sid
*domain_sid
,
4431 const char *domain_name
,
4432 struct cli_state
*cli
,
4433 struct rpc_pipe_client
*pipe_hnd
,
4434 TALLOC_CTX
*mem_ctx
,
4440 struct policy_handle lsa_pol
;
4441 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
4443 result
= rpccli_lsa_open_policy(pipe_hnd
, mem_ctx
, true,
4444 SEC_FLAG_MAXIMUM_ALLOWED
,
4446 if (!NT_STATUS_IS_OK(result
))
4449 for (i
=0; i
<num_server_aliases
; i
++) {
4452 enum lsa_SidType
*types
;
4455 struct full_alias
*alias
= &server_aliases
[i
];
4457 result
= rpccli_lsa_lookup_sids(pipe_hnd
, mem_ctx
, &lsa_pol
, 1,
4459 &domains
, &names
, &types
);
4460 if (!NT_STATUS_IS_OK(result
))
4463 DEBUG(1, ("%s\\%s %d: ", domains
[0], names
[0], types
[0]));
4465 if (alias
->num_members
== 0) {
4470 result
= rpccli_lsa_lookup_sids(pipe_hnd
, mem_ctx
, &lsa_pol
,
4473 &domains
, &names
, &types
);
4475 if (!NT_STATUS_IS_OK(result
) &&
4476 !NT_STATUS_EQUAL(result
, STATUS_SOME_UNMAPPED
))
4479 for (j
=0; j
<alias
->num_members
; j
++)
4480 DEBUG(1, ("%s\\%s (%d); ",
4481 domains
[j
] ? domains
[j
] : "*unknown*",
4482 names
[j
] ? names
[j
] : "*unknown*",types
[j
]));
4486 dcerpc_lsa_Close(b
, mem_ctx
, &lsa_pol
, &result
);
4488 return NT_STATUS_OK
;
4492 * Fetch a list of all server aliases and their members into
4496 static NTSTATUS
rpc_aliaslist_internals(struct net_context
*c
,
4497 const struct dom_sid
*domain_sid
,
4498 const char *domain_name
,
4499 struct cli_state
*cli
,
4500 struct rpc_pipe_client
*pipe_hnd
,
4501 TALLOC_CTX
*mem_ctx
,
4505 NTSTATUS result
, status
;
4506 struct policy_handle connect_pol
;
4507 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
4509 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
4511 MAXIMUM_ALLOWED_ACCESS
,
4514 if (!NT_STATUS_IS_OK(status
)) {
4517 if (!NT_STATUS_IS_OK(result
)) {
4522 status
= rpc_fetch_domain_aliases(pipe_hnd
, mem_ctx
, &connect_pol
,
4523 &global_sid_Builtin
);
4524 if (!NT_STATUS_IS_OK(status
)) {
4528 status
= rpc_fetch_domain_aliases(pipe_hnd
, mem_ctx
, &connect_pol
,
4531 dcerpc_samr_Close(b
, mem_ctx
, &connect_pol
, &result
);
4536 static void init_user_token(struct security_token
*token
, struct dom_sid
*user_sid
)
4538 token
->num_sids
= 4;
4540 if (!(token
->sids
= SMB_MALLOC_ARRAY(struct dom_sid
, 4))) {
4541 d_fprintf(stderr
, "malloc %s\n",_("failed"));
4542 token
->num_sids
= 0;
4546 token
->sids
[0] = *user_sid
;
4547 sid_copy(&token
->sids
[1], &global_sid_World
);
4548 sid_copy(&token
->sids
[2], &global_sid_Network
);
4549 sid_copy(&token
->sids
[3], &global_sid_Authenticated_Users
);
4552 static void free_user_token(struct security_token
*token
)
4554 SAFE_FREE(token
->sids
);
4557 static void add_sid_to_token(struct security_token
*token
, struct dom_sid
*sid
)
4559 if (security_token_has_sid(token
, sid
))
4562 token
->sids
= SMB_REALLOC_ARRAY(token
->sids
, struct dom_sid
, token
->num_sids
+1);
4567 sid_copy(&token
->sids
[token
->num_sids
], sid
);
4569 token
->num_sids
+= 1;
4574 struct security_token token
;
4577 static void dump_user_token(struct user_token
*token
)
4581 d_printf("%s\n", token
->name
);
4583 for (i
=0; i
<token
->token
.num_sids
; i
++) {
4584 d_printf(" %s\n", sid_string_tos(&token
->token
.sids
[i
]));
4588 static bool is_alias_member(struct dom_sid
*sid
, struct full_alias
*alias
)
4592 for (i
=0; i
<alias
->num_members
; i
++) {
4593 if (dom_sid_compare(sid
, &alias
->members
[i
]) == 0)
4600 static void collect_sid_memberships(struct security_token
*token
, struct dom_sid sid
)
4604 for (i
=0; i
<num_server_aliases
; i
++) {
4605 if (is_alias_member(&sid
, &server_aliases
[i
]))
4606 add_sid_to_token(token
, &server_aliases
[i
].sid
);
4611 * We got a user token with all the SIDs we can know about without asking the
4612 * server directly. These are the user and domain group sids. All of these can
4613 * be members of aliases. So scan the list of aliases for each of the SIDs and
4614 * add them to the token.
4617 static void collect_alias_memberships(struct security_token
*token
)
4619 int num_global_sids
= token
->num_sids
;
4622 for (i
=0; i
<num_global_sids
; i
++) {
4623 collect_sid_memberships(token
, token
->sids
[i
]);
4627 static bool get_user_sids(const char *domain
, const char *user
, struct security_token
*token
)
4629 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
4630 enum wbcSidType type
;
4632 struct wbcDomainSid wsid
;
4633 char sid_str
[WBC_SID_STRING_BUFLEN
];
4634 struct dom_sid user_sid
;
4635 uint32_t num_groups
;
4636 gid_t
*groups
= NULL
;
4639 fstr_sprintf(full_name
, "%s%c%s",
4640 domain
, *lp_winbind_separator(), user
);
4642 /* First let's find out the user sid */
4644 wbc_status
= wbcLookupName(domain
, user
, &wsid
, &type
);
4646 if (!WBC_ERROR_IS_OK(wbc_status
)) {
4647 DEBUG(1, ("winbind could not find %s: %s\n",
4648 full_name
, wbcErrorString(wbc_status
)));
4652 wbcSidToStringBuf(&wsid
, sid_str
, sizeof(sid_str
));
4654 if (type
!= WBC_SID_NAME_USER
) {
4655 DEBUG(1, ("%s is not a user\n", full_name
));
4659 if (!string_to_sid(&user_sid
, sid_str
)) {
4660 DEBUG(1,("Could not convert sid %s from string\n", sid_str
));
4664 init_user_token(token
, &user_sid
);
4666 /* And now the groups winbind knows about */
4668 wbc_status
= wbcGetGroups(full_name
, &num_groups
, &groups
);
4669 if (!WBC_ERROR_IS_OK(wbc_status
)) {
4670 DEBUG(1, ("winbind could not get groups of %s: %s\n",
4671 full_name
, wbcErrorString(wbc_status
)));
4675 for (i
= 0; i
< num_groups
; i
++) {
4676 gid_t gid
= groups
[i
];
4679 wbc_status
= wbcGidToSid(gid
, &wsid
);
4680 if (!WBC_ERROR_IS_OK(wbc_status
)) {
4681 DEBUG(1, ("winbind could not find SID of gid %u: %s\n",
4682 (unsigned int)gid
, wbcErrorString(wbc_status
)));
4683 wbcFreeMemory(groups
);
4687 wbcSidToStringBuf(&wsid
, sid_str
, sizeof(sid_str
));
4689 DEBUG(3, (" %s\n", sid_str
));
4691 string_to_sid(&sid
, sid_str
);
4692 add_sid_to_token(token
, &sid
);
4694 wbcFreeMemory(groups
);
4700 * Get a list of all user tokens we want to look at
4703 static bool get_user_tokens(struct net_context
*c
, int *num_tokens
,
4704 struct user_token
**user_tokens
)
4706 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
4707 uint32_t i
, num_users
;
4709 struct user_token
*result
;
4710 TALLOC_CTX
*frame
= NULL
;
4712 if (lp_winbind_use_default_domain() &&
4713 (c
->opt_target_workgroup
== NULL
)) {
4714 d_fprintf(stderr
, _("winbind use default domain = yes set, "
4715 "please specify a workgroup\n"));
4719 /* Send request to winbind daemon */
4721 wbc_status
= wbcListUsers(NULL
, &num_users
, &users
);
4722 if (!WBC_ERROR_IS_OK(wbc_status
)) {
4723 DEBUG(1, (_("winbind could not list users: %s\n"),
4724 wbcErrorString(wbc_status
)));
4728 result
= SMB_MALLOC_ARRAY(struct user_token
, num_users
);
4730 if (result
== NULL
) {
4731 DEBUG(1, ("Could not malloc sid array\n"));
4732 wbcFreeMemory(users
);
4736 frame
= talloc_stackframe();
4737 for (i
=0; i
< num_users
; i
++) {
4738 fstring domain
, user
;
4741 fstrcpy(result
[i
].name
, users
[i
]);
4743 p
= strchr(users
[i
], *lp_winbind_separator());
4745 DEBUG(3, ("%s\n", users
[i
]));
4748 fstrcpy(domain
, c
->opt_target_workgroup
);
4749 fstrcpy(user
, users
[i
]);
4752 fstrcpy(domain
, users
[i
]);
4753 if (!strupper_m(domain
)) {
4754 DEBUG(1, ("strupper_m %s failed\n", domain
));
4755 wbcFreeMemory(users
);
4761 get_user_sids(domain
, user
, &(result
[i
].token
));
4764 wbcFreeMemory(users
);
4766 *num_tokens
= num_users
;
4767 *user_tokens
= result
;
4772 static bool get_user_tokens_from_file(FILE *f
,
4774 struct user_token
**tokens
)
4776 struct user_token
*token
= NULL
;
4781 if (fgets(line
, sizeof(line
)-1, f
) == NULL
) {
4785 if ((strlen(line
) > 0) && (line
[strlen(line
)-1] == '\n')) {
4786 line
[strlen(line
)-1] = '\0';
4789 if (line
[0] == ' ') {
4793 if(!string_to_sid(&sid
, &line
[1])) {
4794 DEBUG(1,("get_user_tokens_from_file: Could "
4795 "not convert sid %s \n",&line
[1]));
4799 if (token
== NULL
) {
4800 DEBUG(0, ("File does not begin with username"));
4804 add_sid_to_token(&token
->token
, &sid
);
4808 /* And a new user... */
4811 *tokens
= SMB_REALLOC_ARRAY(*tokens
, struct user_token
, *num_tokens
);
4812 if (*tokens
== NULL
) {
4813 DEBUG(0, ("Could not realloc tokens\n"));
4817 token
= &((*tokens
)[*num_tokens
-1]);
4819 if (strlcpy(token
->name
, line
, sizeof(token
->name
)) >= sizeof(token
->name
)) {
4822 token
->token
.num_sids
= 0;
4823 token
->token
.sids
= NULL
;
4832 * Show the list of all users that have access to a share
4835 static void show_userlist(struct rpc_pipe_client
*pipe_hnd
,
4836 TALLOC_CTX
*mem_ctx
,
4837 const char *netname
,
4839 struct user_token
*tokens
)
4842 struct security_descriptor
*share_sd
= NULL
;
4843 struct security_descriptor
*root_sd
= NULL
;
4844 struct cli_state
*cli
= rpc_pipe_np_smb_conn(pipe_hnd
);
4846 union srvsvc_NetShareInfo info
;
4850 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
4852 status
= dcerpc_srvsvc_NetShareGetInfo(b
, mem_ctx
,
4859 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(result
)) {
4860 DEBUG(1, ("Coult not query secdesc for share %s\n",
4865 share_sd
= info
.info502
->sd_buf
.sd
;
4866 if (share_sd
== NULL
) {
4867 DEBUG(1, ("Got no secdesc for share %s\n",
4871 cnum
= cli_state_get_tid(cli
);
4873 if (!NT_STATUS_IS_OK(cli_tree_connect(cli
, netname
, "A:", "", 0))) {
4877 if (!NT_STATUS_IS_OK(cli_ntcreate(cli
, "\\", 0, READ_CONTROL_ACCESS
, 0,
4878 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
, 0x0, 0x0, &fnum
))) {
4879 cli_query_secdesc(cli
, fnum
, mem_ctx
, &root_sd
);
4882 for (i
=0; i
<num_tokens
; i
++) {
4885 if (share_sd
!= NULL
) {
4886 status
= se_access_check(share_sd
, &tokens
[i
].token
,
4889 if (!NT_STATUS_IS_OK(status
)) {
4890 DEBUG(1, ("Could not check share_sd for "
4897 if (root_sd
== NULL
) {
4898 d_printf(" %s\n", tokens
[i
].name
);
4902 status
= se_access_check(root_sd
, &tokens
[i
].token
,
4904 if (!NT_STATUS_IS_OK(status
)) {
4905 DEBUG(1, ("Could not check root_sd for user %s\n",
4909 d_printf(" %s\n", tokens
[i
].name
);
4912 if (fnum
!= (uint16_t)-1)
4913 cli_close(cli
, fnum
);
4915 cli_state_set_tid(cli
, cnum
);
4925 static void collect_share(const char *name
, uint32 m
,
4926 const char *comment
, void *state
)
4928 struct share_list
*share_list
= (struct share_list
*)state
;
4930 if (m
!= STYPE_DISKTREE
)
4933 share_list
->num_shares
+= 1;
4934 share_list
->shares
= SMB_REALLOC_ARRAY(share_list
->shares
, char *, share_list
->num_shares
);
4935 if (!share_list
->shares
) {
4936 share_list
->num_shares
= 0;
4939 share_list
->shares
[share_list
->num_shares
-1] = SMB_STRDUP(name
);
4943 * List shares on a remote RPC server, including the security descriptors.
4945 * All parameters are provided by the run_rpc_command function, except for
4946 * argc, argv which are passed through.
4948 * @param domain_sid The domain sid acquired from the remote server.
4949 * @param cli A cli_state connected to the server.
4950 * @param mem_ctx Talloc context, destroyed on completion of the function.
4951 * @param argc Standard main() style argc.
4952 * @param argv Standard main() style argv. Initial components are already
4955 * @return Normal NTSTATUS return.
4958 static NTSTATUS
rpc_share_allowedusers_internals(struct net_context
*c
,
4959 const struct dom_sid
*domain_sid
,
4960 const char *domain_name
,
4961 struct cli_state
*cli
,
4962 struct rpc_pipe_client
*pipe_hnd
,
4963 TALLOC_CTX
*mem_ctx
,
4972 struct user_token
*tokens
= NULL
;
4975 struct share_list share_list
;
4980 f
= fopen(argv
[0], "r");
4984 DEBUG(0, ("Could not open userlist: %s\n", strerror(errno
)));
4985 return NT_STATUS_UNSUCCESSFUL
;
4988 r
= get_user_tokens_from_file(f
, &num_tokens
, &tokens
);
4994 DEBUG(0, ("Could not read users from file\n"));
4995 return NT_STATUS_UNSUCCESSFUL
;
4998 for (i
=0; i
<num_tokens
; i
++)
4999 collect_alias_memberships(&tokens
[i
].token
);
5001 share_list
.num_shares
= 0;
5002 share_list
.shares
= NULL
;
5004 ret
= cli_RNetShareEnum(cli
, collect_share
, &share_list
);
5007 DEBUG(0, ("Error returning browse list: %s\n",
5012 for (i
= 0; i
< share_list
.num_shares
; i
++) {
5013 char *netname
= share_list
.shares
[i
];
5015 if (netname
[strlen(netname
)-1] == '$')
5018 d_printf("%s\n", netname
);
5020 show_userlist(pipe_hnd
, mem_ctx
, netname
,
5021 num_tokens
, tokens
);
5024 for (i
=0; i
<num_tokens
; i
++) {
5025 free_user_token(&tokens
[i
].token
);
5028 SAFE_FREE(share_list
.shares
);
5030 return NT_STATUS_OK
;
5033 static int rpc_share_allowedusers(struct net_context
*c
, int argc
,
5038 if (c
->display_usage
) {
5040 "net rpc share allowedusers\n"
5043 _("List allowed users"));
5047 result
= run_rpc_command(c
, NULL
, &ndr_table_samr
, 0,
5048 rpc_aliaslist_internals
,
5053 result
= run_rpc_command(c
, NULL
, &ndr_table_lsarpc
, 0,
5059 return run_rpc_command(c
, NULL
, &ndr_table_srvsvc
, 0,
5060 rpc_share_allowedusers_internals
,
5064 int net_usersidlist(struct net_context
*c
, int argc
, const char **argv
)
5067 struct user_token
*tokens
= NULL
;
5071 net_usersidlist_usage(c
, argc
, argv
);
5075 if (!get_user_tokens(c
, &num_tokens
, &tokens
)) {
5076 DEBUG(0, ("Could not get the user/sid list\n"));
5080 for (i
=0; i
<num_tokens
; i
++) {
5081 dump_user_token(&tokens
[i
]);
5082 free_user_token(&tokens
[i
].token
);
5089 int net_usersidlist_usage(struct net_context
*c
, int argc
, const char **argv
)
5091 d_printf(_("net usersidlist\n"
5092 "\tprints out a list of all users the running winbind knows\n"
5093 "\tabout, together with all their SIDs. This is used as\n"
5094 "\tinput to the 'net rpc share allowedusers' command.\n\n"));
5096 net_common_flags_usage(c
, argc
, argv
);
5101 * 'net rpc share' entrypoint.
5102 * @param argc Standard main() style argc.
5103 * @param argv Standard main() style argv. Initial components are already
5107 int net_rpc_share(struct net_context
*c
, int argc
, const char **argv
)
5109 NET_API_STATUS status
;
5111 struct functable func
[] = {
5117 N_("net rpc share add\n"
5125 N_("net rpc share delete\n"
5130 rpc_share_allowedusers
,
5132 N_("Modify allowed users"),
5133 N_("net rpc share allowedusers\n"
5134 " Modify allowed users")
5140 N_("Migrate share to local server"),
5141 N_("net rpc share migrate\n"
5142 " Migrate share to local server")
5149 N_("net rpc share list\n"
5152 {NULL
, NULL
, 0, NULL
, NULL
}
5155 status
= libnetapi_net_init(&c
->netapi_ctx
);
5159 libnetapi_set_username(c
->netapi_ctx
, c
->opt_user_name
);
5160 libnetapi_set_password(c
->netapi_ctx
, c
->opt_password
);
5161 if (c
->opt_kerberos
) {
5162 libnetapi_set_use_kerberos(c
->netapi_ctx
);
5166 if (c
->display_usage
) {
5171 " Alias for net rpc share list\n"));
5172 net_display_usage_from_functable(func
);
5176 return rpc_share_list(c
, argc
, argv
);
5179 return net_run_function(c
, argc
, argv
, "net rpc share", func
);
5182 static NTSTATUS
rpc_sh_share_list(struct net_context
*c
,
5183 TALLOC_CTX
*mem_ctx
,
5184 struct rpc_sh_ctx
*ctx
,
5185 struct rpc_pipe_client
*pipe_hnd
,
5186 int argc
, const char **argv
)
5189 return werror_to_ntstatus(W_ERROR(rpc_share_list(c
, argc
, argv
)));
5192 static NTSTATUS
rpc_sh_share_add(struct net_context
*c
,
5193 TALLOC_CTX
*mem_ctx
,
5194 struct rpc_sh_ctx
*ctx
,
5195 struct rpc_pipe_client
*pipe_hnd
,
5196 int argc
, const char **argv
)
5198 NET_API_STATUS status
;
5199 uint32_t parm_err
= 0;
5200 struct SHARE_INFO_2 i2
;
5202 if ((argc
< 2) || (argc
> 3)) {
5203 d_fprintf(stderr
, _("Usage: %s <share> <path> [comment]\n"),
5205 return NT_STATUS_INVALID_PARAMETER
;
5208 i2
.shi2_netname
= argv
[0];
5209 i2
.shi2_type
= STYPE_DISKTREE
;
5210 i2
.shi2_remark
= (argc
== 3) ? argv
[2] : "";
5211 i2
.shi2_permissions
= 0;
5212 i2
.shi2_max_uses
= 0;
5213 i2
.shi2_current_uses
= 0;
5214 i2
.shi2_path
= argv
[1];
5215 i2
.shi2_passwd
= NULL
;
5217 status
= NetShareAdd(pipe_hnd
->desthost
,
5222 return werror_to_ntstatus(W_ERROR(status
));
5225 static NTSTATUS
rpc_sh_share_delete(struct net_context
*c
,
5226 TALLOC_CTX
*mem_ctx
,
5227 struct rpc_sh_ctx
*ctx
,
5228 struct rpc_pipe_client
*pipe_hnd
,
5229 int argc
, const char **argv
)
5232 d_fprintf(stderr
, "%s %s <share>\n", _("Usage:"), ctx
->whoami
);
5233 return NT_STATUS_INVALID_PARAMETER
;
5236 return werror_to_ntstatus(W_ERROR(NetShareDel(pipe_hnd
->desthost
, argv
[0], 0)));
5239 static NTSTATUS
rpc_sh_share_info(struct net_context
*c
,
5240 TALLOC_CTX
*mem_ctx
,
5241 struct rpc_sh_ctx
*ctx
,
5242 struct rpc_pipe_client
*pipe_hnd
,
5243 int argc
, const char **argv
)
5245 union srvsvc_NetShareInfo info
;
5248 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
5251 d_fprintf(stderr
, "%s %s <share>\n", _("Usage:"), ctx
->whoami
);
5252 return NT_STATUS_INVALID_PARAMETER
;
5255 status
= dcerpc_srvsvc_NetShareGetInfo(b
, mem_ctx
,
5261 if (!NT_STATUS_IS_OK(status
)) {
5262 result
= ntstatus_to_werror(status
);
5265 if (!W_ERROR_IS_OK(result
)) {
5269 d_printf(_("Name: %s\n"), info
.info2
->name
);
5270 d_printf(_("Comment: %s\n"), info
.info2
->comment
);
5271 d_printf(_("Path: %s\n"), info
.info2
->path
);
5272 d_printf(_("Password: %s\n"), info
.info2
->password
);
5275 return werror_to_ntstatus(result
);
5278 struct rpc_sh_cmd
*net_rpc_share_cmds(struct net_context
*c
, TALLOC_CTX
*mem_ctx
,
5279 struct rpc_sh_ctx
*ctx
)
5281 static struct rpc_sh_cmd cmds
[] = {
5283 { "list", NULL
, &ndr_table_srvsvc
, rpc_sh_share_list
,
5284 N_("List available shares") },
5286 { "add", NULL
, &ndr_table_srvsvc
, rpc_sh_share_add
,
5287 N_("Add a share") },
5289 { "delete", NULL
, &ndr_table_srvsvc
, rpc_sh_share_delete
,
5290 N_("Delete a share") },
5292 { "info", NULL
, &ndr_table_srvsvc
, rpc_sh_share_info
,
5293 N_("Get information about a share") },
5295 { NULL
, NULL
, 0, NULL
, NULL
}
5301 /****************************************************************************/
5303 static int rpc_file_usage(struct net_context
*c
, int argc
, const char **argv
)
5305 return net_file_usage(c
, argc
, argv
);
5309 * Close a file on a remote RPC server.
5311 * @param argc Standard main() style argc.
5312 * @param argv Standard main() style argv. Initial components are already
5315 * @return A shell status integer (0 for success).
5317 static int rpc_file_close(struct net_context
*c
, int argc
, const char **argv
)
5319 if (argc
< 1 || c
->display_usage
) {
5320 return rpc_file_usage(c
, argc
, argv
);
5323 return NetFileClose(c
->opt_host
, atoi(argv
[0]));
5327 * Formatted print of open file info
5329 * @param r struct FILE_INFO_3 contents
5332 static void display_file_info_3(struct FILE_INFO_3
*r
)
5334 d_printf("%-7.1d %-20.20s 0x%-4.2x %-6.1d %s\n",
5335 r
->fi3_id
, r
->fi3_username
, r
->fi3_permissions
,
5336 r
->fi3_num_locks
, r
->fi3_pathname
);
5340 * List files for a user on a remote RPC server.
5342 * @param argc Standard main() style argc.
5343 * @param argv Standard main() style argv. Initial components are already
5346 * @return A shell status integer (0 for success)..
5349 static int rpc_file_user(struct net_context
*c
, int argc
, const char **argv
)
5351 NET_API_STATUS status
;
5352 uint32 preferred_len
= 0xffffffff, i
;
5353 const char *username
=NULL
;
5354 uint32_t total_entries
= 0;
5355 uint32_t entries_read
= 0;
5356 uint32_t resume_handle
= 0;
5357 struct FILE_INFO_3
*i3
= NULL
;
5359 if (c
->display_usage
) {
5360 return rpc_file_usage(c
, argc
, argv
);
5363 /* if argc > 0, must be user command */
5365 username
= smb_xstrdup(argv
[0]);
5368 status
= NetFileEnum(c
->opt_host
,
5372 (uint8_t **)(void *)&i3
,
5382 /* Display results */
5385 "\nEnumerating open files on remote server:\n\n"
5386 "\nFileId Opened by Perms Locks Path"
5387 "\n------ --------- ----- ----- ---- \n"));
5388 for (i
= 0; i
< entries_read
; i
++) {
5389 display_file_info_3(&i3
[i
]);
5396 * 'net rpc file' entrypoint.
5397 * @param argc Standard main() style argc.
5398 * @param argv Standard main() style argv. Initial components are already
5402 int net_rpc_file(struct net_context
*c
, int argc
, const char **argv
)
5404 NET_API_STATUS status
;
5406 struct functable func
[] = {
5411 N_("Close opened file"),
5412 N_("net rpc file close\n"
5413 " Close opened file")
5419 N_("List files opened by user"),
5420 N_("net rpc file user\n"
5421 " List files opened by user")
5428 N_("Display information about opened file"),
5429 N_("net rpc file info\n"
5430 " Display information about opened file")
5433 {NULL
, NULL
, 0, NULL
, NULL
}
5436 status
= libnetapi_net_init(&c
->netapi_ctx
);
5440 libnetapi_set_username(c
->netapi_ctx
, c
->opt_user_name
);
5441 libnetapi_set_password(c
->netapi_ctx
, c
->opt_password
);
5442 if (c
->opt_kerberos
) {
5443 libnetapi_set_use_kerberos(c
->netapi_ctx
);
5447 if (c
->display_usage
) {
5448 d_printf(_("Usage:\n"));
5449 d_printf(_("net rpc file\n"
5450 " List opened files\n"));
5451 net_display_usage_from_functable(func
);
5455 return rpc_file_user(c
, argc
, argv
);
5458 return net_run_function(c
, argc
, argv
, "net rpc file", func
);
5462 * ABORT the shutdown of a remote RPC Server, over initshutdown pipe.
5464 * All parameters are provided by the run_rpc_command function, except for
5465 * argc, argv which are passed through.
5467 * @param c A net_context structure.
5468 * @param domain_sid The domain sid acquired from the remote server.
5469 * @param cli A cli_state connected to the server.
5470 * @param mem_ctx Talloc context, destroyed on completion of the function.
5471 * @param argc Standard main() style argc.
5472 * @param argv Standard main() style argv. Initial components are already
5475 * @return Normal NTSTATUS return.
5478 static NTSTATUS
rpc_shutdown_abort_internals(struct net_context
*c
,
5479 const struct dom_sid
*domain_sid
,
5480 const char *domain_name
,
5481 struct cli_state
*cli
,
5482 struct rpc_pipe_client
*pipe_hnd
,
5483 TALLOC_CTX
*mem_ctx
,
5487 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
5489 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
5491 status
= dcerpc_initshutdown_Abort(b
, mem_ctx
, NULL
, &result
);
5492 if (!NT_STATUS_IS_OK(status
)) {
5495 if (W_ERROR_IS_OK(result
)) {
5496 d_printf(_("\nShutdown successfully aborted\n"));
5497 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
5499 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
5501 return werror_to_ntstatus(result
);
5505 * ABORT the shutdown of a remote RPC Server, over winreg pipe.
5507 * All parameters are provided by the run_rpc_command function, except for
5508 * argc, argv which are passed through.
5510 * @param c A net_context structure.
5511 * @param domain_sid The domain sid acquired from the remote server.
5512 * @param cli A cli_state connected to the server.
5513 * @param mem_ctx Talloc context, destroyed on completion of the function.
5514 * @param argc Standard main() style argc.
5515 * @param argv Standard main() style argv. Initial components are already
5518 * @return Normal NTSTATUS return.
5521 static NTSTATUS
rpc_reg_shutdown_abort_internals(struct net_context
*c
,
5522 const struct dom_sid
*domain_sid
,
5523 const char *domain_name
,
5524 struct cli_state
*cli
,
5525 struct rpc_pipe_client
*pipe_hnd
,
5526 TALLOC_CTX
*mem_ctx
,
5530 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
5532 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
5534 result
= dcerpc_winreg_AbortSystemShutdown(b
, mem_ctx
, NULL
, &werr
);
5536 if (!NT_STATUS_IS_OK(result
)) {
5537 DEBUG(5,("cmd_reg_abort_shutdown: query failed\n"));
5540 if (W_ERROR_IS_OK(werr
)) {
5541 d_printf(_("\nShutdown successfully aborted\n"));
5542 DEBUG(5,("cmd_reg_abort_shutdown: query succeeded\n"));
5544 DEBUG(5,("cmd_reg_abort_shutdown: query failed\n"));
5546 return werror_to_ntstatus(werr
);
5550 * ABORT the shutdown of a remote RPC server.
5552 * @param argc Standard main() style argc.
5553 * @param argv Standard main() style argv. Initial components are already
5556 * @return A shell status integer (0 for success).
5559 static int rpc_shutdown_abort(struct net_context
*c
, int argc
,
5564 if (c
->display_usage
) {
5566 "net rpc abortshutdown\n"
5569 _("Abort a scheduled shutdown"));
5573 rc
= run_rpc_command(c
, NULL
, &ndr_table_initshutdown
, 0,
5574 rpc_shutdown_abort_internals
, argc
, argv
);
5579 DEBUG(1, ("initshutdown pipe didn't work, trying winreg pipe\n"));
5581 return run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
5582 rpc_reg_shutdown_abort_internals
,
5587 * Shut down a remote RPC Server via initshutdown pipe.
5589 * All parameters are provided by the run_rpc_command function, except for
5590 * argc, argv which are passed through.
5592 * @param c A net_context structure.
5593 * @param domain_sid The domain sid acquired from the remote server.
5594 * @param cli A cli_state connected to the server.
5595 * @param mem_ctx Talloc context, destroyed on completion of the function.
5596 * @param argc Standard main() style argc.
5597 * @param argv Standard main() style argv. Initial components are already
5600 * @return Normal NTSTATUS return.
5603 NTSTATUS
rpc_init_shutdown_internals(struct net_context
*c
,
5604 const struct dom_sid
*domain_sid
,
5605 const char *domain_name
,
5606 struct cli_state
*cli
,
5607 struct rpc_pipe_client
*pipe_hnd
,
5608 TALLOC_CTX
*mem_ctx
,
5612 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
5614 const char *msg
= N_("This machine will be shutdown shortly");
5615 uint32 timeout
= 20;
5616 struct lsa_StringLarge msg_string
;
5617 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
5619 if (c
->opt_comment
) {
5620 msg
= c
->opt_comment
;
5622 if (c
->opt_timeout
) {
5623 timeout
= c
->opt_timeout
;
5626 msg_string
.string
= msg
;
5628 /* create an entry */
5629 status
= dcerpc_initshutdown_Init(b
, mem_ctx
, NULL
,
5630 &msg_string
, timeout
, c
->opt_force
, c
->opt_reboot
,
5632 if (!NT_STATUS_IS_OK(status
)) {
5635 if (W_ERROR_IS_OK(result
)) {
5636 d_printf(_("\nShutdown of remote machine succeeded\n"));
5637 DEBUG(5,("Shutdown of remote machine succeeded\n"));
5639 DEBUG(1,("Shutdown of remote machine failed!\n"));
5641 return werror_to_ntstatus(result
);
5645 * Shut down a remote RPC Server via winreg pipe.
5647 * All parameters are provided by the run_rpc_command function, except for
5648 * argc, argv which are passed through.
5650 * @param c A net_context structure.
5651 * @param domain_sid The domain sid acquired from the remote server.
5652 * @param cli A cli_state connected to the server.
5653 * @param mem_ctx Talloc context, destroyed on completion of the function.
5654 * @param argc Standard main() style argc.
5655 * @param argv Standard main() style argv. Initial components are already
5658 * @return Normal NTSTATUS return.
5661 NTSTATUS
rpc_reg_shutdown_internals(struct net_context
*c
,
5662 const struct dom_sid
*domain_sid
,
5663 const char *domain_name
,
5664 struct cli_state
*cli
,
5665 struct rpc_pipe_client
*pipe_hnd
,
5666 TALLOC_CTX
*mem_ctx
,
5670 const char *msg
= N_("This machine will be shutdown shortly");
5671 uint32 timeout
= 20;
5672 struct lsa_StringLarge msg_string
;
5675 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
5677 if (c
->opt_comment
) {
5678 msg
= c
->opt_comment
;
5680 msg_string
.string
= msg
;
5682 if (c
->opt_timeout
) {
5683 timeout
= c
->opt_timeout
;
5686 /* create an entry */
5687 result
= dcerpc_winreg_InitiateSystemShutdown(b
, mem_ctx
, NULL
,
5688 &msg_string
, timeout
, c
->opt_force
, c
->opt_reboot
,
5690 if (!NT_STATUS_IS_OK(result
)) {
5691 d_fprintf(stderr
, "\nShutdown of remote machine failed\n");
5695 if (W_ERROR_IS_OK(werr
)) {
5696 d_printf(_("\nShutdown of remote machine succeeded\n"));
5698 d_fprintf(stderr
, "\nShutdown of remote machine failed\n");
5699 if ( W_ERROR_EQUAL(werr
, WERR_MACHINE_LOCKED
) )
5700 d_fprintf(stderr
, "\nMachine locked, use -f switch to force\n");
5702 d_fprintf(stderr
, "\nresult was: %s\n", win_errstr(werr
));
5705 return werror_to_ntstatus(werr
);
5709 * Shut down a remote RPC server.
5711 * @param argc Standard main() style argc.
5712 * @param argv Standard main() style argv. Initial components are already
5715 * @return A shell status integer (0 for success).
5718 static int rpc_shutdown(struct net_context
*c
, int argc
, const char **argv
)
5722 if (c
->display_usage
) {
5724 "net rpc shutdown\n"
5727 _("Shut down a remote RPC server"));
5731 rc
= run_rpc_command(c
, NULL
, &ndr_table_initshutdown
, 0,
5732 rpc_init_shutdown_internals
, argc
, argv
);
5735 DEBUG(1, ("initshutdown pipe failed, trying winreg pipe\n"));
5736 rc
= run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
5737 rpc_reg_shutdown_internals
, argc
, argv
);
5743 /***************************************************************************
5744 NT Domain trusts code (i.e. 'net rpc trustdom' functionality)
5745 ***************************************************************************/
5748 * Add interdomain trust account to the RPC server.
5749 * All parameters (except for argc and argv) are passed by run_rpc_command
5752 * @param c A net_context structure.
5753 * @param domain_sid The domain sid acquired from the server.
5754 * @param cli A cli_state connected to the server.
5755 * @param mem_ctx Talloc context, destroyed on completion of the function.
5756 * @param argc Standard main() style argc.
5757 * @param argv Standard main() style argv. Initial components are already
5760 * @return normal NTSTATUS return code.
5763 static NTSTATUS
rpc_trustdom_add_internals(struct net_context
*c
,
5764 const struct dom_sid
*domain_sid
,
5765 const char *domain_name
,
5766 struct cli_state
*cli
,
5767 struct rpc_pipe_client
*pipe_hnd
,
5768 TALLOC_CTX
*mem_ctx
,
5772 struct policy_handle connect_pol
, domain_pol
, user_pol
;
5773 NTSTATUS status
, result
;
5775 struct lsa_String lsa_acct_name
;
5777 uint32 acct_flags
=0;
5779 uint32_t access_granted
= 0;
5780 union samr_UserInfo info
;
5781 unsigned int orig_timeout
;
5782 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
5783 DATA_BLOB session_key
= data_blob_null
;
5788 _(" net rpc trustdom add <domain_name> "
5789 "<trust password>\n"));
5790 return NT_STATUS_INVALID_PARAMETER
;
5794 * Make valid trusting domain account (ie. uppercased and with '$' appended)
5797 if (asprintf(&acct_name
, "%s$", argv
[0]) < 0) {
5798 return NT_STATUS_NO_MEMORY
;
5801 if (!strupper_m(acct_name
)) {
5802 SAFE_FREE(acct_name
);
5803 return NT_STATUS_INVALID_PARAMETER
;
5806 init_lsa_String(&lsa_acct_name
, acct_name
);
5808 status
= cli_get_session_key(mem_ctx
, pipe_hnd
, &session_key
);
5809 if (!NT_STATUS_IS_OK(status
)) {
5810 DEBUG(0,("Error getting session_key of SAM pipe. Error was %s\n",
5811 nt_errstr(status
)));
5815 /* Get samr policy handle */
5816 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
5818 MAXIMUM_ALLOWED_ACCESS
,
5821 if (!NT_STATUS_IS_OK(status
)) {
5824 if (!NT_STATUS_IS_OK(result
)) {
5829 /* Get domain policy handle */
5830 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
5832 MAXIMUM_ALLOWED_ACCESS
,
5833 discard_const_p(struct dom_sid2
, domain_sid
),
5836 if (!NT_STATUS_IS_OK(status
)) {
5839 if (!NT_STATUS_IS_OK(result
)) {
5844 /* This call can take a long time - allow the server to time out.
5845 * 35 seconds should do it. */
5847 orig_timeout
= rpccli_set_timeout(pipe_hnd
, 35000);
5849 /* Create trusting domain's account */
5850 acb_info
= ACB_NORMAL
;
5851 acct_flags
= SEC_GENERIC_READ
| SEC_GENERIC_WRITE
| SEC_GENERIC_EXECUTE
|
5852 SEC_STD_WRITE_DAC
| SEC_STD_DELETE
|
5853 SAMR_USER_ACCESS_SET_PASSWORD
|
5854 SAMR_USER_ACCESS_GET_ATTRIBUTES
|
5855 SAMR_USER_ACCESS_SET_ATTRIBUTES
;
5857 status
= dcerpc_samr_CreateUser2(b
, mem_ctx
,
5866 if (!NT_STATUS_IS_OK(status
)) {
5869 /* And restore our original timeout. */
5870 rpccli_set_timeout(pipe_hnd
, orig_timeout
);
5872 if (!NT_STATUS_IS_OK(result
)) {
5874 d_printf(_("net rpc trustdom add: create user %s failed %s\n"),
5875 acct_name
, nt_errstr(result
));
5880 struct samr_CryptPassword crypt_pwd
;
5882 ZERO_STRUCT(info
.info23
);
5884 init_samr_CryptPassword(argv
[1],
5888 info
.info23
.info
.fields_present
= SAMR_FIELD_ACCT_FLAGS
|
5889 SAMR_FIELD_NT_PASSWORD_PRESENT
;
5890 info
.info23
.info
.acct_flags
= ACB_DOMTRUST
;
5891 info
.info23
.password
= crypt_pwd
;
5893 status
= dcerpc_samr_SetUserInfo2(b
, mem_ctx
,
5898 if (!NT_STATUS_IS_OK(status
)) {
5902 if (!NT_STATUS_IS_OK(result
)) {
5904 DEBUG(0,("Could not set trust account password: %s\n",
5905 nt_errstr(result
)));
5911 SAFE_FREE(acct_name
);
5912 data_blob_clear_free(&session_key
);
5917 * Create interdomain trust account for a remote domain.
5919 * @param argc Standard argc.
5920 * @param argv Standard argv without initial components.
5922 * @return Integer status (0 means success).
5925 static int rpc_trustdom_add(struct net_context
*c
, int argc
, const char **argv
)
5927 if (argc
> 0 && !c
->display_usage
) {
5928 return run_rpc_command(c
, NULL
, &ndr_table_samr
, 0,
5929 rpc_trustdom_add_internals
, argc
, argv
);
5933 _("net rpc trustdom add <domain_name> <trust "
5941 * Remove interdomain trust account from the RPC server.
5942 * All parameters (except for argc and argv) are passed by run_rpc_command
5945 * @param c A net_context structure.
5946 * @param domain_sid The domain sid acquired from the server.
5947 * @param cli A cli_state connected to the server.
5948 * @param mem_ctx Talloc context, destroyed on completion of the function.
5949 * @param argc Standard main() style argc.
5950 * @param argv Standard main() style argv. Initial components are already
5953 * @return normal NTSTATUS return code.
5956 static NTSTATUS
rpc_trustdom_del_internals(struct net_context
*c
,
5957 const struct dom_sid
*domain_sid
,
5958 const char *domain_name
,
5959 struct cli_state
*cli
,
5960 struct rpc_pipe_client
*pipe_hnd
,
5961 TALLOC_CTX
*mem_ctx
,
5965 struct policy_handle connect_pol
, domain_pol
, user_pol
;
5966 NTSTATUS status
, result
;
5968 struct dom_sid trust_acct_sid
;
5969 struct samr_Ids user_rids
, name_types
;
5970 struct lsa_String lsa_acct_name
;
5971 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
5976 _(" net rpc trustdom del <domain_name>\n"));
5977 return NT_STATUS_INVALID_PARAMETER
;
5981 * Make valid trusting domain account (ie. uppercased and with '$' appended)
5983 acct_name
= talloc_asprintf(mem_ctx
, "%s$", argv
[0]);
5985 if (acct_name
== NULL
)
5986 return NT_STATUS_NO_MEMORY
;
5988 if (!strupper_m(acct_name
)) {
5989 TALLOC_FREE(acct_name
);
5990 return NT_STATUS_INVALID_PARAMETER
;
5993 /* Get samr policy handle */
5994 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
5996 MAXIMUM_ALLOWED_ACCESS
,
5999 if (!NT_STATUS_IS_OK(status
)) {
6002 if (!NT_STATUS_IS_OK(result
)) {
6007 /* Get domain policy handle */
6008 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
6010 MAXIMUM_ALLOWED_ACCESS
,
6011 discard_const_p(struct dom_sid2
, domain_sid
),
6014 if (!NT_STATUS_IS_OK(status
)) {
6017 if (!NT_STATUS_IS_OK(result
)) {
6022 init_lsa_String(&lsa_acct_name
, acct_name
);
6024 status
= dcerpc_samr_LookupNames(b
, mem_ctx
,
6031 if (!NT_STATUS_IS_OK(status
)) {
6032 d_printf(_("net rpc trustdom del: LookupNames on user %s "
6034 acct_name
, nt_errstr(status
));
6037 if (!NT_STATUS_IS_OK(result
)) {
6039 d_printf(_("net rpc trustdom del: LookupNames on user %s "
6041 acct_name
, nt_errstr(result
) );
6045 status
= dcerpc_samr_OpenUser(b
, mem_ctx
,
6047 MAXIMUM_ALLOWED_ACCESS
,
6051 if (!NT_STATUS_IS_OK(status
)) {
6052 d_printf(_("net rpc trustdom del: OpenUser on user %s failed "
6054 acct_name
, nt_errstr(status
) );
6058 if (!NT_STATUS_IS_OK(result
)) {
6060 d_printf(_("net rpc trustdom del: OpenUser on user %s failed "
6062 acct_name
, nt_errstr(result
) );
6066 /* append the rid to the domain sid */
6067 if (!sid_compose(&trust_acct_sid
, domain_sid
, user_rids
.ids
[0])) {
6071 /* remove the sid */
6073 status
= dcerpc_samr_RemoveMemberFromForeignDomain(b
, mem_ctx
,
6077 if (!NT_STATUS_IS_OK(status
)) {
6078 d_printf(_("net rpc trustdom del: RemoveMemberFromForeignDomain"
6079 " on user %s failed %s\n"),
6080 acct_name
, nt_errstr(status
));
6083 if (!NT_STATUS_IS_OK(result
)) {
6085 d_printf(_("net rpc trustdom del: RemoveMemberFromForeignDomain"
6086 " on user %s failed %s\n"),
6087 acct_name
, nt_errstr(result
) );
6094 status
= dcerpc_samr_DeleteUser(b
, mem_ctx
,
6097 if (!NT_STATUS_IS_OK(status
)) {
6098 d_printf(_("net rpc trustdom del: DeleteUser on user %s failed "
6100 acct_name
, nt_errstr(status
));
6104 if (!NT_STATUS_IS_OK(result
)) {
6106 d_printf(_("net rpc trustdom del: DeleteUser on user %s failed "
6108 acct_name
, nt_errstr(result
) );
6112 if (!NT_STATUS_IS_OK(result
)) {
6113 d_printf(_("Could not set trust account password: %s\n"),
6123 * Delete interdomain trust account for a remote domain.
6125 * @param argc Standard argc.
6126 * @param argv Standard argv without initial components.
6128 * @return Integer status (0 means success).
6131 static int rpc_trustdom_del(struct net_context
*c
, int argc
, const char **argv
)
6133 if (argc
> 0 && !c
->display_usage
) {
6134 return run_rpc_command(c
, NULL
, &ndr_table_samr
, 0,
6135 rpc_trustdom_del_internals
, argc
, argv
);
6139 _("net rpc trustdom del <domain>\n"));
6144 static NTSTATUS
rpc_trustdom_get_pdc(struct net_context
*c
,
6145 struct cli_state
*cli
,
6146 TALLOC_CTX
*mem_ctx
,
6147 const char *domain_name
)
6149 char *dc_name
= NULL
;
6150 const char *buffer
= NULL
;
6151 struct rpc_pipe_client
*netr
;
6154 struct dcerpc_binding_handle
*b
;
6156 /* Use NetServerEnum2 */
6158 if (cli_get_pdc_name(cli
, domain_name
, &dc_name
)) {
6160 return NT_STATUS_OK
;
6163 DEBUG(1,("NetServerEnum2 error: Couldn't find primary domain controller\
6164 for domain %s\n", domain_name
));
6166 /* Try netr_GetDcName */
6168 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_netlogon
.syntax_id
,
6170 if (!NT_STATUS_IS_OK(status
)) {
6174 b
= netr
->binding_handle
;
6176 status
= dcerpc_netr_GetDcName(b
, mem_ctx
,
6183 if (NT_STATUS_IS_OK(status
) && W_ERROR_IS_OK(result
)) {
6187 DEBUG(1,("netr_GetDcName error: Couldn't find primary domain controller\
6188 for domain %s\n", domain_name
));
6190 if (!NT_STATUS_IS_OK(status
)) {
6194 return werror_to_ntstatus(result
);
6198 * Establish trust relationship to a trusting domain.
6199 * Interdomain account must already be created on remote PDC.
6201 * @param c A net_context structure.
6202 * @param argc Standard argc.
6203 * @param argv Standard argv without initial components.
6205 * @return Integer status (0 means success).
6208 static int rpc_trustdom_establish(struct net_context
*c
, int argc
,
6211 struct cli_state
*cli
= NULL
;
6212 struct sockaddr_storage server_ss
;
6213 struct rpc_pipe_client
*pipe_hnd
= NULL
;
6214 struct policy_handle connect_hnd
;
6215 TALLOC_CTX
*mem_ctx
;
6216 NTSTATUS nt_status
, result
;
6217 struct dom_sid
*domain_sid
;
6222 union lsa_PolicyInformation
*info
= NULL
;
6223 struct dcerpc_binding_handle
*b
;
6226 * Connect to \\server\ipc$ as 'our domain' account with password
6229 if (argc
!= 1 || c
->display_usage
) {
6232 _("net rpc trustdom establish <domain_name>\n"));
6236 domain_name
= smb_xstrdup(argv
[0]);
6237 if (!strupper_m(domain_name
)) {
6238 SAFE_FREE(domain_name
);
6242 /* account name used at first is our domain's name with '$' */
6243 if (asprintf(&acct_name
, "%s$", lp_workgroup()) == -1) {
6246 if (!strupper_m(acct_name
)) {
6247 SAFE_FREE(domain_name
);
6248 SAFE_FREE(acct_name
);
6253 * opt_workgroup will be used by connection functions further,
6254 * hence it should be set to remote domain name instead of ours
6256 if (c
->opt_workgroup
) {
6257 c
->opt_workgroup
= smb_xstrdup(domain_name
);
6260 c
->opt_user_name
= acct_name
;
6262 /* find the domain controller */
6263 if (!net_find_pdc(&server_ss
, pdc_name
, domain_name
)) {
6264 DEBUG(0, ("Couldn't find domain controller for domain %s\n", domain_name
));
6268 /* connect to ipc$ as username/password */
6269 nt_status
= connect_to_ipc(c
, &cli
, &server_ss
, pdc_name
);
6270 if (!NT_STATUS_EQUAL(nt_status
, NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT
)) {
6272 /* Is it trusting domain account for sure ? */
6273 DEBUG(0, ("Couldn't verify trusting domain account. Error was %s\n",
6274 nt_errstr(nt_status
)));
6278 /* store who we connected to */
6280 saf_store( domain_name
, pdc_name
);
6283 * Connect to \\server\ipc$ again (this time anonymously)
6286 nt_status
= connect_to_ipc_anonymous(c
, &cli
, &server_ss
,
6289 if (NT_STATUS_IS_ERR(nt_status
)) {
6290 DEBUG(0, ("Couldn't connect to domain %s controller. Error was %s.\n",
6291 domain_name
, nt_errstr(nt_status
)));
6295 if (!(mem_ctx
= talloc_init("establishing trust relationship to "
6296 "domain %s", domain_name
))) {
6297 DEBUG(0, ("talloc_init() failed\n"));
6302 /* Make sure we're talking to a proper server */
6304 nt_status
= rpc_trustdom_get_pdc(c
, cli
, mem_ctx
, domain_name
);
6305 if (!NT_STATUS_IS_OK(nt_status
)) {
6307 talloc_destroy(mem_ctx
);
6312 * Call LsaOpenPolicy and LsaQueryInfo
6315 nt_status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_lsarpc
.syntax_id
,
6317 if (!NT_STATUS_IS_OK(nt_status
)) {
6318 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n", nt_errstr(nt_status
) ));
6320 talloc_destroy(mem_ctx
);
6324 b
= pipe_hnd
->binding_handle
;
6326 nt_status
= rpccli_lsa_open_policy2(pipe_hnd
, mem_ctx
, true, KEY_QUERY_VALUE
,
6328 if (NT_STATUS_IS_ERR(nt_status
)) {
6329 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
6330 nt_errstr(nt_status
)));
6332 talloc_destroy(mem_ctx
);
6336 /* Querying info level 5 */
6338 nt_status
= dcerpc_lsa_QueryInfoPolicy(b
, mem_ctx
,
6340 LSA_POLICY_INFO_ACCOUNT_DOMAIN
,
6343 if (NT_STATUS_IS_ERR(nt_status
)) {
6344 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6345 nt_errstr(nt_status
)));
6347 talloc_destroy(mem_ctx
);
6350 if (NT_STATUS_IS_ERR(result
)) {
6351 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6352 nt_errstr(result
)));
6354 talloc_destroy(mem_ctx
);
6358 domain_sid
= info
->account_domain
.sid
;
6360 /* There should be actually query info level 3 (following nt serv behaviour),
6361 but I still don't know if it's _really_ necessary */
6364 * Store the password in secrets db
6367 if (!pdb_set_trusteddom_pw(domain_name
, c
->opt_password
, domain_sid
)) {
6368 DEBUG(0, ("Storing password for trusted domain failed.\n"));
6370 talloc_destroy(mem_ctx
);
6375 * Close the pipes and clean up
6378 nt_status
= dcerpc_lsa_Close(b
, mem_ctx
, &connect_hnd
, &result
);
6379 if (NT_STATUS_IS_ERR(nt_status
)) {
6380 DEBUG(0, ("Couldn't close LSA pipe. Error was %s\n",
6381 nt_errstr(nt_status
)));
6383 talloc_destroy(mem_ctx
);
6389 talloc_destroy(mem_ctx
);
6391 d_printf(_("Trust to domain %s established\n"), domain_name
);
6396 * Revoke trust relationship to the remote domain.
6398 * @param c A net_context structure.
6399 * @param argc Standard argc.
6400 * @param argv Standard argv without initial components.
6402 * @return Integer status (0 means success).
6405 static int rpc_trustdom_revoke(struct net_context
*c
, int argc
,
6411 if (argc
< 1 || c
->display_usage
) {
6414 _("net rpc trustdom revoke <domain_name>\n"
6415 " Revoke trust relationship\n"
6416 " domain_name\tName of domain to revoke trust\n"));
6420 /* generate upper cased domain name */
6421 domain_name
= smb_xstrdup(argv
[0]);
6422 if (!strupper_m(domain_name
)) {
6423 SAFE_FREE(domain_name
);
6427 /* delete password of the trust */
6428 if (!pdb_del_trusteddom_pw(domain_name
)) {
6429 DEBUG(0, ("Failed to revoke relationship to the trusted domain %s\n",
6436 SAFE_FREE(domain_name
);
6440 static NTSTATUS
rpc_query_domain_sid(struct net_context
*c
,
6441 const struct dom_sid
*domain_sid
,
6442 const char *domain_name
,
6443 struct cli_state
*cli
,
6444 struct rpc_pipe_client
*pipe_hnd
,
6445 TALLOC_CTX
*mem_ctx
,
6450 if (!sid_to_fstring(str_sid
, domain_sid
)) {
6451 return NT_STATUS_UNSUCCESSFUL
;
6453 d_printf("%s\n", str_sid
);
6454 return NT_STATUS_OK
;
6457 static void print_trusted_domain(struct dom_sid
*dom_sid
, const char *trusted_dom_name
)
6461 /* convert sid into ascii string */
6462 sid_to_fstring(ascii_sid
, dom_sid
);
6464 d_printf("%-20s%s\n", trusted_dom_name
, ascii_sid
);
6467 static NTSTATUS
vampire_trusted_domain(struct rpc_pipe_client
*pipe_hnd
,
6468 TALLOC_CTX
*mem_ctx
,
6469 struct policy_handle
*pol
,
6470 struct dom_sid dom_sid
,
6471 const char *trusted_dom_name
)
6473 NTSTATUS nt_status
, result
;
6474 union lsa_TrustedDomainInfo
*info
= NULL
;
6475 char *cleartextpwd
= NULL
;
6476 DATA_BLOB session_key
;
6477 DATA_BLOB data
= data_blob_null
;
6478 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
6480 nt_status
= dcerpc_lsa_QueryTrustedDomainInfoBySid(b
, mem_ctx
,
6483 LSA_TRUSTED_DOMAIN_INFO_PASSWORD
,
6486 if (NT_STATUS_IS_ERR(nt_status
)) {
6487 DEBUG(0,("Could not query trusted domain info. Error was %s\n",
6488 nt_errstr(nt_status
)));
6491 if (NT_STATUS_IS_ERR(result
)) {
6493 DEBUG(0,("Could not query trusted domain info. Error was %s\n",
6494 nt_errstr(result
)));
6498 data
= data_blob(info
->password
.password
->data
,
6499 info
->password
.password
->length
);
6501 nt_status
= cli_get_session_key(mem_ctx
, pipe_hnd
, &session_key
);
6502 if (!NT_STATUS_IS_OK(nt_status
)) {
6503 DEBUG(0, ("Could not retrieve session key: %s\n", nt_errstr(nt_status
)));
6507 cleartextpwd
= sess_decrypt_string(mem_ctx
, &data
, &session_key
);
6508 data_blob_free(&session_key
);
6510 if (cleartextpwd
== NULL
) {
6511 DEBUG(0,("retrieved NULL password\n"));
6512 nt_status
= NT_STATUS_UNSUCCESSFUL
;
6516 if (!pdb_set_trusteddom_pw(trusted_dom_name
, cleartextpwd
, &dom_sid
)) {
6517 DEBUG(0, ("Storing password for trusted domain failed.\n"));
6518 nt_status
= NT_STATUS_UNSUCCESSFUL
;
6522 #ifdef DEBUG_PASSWORD
6523 DEBUG(100,("successfully vampired trusted domain [%s], sid: [%s], "
6524 "password: [%s]\n", trusted_dom_name
,
6525 sid_string_dbg(&dom_sid
), cleartextpwd
));
6529 SAFE_FREE(cleartextpwd
);
6530 data_blob_free(&data
);
6535 static int rpc_trustdom_vampire(struct net_context
*c
, int argc
,
6538 /* common variables */
6539 TALLOC_CTX
* mem_ctx
;
6540 struct cli_state
*cli
= NULL
;
6541 struct rpc_pipe_client
*pipe_hnd
= NULL
;
6542 NTSTATUS nt_status
, result
;
6543 const char *domain_name
= NULL
;
6544 struct policy_handle connect_hnd
;
6545 union lsa_PolicyInformation
*info
= NULL
;
6547 /* trusted domains listing variables */
6548 unsigned int enum_ctx
= 0;
6550 struct lsa_DomainList dom_list
;
6552 struct dcerpc_binding_handle
*b
;
6554 if (c
->display_usage
) {
6556 "net rpc trustdom vampire\n"
6559 _("Vampire trust relationship from remote server"));
6564 * Listing trusted domains (stored in secrets.tdb, if local)
6567 mem_ctx
= talloc_init("trust relationships vampire");
6570 * set domain and pdc name to local samba server (default)
6571 * or to remote one given in command line
6574 if (strcasecmp_m(c
->opt_workgroup
, lp_workgroup())) {
6575 domain_name
= c
->opt_workgroup
;
6576 c
->opt_target_workgroup
= c
->opt_workgroup
;
6578 fstrcpy(pdc_name
, lp_netbios_name());
6579 domain_name
= talloc_strdup(mem_ctx
, lp_workgroup());
6580 c
->opt_target_workgroup
= domain_name
;
6583 /* open \PIPE\lsarpc and open policy handle */
6584 nt_status
= net_make_ipc_connection(c
, NET_FLAGS_PDC
, &cli
);
6585 if (!NT_STATUS_IS_OK(nt_status
)) {
6586 DEBUG(0, ("Couldn't connect to domain controller: %s\n",
6587 nt_errstr(nt_status
)));
6588 talloc_destroy(mem_ctx
);
6592 nt_status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_lsarpc
.syntax_id
,
6594 if (!NT_STATUS_IS_OK(nt_status
)) {
6595 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n",
6596 nt_errstr(nt_status
) ));
6598 talloc_destroy(mem_ctx
);
6602 b
= pipe_hnd
->binding_handle
;
6604 nt_status
= rpccli_lsa_open_policy2(pipe_hnd
, mem_ctx
, false, KEY_QUERY_VALUE
,
6606 if (NT_STATUS_IS_ERR(nt_status
)) {
6607 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
6608 nt_errstr(nt_status
)));
6610 talloc_destroy(mem_ctx
);
6614 /* query info level 5 to obtain sid of a domain being queried */
6615 nt_status
= dcerpc_lsa_QueryInfoPolicy(b
, mem_ctx
,
6617 LSA_POLICY_INFO_ACCOUNT_DOMAIN
,
6621 if (NT_STATUS_IS_ERR(nt_status
)) {
6622 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6623 nt_errstr(nt_status
)));
6625 talloc_destroy(mem_ctx
);
6628 if (NT_STATUS_IS_ERR(result
)) {
6629 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6630 nt_errstr(result
)));
6632 talloc_destroy(mem_ctx
);
6637 * Keep calling LsaEnumTrustdom over opened pipe until
6638 * the end of enumeration is reached
6641 d_printf(_("Vampire trusted domains:\n\n"));
6644 nt_status
= dcerpc_lsa_EnumTrustDom(b
, mem_ctx
,
6650 if (NT_STATUS_IS_ERR(nt_status
)) {
6651 DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
6652 nt_errstr(nt_status
)));
6654 talloc_destroy(mem_ctx
);
6657 if (NT_STATUS_IS_ERR(result
)) {
6659 DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
6660 nt_errstr(result
)));
6662 talloc_destroy(mem_ctx
);
6667 for (i
= 0; i
< dom_list
.count
; i
++) {
6669 print_trusted_domain(dom_list
.domains
[i
].sid
,
6670 dom_list
.domains
[i
].name
.string
);
6672 nt_status
= vampire_trusted_domain(pipe_hnd
, mem_ctx
, &connect_hnd
,
6673 *dom_list
.domains
[i
].sid
,
6674 dom_list
.domains
[i
].name
.string
);
6675 if (!NT_STATUS_IS_OK(nt_status
)) {
6677 talloc_destroy(mem_ctx
);
6683 * in case of no trusted domains say something rather
6684 * than just display blank line
6686 if (!dom_list
.count
) d_printf(_("none\n"));
6688 } while (NT_STATUS_EQUAL(nt_status
, STATUS_MORE_ENTRIES
));
6690 /* close this connection before doing next one */
6691 nt_status
= dcerpc_lsa_Close(b
, mem_ctx
, &connect_hnd
, &result
);
6692 if (NT_STATUS_IS_ERR(nt_status
)) {
6693 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
6694 nt_errstr(nt_status
)));
6696 talloc_destroy(mem_ctx
);
6700 /* close lsarpc pipe and connection to IPC$ */
6703 talloc_destroy(mem_ctx
);
6707 static int rpc_trustdom_list(struct net_context
*c
, int argc
, const char **argv
)
6709 /* common variables */
6710 TALLOC_CTX
* mem_ctx
;
6711 struct cli_state
*cli
= NULL
, *remote_cli
= NULL
;
6712 struct rpc_pipe_client
*pipe_hnd
= NULL
;
6713 NTSTATUS nt_status
, result
;
6714 const char *domain_name
= NULL
;
6715 struct dom_sid
*queried_dom_sid
;
6716 int ascii_dom_name_len
;
6717 struct policy_handle connect_hnd
;
6718 union lsa_PolicyInformation
*info
= NULL
;
6719 struct dcerpc_binding_handle
*b
= NULL
;
6721 /* trusted domains listing variables */
6722 unsigned int num_domains
, enum_ctx
= 0;
6724 struct lsa_DomainList dom_list
;
6728 /* trusting domains listing variables */
6729 struct policy_handle domain_hnd
;
6730 struct samr_SamArray
*trusts
= NULL
;
6732 if (c
->display_usage
) {
6734 "net rpc trustdom list\n"
6737 _("List incoming and outgoing trust relationships"));
6742 * Listing trusted domains (stored in secrets.tdb, if local)
6745 mem_ctx
= talloc_init("trust relationships listing");
6748 * set domain and pdc name to local samba server (default)
6749 * or to remote one given in command line
6752 if (strcasecmp_m(c
->opt_workgroup
, lp_workgroup())) {
6753 domain_name
= c
->opt_workgroup
;
6754 c
->opt_target_workgroup
= c
->opt_workgroup
;
6756 fstrcpy(pdc_name
, lp_netbios_name());
6757 domain_name
= talloc_strdup(mem_ctx
, lp_workgroup());
6758 c
->opt_target_workgroup
= domain_name
;
6761 /* open \PIPE\lsarpc and open policy handle */
6762 nt_status
= net_make_ipc_connection(c
, NET_FLAGS_PDC
, &cli
);
6763 if (!NT_STATUS_IS_OK(nt_status
)) {
6764 DEBUG(0, ("Couldn't connect to domain controller: %s\n",
6765 nt_errstr(nt_status
)));
6766 talloc_destroy(mem_ctx
);
6770 nt_status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_lsarpc
.syntax_id
,
6772 if (!NT_STATUS_IS_OK(nt_status
)) {
6773 DEBUG(0, ("Could not initialise lsa pipe. Error was %s\n",
6774 nt_errstr(nt_status
) ));
6776 talloc_destroy(mem_ctx
);
6780 b
= pipe_hnd
->binding_handle
;
6782 nt_status
= rpccli_lsa_open_policy2(pipe_hnd
, mem_ctx
, false, KEY_QUERY_VALUE
,
6784 if (NT_STATUS_IS_ERR(nt_status
)) {
6785 DEBUG(0, ("Couldn't open policy handle. Error was %s\n",
6786 nt_errstr(nt_status
)));
6788 talloc_destroy(mem_ctx
);
6792 /* query info level 5 to obtain sid of a domain being queried */
6793 nt_status
= dcerpc_lsa_QueryInfoPolicy(b
, mem_ctx
,
6795 LSA_POLICY_INFO_ACCOUNT_DOMAIN
,
6799 if (NT_STATUS_IS_ERR(nt_status
)) {
6800 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6801 nt_errstr(nt_status
)));
6803 talloc_destroy(mem_ctx
);
6806 if (NT_STATUS_IS_ERR(result
)) {
6807 DEBUG(0, ("LSA Query Info failed. Returned error was %s\n",
6808 nt_errstr(result
)));
6810 talloc_destroy(mem_ctx
);
6814 queried_dom_sid
= info
->account_domain
.sid
;
6817 * Keep calling LsaEnumTrustdom over opened pipe until
6818 * the end of enumeration is reached
6821 d_printf(_("Trusted domains list:\n\n"));
6823 found_domain
= false;
6826 nt_status
= dcerpc_lsa_EnumTrustDom(b
, mem_ctx
,
6832 if (NT_STATUS_IS_ERR(nt_status
)) {
6833 DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
6834 nt_errstr(nt_status
)));
6836 talloc_destroy(mem_ctx
);
6839 if (NT_STATUS_IS_ERR(result
)) {
6840 DEBUG(0, ("Couldn't enumerate trusted domains. Error was %s\n",
6841 nt_errstr(result
)));
6843 talloc_destroy(mem_ctx
);
6848 for (i
= 0; i
< dom_list
.count
; i
++) {
6849 print_trusted_domain(dom_list
.domains
[i
].sid
,
6850 dom_list
.domains
[i
].name
.string
);
6851 found_domain
= true;
6855 } while (NT_STATUS_EQUAL(nt_status
, STATUS_MORE_ENTRIES
));
6858 * in case of no trusted domains say something rather
6859 * than just display blank line
6861 if (!found_domain
) {
6862 d_printf(_("none\n"));
6865 /* close this connection before doing next one */
6866 nt_status
= dcerpc_lsa_Close(b
, mem_ctx
, &connect_hnd
, &result
);
6867 if (NT_STATUS_IS_ERR(nt_status
)) {
6868 DEBUG(0, ("Couldn't properly close lsa policy handle. Error was %s\n",
6869 nt_errstr(nt_status
)));
6871 talloc_destroy(mem_ctx
);
6875 TALLOC_FREE(pipe_hnd
);
6878 * Listing trusting domains (stored in passdb backend, if local)
6881 d_printf(_("\nTrusting domains list:\n\n"));
6884 * Open \PIPE\samr and get needed policy handles
6886 nt_status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_samr
.syntax_id
,
6888 if (!NT_STATUS_IS_OK(nt_status
)) {
6889 DEBUG(0, ("Could not initialise samr pipe. Error was %s\n", nt_errstr(nt_status
)));
6891 talloc_destroy(mem_ctx
);
6895 b
= pipe_hnd
->binding_handle
;
6898 nt_status
= dcerpc_samr_Connect2(b
, mem_ctx
,
6900 SAMR_ACCESS_LOOKUP_DOMAIN
,
6903 if (!NT_STATUS_IS_OK(nt_status
)) {
6904 DEBUG(0, ("Couldn't open SAMR policy handle. Error was %s\n",
6905 nt_errstr(nt_status
)));
6907 talloc_destroy(mem_ctx
);
6910 if (!NT_STATUS_IS_OK(result
)) {
6912 DEBUG(0, ("Couldn't open SAMR policy handle. Error was %s\n",
6913 nt_errstr(result
)));
6915 talloc_destroy(mem_ctx
);
6919 /* SamrOpenDomain - we have to open domain policy handle in order to be
6920 able to enumerate accounts*/
6921 nt_status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
6923 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS
,
6927 if (!NT_STATUS_IS_OK(nt_status
)) {
6928 DEBUG(0, ("Couldn't open domain object. Error was %s\n",
6929 nt_errstr(nt_status
)));
6931 talloc_destroy(mem_ctx
);
6934 if (!NT_STATUS_IS_OK(result
)) {
6936 DEBUG(0, ("Couldn't open domain object. Error was %s\n",
6937 nt_errstr(result
)));
6939 talloc_destroy(mem_ctx
);
6944 * perform actual enumeration
6947 found_domain
= false;
6949 enum_ctx
= 0; /* reset enumeration context from last enumeration */
6952 nt_status
= dcerpc_samr_EnumDomainUsers(b
, mem_ctx
,
6960 if (NT_STATUS_IS_ERR(nt_status
)) {
6961 DEBUG(0, ("Couldn't enumerate accounts. Error was: %s\n",
6962 nt_errstr(nt_status
)));
6964 talloc_destroy(mem_ctx
);
6967 if (NT_STATUS_IS_ERR(result
)) {
6969 DEBUG(0, ("Couldn't enumerate accounts. Error was: %s\n",
6970 nt_errstr(result
)));
6972 talloc_destroy(mem_ctx
);
6976 for (i
= 0; i
< num_domains
; i
++) {
6978 char *str
= discard_const_p(char, trusts
->entries
[i
].name
.string
);
6980 found_domain
= true;
6983 * get each single domain's sid (do we _really_ need this ?):
6984 * 1) connect to domain's pdc
6985 * 2) query the pdc for domain's sid
6988 /* get rid of '$' tail */
6989 ascii_dom_name_len
= strlen(str
);
6990 if (ascii_dom_name_len
&& ascii_dom_name_len
< FSTRING_LEN
)
6991 str
[ascii_dom_name_len
- 1] = '\0';
6993 /* set opt_* variables to remote domain */
6994 if (!strupper_m(str
)) {
6996 talloc_destroy(mem_ctx
);
6999 c
->opt_workgroup
= talloc_strdup(mem_ctx
, str
);
7000 c
->opt_target_workgroup
= c
->opt_workgroup
;
7002 d_printf("%-20s", str
);
7004 /* connect to remote domain controller */
7005 nt_status
= net_make_ipc_connection(c
,
7006 NET_FLAGS_PDC
| NET_FLAGS_ANONYMOUS
,
7008 if (NT_STATUS_IS_OK(nt_status
)) {
7009 /* query for domain's sid */
7010 if (run_rpc_command(
7012 &ndr_table_lsarpc
, 0,
7013 rpc_query_domain_sid
, argc
,
7015 d_printf(_("strange - couldn't get domain's sid\n"));
7017 cli_shutdown(remote_cli
);
7020 d_fprintf(stderr
, _("domain controller is not "
7021 "responding: %s\n"),
7022 nt_errstr(nt_status
));
7023 d_printf(_("couldn't get domain's sid\n"));
7027 } while (NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
));
7029 if (!found_domain
) {
7033 /* close opened samr and domain policy handles */
7034 nt_status
= dcerpc_samr_Close(b
, mem_ctx
, &domain_hnd
, &result
);
7035 if (!NT_STATUS_IS_OK(nt_status
)) {
7036 DEBUG(0, ("Couldn't properly close domain policy handle for domain %s\n", domain_name
));
7039 nt_status
= dcerpc_samr_Close(b
, mem_ctx
, &connect_hnd
, &result
);
7040 if (!NT_STATUS_IS_OK(nt_status
)) {
7041 DEBUG(0, ("Couldn't properly close samr policy handle for domain %s\n", domain_name
));
7044 /* close samr pipe and connection to IPC$ */
7047 talloc_destroy(mem_ctx
);
7052 * Entrypoint for 'net rpc trustdom' code.
7054 * @param argc Standard argc.
7055 * @param argv Standard argv without initial components.
7057 * @return Integer status (0 means success).
7060 static int rpc_trustdom(struct net_context
*c
, int argc
, const char **argv
)
7062 struct functable func
[] = {
7067 N_("Add trusting domain's account"),
7068 N_("net rpc trustdom add\n"
7069 " Add trusting domain's account")
7075 N_("Remove trusting domain's account"),
7076 N_("net rpc trustdom del\n"
7077 " Remove trusting domain's account")
7081 rpc_trustdom_establish
,
7083 N_("Establish outgoing trust relationship"),
7084 N_("net rpc trustdom establish\n"
7085 " Establish outgoing trust relationship")
7089 rpc_trustdom_revoke
,
7091 N_("Revoke outgoing trust relationship"),
7092 N_("net rpc trustdom revoke\n"
7093 " Revoke outgoing trust relationship")
7099 N_("List in- and outgoing domain trusts"),
7100 N_("net rpc trustdom list\n"
7101 " List in- and outgoing domain trusts")
7105 rpc_trustdom_vampire
,
7107 N_("Vampire trusts from remote server"),
7108 N_("net rpc trustdom vampire\n"
7109 " Vampire trusts from remote server")
7111 {NULL
, NULL
, 0, NULL
, NULL
}
7114 return net_run_function(c
, argc
, argv
, "net rpc trustdom", func
);
7118 * Check if a server will take rpc commands
7119 * @param flags Type of server to connect to (PDC, DMB, localhost)
7120 * if the host is not explicitly specified
7121 * @return bool (true means rpc supported)
7123 bool net_rpc_check(struct net_context
*c
, unsigned flags
)
7125 struct cli_state
*cli
;
7127 struct sockaddr_storage server_ss
;
7128 char *server_name
= NULL
;
7131 /* flags (i.e. server type) may depend on command */
7132 if (!net_find_server(c
, NULL
, flags
, &server_ss
, &server_name
))
7135 status
= cli_connect_nb(server_name
, &server_ss
, 0, 0x20,
7136 lp_netbios_name(), SMB_SIGNING_DEFAULT
,
7138 if (!NT_STATUS_IS_OK(status
)) {
7141 status
= smbXcli_negprot(cli
->conn
, cli
->timeout
, PROTOCOL_CORE
,
7143 if (!NT_STATUS_IS_OK(status
))
7145 if (smbXcli_conn_protocol(cli
->conn
) < PROTOCOL_NT1
)
7154 /* dump sam database via samsync rpc calls */
7155 static int rpc_samdump(struct net_context
*c
, int argc
, const char **argv
) {
7156 if (c
->display_usage
) {
7161 _("Dump remote SAM database"));
7165 return run_rpc_command(c
, NULL
, &ndr_table_netlogon
,
7166 NET_FLAGS_ANONYMOUS
,
7167 rpc_samdump_internals
, argc
, argv
);
7170 /* syncronise sam database via samsync rpc calls */
7171 static int rpc_vampire(struct net_context
*c
, int argc
, const char **argv
)
7173 struct functable func
[] = {
7178 N_("Dump remote SAM database to ldif"),
7179 N_("net rpc vampire ldif\n"
7180 " Dump remote SAM database to LDIF file or "
7187 N_("Dump remote SAM database to Kerberos Keytab"),
7188 N_("net rpc vampire keytab\n"
7189 " Dump remote SAM database to Kerberos keytab "
7196 N_("Dump remote SAM database to passdb"),
7197 N_("net rpc vampire passdb\n"
7198 " Dump remote SAM database to passdb")
7201 {NULL
, NULL
, 0, NULL
, NULL
}
7205 if (c
->display_usage
) {
7210 _("Vampire remote SAM database"));
7214 return rpc_vampire_passdb(c
, argc
, argv
);
7217 return net_run_function(c
, argc
, argv
, "net rpc vampire", func
);
7221 * Migrate everything from a print server.
7223 * @param c A net_context structure.
7224 * @param argc Standard main() style argc.
7225 * @param argv Standard main() style argv. Initial components are already
7228 * @return A shell status integer (0 for success).
7230 * The order is important !
7231 * To successfully add drivers the print queues have to exist !
7232 * Applying ACLs should be the last step, because you're easily locked out.
7235 static int rpc_printer_migrate_all(struct net_context
*c
, int argc
,
7240 if (c
->display_usage
) {
7242 "net rpc printer migrate all\n"
7245 _("Migrate everything from a print server"));
7250 d_printf(_("no server to migrate\n"));
7254 ret
= run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7255 rpc_printer_migrate_printers_internals
, argc
,
7260 ret
= run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7261 rpc_printer_migrate_drivers_internals
, argc
,
7266 ret
= run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7267 rpc_printer_migrate_forms_internals
, argc
, argv
);
7271 ret
= run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7272 rpc_printer_migrate_settings_internals
, argc
,
7277 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7278 rpc_printer_migrate_security_internals
, argc
,
7284 * Migrate print drivers from a print server.
7286 * @param c A net_context structure.
7287 * @param argc Standard main() style argc.
7288 * @param argv Standard main() style argv. Initial components are already
7291 * @return A shell status integer (0 for success).
7293 static int rpc_printer_migrate_drivers(struct net_context
*c
, int argc
,
7296 if (c
->display_usage
) {
7298 "net rpc printer migrate drivers\n"
7301 _("Migrate print-drivers from a print-server"));
7306 d_printf(_("no server to migrate\n"));
7310 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7311 rpc_printer_migrate_drivers_internals
,
7316 * Migrate print-forms from a print-server.
7318 * @param c A net_context structure.
7319 * @param argc Standard main() style argc.
7320 * @param argv Standard main() style argv. Initial components are already
7323 * @return A shell status integer (0 for success).
7325 static int rpc_printer_migrate_forms(struct net_context
*c
, int argc
,
7328 if (c
->display_usage
) {
7330 "net rpc printer migrate forms\n"
7333 _("Migrate print-forms from a print-server"));
7338 d_printf(_("no server to migrate\n"));
7342 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7343 rpc_printer_migrate_forms_internals
,
7348 * Migrate printers from a print-server.
7350 * @param c A net_context structure.
7351 * @param argc Standard main() style argc.
7352 * @param argv Standard main() style argv. Initial components are already
7355 * @return A shell status integer (0 for success).
7357 static int rpc_printer_migrate_printers(struct net_context
*c
, int argc
,
7360 if (c
->display_usage
) {
7362 "net rpc printer migrate printers\n"
7365 _("Migrate printers from a print-server"));
7370 d_printf(_("no server to migrate\n"));
7374 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7375 rpc_printer_migrate_printers_internals
,
7380 * Migrate printer-ACLs from a print-server
7382 * @param c A net_context structure.
7383 * @param argc Standard main() style argc.
7384 * @param argv Standard main() style argv. Initial components are already
7387 * @return A shell status integer (0 for success).
7389 static int rpc_printer_migrate_security(struct net_context
*c
, int argc
,
7392 if (c
->display_usage
) {
7394 "net rpc printer migrate security\n"
7397 _("Migrate printer-ACLs from a print-server"));
7402 d_printf(_("no server to migrate\n"));
7406 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7407 rpc_printer_migrate_security_internals
,
7412 * Migrate printer-settings from a print-server.
7414 * @param c A net_context structure.
7415 * @param argc Standard main() style argc.
7416 * @param argv Standard main() style argv. Initial components are already
7419 * @return A shell status integer (0 for success).
7421 static int rpc_printer_migrate_settings(struct net_context
*c
, int argc
,
7424 if (c
->display_usage
) {
7426 "net rpc printer migrate settings\n"
7429 _("Migrate printer-settings from a "
7435 d_printf(_("no server to migrate\n"));
7439 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7440 rpc_printer_migrate_settings_internals
,
7445 * 'net rpc printer' entrypoint.
7447 * @param c A net_context structure.
7448 * @param argc Standard main() style argc.
7449 * @param argv Standard main() style argv. Initial components are already
7453 int rpc_printer_migrate(struct net_context
*c
, int argc
, const char **argv
)
7456 /* ouch: when addriver and setdriver are called from within
7457 rpc_printer_migrate_drivers_internals, the printer-queue already
7460 struct functable func
[] = {
7463 rpc_printer_migrate_all
,
7465 N_("Migrate all from remote to local print server"),
7466 N_("net rpc printer migrate all\n"
7467 " Migrate all from remote to local print server")
7471 rpc_printer_migrate_drivers
,
7473 N_("Migrate drivers to local server"),
7474 N_("net rpc printer migrate drivers\n"
7475 " Migrate drivers to local server")
7479 rpc_printer_migrate_forms
,
7481 N_("Migrate froms to local server"),
7482 N_("net rpc printer migrate forms\n"
7483 " Migrate froms to local server")
7487 rpc_printer_migrate_printers
,
7489 N_("Migrate printers to local server"),
7490 N_("net rpc printer migrate printers\n"
7491 " Migrate printers to local server")
7495 rpc_printer_migrate_security
,
7497 N_("Mirgate printer ACLs to local server"),
7498 N_("net rpc printer migrate security\n"
7499 " Mirgate printer ACLs to local server")
7503 rpc_printer_migrate_settings
,
7505 N_("Migrate printer settings to local server"),
7506 N_("net rpc printer migrate settings\n"
7507 " Migrate printer settings to local server")
7509 {NULL
, NULL
, 0, NULL
, NULL
}
7512 return net_run_function(c
, argc
, argv
, "net rpc printer migrate",func
);
7517 * List printers on a remote RPC server.
7519 * @param c A net_context structure.
7520 * @param argc Standard main() style argc.
7521 * @param argv Standard main() style argv. Initial components are already
7524 * @return A shell status integer (0 for success).
7526 static int rpc_printer_list(struct net_context
*c
, int argc
, const char **argv
)
7528 if (c
->display_usage
) {
7530 "net rpc printer list\n"
7533 _("List printers on a remote RPC server"));
7537 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7538 rpc_printer_list_internals
,
7543 * List printer-drivers on a remote RPC server.
7545 * @param c A net_context structure.
7546 * @param argc Standard main() style argc.
7547 * @param argv Standard main() style argv. Initial components are already
7550 * @return A shell status integer (0 for success).
7552 static int rpc_printer_driver_list(struct net_context
*c
, int argc
,
7555 if (c
->display_usage
) {
7557 "net rpc printer driver\n"
7560 _("List printer-drivers on a remote RPC server"));
7564 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7565 rpc_printer_driver_list_internals
,
7570 * Publish printer in ADS via MSRPC.
7572 * @param c A net_context structure.
7573 * @param argc Standard main() style argc.
7574 * @param argv Standard main() style argv. Initial components are already
7577 * @return A shell status integer (0 for success).
7579 static int rpc_printer_publish_publish(struct net_context
*c
, int argc
,
7582 if (c
->display_usage
) {
7584 "net rpc printer publish publish\n"
7587 _("Publish printer in ADS via MSRPC"));
7591 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7592 rpc_printer_publish_publish_internals
,
7597 * Update printer in ADS via MSRPC.
7599 * @param c A net_context structure.
7600 * @param argc Standard main() style argc.
7601 * @param argv Standard main() style argv. Initial components are already
7604 * @return A shell status integer (0 for success).
7606 static int rpc_printer_publish_update(struct net_context
*c
, int argc
, const char **argv
)
7608 if (c
->display_usage
) {
7610 "net rpc printer publish update\n"
7613 _("Update printer in ADS via MSRPC"));
7617 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7618 rpc_printer_publish_update_internals
,
7623 * UnPublish printer in ADS via MSRPC.
7625 * @param c A net_context structure.
7626 * @param argc Standard main() style argc.
7627 * @param argv Standard main() style argv. Initial components are already
7630 * @return A shell status integer (0 for success).
7632 static int rpc_printer_publish_unpublish(struct net_context
*c
, int argc
,
7635 if (c
->display_usage
) {
7637 "net rpc printer publish unpublish\n"
7640 _("UnPublish printer in ADS via MSRPC"));
7644 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7645 rpc_printer_publish_unpublish_internals
,
7650 * List published printers via MSRPC.
7652 * @param c A net_context structure.
7653 * @param argc Standard main() style argc.
7654 * @param argv Standard main() style argv. Initial components are already
7657 * @return A shell status integer (0 for success).
7659 static int rpc_printer_publish_list(struct net_context
*c
, int argc
,
7662 if (c
->display_usage
) {
7664 "net rpc printer publish list\n"
7667 _("List published printers via MSRPC"));
7671 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7672 rpc_printer_publish_list_internals
,
7678 * Publish printer in ADS.
7680 * @param c A net_context structure.
7681 * @param argc Standard main() style argc.
7682 * @param argv Standard main() style argv. Initial components are already
7685 * @return A shell status integer (0 for success).
7687 static int rpc_printer_publish(struct net_context
*c
, int argc
,
7691 struct functable func
[] = {
7694 rpc_printer_publish_publish
,
7696 N_("Publish printer in AD"),
7697 N_("net rpc printer publish publish\n"
7698 " Publish printer in AD")
7702 rpc_printer_publish_update
,
7704 N_("Update printer in AD"),
7705 N_("net rpc printer publish update\n"
7706 " Update printer in AD")
7710 rpc_printer_publish_unpublish
,
7712 N_("Unpublish printer"),
7713 N_("net rpc printer publish unpublish\n"
7714 " Unpublish printer")
7718 rpc_printer_publish_list
,
7720 N_("List published printers"),
7721 N_("net rpc printer publish list\n"
7722 " List published printers")
7724 {NULL
, NULL
, 0, NULL
, NULL
}
7728 if (c
->display_usage
) {
7729 d_printf(_("Usage:\n"));
7730 d_printf(_("net rpc printer publish\n"
7731 " List published printers\n"
7732 " Alias of net rpc printer publish "
7734 net_display_usage_from_functable(func
);
7737 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7738 rpc_printer_publish_list_internals
,
7742 return net_run_function(c
, argc
, argv
, "net rpc printer publish",func
);
7748 * Display rpc printer help page.
7750 * @param c A net_context structure.
7751 * @param argc Standard main() style argc.
7752 * @param argv Standard main() style argv. Initial components are already
7755 int rpc_printer_usage(struct net_context
*c
, int argc
, const char **argv
)
7757 d_printf(_("net rpc printer LIST [printer] [misc. options] [targets]\n"
7758 "\tlists all printers on print-server\n\n"));
7759 d_printf(_("net rpc printer DRIVER [printer] [misc. options] [targets]\n"
7760 "\tlists all printer-drivers on print-server\n\n"));
7761 d_printf(_("net rpc printer PUBLISH action [printer] [misc. options] [targets]\n"
7762 "\tpublishes printer settings in Active Directory\n"
7763 "\taction can be one of PUBLISH, UPDATE, UNPUBLISH or LIST\n\n"));
7764 d_printf(_("net rpc printer MIGRATE PRINTERS [printer] [misc. options] [targets]"
7765 "\n\tmigrates printers from remote to local server\n\n"));
7766 d_printf(_("net rpc printer MIGRATE SETTINGS [printer] [misc. options] [targets]"
7767 "\n\tmigrates printer-settings from remote to local server\n\n"));
7768 d_printf(_("net rpc printer MIGRATE DRIVERS [printer] [misc. options] [targets]"
7769 "\n\tmigrates printer-drivers from remote to local server\n\n"));
7770 d_printf(_("net rpc printer MIGRATE FORMS [printer] [misc. options] [targets]"
7771 "\n\tmigrates printer-forms from remote to local server\n\n"));
7772 d_printf(_("net rpc printer MIGRATE SECURITY [printer] [misc. options] [targets]"
7773 "\n\tmigrates printer-ACLs from remote to local server\n\n"));
7774 d_printf(_("net rpc printer MIGRATE ALL [printer] [misc. options] [targets]"
7775 "\n\tmigrates drivers, forms, queues, settings and acls from\n"
7776 "\tremote to local print-server\n\n"));
7777 net_common_methods_usage(c
, argc
, argv
);
7778 net_common_flags_usage(c
, argc
, argv
);
7780 "\t-v or --verbose\t\t\tgive verbose output\n"
7781 "\t --destination\t\tmigration target server (default: localhost)\n"));
7787 * 'net rpc printer' entrypoint.
7789 * @param c A net_context structure.
7790 * @param argc Standard main() style argc.
7791 * @param argv Standard main() style argv. Initial components are already
7794 int net_rpc_printer(struct net_context
*c
, int argc
, const char **argv
)
7796 struct functable func
[] = {
7801 N_("List all printers on print server"),
7802 N_("net rpc printer list\n"
7803 " List all printers on print server")
7807 rpc_printer_migrate
,
7809 N_("Migrate printer to local server"),
7810 N_("net rpc printer migrate\n"
7811 " Migrate printer to local server")
7815 rpc_printer_driver_list
,
7817 N_("List printer drivers"),
7818 N_("net rpc printer driver\n"
7819 " List printer drivers")
7823 rpc_printer_publish
,
7825 N_("Publish printer in AD"),
7826 N_("net rpc printer publish\n"
7827 " Publish printer in AD")
7829 {NULL
, NULL
, 0, NULL
, NULL
}
7833 if (c
->display_usage
) {
7834 d_printf(_("Usage:\n"));
7835 d_printf(_("net rpc printer\n"
7836 " List printers\n"));
7837 net_display_usage_from_functable(func
);
7840 return run_rpc_command(c
, NULL
, &ndr_table_spoolss
, 0,
7841 rpc_printer_list_internals
,
7845 return net_run_function(c
, argc
, argv
, "net rpc printer", func
);
7849 * 'net rpc' entrypoint.
7851 * @param c A net_context structure.
7852 * @param argc Standard main() style argc.
7853 * @param argv Standard main() style argv. Initial components are already
7857 int net_rpc(struct net_context
*c
, int argc
, const char **argv
)
7859 NET_API_STATUS status
;
7861 struct functable func
[] = {
7866 N_("Modify global audit settings"),
7867 N_("net rpc audit\n"
7868 " Modify global audit settings")
7874 N_("Show basic info about a domain"),
7876 " Show basic info about a domain")
7882 N_("Join a domain"),
7890 N_("Join a domain created in server manager"),
7891 N_("net rpc oldjoin\n"
7892 " Join a domain created in server manager")
7898 N_("Test that a join is valid"),
7899 N_("net rpc testjoin\n"
7900 " Test that a join is valid")
7906 N_("List/modify users"),
7908 " List/modify users")
7914 N_("Change a user password"),
7915 N_("net rpc password\n"
7916 " Change a user password\n"
7917 " Alias for net rpc user password")
7923 N_("List/modify groups"),
7924 N_("net rpc group\n"
7925 " List/modify groups")
7931 N_("List/modify shares"),
7932 N_("net rpc share\n"
7933 " List/modify shares")
7939 N_("List open files"),
7947 N_("List/modify printers"),
7948 N_("net rpc printer\n"
7949 " List/modify printers")
7953 net_rpc_changetrustpw
,
7955 N_("Change trust account password"),
7956 N_("net rpc changetrustpw\n"
7957 " Change trust account password")
7963 N_("Modify domain trusts"),
7964 N_("net rpc trustdom\n"
7965 " Modify domain trusts")
7971 N_("Abort a remote shutdown"),
7972 N_("net rpc abortshutdown\n"
7973 " Abort a remote shutdown")
7979 N_("Shutdown a remote server"),
7980 N_("net rpc shutdown\n"
7981 " Shutdown a remote server")
7987 N_("Dump SAM data of remote NT PDC"),
7988 N_("net rpc samdump\n"
7989 " Dump SAM data of remote NT PDC")
7995 N_("Sync a remote NT PDC's data into local passdb"),
7996 N_("net rpc vampire\n"
7997 " Sync a remote NT PDC's data into local passdb")
8003 N_("Fetch the domain sid into local secrets.tdb"),
8004 N_("net rpc getsid\n"
8005 " Fetch the domain sid into local secrets.tdb")
8011 N_("Manage privileges assigned to SID"),
8012 N_("net rpc rights\n"
8013 " Manage privileges assigned to SID")
8019 N_("Start/stop/query remote services"),
8020 N_("net rpc service\n"
8021 " Start/stop/query remote services")
8027 N_("Manage registry hives"),
8028 N_("net rpc registry\n"
8029 " Manage registry hives")
8035 N_("Open interactive shell on remote server"),
8036 N_("net rpc shell\n"
8037 " Open interactive shell on remote server")
8043 N_("Manage trusts"),
8044 N_("net rpc trust\n"
8051 N_("Configure a remote samba server"),
8053 " Configure a remote samba server")
8055 {NULL
, NULL
, 0, NULL
, NULL
}
8058 status
= libnetapi_net_init(&c
->netapi_ctx
);
8062 libnetapi_set_username(c
->netapi_ctx
, c
->opt_user_name
);
8063 libnetapi_set_password(c
->netapi_ctx
, c
->opt_password
);
8064 if (c
->opt_kerberos
) {
8065 libnetapi_set_use_kerberos(c
->netapi_ctx
);
8067 if (c
->opt_ccache
) {
8068 libnetapi_set_use_ccache(c
->netapi_ctx
);
8071 return net_run_function(c
, argc
, argv
, "net rpc", func
);