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 struct user_auth_info
*rpcclient_auth_info
;
33 /* List to hold groups of commands.
35 * Commands are defined in a list of arrays: arrays are easy to
36 * statically declare, and lists are easier to dynamically extend.
39 static struct cmd_list
{
40 struct cmd_list
*prev
, *next
;
41 struct cmd_set
*cmd_set
;
44 /****************************************************************************
45 handle completion of commands for readline
46 ****************************************************************************/
47 static char **completion_fn(const char *text
, int start
, int end
)
49 #define MAX_COMPLETIONS 100
52 struct cmd_list
*commands
= cmd_list
;
55 /* FIXME!!! -- what to do when completing argument? */
56 /* for words not at the start of the line fallback
57 to filename completion */
62 /* make sure we have a list of valid commands */
67 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
72 matches
[count
++] = SMB_STRDUP(text
);
78 while (commands
&& count
< MAX_COMPLETIONS
-1) {
79 if (!commands
->cmd_set
) {
83 for (i
=0; commands
->cmd_set
[i
].name
; i
++) {
84 if ((strncmp(text
, commands
->cmd_set
[i
].name
, strlen(text
)) == 0) &&
85 (( commands
->cmd_set
[i
].returntype
== RPC_RTYPE_NTSTATUS
&&
86 commands
->cmd_set
[i
].ntfn
) ||
87 ( commands
->cmd_set
[i
].returntype
== RPC_RTYPE_WERROR
&&
88 commands
->cmd_set
[i
].wfn
))) {
89 matches
[count
] = SMB_STRDUP(commands
->cmd_set
[i
].name
);
90 if (!matches
[count
]) {
91 for (i
= 0; i
< count
; i
++) {
92 SAFE_FREE(matches
[count
]);
100 commands
= commands
->next
;
105 SAFE_FREE(matches
[0]);
106 matches
[0] = SMB_STRDUP(matches
[1]);
108 matches
[count
] = NULL
;
112 static char *next_command (char **cmdstr
)
117 if (!cmdstr
|| !(*cmdstr
))
120 p
= strchr_m(*cmdstr
, ';');
123 command
= SMB_STRDUP(*cmdstr
);
132 /* Fetch the SID for this computer */
134 static void fetch_machine_sid(struct cli_state
*cli
)
136 struct policy_handle pol
;
137 NTSTATUS result
= NT_STATUS_OK
;
138 static bool got_domain_sid
;
140 struct rpc_pipe_client
*lsapipe
= NULL
;
141 union lsa_PolicyInformation
*info
= 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 result
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_lsarpc
.syntax_id
,
152 if (!NT_STATUS_IS_OK(result
)) {
153 fprintf(stderr
, "could not initialise lsa pipe. Error was %s\n", nt_errstr(result
) );
157 result
= rpccli_lsa_open_policy(lsapipe
, mem_ctx
, True
,
158 SEC_FLAG_MAXIMUM_ALLOWED
,
160 if (!NT_STATUS_IS_OK(result
)) {
164 result
= rpccli_lsa_QueryInfoPolicy(lsapipe
, mem_ctx
,
166 LSA_POLICY_INFO_ACCOUNT_DOMAIN
,
168 if (!NT_STATUS_IS_OK(result
)) {
172 got_domain_sid
= True
;
173 sid_copy(&domain_sid
, info
->account_domain
.sid
);
175 rpccli_lsa_Close(lsapipe
, mem_ctx
, &pol
);
176 TALLOC_FREE(lsapipe
);
177 talloc_destroy(mem_ctx
);
184 TALLOC_FREE(lsapipe
);
187 fprintf(stderr
, "could not obtain sid for domain %s\n", cli
->domain
);
189 if (!NT_STATUS_IS_OK(result
)) {
190 fprintf(stderr
, "error: %s\n", nt_errstr(result
));
196 /* List the available commands on a given pipe */
198 static NTSTATUS
cmd_listcommands(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
199 int argc
, const char **argv
)
201 struct cmd_list
*tmp
;
202 struct cmd_set
*tmp_set
;
208 printf("Usage: %s <pipe>\n", argv
[0]);
212 /* Help on one command */
214 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
)
216 tmp_set
= tmp
->cmd_set
;
218 if (!StrCaseCmp(argv
[1], tmp_set
->name
))
220 printf("Available commands on the %s pipe:\n\n", tmp_set
->name
);
224 while(tmp_set
->name
) {
225 printf("%30s", tmp_set
->name
);
232 /* drop out of the loop */
241 /* Display help on commands */
243 static NTSTATUS
cmd_help(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
244 int argc
, const char **argv
)
246 struct cmd_list
*tmp
;
247 struct cmd_set
*tmp_set
;
252 printf("Usage: %s [command]\n", argv
[0]);
256 /* Help on one command */
259 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
261 tmp_set
= tmp
->cmd_set
;
263 while(tmp_set
->name
) {
264 if (strequal(argv
[1], tmp_set
->name
)) {
265 if (tmp_set
->usage
&&
267 printf("%s\n", tmp_set
->usage
);
269 printf("No help for %s\n", tmp_set
->name
);
278 printf("No such command: %s\n", argv
[1]);
282 /* List all commands */
284 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
286 tmp_set
= tmp
->cmd_set
;
288 while(tmp_set
->name
) {
290 printf("%15s\t\t%s\n", tmp_set
->name
,
291 tmp_set
->description
? tmp_set
->description
:
301 /* Change the debug level */
303 static NTSTATUS
cmd_debuglevel(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
304 int argc
, const char **argv
)
307 printf("Usage: %s [debuglevel]\n", argv
[0]);
312 DEBUGLEVEL
= atoi(argv
[1]);
315 printf("debuglevel is %d\n", DEBUGLEVEL
);
320 static NTSTATUS
cmd_quit(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
321 int argc
, const char **argv
)
324 return NT_STATUS_OK
; /* NOTREACHED */
327 static NTSTATUS
cmd_set_ss_level(void)
329 struct cmd_list
*tmp
;
331 /* Close any existing connections not at this level. */
333 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
334 struct cmd_set
*tmp_set
;
336 for (tmp_set
= tmp
->cmd_set
; tmp_set
->name
; tmp_set
++) {
337 if (tmp_set
->rpc_pipe
== NULL
) {
341 if ((tmp_set
->rpc_pipe
->auth
->auth_type
342 != pipe_default_auth_type
)
343 || (tmp_set
->rpc_pipe
->auth
->auth_level
344 != pipe_default_auth_level
)) {
345 TALLOC_FREE(tmp_set
->rpc_pipe
);
346 tmp_set
->rpc_pipe
= NULL
;
353 static NTSTATUS
cmd_sign(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
354 int argc
, const char **argv
)
356 const char *type
= "NTLMSSP";
358 pipe_default_auth_level
= PIPE_AUTH_LEVEL_INTEGRITY
;
359 pipe_default_auth_type
= PIPE_AUTH_TYPE_NTLMSSP
;
362 printf("Usage: %s [NTLMSSP|NTLMSSP_SPNEGO|SCHANNEL]\n", argv
[0]);
368 if (strequal(type
, "NTLMSSP")) {
369 pipe_default_auth_type
= PIPE_AUTH_TYPE_NTLMSSP
;
370 } else if (strequal(type
, "NTLMSSP_SPNEGO")) {
371 pipe_default_auth_type
= PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
;
372 } else if (strequal(type
, "SCHANNEL")) {
373 pipe_default_auth_type
= PIPE_AUTH_TYPE_SCHANNEL
;
375 printf("unknown type %s\n", type
);
376 return NT_STATUS_INVALID_LEVEL
;
380 d_printf("Setting %s - sign\n", type
);
382 return cmd_set_ss_level();
385 static NTSTATUS
cmd_seal(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
386 int argc
, const char **argv
)
388 const char *type
= "NTLMSSP";
390 pipe_default_auth_level
= PIPE_AUTH_LEVEL_PRIVACY
;
391 pipe_default_auth_type
= PIPE_AUTH_TYPE_NTLMSSP
;
394 printf("Usage: %s [NTLMSSP|NTLMSSP_SPNEGO|SCHANNEL]\n", argv
[0]);
400 if (strequal(type
, "NTLMSSP")) {
401 pipe_default_auth_type
= PIPE_AUTH_TYPE_NTLMSSP
;
402 } else if (strequal(type
, "NTLMSSP_SPNEGO")) {
403 pipe_default_auth_type
= PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
;
404 } else if (strequal(type
, "SCHANNEL")) {
405 pipe_default_auth_type
= PIPE_AUTH_TYPE_SCHANNEL
;
407 printf("unknown type %s\n", type
);
408 return NT_STATUS_INVALID_LEVEL
;
412 d_printf("Setting %s - sign and seal\n", type
);
414 return cmd_set_ss_level();
417 static NTSTATUS
cmd_timeout(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
418 int argc
, const char **argv
)
420 struct cmd_list
*tmp
;
423 printf("Usage: %s timeout\n", argv
[0]);
428 timeout
= atoi(argv
[1]);
430 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
432 struct cmd_set
*tmp_set
;
434 for (tmp_set
= tmp
->cmd_set
; tmp_set
->name
; tmp_set
++) {
435 if (tmp_set
->rpc_pipe
== NULL
) {
439 rpccli_set_timeout(tmp_set
->rpc_pipe
, timeout
);
444 printf("timeout is %d\n", timeout
);
450 static NTSTATUS
cmd_none(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
451 int argc
, const char **argv
)
453 pipe_default_auth_level
= PIPE_AUTH_LEVEL_NONE
;
454 pipe_default_auth_type
= PIPE_AUTH_TYPE_NONE
;
456 return cmd_set_ss_level();
459 static NTSTATUS
cmd_schannel(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
460 int argc
, const char **argv
)
462 d_printf("Setting schannel - sign and seal\n");
463 pipe_default_auth_level
= PIPE_AUTH_LEVEL_PRIVACY
;
464 pipe_default_auth_type
= PIPE_AUTH_TYPE_SCHANNEL
;
466 return cmd_set_ss_level();
469 static NTSTATUS
cmd_schannel_sign(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
470 int argc
, const char **argv
)
472 d_printf("Setting schannel - sign only\n");
473 pipe_default_auth_level
= PIPE_AUTH_LEVEL_INTEGRITY
;
474 pipe_default_auth_type
= PIPE_AUTH_TYPE_SCHANNEL
;
476 return cmd_set_ss_level();
480 /* Built in rpcclient commands */
482 static struct cmd_set rpcclient_commands
[] = {
484 { "GENERAL OPTIONS" },
486 { "help", RPC_RTYPE_NTSTATUS
, cmd_help
, NULL
, NULL
, NULL
, "Get help on commands", "[command]" },
487 { "?", RPC_RTYPE_NTSTATUS
, cmd_help
, NULL
, NULL
, NULL
, "Get help on commands", "[command]" },
488 { "debuglevel", RPC_RTYPE_NTSTATUS
, cmd_debuglevel
, NULL
, NULL
, NULL
, "Set debug level", "level" },
489 { "debug", RPC_RTYPE_NTSTATUS
, cmd_debuglevel
, NULL
, NULL
, NULL
, "Set debug level", "level" },
490 { "list", RPC_RTYPE_NTSTATUS
, cmd_listcommands
, NULL
, NULL
, NULL
, "List available commands on <pipe>", "pipe" },
491 { "exit", RPC_RTYPE_NTSTATUS
, cmd_quit
, NULL
, NULL
, NULL
, "Exit program", "" },
492 { "quit", RPC_RTYPE_NTSTATUS
, cmd_quit
, NULL
, NULL
, NULL
, "Exit program", "" },
493 { "sign", RPC_RTYPE_NTSTATUS
, cmd_sign
, NULL
, NULL
, NULL
, "Force RPC pipe connections to be signed", "" },
494 { "seal", RPC_RTYPE_NTSTATUS
, cmd_seal
, NULL
, NULL
, NULL
, "Force RPC pipe connections to be sealed", "" },
495 { "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.", "" },
496 { "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.", "" },
497 { "timeout", RPC_RTYPE_NTSTATUS
, cmd_timeout
, NULL
, NULL
, NULL
, "Set timeout (in milliseonds) for RPC operations", "" },
498 { "none", RPC_RTYPE_NTSTATUS
, cmd_none
, NULL
, NULL
, NULL
, "Force RPC pipe connections to have no special properties", "" },
503 static struct cmd_set separator_command
[] = {
504 { "---------------", MAX_RPC_RETURN_TYPE
, NULL
, NULL
, NULL
, NULL
, "----------------------" },
509 /* Various pipe commands */
511 extern struct cmd_set lsarpc_commands
[];
512 extern struct cmd_set samr_commands
[];
513 extern struct cmd_set spoolss_commands
[];
514 extern struct cmd_set netlogon_commands
[];
515 extern struct cmd_set srvsvc_commands
[];
516 extern struct cmd_set dfs_commands
[];
517 extern struct cmd_set ds_commands
[];
518 extern struct cmd_set echo_commands
[];
519 extern struct cmd_set epmapper_commands
[];
520 extern struct cmd_set shutdown_commands
[];
521 extern struct cmd_set test_commands
[];
522 extern struct cmd_set wkssvc_commands
[];
523 extern struct cmd_set ntsvcs_commands
[];
524 extern struct cmd_set drsuapi_commands
[];
525 extern struct cmd_set eventlog_commands
[];
527 static struct cmd_set
*rpcclient_command_list
[] = {
547 static void add_command_set(struct cmd_set
*cmd_set
)
549 struct cmd_list
*entry
;
551 if (!(entry
= SMB_MALLOC_P(struct cmd_list
))) {
552 DEBUG(0, ("out of memory\n"));
558 entry
->cmd_set
= cmd_set
;
559 DLIST_ADD(cmd_list
, entry
);
564 * Call an rpcclient function, passing an argv array.
566 * @param cmd Command to run, as a single string.
568 static NTSTATUS
do_cmd(struct cli_state
*cli
,
569 struct user_auth_info
*auth_info
,
570 struct cmd_set
*cmd_entry
,
571 int argc
, char **argv
)
580 if (!(mem_ctx
= talloc_init("do_cmd"))) {
581 DEBUG(0, ("talloc_init() failed\n"));
582 return NT_STATUS_NO_MEMORY
;
587 if ((cmd_entry
->interface
!= NULL
) && (cmd_entry
->rpc_pipe
== NULL
)) {
588 switch (pipe_default_auth_type
) {
589 case PIPE_AUTH_TYPE_NONE
:
590 ntresult
= cli_rpc_pipe_open_noauth(
591 cli
, cmd_entry
->interface
,
592 &cmd_entry
->rpc_pipe
);
594 case PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
:
595 ntresult
= cli_rpc_pipe_open_spnego_ntlmssp(
596 cli
, cmd_entry
->interface
,
598 pipe_default_auth_level
,
600 get_cmdline_auth_info_username(auth_info
),
601 get_cmdline_auth_info_password(auth_info
),
602 &cmd_entry
->rpc_pipe
);
604 case PIPE_AUTH_TYPE_NTLMSSP
:
605 ntresult
= cli_rpc_pipe_open_ntlmssp(
606 cli
, cmd_entry
->interface
,
608 pipe_default_auth_level
,
610 get_cmdline_auth_info_username(auth_info
),
611 get_cmdline_auth_info_password(auth_info
),
612 &cmd_entry
->rpc_pipe
);
614 case PIPE_AUTH_TYPE_SCHANNEL
:
615 ntresult
= cli_rpc_pipe_open_schannel(
616 cli
, cmd_entry
->interface
,
618 pipe_default_auth_level
,
620 &cmd_entry
->rpc_pipe
);
623 DEBUG(0, ("Could not initialise %s. Invalid "
625 get_pipe_name_from_iface(
626 cmd_entry
->interface
),
627 pipe_default_auth_type
));
628 return NT_STATUS_UNSUCCESSFUL
;
630 if (!NT_STATUS_IS_OK(ntresult
)) {
631 DEBUG(0, ("Could not initialise %s. Error was %s\n",
632 get_pipe_name_from_iface(
633 cmd_entry
->interface
),
634 nt_errstr(ntresult
) ));
638 if (ndr_syntax_id_equal(cmd_entry
->interface
,
639 &ndr_table_netlogon
.syntax_id
)) {
640 uint32_t neg_flags
= NETLOGON_NEG_AUTH2_ADS_FLAGS
;
641 uint32 sec_channel_type
;
642 uchar trust_password
[16];
644 if (!secrets_fetch_trust_account_password(lp_workgroup(),
646 NULL
, &sec_channel_type
)) {
647 return NT_STATUS_UNSUCCESSFUL
;
650 ntresult
= rpccli_netlogon_setup_creds(cmd_entry
->rpc_pipe
,
651 cli
->desthost
, /* server name */
652 lp_workgroup(), /* domain */
653 global_myname(), /* client name */
654 global_myname(), /* machine account name */
659 if (!NT_STATUS_IS_OK(ntresult
)) {
660 DEBUG(0, ("Could not initialise credentials for %s.\n",
661 get_pipe_name_from_iface(
662 cmd_entry
->interface
)));
670 if ( cmd_entry
->returntype
== RPC_RTYPE_NTSTATUS
) {
671 ntresult
= cmd_entry
->ntfn(cmd_entry
->rpc_pipe
, mem_ctx
, argc
, (const char **) argv
);
672 if (!NT_STATUS_IS_OK(ntresult
)) {
673 printf("result was %s\n", nt_errstr(ntresult
));
676 wresult
= cmd_entry
->wfn(cmd_entry
->rpc_pipe
, mem_ctx
, argc
, (const char **) argv
);
677 /* print out the DOS error */
678 if (!W_ERROR_IS_OK(wresult
)) {
679 printf( "result was %s\n", win_errstr(wresult
));
681 ntresult
= W_ERROR_IS_OK(wresult
)?NT_STATUS_OK
:NT_STATUS_UNSUCCESSFUL
;
686 talloc_destroy(mem_ctx
);
693 * Process a command entered at the prompt or as part of -c
695 * @returns The NTSTATUS from running the command.
697 static NTSTATUS
process_cmd(struct user_auth_info
*auth_info
,
698 struct cli_state
*cli
, char *cmd
)
700 struct cmd_list
*temp_list
;
701 NTSTATUS result
= NT_STATUS_OK
;
706 if ((ret
= poptParseArgvString(cmd
, &argc
, (const char ***) &argv
)) != 0) {
707 fprintf(stderr
, "rpcclient: %s\n", poptStrerror(ret
));
708 return NT_STATUS_UNSUCCESSFUL
;
712 /* Walk through a dlist of arrays of commands. */
713 for (temp_list
= cmd_list
; temp_list
; temp_list
= temp_list
->next
) {
714 struct cmd_set
*temp_set
= temp_list
->cmd_set
;
716 while (temp_set
->name
) {
717 if (strequal(argv
[0], temp_set
->name
)) {
718 if (!(temp_set
->returntype
== RPC_RTYPE_NTSTATUS
&& temp_set
->ntfn
) &&
719 !(temp_set
->returntype
== RPC_RTYPE_WERROR
&& temp_set
->wfn
)) {
720 fprintf (stderr
, "Invalid command\n");
724 result
= do_cmd(cli
, auth_info
, temp_set
,
734 printf("command not found: %s\n", argv
[0]);
739 if (!NT_STATUS_IS_OK(result)) {
740 printf("result was %s\n", nt_errstr(result));
744 /* NOTE: popt allocates the whole argv, including the
745 * strings, as a single block. So a single free is
746 * enough to release it -- we don't free the
747 * individual strings. rtfm. */
756 int main(int argc
, char *argv
[])
759 static char *cmdstr
= NULL
;
761 struct cli_state
*cli
= NULL
;
762 static char *opt_ipaddr
=NULL
;
763 struct cmd_set
**cmd_set
;
764 struct sockaddr_storage server_ss
;
766 static int opt_port
= 0;
767 fstring new_workgroup
;
769 TALLOC_CTX
*frame
= talloc_stackframe();
772 /* make sure the vars that get altered (4th field) are in
773 a fixed location or certain compilers complain */
775 struct poptOption long_options
[] = {
777 {"command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated cmds", "COMMANDS"},
778 {"dest-ip", 'I', POPT_ARG_STRING
, &opt_ipaddr
, 'I', "Specify destination IP address", "IP"},
779 {"port", 'p', POPT_ARG_INT
, &opt_port
, 'p', "Specify port number", "PORT"},
781 POPT_COMMON_CONNECTION
782 POPT_COMMON_CREDENTIALS
788 zero_sockaddr(&server_ss
);
792 /* the following functions are part of the Samba debugging
793 facilities. See lib/debug.c */
794 setup_logging("rpcclient", True
);
796 rpcclient_auth_info
= user_auth_info_init(frame
);
797 if (rpcclient_auth_info
== NULL
) {
800 popt_common_set_auth_info(rpcclient_auth_info
);
804 pc
= poptGetContext("rpcclient", argc
, (const char **) argv
,
808 poptPrintHelp(pc
, stderr
, 0);
812 while((opt
= poptGetNextOpt(pc
)) != -1) {
816 if (!interpret_string_addr(&server_ss
,
819 fprintf(stderr
, "%s not a valid IP address\n",
827 /* Get server as remaining unparsed argument. Print usage if more
828 than one unparsed argument is present. */
830 server
= poptGetArg(pc
);
832 if (!server
|| poptGetArg(pc
)) {
833 poptPrintHelp(pc
, stderr
, 0);
847 /* save the workgroup...
849 FIXME!! do we need to do this for other options as well
850 (or maybe a generic way to keep lp_load() from overwriting
853 fstrcpy( new_workgroup
, lp_workgroup() );
855 /* Load smb.conf file */
857 if (!lp_load(get_dyn_CONFIGFILE(),True
,False
,False
,True
))
858 fprintf(stderr
, "Can't load %s\n", get_dyn_CONFIGFILE());
860 if ( strlen(new_workgroup
) != 0 )
861 set_global_myworkgroup( new_workgroup
);
865 * from stdin if necessary
868 if (get_cmdline_auth_info_use_machine_account(rpcclient_auth_info
) &&
869 !set_cmdline_auth_info_machine_account_creds(rpcclient_auth_info
)) {
874 set_cmdline_auth_info_getpass(rpcclient_auth_info
);
876 if ((server
[0] == '/' && server
[1] == '/') ||
877 (server
[0] == '\\' && server
[1] == '\\')) {
881 if (get_cmdline_auth_info_use_kerberos(rpcclient_auth_info
)) {
882 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
|
883 CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS
;
887 nt_status
= cli_full_connection(&cli
, global_myname(), server
,
888 opt_ipaddr
? &server_ss
: NULL
, opt_port
,
890 get_cmdline_auth_info_username(rpcclient_auth_info
),
892 get_cmdline_auth_info_password(rpcclient_auth_info
),
894 get_cmdline_auth_info_signing_state(rpcclient_auth_info
),
897 if (!NT_STATUS_IS_OK(nt_status
)) {
898 DEBUG(0,("Cannot connect to server. Error was %s\n", nt_errstr(nt_status
)));
903 if (get_cmdline_auth_info_smb_encrypt(rpcclient_auth_info
)) {
904 nt_status
= cli_cm_force_encryption(cli
,
905 get_cmdline_auth_info_username(rpcclient_auth_info
),
906 get_cmdline_auth_info_password(rpcclient_auth_info
),
909 if (!NT_STATUS_IS_OK(nt_status
)) {
915 #if 0 /* COMMENT OUT FOR TESTING */
916 memset(cmdline_auth_info
.password
,'X',sizeof(cmdline_auth_info
.password
));
919 /* Load command lists */
921 timeout
= cli_set_timeout(cli
, 10000);
923 cmd_set
= rpcclient_command_list
;
926 add_command_set(*cmd_set
);
927 add_command_set(separator_command
);
931 fetch_machine_sid(cli
);
933 /* Do anything specified with -c */
934 if (cmdstr
&& cmdstr
[0]) {
940 while((cmd
=next_command(&p
)) != NULL
) {
941 NTSTATUS cmd_result
= process_cmd(rpcclient_auth_info
, cli
, cmd
);
943 result
= NT_STATUS_IS_ERR(cmd_result
);
949 /* Loop around accepting commands */
954 line
= smb_readline("rpcclient $> ", NULL
, completion_fn
);
960 process_cmd(rpcclient_auth_info
, cli
, line
);