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 "rpcclient.h"
27 static enum pipe_auth_type pipe_default_auth_type
= PIPE_AUTH_TYPE_NONE
;
28 static enum pipe_auth_level pipe_default_auth_level
= PIPE_AUTH_LEVEL_NONE
;
29 static unsigned int timeout
= 0;
31 /* List to hold groups of commands.
33 * Commands are defined in a list of arrays: arrays are easy to
34 * statically declare, and lists are easier to dynamically extend.
37 static struct cmd_list
{
38 struct cmd_list
*prev
, *next
;
39 struct cmd_set
*cmd_set
;
42 /****************************************************************************
43 handle completion of commands for readline
44 ****************************************************************************/
45 static char **completion_fn(const char *text
, int start
, int end
)
47 #define MAX_COMPLETIONS 100
50 struct cmd_list
*commands
= cmd_list
;
53 /* FIXME!!! -- what to do when completing argument? */
54 /* for words not at the start of the line fallback
55 to filename completion */
60 /* make sure we have a list of valid commands */
65 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
70 matches
[count
++] = SMB_STRDUP(text
);
76 while (commands
&& count
< MAX_COMPLETIONS
-1) {
77 if (!commands
->cmd_set
) {
81 for (i
=0; commands
->cmd_set
[i
].name
; i
++) {
82 if ((strncmp(text
, commands
->cmd_set
[i
].name
, strlen(text
)) == 0) &&
83 (( commands
->cmd_set
[i
].returntype
== RPC_RTYPE_NTSTATUS
&&
84 commands
->cmd_set
[i
].ntfn
) ||
85 ( commands
->cmd_set
[i
].returntype
== RPC_RTYPE_WERROR
&&
86 commands
->cmd_set
[i
].wfn
))) {
87 matches
[count
] = SMB_STRDUP(commands
->cmd_set
[i
].name
);
88 if (!matches
[count
]) {
89 for (i
= 0; i
< count
; i
++) {
90 SAFE_FREE(matches
[count
]);
98 commands
= commands
->next
;
103 SAFE_FREE(matches
[0]);
104 matches
[0] = SMB_STRDUP(matches
[1]);
106 matches
[count
] = NULL
;
110 static char *next_command (char **cmdstr
)
115 if (!cmdstr
|| !(*cmdstr
))
118 p
= strchr_m(*cmdstr
, ';');
121 command
= SMB_STRDUP(*cmdstr
);
130 /* Fetch the SID for this computer */
132 static void fetch_machine_sid(struct cli_state
*cli
)
135 NTSTATUS result
= NT_STATUS_OK
;
136 uint32 info_class
= 5;
137 const char *domain_name
= NULL
;
138 static bool got_domain_sid
;
140 DOM_SID
*dom_sid
= NULL
;
141 struct rpc_pipe_client
*lsapipe
= NULL
;
143 if (got_domain_sid
) return;
145 if (!(mem_ctx
=talloc_init("fetch_machine_sid"))) {
146 DEBUG(0,("fetch_machine_sid: talloc_init returned NULL!\n"));
150 if ((lsapipe
= cli_rpc_pipe_open_noauth(cli
, PI_LSARPC
, &result
)) == NULL
) {
151 fprintf(stderr
, "could not initialise lsa pipe. Error was %s\n", nt_errstr(result
) );
155 result
= rpccli_lsa_open_policy(lsapipe
, mem_ctx
, True
,
156 SEC_RIGHTS_MAXIMUM_ALLOWED
,
158 if (!NT_STATUS_IS_OK(result
)) {
162 result
= rpccli_lsa_query_info_policy(lsapipe
, mem_ctx
, &pol
, info_class
,
163 &domain_name
, &dom_sid
);
164 if (!NT_STATUS_IS_OK(result
)) {
168 got_domain_sid
= True
;
169 sid_copy( &domain_sid
, dom_sid
);
171 rpccli_lsa_Close(lsapipe
, mem_ctx
, &pol
);
172 cli_rpc_pipe_close(lsapipe
);
173 talloc_destroy(mem_ctx
);
180 cli_rpc_pipe_close(lsapipe
);
183 fprintf(stderr
, "could not obtain sid for domain %s\n", cli
->domain
);
185 if (!NT_STATUS_IS_OK(result
)) {
186 fprintf(stderr
, "error: %s\n", nt_errstr(result
));
192 /* List the available commands on a given pipe */
194 static NTSTATUS
cmd_listcommands(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
195 int argc
, const char **argv
)
197 struct cmd_list
*tmp
;
198 struct cmd_set
*tmp_set
;
204 printf("Usage: %s <pipe>\n", argv
[0]);
208 /* Help on one command */
210 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
)
212 tmp_set
= tmp
->cmd_set
;
214 if (!StrCaseCmp(argv
[1], tmp_set
->name
))
216 printf("Available commands on the %s pipe:\n\n", tmp_set
->name
);
220 while(tmp_set
->name
) {
221 printf("%30s", tmp_set
->name
);
228 /* drop out of the loop */
237 /* Display help on commands */
239 static NTSTATUS
cmd_help(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
240 int argc
, const char **argv
)
242 struct cmd_list
*tmp
;
243 struct cmd_set
*tmp_set
;
248 printf("Usage: %s [command]\n", argv
[0]);
252 /* Help on one command */
255 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
257 tmp_set
= tmp
->cmd_set
;
259 while(tmp_set
->name
) {
260 if (strequal(argv
[1], tmp_set
->name
)) {
261 if (tmp_set
->usage
&&
263 printf("%s\n", tmp_set
->usage
);
265 printf("No help for %s\n", tmp_set
->name
);
274 printf("No such command: %s\n", argv
[1]);
278 /* List all commands */
280 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
282 tmp_set
= tmp
->cmd_set
;
284 while(tmp_set
->name
) {
286 printf("%15s\t\t%s\n", tmp_set
->name
,
287 tmp_set
->description
? tmp_set
->description
:
297 /* Change the debug level */
299 static NTSTATUS
cmd_debuglevel(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
300 int argc
, const char **argv
)
303 printf("Usage: %s [debuglevel]\n", argv
[0]);
308 DEBUGLEVEL
= atoi(argv
[1]);
311 printf("debuglevel is %d\n", DEBUGLEVEL
);
316 static NTSTATUS
cmd_quit(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
317 int argc
, const char **argv
)
320 return NT_STATUS_OK
; /* NOTREACHED */
323 static NTSTATUS
cmd_set_ss_level(void)
325 struct cmd_list
*tmp
;
327 /* Close any existing connections not at this level. */
329 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
330 struct cmd_set
*tmp_set
;
332 for (tmp_set
= tmp
->cmd_set
; tmp_set
->name
; tmp_set
++) {
333 if (tmp_set
->rpc_pipe
== NULL
) {
337 if (tmp_set
->rpc_pipe
->auth
.auth_type
!= pipe_default_auth_type
||
338 tmp_set
->rpc_pipe
->auth
.auth_level
!= pipe_default_auth_level
) {
339 cli_rpc_pipe_close(tmp_set
->rpc_pipe
);
340 tmp_set
->rpc_pipe
= NULL
;
347 static NTSTATUS
cmd_sign(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
348 int argc
, const char **argv
)
350 pipe_default_auth_level
= PIPE_AUTH_LEVEL_INTEGRITY
;
351 pipe_default_auth_type
= PIPE_AUTH_TYPE_NTLMSSP
;
354 printf("Usage: %s [NTLMSSP|NTLMSSP_SPNEGO|SCHANNEL]\n", argv
[0]);
359 if (strequal(argv
[1], "NTLMSSP")) {
360 pipe_default_auth_type
= PIPE_AUTH_TYPE_NTLMSSP
;
361 } else if (strequal(argv
[1], "NTLMSSP_SPNEGO")) {
362 pipe_default_auth_type
= PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
;
363 } else if (strequal(argv
[1], "SCHANNEL")) {
364 pipe_default_auth_type
= PIPE_AUTH_TYPE_SCHANNEL
;
366 printf("unknown type %s\n", argv
[1]);
367 return NT_STATUS_INVALID_LEVEL
;
371 printf("debuglevel is %d\n", DEBUGLEVEL
);
372 return cmd_set_ss_level();
375 static NTSTATUS
cmd_seal(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
376 int argc
, const char **argv
)
378 pipe_default_auth_level
= PIPE_AUTH_LEVEL_PRIVACY
;
379 pipe_default_auth_type
= PIPE_AUTH_TYPE_NTLMSSP
;
382 printf("Usage: %s [NTLMSSP|NTLMSSP_SPNEGO|SCHANNEL]\n", argv
[0]);
387 if (strequal(argv
[1], "NTLMSSP")) {
388 pipe_default_auth_type
= PIPE_AUTH_TYPE_NTLMSSP
;
389 } else if (strequal(argv
[1], "NTLMSSP_SPNEGO")) {
390 pipe_default_auth_type
= PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
;
391 } else if (strequal(argv
[1], "SCHANNEL")) {
392 pipe_default_auth_type
= PIPE_AUTH_TYPE_SCHANNEL
;
394 printf("unknown type %s\n", argv
[1]);
395 return NT_STATUS_INVALID_LEVEL
;
398 return cmd_set_ss_level();
401 static NTSTATUS
cmd_timeout(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
402 int argc
, const char **argv
)
404 struct cmd_list
*tmp
;
407 printf("Usage: %s timeout\n", argv
[0]);
412 timeout
= atoi(argv
[1]);
414 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
416 struct cmd_set
*tmp_set
;
418 for (tmp_set
= tmp
->cmd_set
; tmp_set
->name
; tmp_set
++) {
419 if (tmp_set
->rpc_pipe
== NULL
) {
423 cli_set_timeout(tmp_set
->rpc_pipe
->cli
, timeout
);
428 printf("timeout is %d\n", timeout
);
434 static NTSTATUS
cmd_none(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
435 int argc
, const char **argv
)
437 pipe_default_auth_level
= PIPE_AUTH_LEVEL_NONE
;
438 pipe_default_auth_type
= PIPE_AUTH_TYPE_NONE
;
440 return cmd_set_ss_level();
443 static NTSTATUS
cmd_schannel(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
444 int argc
, const char **argv
)
446 d_printf("Setting schannel - sign and seal\n");
447 pipe_default_auth_level
= PIPE_AUTH_LEVEL_PRIVACY
;
448 pipe_default_auth_type
= PIPE_AUTH_TYPE_SCHANNEL
;
450 return cmd_set_ss_level();
453 static NTSTATUS
cmd_schannel_sign(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
454 int argc
, const char **argv
)
456 d_printf("Setting schannel - sign only\n");
457 pipe_default_auth_level
= PIPE_AUTH_LEVEL_INTEGRITY
;
458 pipe_default_auth_type
= PIPE_AUTH_TYPE_SCHANNEL
;
460 return cmd_set_ss_level();
464 /* Built in rpcclient commands */
466 static struct cmd_set rpcclient_commands
[] = {
468 { "GENERAL OPTIONS" },
470 { "help", RPC_RTYPE_NTSTATUS
, cmd_help
, NULL
, -1, NULL
, "Get help on commands", "[command]" },
471 { "?", RPC_RTYPE_NTSTATUS
, cmd_help
, NULL
, -1, NULL
, "Get help on commands", "[command]" },
472 { "debuglevel", RPC_RTYPE_NTSTATUS
, cmd_debuglevel
, NULL
, -1, NULL
, "Set debug level", "level" },
473 { "debug", RPC_RTYPE_NTSTATUS
, cmd_debuglevel
, NULL
, -1, NULL
, "Set debug level", "level" },
474 { "list", RPC_RTYPE_NTSTATUS
, cmd_listcommands
, NULL
, -1, NULL
, "List available commands on <pipe>", "pipe" },
475 { "exit", RPC_RTYPE_NTSTATUS
, cmd_quit
, NULL
, -1, NULL
, "Exit program", "" },
476 { "quit", RPC_RTYPE_NTSTATUS
, cmd_quit
, NULL
, -1, NULL
, "Exit program", "" },
477 { "sign", RPC_RTYPE_NTSTATUS
, cmd_sign
, NULL
, -1, NULL
, "Force RPC pipe connections to be signed", "" },
478 { "seal", RPC_RTYPE_NTSTATUS
, cmd_seal
, NULL
, -1, NULL
, "Force RPC pipe connections to be sealed", "" },
479 { "schannel", RPC_RTYPE_NTSTATUS
, cmd_schannel
, NULL
, -1, NULL
, "Force RPC pipe connections to be sealed with 'schannel'. Assumes valid machine account to this domain controller.", "" },
480 { "schannelsign", RPC_RTYPE_NTSTATUS
, cmd_schannel_sign
, NULL
, -1, NULL
, "Force RPC pipe connections to be signed (not sealed) with 'schannel'. Assumes valid machine account to this domain controller.", "" },
481 { "timeout", RPC_RTYPE_NTSTATUS
, cmd_timeout
, NULL
, -1, NULL
, "Set timeout (in milliseonds) for RPC operations", "" },
482 { "none", RPC_RTYPE_NTSTATUS
, cmd_none
, NULL
, -1, NULL
, "Force RPC pipe connections to have no special properties", "" },
487 static struct cmd_set separator_command
[] = {
488 { "---------------", MAX_RPC_RETURN_TYPE
, NULL
, NULL
, -1, NULL
, "----------------------" },
493 /* Various pipe commands */
495 extern struct cmd_set lsarpc_commands
[];
496 extern struct cmd_set samr_commands
[];
497 extern struct cmd_set spoolss_commands
[];
498 extern struct cmd_set netlogon_commands
[];
499 extern struct cmd_set srvsvc_commands
[];
500 extern struct cmd_set dfs_commands
[];
501 extern struct cmd_set ds_commands
[];
502 extern struct cmd_set echo_commands
[];
503 extern struct cmd_set shutdown_commands
[];
504 extern struct cmd_set test_commands
[];
505 extern struct cmd_set wkssvc_commands
[];
507 static struct cmd_set
*rpcclient_command_list
[] = {
523 static void add_command_set(struct cmd_set
*cmd_set
)
525 struct cmd_list
*entry
;
527 if (!(entry
= SMB_MALLOC_P(struct cmd_list
))) {
528 DEBUG(0, ("out of memory\n"));
534 entry
->cmd_set
= cmd_set
;
535 DLIST_ADD(cmd_list
, entry
);
540 * Call an rpcclient function, passing an argv array.
542 * @param cmd Command to run, as a single string.
544 static NTSTATUS
do_cmd(struct cli_state
*cli
,
545 struct cmd_set
*cmd_entry
,
546 int argc
, char **argv
)
555 if (!(mem_ctx
= talloc_init("do_cmd"))) {
556 DEBUG(0, ("talloc_init() failed\n"));
557 return NT_STATUS_NO_MEMORY
;
562 if (cmd_entry
->pipe_idx
!= -1 && cmd_entry
->rpc_pipe
== NULL
) {
563 switch (pipe_default_auth_type
) {
564 case PIPE_AUTH_TYPE_NONE
:
565 cmd_entry
->rpc_pipe
= cli_rpc_pipe_open_noauth(cli
,
569 case PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
:
570 cmd_entry
->rpc_pipe
= cli_rpc_pipe_open_spnego_ntlmssp(cli
,
572 pipe_default_auth_level
,
574 get_cmdline_auth_info_username(),
575 get_cmdline_auth_info_password(),
578 case PIPE_AUTH_TYPE_NTLMSSP
:
579 cmd_entry
->rpc_pipe
= cli_rpc_pipe_open_ntlmssp(cli
,
581 pipe_default_auth_level
,
583 get_cmdline_auth_info_username(),
584 get_cmdline_auth_info_password(),
587 case PIPE_AUTH_TYPE_SCHANNEL
:
588 cmd_entry
->rpc_pipe
= cli_rpc_pipe_open_schannel(cli
,
590 pipe_default_auth_level
,
595 DEBUG(0, ("Could not initialise %s. Invalid auth type %u\n",
596 cli_get_pipe_name(cmd_entry
->pipe_idx
),
597 pipe_default_auth_type
));
598 return NT_STATUS_UNSUCCESSFUL
;
600 if (!cmd_entry
->rpc_pipe
) {
601 DEBUG(0, ("Could not initialise %s. Error was %s\n",
602 cli_get_pipe_name(cmd_entry
->pipe_idx
),
603 nt_errstr(ntresult
) ));
607 if (cmd_entry
->pipe_idx
== PI_NETLOGON
) {
608 uint32 neg_flags
= NETLOGON_NEG_AUTH2_FLAGS
;
609 uint32 sec_channel_type
;
610 uchar trust_password
[16];
612 if (!secrets_fetch_trust_account_password(lp_workgroup(),
614 NULL
, &sec_channel_type
)) {
615 return NT_STATUS_UNSUCCESSFUL
;
618 ntresult
= rpccli_netlogon_setup_creds(cmd_entry
->rpc_pipe
,
619 cli
->desthost
, /* server name */
620 lp_workgroup(), /* domain */
621 global_myname(), /* client name */
622 global_myname(), /* machine account name */
627 if (!NT_STATUS_IS_OK(ntresult
)) {
628 DEBUG(0, ("Could not initialise credentials for %s.\n",
629 cli_get_pipe_name(cmd_entry
->pipe_idx
)));
637 if ( cmd_entry
->returntype
== RPC_RTYPE_NTSTATUS
) {
638 ntresult
= cmd_entry
->ntfn(cmd_entry
->rpc_pipe
, mem_ctx
, argc
, (const char **) argv
);
639 if (!NT_STATUS_IS_OK(ntresult
)) {
640 printf("result was %s\n", nt_errstr(ntresult
));
643 wresult
= cmd_entry
->wfn(cmd_entry
->rpc_pipe
, mem_ctx
, argc
, (const char **) argv
);
644 /* print out the DOS error */
645 if (!W_ERROR_IS_OK(wresult
)) {
646 printf( "result was %s\n", dos_errstr(wresult
));
648 ntresult
= W_ERROR_IS_OK(wresult
)?NT_STATUS_OK
:NT_STATUS_UNSUCCESSFUL
;
653 talloc_destroy(mem_ctx
);
660 * Process a command entered at the prompt or as part of -c
662 * @returns The NTSTATUS from running the command.
664 static NTSTATUS
process_cmd(struct cli_state
*cli
, char *cmd
)
666 struct cmd_list
*temp_list
;
667 NTSTATUS result
= NT_STATUS_OK
;
672 if ((ret
= poptParseArgvString(cmd
, &argc
, (const char ***) &argv
)) != 0) {
673 fprintf(stderr
, "rpcclient: %s\n", poptStrerror(ret
));
674 return NT_STATUS_UNSUCCESSFUL
;
678 /* Walk through a dlist of arrays of commands. */
679 for (temp_list
= cmd_list
; temp_list
; temp_list
= temp_list
->next
) {
680 struct cmd_set
*temp_set
= temp_list
->cmd_set
;
682 while (temp_set
->name
) {
683 if (strequal(argv
[0], temp_set
->name
)) {
684 if (!(temp_set
->returntype
== RPC_RTYPE_NTSTATUS
&& temp_set
->ntfn
) &&
685 !(temp_set
->returntype
== RPC_RTYPE_WERROR
&& temp_set
->wfn
)) {
686 fprintf (stderr
, "Invalid command\n");
690 result
= do_cmd(cli
, temp_set
, argc
, argv
);
699 printf("command not found: %s\n", argv
[0]);
704 if (!NT_STATUS_IS_OK(result)) {
705 printf("result was %s\n", nt_errstr(result));
709 /* NOTE: popt allocates the whole argv, including the
710 * strings, as a single block. So a single free is
711 * enough to release it -- we don't free the
712 * individual strings. rtfm. */
721 int main(int argc
, char *argv
[])
724 static char *cmdstr
= NULL
;
726 struct cli_state
*cli
= NULL
;
727 static char *opt_ipaddr
=NULL
;
728 struct cmd_set
**cmd_set
;
729 struct sockaddr_storage server_ss
;
731 static int opt_port
= 0;
732 fstring new_workgroup
;
734 TALLOC_CTX
*frame
= talloc_stackframe();
736 /* make sure the vars that get altered (4th field) are in
737 a fixed location or certain compilers complain */
739 struct poptOption long_options
[] = {
741 {"command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated cmds", "COMMANDS"},
742 {"dest-ip", 'I', POPT_ARG_STRING
, &opt_ipaddr
, 'I', "Specify destination IP address", "IP"},
743 {"port", 'p', POPT_ARG_INT
, &opt_port
, 'p', "Specify port number", "PORT"},
745 POPT_COMMON_CONNECTION
746 POPT_COMMON_CREDENTIALS
752 zero_addr(&server_ss
);
756 /* the following functions are part of the Samba debugging
757 facilities. See lib/debug.c */
758 setup_logging("rpcclient", True
);
762 pc
= poptGetContext("rpcclient", argc
, (const char **) argv
,
766 poptPrintHelp(pc
, stderr
, 0);
770 while((opt
= poptGetNextOpt(pc
)) != -1) {
774 if (!interpret_string_addr(&server_ss
,
777 fprintf(stderr
, "%s not a valid IP address\n",
785 /* Get server as remaining unparsed argument. Print usage if more
786 than one unparsed argument is present. */
788 server
= poptGetArg(pc
);
790 if (!server
|| poptGetArg(pc
)) {
791 poptPrintHelp(pc
, stderr
, 0);
805 /* save the workgroup...
807 FIXME!! do we need to do this for other options as well
808 (or maybe a generic way to keep lp_load() from overwriting
811 fstrcpy( new_workgroup
, lp_workgroup() );
813 /* Load smb.conf file */
815 if (!lp_load(get_dyn_CONFIGFILE(),True
,False
,False
,True
))
816 fprintf(stderr
, "Can't load %s\n", get_dyn_CONFIGFILE());
818 if ( strlen(new_workgroup
) != 0 )
819 set_global_myworkgroup( new_workgroup
);
823 * from stdin if necessary
826 if (!get_cmdline_auth_info_got_pass()) {
827 char *pass
= getpass("Password:");
829 set_cmdline_auth_info_password(pass
);
833 if ((server
[0] == '/' && server
[1] == '/') ||
834 (server
[0] == '\\' && server
[1] == '\\')) {
838 nt_status
= cli_full_connection(&cli
, global_myname(), server
,
839 opt_ipaddr
? &server_ss
: NULL
, opt_port
,
841 get_cmdline_auth_info_username(),
843 get_cmdline_auth_info_password(),
844 get_cmdline_auth_info_use_kerberos() ? CLI_FULL_CONNECTION_USE_KERBEROS
: 0,
845 get_cmdline_auth_info_signing_state(),NULL
);
847 if (!NT_STATUS_IS_OK(nt_status
)) {
848 DEBUG(0,("Cannot connect to server. Error was %s\n", nt_errstr(nt_status
)));
853 if (get_cmdline_auth_info_smb_encrypt()) {
854 nt_status
= cli_cm_force_encryption(cli
,
855 get_cmdline_auth_info_username(),
856 get_cmdline_auth_info_password(),
859 if (!NT_STATUS_IS_OK(nt_status
)) {
865 #if 0 /* COMMENT OUT FOR TESTING */
866 memset(cmdline_auth_info
.password
,'X',sizeof(cmdline_auth_info
.password
));
869 /* Load command lists */
871 timeout
= cli_set_timeout(cli
, 10000);
873 cmd_set
= rpcclient_command_list
;
876 add_command_set(*cmd_set
);
877 add_command_set(separator_command
);
881 fetch_machine_sid(cli
);
883 /* Do anything specified with -c */
884 if (cmdstr
&& cmdstr
[0]) {
890 while((cmd
=next_command(&p
)) != NULL
) {
891 NTSTATUS cmd_result
= process_cmd(cli
, cmd
);
893 result
= NT_STATUS_IS_ERR(cmd_result
);
899 /* Loop around accepting commands */
904 line
= smb_readline("rpcclient $> ", NULL
, completion_fn
);
910 process_cmd(cli
, line
);