2 Unix SMB/CIFS implementation.
5 Copyright (C) Tim Potter 2000-2001
6 Copyright (C) Martin Pool 2003
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "popt_common.h"
24 #include "rpcclient.h"
25 #include "../libcli/auth/libcli_auth.h"
26 #include "../librpc/gen_ndr/cli_lsa.h"
27 #include "rpc_client/cli_lsarpc.h"
28 #include "../librpc/gen_ndr/ndr_netlogon.h"
29 #include "rpc_client/cli_netlogon.h"
31 struct dom_sid domain_sid
;
33 static enum dcerpc_AuthType pipe_default_auth_type
= DCERPC_AUTH_TYPE_NONE
;
34 static enum pipe_auth_type_spnego pipe_default_auth_spnego_type
= 0;
35 static enum dcerpc_AuthLevel pipe_default_auth_level
= DCERPC_AUTH_LEVEL_NONE
;
36 static unsigned int timeout
= 0;
37 static enum dcerpc_transport_t default_transport
= NCACN_NP
;
39 struct user_auth_info
*rpcclient_auth_info
;
41 /* List to hold groups of commands.
43 * Commands are defined in a list of arrays: arrays are easy to
44 * statically declare, and lists are easier to dynamically extend.
47 static struct cmd_list
{
48 struct cmd_list
*prev
, *next
;
49 struct cmd_set
*cmd_set
;
52 /****************************************************************************
53 handle completion of commands for readline
54 ****************************************************************************/
55 static char **completion_fn(const char *text
, int start
, int end
)
57 #define MAX_COMPLETIONS 100
60 struct cmd_list
*commands
= cmd_list
;
63 /* FIXME!!! -- what to do when completing argument? */
64 /* for words not at the start of the line fallback
65 to filename completion */
70 /* make sure we have a list of valid commands */
75 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
80 matches
[count
++] = SMB_STRDUP(text
);
86 while (commands
&& count
< MAX_COMPLETIONS
-1) {
87 if (!commands
->cmd_set
) {
91 for (i
=0; commands
->cmd_set
[i
].name
; i
++) {
92 if ((strncmp(text
, commands
->cmd_set
[i
].name
, strlen(text
)) == 0) &&
93 (( commands
->cmd_set
[i
].returntype
== RPC_RTYPE_NTSTATUS
&&
94 commands
->cmd_set
[i
].ntfn
) ||
95 ( commands
->cmd_set
[i
].returntype
== RPC_RTYPE_WERROR
&&
96 commands
->cmd_set
[i
].wfn
))) {
97 matches
[count
] = SMB_STRDUP(commands
->cmd_set
[i
].name
);
98 if (!matches
[count
]) {
99 for (i
= 0; i
< count
; i
++) {
100 SAFE_FREE(matches
[count
]);
108 commands
= commands
->next
;
113 SAFE_FREE(matches
[0]);
114 matches
[0] = SMB_STRDUP(matches
[1]);
116 matches
[count
] = NULL
;
120 static char *next_command (char **cmdstr
)
125 if (!cmdstr
|| !(*cmdstr
))
128 p
= strchr_m(*cmdstr
, ';');
131 command
= SMB_STRDUP(*cmdstr
);
140 /* Fetch the SID for this computer */
142 static void fetch_machine_sid(struct cli_state
*cli
)
144 struct policy_handle pol
;
145 NTSTATUS result
= NT_STATUS_OK
;
146 static bool got_domain_sid
;
148 struct rpc_pipe_client
*lsapipe
= NULL
;
149 union lsa_PolicyInformation
*info
= NULL
;
151 if (got_domain_sid
) return;
153 if (!(mem_ctx
=talloc_init("fetch_machine_sid"))) {
154 DEBUG(0,("fetch_machine_sid: talloc_init returned NULL!\n"));
158 result
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_lsarpc
.syntax_id
,
160 if (!NT_STATUS_IS_OK(result
)) {
161 fprintf(stderr
, "could not initialise lsa pipe. Error was %s\n", nt_errstr(result
) );
165 result
= rpccli_lsa_open_policy(lsapipe
, mem_ctx
, True
,
166 SEC_FLAG_MAXIMUM_ALLOWED
,
168 if (!NT_STATUS_IS_OK(result
)) {
172 result
= rpccli_lsa_QueryInfoPolicy(lsapipe
, mem_ctx
,
174 LSA_POLICY_INFO_ACCOUNT_DOMAIN
,
176 if (!NT_STATUS_IS_OK(result
)) {
180 got_domain_sid
= True
;
181 sid_copy(&domain_sid
, info
->account_domain
.sid
);
183 rpccli_lsa_Close(lsapipe
, mem_ctx
, &pol
);
184 TALLOC_FREE(lsapipe
);
185 talloc_destroy(mem_ctx
);
192 TALLOC_FREE(lsapipe
);
195 fprintf(stderr
, "could not obtain sid for domain %s\n", cli
->domain
);
197 if (!NT_STATUS_IS_OK(result
)) {
198 fprintf(stderr
, "error: %s\n", nt_errstr(result
));
204 /* List the available commands on a given pipe */
206 static NTSTATUS
cmd_listcommands(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
207 int argc
, const char **argv
)
209 struct cmd_list
*tmp
;
210 struct cmd_set
*tmp_set
;
216 printf("Usage: %s <pipe>\n", argv
[0]);
220 /* Help on one command */
222 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
)
224 tmp_set
= tmp
->cmd_set
;
226 if (!StrCaseCmp(argv
[1], tmp_set
->name
))
228 printf("Available commands on the %s pipe:\n\n", tmp_set
->name
);
232 while(tmp_set
->name
) {
233 printf("%30s", tmp_set
->name
);
240 /* drop out of the loop */
249 /* Display help on commands */
251 static NTSTATUS
cmd_help(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
252 int argc
, const char **argv
)
254 struct cmd_list
*tmp
;
255 struct cmd_set
*tmp_set
;
260 printf("Usage: %s [command]\n", argv
[0]);
264 /* Help on one command */
267 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
269 tmp_set
= tmp
->cmd_set
;
271 while(tmp_set
->name
) {
272 if (strequal(argv
[1], tmp_set
->name
)) {
273 if (tmp_set
->usage
&&
275 printf("%s\n", tmp_set
->usage
);
277 printf("No help for %s\n", tmp_set
->name
);
286 printf("No such command: %s\n", argv
[1]);
290 /* List all commands */
292 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
294 tmp_set
= tmp
->cmd_set
;
296 while(tmp_set
->name
) {
298 printf("%15s\t\t%s\n", tmp_set
->name
,
299 tmp_set
->description
? tmp_set
->description
:
309 /* Change the debug level */
311 static NTSTATUS
cmd_debuglevel(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
312 int argc
, const char **argv
)
315 printf("Usage: %s [debuglevel]\n", argv
[0]);
320 DEBUGLEVEL
= atoi(argv
[1]);
323 printf("debuglevel is %d\n", DEBUGLEVEL
);
328 static NTSTATUS
cmd_quit(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
329 int argc
, const char **argv
)
332 return NT_STATUS_OK
; /* NOTREACHED */
335 static NTSTATUS
cmd_set_ss_level(void)
337 struct cmd_list
*tmp
;
339 /* Close any existing connections not at this level. */
341 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
342 struct cmd_set
*tmp_set
;
344 for (tmp_set
= tmp
->cmd_set
; tmp_set
->name
; tmp_set
++) {
345 if (tmp_set
->rpc_pipe
== NULL
) {
349 if ((tmp_set
->rpc_pipe
->auth
->auth_type
350 != pipe_default_auth_type
)
351 || (tmp_set
->rpc_pipe
->auth
->auth_level
352 != pipe_default_auth_level
)) {
353 TALLOC_FREE(tmp_set
->rpc_pipe
);
354 tmp_set
->rpc_pipe
= NULL
;
361 static NTSTATUS
cmd_set_transport(void)
363 struct cmd_list
*tmp
;
365 /* Close any existing connections not at this level. */
367 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
368 struct cmd_set
*tmp_set
;
370 for (tmp_set
= tmp
->cmd_set
; tmp_set
->name
; tmp_set
++) {
371 if (tmp_set
->rpc_pipe
== NULL
) {
375 if (tmp_set
->rpc_pipe
->transport
->transport
!= default_transport
) {
376 TALLOC_FREE(tmp_set
->rpc_pipe
);
377 tmp_set
->rpc_pipe
= NULL
;
384 static NTSTATUS
cmd_sign(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
385 int argc
, const char **argv
)
387 const char *type
= "NTLMSSP";
389 pipe_default_auth_level
= DCERPC_AUTH_LEVEL_INTEGRITY
;
390 pipe_default_auth_type
= DCERPC_AUTH_TYPE_NTLMSSP
;
393 printf("Usage: %s [NTLMSSP|NTLMSSP_SPNEGO|SCHANNEL]\n", argv
[0]);
399 if (strequal(type
, "NTLMSSP")) {
400 pipe_default_auth_type
= DCERPC_AUTH_TYPE_NTLMSSP
;
401 } else if (strequal(type
, "NTLMSSP_SPNEGO")) {
402 pipe_default_auth_type
= DCERPC_AUTH_TYPE_SPNEGO
;
403 pipe_default_auth_spnego_type
= PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
;
404 } else if (strequal(type
, "SCHANNEL")) {
405 pipe_default_auth_type
= DCERPC_AUTH_TYPE_SCHANNEL
;
407 printf("unknown type %s\n", type
);
408 printf("Usage: %s [NTLMSSP|NTLMSSP_SPNEGO|SCHANNEL]\n", argv
[0]);
409 return NT_STATUS_INVALID_LEVEL
;
413 d_printf("Setting %s - sign\n", type
);
415 return cmd_set_ss_level();
418 static NTSTATUS
cmd_seal(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
419 int argc
, const char **argv
)
421 const char *type
= "NTLMSSP";
423 pipe_default_auth_level
= DCERPC_AUTH_LEVEL_PRIVACY
;
424 pipe_default_auth_type
= DCERPC_AUTH_TYPE_NTLMSSP
;
427 printf("Usage: %s [NTLMSSP|NTLMSSP_SPNEGO|SCHANNEL]\n", argv
[0]);
433 if (strequal(type
, "NTLMSSP")) {
434 pipe_default_auth_type
= DCERPC_AUTH_TYPE_NTLMSSP
;
435 } else if (strequal(type
, "NTLMSSP_SPNEGO")) {
436 pipe_default_auth_type
= DCERPC_AUTH_TYPE_SPNEGO
;
437 pipe_default_auth_spnego_type
= PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
;
438 } else if (strequal(type
, "SCHANNEL")) {
439 pipe_default_auth_type
= DCERPC_AUTH_TYPE_SCHANNEL
;
441 printf("unknown type %s\n", type
);
442 printf("Usage: %s [NTLMSSP|NTLMSSP_SPNEGO|SCHANNEL]\n", argv
[0]);
443 return NT_STATUS_INVALID_LEVEL
;
447 d_printf("Setting %s - sign and seal\n", type
);
449 return cmd_set_ss_level();
452 static NTSTATUS
cmd_timeout(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
453 int argc
, const char **argv
)
455 struct cmd_list
*tmp
;
458 printf("Usage: %s timeout\n", argv
[0]);
463 timeout
= atoi(argv
[1]);
465 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
467 struct cmd_set
*tmp_set
;
469 for (tmp_set
= tmp
->cmd_set
; tmp_set
->name
; tmp_set
++) {
470 if (tmp_set
->rpc_pipe
== NULL
) {
474 rpccli_set_timeout(tmp_set
->rpc_pipe
, timeout
);
479 printf("timeout is %d\n", timeout
);
485 static NTSTATUS
cmd_none(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
486 int argc
, const char **argv
)
488 pipe_default_auth_level
= DCERPC_AUTH_LEVEL_NONE
;
489 pipe_default_auth_type
= DCERPC_AUTH_TYPE_NONE
;
490 pipe_default_auth_spnego_type
= PIPE_AUTH_TYPE_SPNEGO_NONE
;
492 return cmd_set_ss_level();
495 static NTSTATUS
cmd_schannel(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
496 int argc
, const char **argv
)
498 d_printf("Setting schannel - sign and seal\n");
499 pipe_default_auth_level
= DCERPC_AUTH_LEVEL_PRIVACY
;
500 pipe_default_auth_type
= DCERPC_AUTH_TYPE_SCHANNEL
;
502 return cmd_set_ss_level();
505 static NTSTATUS
cmd_schannel_sign(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
506 int argc
, const char **argv
)
508 d_printf("Setting schannel - sign only\n");
509 pipe_default_auth_level
= DCERPC_AUTH_LEVEL_INTEGRITY
;
510 pipe_default_auth_type
= DCERPC_AUTH_TYPE_SCHANNEL
;
512 return cmd_set_ss_level();
515 static NTSTATUS
cmd_choose_transport(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
516 int argc
, const char **argv
)
521 printf("Usage: %s [NCACN_NP|NCACN_IP_TCP]\n", argv
[0]);
525 if (strequal(argv
[1], "NCACN_NP")) {
526 default_transport
= NCACN_NP
;
527 } else if (strequal(argv
[1], "NCACN_IP_TCP")) {
528 default_transport
= NCACN_IP_TCP
;
530 printf("transport type: %s unknown or not supported\n", argv
[1]);
531 return NT_STATUS_NOT_SUPPORTED
;
534 status
= cmd_set_transport();
535 if (!NT_STATUS_IS_OK(status
)) {
539 printf("default transport is now: %s\n", argv
[1]);
544 /* Built in rpcclient commands */
546 static struct cmd_set rpcclient_commands
[] = {
548 { "GENERAL OPTIONS" },
550 { "help", RPC_RTYPE_NTSTATUS
, cmd_help
, NULL
, NULL
, NULL
, "Get help on commands", "[command]" },
551 { "?", RPC_RTYPE_NTSTATUS
, cmd_help
, NULL
, NULL
, NULL
, "Get help on commands", "[command]" },
552 { "debuglevel", RPC_RTYPE_NTSTATUS
, cmd_debuglevel
, NULL
, NULL
, NULL
, "Set debug level", "level" },
553 { "debug", RPC_RTYPE_NTSTATUS
, cmd_debuglevel
, NULL
, NULL
, NULL
, "Set debug level", "level" },
554 { "list", RPC_RTYPE_NTSTATUS
, cmd_listcommands
, NULL
, NULL
, NULL
, "List available commands on <pipe>", "pipe" },
555 { "exit", RPC_RTYPE_NTSTATUS
, cmd_quit
, NULL
, NULL
, NULL
, "Exit program", "" },
556 { "quit", RPC_RTYPE_NTSTATUS
, cmd_quit
, NULL
, NULL
, NULL
, "Exit program", "" },
557 { "sign", RPC_RTYPE_NTSTATUS
, cmd_sign
, NULL
, NULL
, NULL
, "Force RPC pipe connections to be signed", "" },
558 { "seal", RPC_RTYPE_NTSTATUS
, cmd_seal
, NULL
, NULL
, NULL
, "Force RPC pipe connections to be sealed", "" },
559 { "schannel", RPC_RTYPE_NTSTATUS
, cmd_schannel
, NULL
, NULL
, NULL
, "Force RPC pipe connections to be sealed with 'schannel'. Assumes valid machine account to this domain controller.", "" },
560 { "schannelsign", RPC_RTYPE_NTSTATUS
, cmd_schannel_sign
, NULL
, NULL
, NULL
, "Force RPC pipe connections to be signed (not sealed) with 'schannel'. Assumes valid machine account to this domain controller.", "" },
561 { "timeout", RPC_RTYPE_NTSTATUS
, cmd_timeout
, NULL
, NULL
, NULL
, "Set timeout (in milliseonds) for RPC operations", "" },
562 { "transport", RPC_RTYPE_NTSTATUS
, cmd_choose_transport
, NULL
, NULL
, NULL
, "Choose ncacn transport for RPC operations", "" },
563 { "none", RPC_RTYPE_NTSTATUS
, cmd_none
, NULL
, NULL
, NULL
, "Force RPC pipe connections to have no special properties", "" },
568 static struct cmd_set separator_command
[] = {
569 { "---------------", MAX_RPC_RETURN_TYPE
, NULL
, NULL
, NULL
, NULL
, "----------------------" },
574 /* Various pipe commands */
576 extern struct cmd_set lsarpc_commands
[];
577 extern struct cmd_set samr_commands
[];
578 extern struct cmd_set spoolss_commands
[];
579 extern struct cmd_set netlogon_commands
[];
580 extern struct cmd_set srvsvc_commands
[];
581 extern struct cmd_set dfs_commands
[];
582 extern struct cmd_set ds_commands
[];
583 extern struct cmd_set echo_commands
[];
584 extern struct cmd_set epmapper_commands
[];
585 extern struct cmd_set shutdown_commands
[];
586 extern struct cmd_set test_commands
[];
587 extern struct cmd_set wkssvc_commands
[];
588 extern struct cmd_set ntsvcs_commands
[];
589 extern struct cmd_set drsuapi_commands
[];
590 extern struct cmd_set eventlog_commands
[];
592 static struct cmd_set
*rpcclient_command_list
[] = {
612 static void add_command_set(struct cmd_set
*cmd_set
)
614 struct cmd_list
*entry
;
616 if (!(entry
= SMB_MALLOC_P(struct cmd_list
))) {
617 DEBUG(0, ("out of memory\n"));
623 entry
->cmd_set
= cmd_set
;
624 DLIST_ADD(cmd_list
, entry
);
629 * Call an rpcclient function, passing an argv array.
631 * @param cmd Command to run, as a single string.
633 static NTSTATUS
do_cmd(struct cli_state
*cli
,
634 struct user_auth_info
*auth_info
,
635 struct cmd_set
*cmd_entry
,
636 struct dcerpc_binding
*binding
,
637 int argc
, char **argv
)
646 if (!(mem_ctx
= talloc_init("do_cmd"))) {
647 DEBUG(0, ("talloc_init() failed\n"));
648 return NT_STATUS_NO_MEMORY
;
653 if ((cmd_entry
->interface
!= NULL
) && (cmd_entry
->rpc_pipe
== NULL
)) {
654 switch (pipe_default_auth_type
) {
655 case DCERPC_AUTH_TYPE_NONE
:
656 ntresult
= cli_rpc_pipe_open_noauth_transport(
657 cli
, default_transport
,
658 cmd_entry
->interface
,
659 &cmd_entry
->rpc_pipe
);
661 case DCERPC_AUTH_TYPE_SPNEGO
:
662 switch (pipe_default_auth_spnego_type
) {
663 case PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
:
664 ntresult
= cli_rpc_pipe_open_spnego_ntlmssp(
665 cli
, cmd_entry
->interface
,
667 pipe_default_auth_level
,
668 get_cmdline_auth_info_domain(auth_info
),
669 get_cmdline_auth_info_username(auth_info
),
670 get_cmdline_auth_info_password(auth_info
),
671 &cmd_entry
->rpc_pipe
);
673 case PIPE_AUTH_TYPE_SPNEGO_KRB5
:
674 ntresult
= cli_rpc_pipe_open_spnego_krb5(
675 cli
, cmd_entry
->interface
,
677 pipe_default_auth_level
,
680 &cmd_entry
->rpc_pipe
);
683 ntresult
= NT_STATUS_INTERNAL_ERROR
;
686 case DCERPC_AUTH_TYPE_NTLMSSP
:
687 ntresult
= cli_rpc_pipe_open_ntlmssp(
688 cli
, cmd_entry
->interface
,
690 pipe_default_auth_level
,
691 get_cmdline_auth_info_domain(auth_info
),
692 get_cmdline_auth_info_username(auth_info
),
693 get_cmdline_auth_info_password(auth_info
),
694 &cmd_entry
->rpc_pipe
);
696 case DCERPC_AUTH_TYPE_SCHANNEL
:
697 ntresult
= cli_rpc_pipe_open_schannel(
698 cli
, cmd_entry
->interface
,
700 pipe_default_auth_level
,
701 get_cmdline_auth_info_domain(auth_info
),
702 &cmd_entry
->rpc_pipe
);
704 case DCERPC_AUTH_TYPE_KRB5
:
705 ntresult
= cli_rpc_pipe_open_krb5(
706 cli
, cmd_entry
->interface
,
708 pipe_default_auth_level
,
711 &cmd_entry
->rpc_pipe
);
714 DEBUG(0, ("Could not initialise %s. Invalid "
716 get_pipe_name_from_syntax(
718 cmd_entry
->interface
),
719 pipe_default_auth_type
));
720 return NT_STATUS_UNSUCCESSFUL
;
722 if (!NT_STATUS_IS_OK(ntresult
)) {
723 DEBUG(0, ("Could not initialise %s. Error was %s\n",
724 get_pipe_name_from_syntax(
725 talloc_tos(), cmd_entry
->interface
),
726 nt_errstr(ntresult
) ));
730 if (ndr_syntax_id_equal(cmd_entry
->interface
,
731 &ndr_table_netlogon
.syntax_id
)) {
732 uint32_t neg_flags
= NETLOGON_NEG_AUTH2_ADS_FLAGS
;
733 enum netr_SchannelType sec_channel_type
;
734 uchar trust_password
[16];
735 const char *machine_account
;
737 if (!get_trust_pw_hash(get_cmdline_auth_info_domain(auth_info
),
738 trust_password
, &machine_account
,
741 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
744 ntresult
= rpccli_netlogon_setup_creds(cmd_entry
->rpc_pipe
,
745 cli
->desthost
, /* server name */
746 get_cmdline_auth_info_domain(auth_info
), /* domain */
747 global_myname(), /* client name */
748 machine_account
, /* machine account name */
753 if (!NT_STATUS_IS_OK(ntresult
)) {
754 DEBUG(0, ("Could not initialise credentials for %s.\n",
755 get_pipe_name_from_syntax(
757 cmd_entry
->interface
)));
765 if ( cmd_entry
->returntype
== RPC_RTYPE_NTSTATUS
) {
766 ntresult
= cmd_entry
->ntfn(cmd_entry
->rpc_pipe
, mem_ctx
, argc
, (const char **) argv
);
767 if (!NT_STATUS_IS_OK(ntresult
)) {
768 printf("result was %s\n", nt_errstr(ntresult
));
771 wresult
= cmd_entry
->wfn(cmd_entry
->rpc_pipe
, mem_ctx
, argc
, (const char **) argv
);
772 /* print out the DOS error */
773 if (!W_ERROR_IS_OK(wresult
)) {
774 printf( "result was %s\n", win_errstr(wresult
));
776 ntresult
= W_ERROR_IS_OK(wresult
)?NT_STATUS_OK
:NT_STATUS_UNSUCCESSFUL
;
781 talloc_destroy(mem_ctx
);
788 * Process a command entered at the prompt or as part of -c
790 * @returns The NTSTATUS from running the command.
792 static NTSTATUS
process_cmd(struct user_auth_info
*auth_info
,
793 struct cli_state
*cli
,
794 struct dcerpc_binding
*binding
,
797 struct cmd_list
*temp_list
;
798 NTSTATUS result
= NT_STATUS_OK
;
803 if ((ret
= poptParseArgvString(cmd
, &argc
, (const char ***) &argv
)) != 0) {
804 fprintf(stderr
, "rpcclient: %s\n", poptStrerror(ret
));
805 return NT_STATUS_UNSUCCESSFUL
;
809 /* Walk through a dlist of arrays of commands. */
810 for (temp_list
= cmd_list
; temp_list
; temp_list
= temp_list
->next
) {
811 struct cmd_set
*temp_set
= temp_list
->cmd_set
;
813 while (temp_set
->name
) {
814 if (strequal(argv
[0], temp_set
->name
)) {
815 if (!(temp_set
->returntype
== RPC_RTYPE_NTSTATUS
&& temp_set
->ntfn
) &&
816 !(temp_set
->returntype
== RPC_RTYPE_WERROR
&& temp_set
->wfn
)) {
817 fprintf (stderr
, "Invalid command\n");
821 result
= do_cmd(cli
, auth_info
, temp_set
,
822 binding
, argc
, argv
);
831 printf("command not found: %s\n", argv
[0]);
836 if (!NT_STATUS_IS_OK(result)) {
837 printf("result was %s\n", nt_errstr(result));
841 /* NOTE: popt allocates the whole argv, including the
842 * strings, as a single block. So a single free is
843 * enough to release it -- we don't free the
844 * individual strings. rtfm. */
853 int main(int argc
, char *argv
[])
856 static char *cmdstr
= NULL
;
858 struct cli_state
*cli
= NULL
;
859 static char *opt_ipaddr
=NULL
;
860 struct cmd_set
**cmd_set
;
861 struct sockaddr_storage server_ss
;
863 static int opt_port
= 0;
864 fstring new_workgroup
;
866 TALLOC_CTX
*frame
= talloc_stackframe();
868 struct dcerpc_binding
*binding
= NULL
;
869 const char *binding_string
= NULL
;
870 char *user
, *domain
, *q
;
872 /* make sure the vars that get altered (4th field) are in
873 a fixed location or certain compilers complain */
875 struct poptOption long_options
[] = {
877 {"command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated cmds", "COMMANDS"},
878 {"dest-ip", 'I', POPT_ARG_STRING
, &opt_ipaddr
, 'I', "Specify destination IP address", "IP"},
879 {"port", 'p', POPT_ARG_INT
, &opt_port
, 'p', "Specify port number", "PORT"},
881 POPT_COMMON_CONNECTION
882 POPT_COMMON_CREDENTIALS
888 zero_sockaddr(&server_ss
);
892 /* the following functions are part of the Samba debugging
893 facilities. See lib/debug.c */
894 setup_logging("rpcclient", True
);
896 rpcclient_auth_info
= user_auth_info_init(frame
);
897 if (rpcclient_auth_info
== NULL
) {
900 popt_common_set_auth_info(rpcclient_auth_info
);
904 pc
= poptGetContext("rpcclient", argc
, (const char **) argv
,
908 poptPrintHelp(pc
, stderr
, 0);
912 while((opt
= poptGetNextOpt(pc
)) != -1) {
916 if (!interpret_string_addr(&server_ss
,
919 fprintf(stderr
, "%s not a valid IP address\n",
927 /* Get server as remaining unparsed argument. Print usage if more
928 than one unparsed argument is present. */
930 server
= poptGetArg(pc
);
932 if (!server
|| poptGetArg(pc
)) {
933 poptPrintHelp(pc
, stderr
, 0);
947 /* save the workgroup...
949 FIXME!! do we need to do this for other options as well
950 (or maybe a generic way to keep lp_load() from overwriting
953 fstrcpy( new_workgroup
, lp_workgroup() );
955 /* Load smb.conf file */
957 if (!lp_load(get_dyn_CONFIGFILE(),True
,False
,False
,True
))
958 fprintf(stderr
, "Can't load %s\n", get_dyn_CONFIGFILE());
960 if ( strlen(new_workgroup
) != 0 )
961 set_global_myworkgroup( new_workgroup
);
965 * from stdin if necessary
968 if (get_cmdline_auth_info_use_machine_account(rpcclient_auth_info
) &&
969 !set_cmdline_auth_info_machine_account_creds(rpcclient_auth_info
)) {
974 set_cmdline_auth_info_getpass(rpcclient_auth_info
);
976 if ((server
[0] == '/' && server
[1] == '/') ||
977 (server
[0] == '\\' && server
[1] == '\\')) {
981 nt_status
= dcerpc_parse_binding(frame
, server
, &binding
);
983 if (!NT_STATUS_IS_OK(nt_status
)) {
985 binding_string
= talloc_asprintf(frame
, "ncacn_np:%s",
986 strip_hostname(server
));
987 if (!binding_string
) {
992 nt_status
= dcerpc_parse_binding(frame
, binding_string
, &binding
);
993 if (!NT_STATUS_IS_OK(nt_status
)) {
999 if (binding
->transport
== NCA_UNKNOWN
) {
1000 binding
->transport
= NCACN_NP
;
1003 if (binding
->flags
& DCERPC_SIGN
) {
1004 pipe_default_auth_level
= DCERPC_AUTH_LEVEL_INTEGRITY
;
1005 pipe_default_auth_type
= DCERPC_AUTH_TYPE_NTLMSSP
;
1007 if (binding
->flags
& DCERPC_SEAL
) {
1008 pipe_default_auth_level
= DCERPC_AUTH_LEVEL_PRIVACY
;
1009 pipe_default_auth_type
= DCERPC_AUTH_TYPE_NTLMSSP
;
1011 if (binding
->flags
& DCERPC_AUTH_SPNEGO
) {
1012 pipe_default_auth_type
= DCERPC_AUTH_TYPE_SPNEGO
;
1013 pipe_default_auth_spnego_type
= PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
;
1015 if (binding
->flags
& DCERPC_AUTH_NTLM
) {
1016 /* If neither Integrity or Privacy are requested then
1017 * Use just Connect level */
1018 if (pipe_default_auth_level
== DCERPC_AUTH_LEVEL_NONE
) {
1019 pipe_default_auth_level
= DCERPC_AUTH_LEVEL_CONNECT
;
1022 if (pipe_default_auth_type
== DCERPC_AUTH_TYPE_SPNEGO
) {
1023 pipe_default_auth_spnego_type
= PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
;
1025 pipe_default_auth_type
= DCERPC_AUTH_TYPE_NTLMSSP
;
1028 if (binding
->flags
& DCERPC_AUTH_KRB5
) {
1029 /* If neither Integrity or Privacy are requested then
1030 * Use just Connect level */
1031 if (pipe_default_auth_level
== DCERPC_AUTH_LEVEL_NONE
) {
1032 pipe_default_auth_level
= DCERPC_AUTH_LEVEL_CONNECT
;
1035 if (pipe_default_auth_type
== DCERPC_AUTH_TYPE_SPNEGO
) {
1036 pipe_default_auth_spnego_type
= PIPE_AUTH_TYPE_SPNEGO_KRB5
;
1038 pipe_default_auth_type
= DCERPC_AUTH_TYPE_KRB5
;
1042 if (get_cmdline_auth_info_use_kerberos(rpcclient_auth_info
)) {
1043 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
|
1044 CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS
;
1046 if (get_cmdline_auth_info_use_ccache(rpcclient_auth_info
)) {
1047 flags
|= CLI_FULL_CONNECTION_USE_CCACHE
;
1050 user
= talloc_strdup(frame
, get_cmdline_auth_info_username(rpcclient_auth_info
));
1051 SMB_ASSERT(user
!= NULL
);
1052 domain
= talloc_strdup(frame
, lp_workgroup());
1053 SMB_ASSERT(domain
!= NULL
);
1054 set_cmdline_auth_info_domain(rpcclient_auth_info
, domain
);
1056 if ((q
= strchr_m(user
,'\\'))) {
1058 set_cmdline_auth_info_domain(rpcclient_auth_info
, user
);
1059 set_cmdline_auth_info_username(rpcclient_auth_info
, q
+1);
1063 nt_status
= cli_full_connection(&cli
, global_myname(), binding
->host
,
1064 opt_ipaddr
? &server_ss
: NULL
, opt_port
,
1066 get_cmdline_auth_info_username(rpcclient_auth_info
),
1067 get_cmdline_auth_info_domain(rpcclient_auth_info
),
1068 get_cmdline_auth_info_password(rpcclient_auth_info
),
1070 get_cmdline_auth_info_signing_state(rpcclient_auth_info
),
1073 if (!NT_STATUS_IS_OK(nt_status
)) {
1074 DEBUG(0,("Cannot connect to server. Error was %s\n", nt_errstr(nt_status
)));
1079 if (get_cmdline_auth_info_smb_encrypt(rpcclient_auth_info
)) {
1080 nt_status
= cli_cm_force_encryption(cli
,
1081 get_cmdline_auth_info_username(rpcclient_auth_info
),
1082 get_cmdline_auth_info_password(rpcclient_auth_info
),
1083 get_cmdline_auth_info_domain(rpcclient_auth_info
),
1085 if (!NT_STATUS_IS_OK(nt_status
)) {
1091 #if 0 /* COMMENT OUT FOR TESTING */
1092 memset(cmdline_auth_info
.password
,'X',sizeof(cmdline_auth_info
.password
));
1095 /* Load command lists */
1097 timeout
= cli_set_timeout(cli
, 10000);
1099 cmd_set
= rpcclient_command_list
;
1102 add_command_set(*cmd_set
);
1103 add_command_set(separator_command
);
1107 default_transport
= binding
->transport
;
1109 fetch_machine_sid(cli
);
1111 /* Do anything specified with -c */
1112 if (cmdstr
&& cmdstr
[0]) {
1118 while((cmd
=next_command(&p
)) != NULL
) {
1119 NTSTATUS cmd_result
= process_cmd(rpcclient_auth_info
, cli
,
1122 result
= NT_STATUS_IS_ERR(cmd_result
);
1128 /* Loop around accepting commands */
1133 line
= smb_readline("rpcclient $> ", NULL
, completion_fn
);
1138 if (line
[0] != '\n')
1139 process_cmd(rpcclient_auth_info
, cli
, binding
, line
);