rpcclient: Use DCERPC_AUTH_LEVEL_CONNECT if no sign/seal is set for ntlmssp
[Samba/vl.git] / source3 / rpcclient / rpcclient.c
blob675fb1d947c72b558b2340914d8c6a3a7e4b1f8b
1 /*
2 Unix SMB/CIFS implementation.
3 RPC pipe client
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/>.
22 #include "includes.h"
23 #include "rpcclient.h"
24 #include "../libcli/auth/libcli_auth.h"
25 #include "../librpc/gen_ndr/cli_lsa.h"
26 #include "rpc_client/cli_lsarpc.h"
27 #include "../librpc/gen_ndr/ndr_netlogon.h"
28 #include "rpc_client/cli_netlogon.h"
30 struct dom_sid domain_sid;
32 static enum dcerpc_AuthType pipe_default_auth_type = DCERPC_AUTH_TYPE_NONE;
33 static enum pipe_auth_type_spnego pipe_default_auth_spnego_type = 0;
34 static enum dcerpc_AuthLevel pipe_default_auth_level = DCERPC_AUTH_LEVEL_NONE;
35 static unsigned int timeout = 0;
36 static enum dcerpc_transport_t default_transport = NCACN_NP;
38 struct user_auth_info *rpcclient_auth_info;
40 /* List to hold groups of commands.
42 * Commands are defined in a list of arrays: arrays are easy to
43 * statically declare, and lists are easier to dynamically extend.
46 static struct cmd_list {
47 struct cmd_list *prev, *next;
48 struct cmd_set *cmd_set;
49 } *cmd_list;
51 /****************************************************************************
52 handle completion of commands for readline
53 ****************************************************************************/
54 static char **completion_fn(const char *text, int start, int end)
56 #define MAX_COMPLETIONS 100
57 char **matches;
58 int i, count=0;
59 struct cmd_list *commands = cmd_list;
61 #if 0 /* JERRY */
62 /* FIXME!!! -- what to do when completing argument? */
63 /* for words not at the start of the line fallback
64 to filename completion */
65 if (start)
66 return NULL;
67 #endif
69 /* make sure we have a list of valid commands */
70 if (!commands) {
71 return NULL;
74 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
75 if (!matches) {
76 return NULL;
79 matches[count++] = SMB_STRDUP(text);
80 if (!matches[0]) {
81 SAFE_FREE(matches);
82 return NULL;
85 while (commands && count < MAX_COMPLETIONS-1) {
86 if (!commands->cmd_set) {
87 break;
90 for (i=0; commands->cmd_set[i].name; i++) {
91 if ((strncmp(text, commands->cmd_set[i].name, strlen(text)) == 0) &&
92 (( commands->cmd_set[i].returntype == RPC_RTYPE_NTSTATUS &&
93 commands->cmd_set[i].ntfn ) ||
94 ( commands->cmd_set[i].returntype == RPC_RTYPE_WERROR &&
95 commands->cmd_set[i].wfn))) {
96 matches[count] = SMB_STRDUP(commands->cmd_set[i].name);
97 if (!matches[count]) {
98 for (i = 0; i < count; i++) {
99 SAFE_FREE(matches[count]);
101 SAFE_FREE(matches);
102 return NULL;
104 count++;
107 commands = commands->next;
111 if (count == 2) {
112 SAFE_FREE(matches[0]);
113 matches[0] = SMB_STRDUP(matches[1]);
115 matches[count] = NULL;
116 return matches;
119 static char *next_command (char **cmdstr)
121 char *command;
122 char *p;
124 if (!cmdstr || !(*cmdstr))
125 return NULL;
127 p = strchr_m(*cmdstr, ';');
128 if (p)
129 *p = '\0';
130 command = SMB_STRDUP(*cmdstr);
131 if (p)
132 *cmdstr = p + 1;
133 else
134 *cmdstr = NULL;
136 return command;
139 /* Fetch the SID for this computer */
141 static void fetch_machine_sid(struct cli_state *cli)
143 struct policy_handle pol;
144 NTSTATUS result = NT_STATUS_OK;
145 static bool got_domain_sid;
146 TALLOC_CTX *mem_ctx;
147 struct rpc_pipe_client *lsapipe = NULL;
148 union lsa_PolicyInformation *info = NULL;
150 if (got_domain_sid) return;
152 if (!(mem_ctx=talloc_init("fetch_machine_sid"))) {
153 DEBUG(0,("fetch_machine_sid: talloc_init returned NULL!\n"));
154 goto error;
157 result = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
158 &lsapipe);
159 if (!NT_STATUS_IS_OK(result)) {
160 fprintf(stderr, "could not initialise lsa pipe. Error was %s\n", nt_errstr(result) );
161 goto error;
164 result = rpccli_lsa_open_policy(lsapipe, mem_ctx, True,
165 SEC_FLAG_MAXIMUM_ALLOWED,
166 &pol);
167 if (!NT_STATUS_IS_OK(result)) {
168 goto error;
171 result = rpccli_lsa_QueryInfoPolicy(lsapipe, mem_ctx,
172 &pol,
173 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
174 &info);
175 if (!NT_STATUS_IS_OK(result)) {
176 goto error;
179 got_domain_sid = True;
180 sid_copy(&domain_sid, info->account_domain.sid);
182 rpccli_lsa_Close(lsapipe, mem_ctx, &pol);
183 TALLOC_FREE(lsapipe);
184 talloc_destroy(mem_ctx);
186 return;
188 error:
190 if (lsapipe) {
191 TALLOC_FREE(lsapipe);
194 fprintf(stderr, "could not obtain sid for domain %s\n", cli->domain);
196 if (!NT_STATUS_IS_OK(result)) {
197 fprintf(stderr, "error: %s\n", nt_errstr(result));
200 exit(1);
203 /* List the available commands on a given pipe */
205 static NTSTATUS cmd_listcommands(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
206 int argc, const char **argv)
208 struct cmd_list *tmp;
209 struct cmd_set *tmp_set;
210 int i;
212 /* Usage */
214 if (argc != 2) {
215 printf("Usage: %s <pipe>\n", argv[0]);
216 return NT_STATUS_OK;
219 /* Help on one command */
221 for (tmp = cmd_list; tmp; tmp = tmp->next)
223 tmp_set = tmp->cmd_set;
225 if (!StrCaseCmp(argv[1], tmp_set->name))
227 printf("Available commands on the %s pipe:\n\n", tmp_set->name);
229 i = 0;
230 tmp_set++;
231 while(tmp_set->name) {
232 printf("%30s", tmp_set->name);
233 tmp_set++;
234 i++;
235 if (i%3 == 0)
236 printf("\n");
239 /* drop out of the loop */
240 break;
243 printf("\n\n");
245 return NT_STATUS_OK;
248 /* Display help on commands */
250 static NTSTATUS cmd_help(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
251 int argc, const char **argv)
253 struct cmd_list *tmp;
254 struct cmd_set *tmp_set;
256 /* Usage */
258 if (argc > 2) {
259 printf("Usage: %s [command]\n", argv[0]);
260 return NT_STATUS_OK;
263 /* Help on one command */
265 if (argc == 2) {
266 for (tmp = cmd_list; tmp; tmp = tmp->next) {
268 tmp_set = tmp->cmd_set;
270 while(tmp_set->name) {
271 if (strequal(argv[1], tmp_set->name)) {
272 if (tmp_set->usage &&
273 tmp_set->usage[0])
274 printf("%s\n", tmp_set->usage);
275 else
276 printf("No help for %s\n", tmp_set->name);
278 return NT_STATUS_OK;
281 tmp_set++;
285 printf("No such command: %s\n", argv[1]);
286 return NT_STATUS_OK;
289 /* List all commands */
291 for (tmp = cmd_list; tmp; tmp = tmp->next) {
293 tmp_set = tmp->cmd_set;
295 while(tmp_set->name) {
297 printf("%15s\t\t%s\n", tmp_set->name,
298 tmp_set->description ? tmp_set->description:
299 "");
301 tmp_set++;
305 return NT_STATUS_OK;
308 /* Change the debug level */
310 static NTSTATUS cmd_debuglevel(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
311 int argc, const char **argv)
313 if (argc > 2) {
314 printf("Usage: %s [debuglevel]\n", argv[0]);
315 return NT_STATUS_OK;
318 if (argc == 2) {
319 DEBUGLEVEL = atoi(argv[1]);
322 printf("debuglevel is %d\n", DEBUGLEVEL);
324 return NT_STATUS_OK;
327 static NTSTATUS cmd_quit(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
328 int argc, const char **argv)
330 exit(0);
331 return NT_STATUS_OK; /* NOTREACHED */
334 static NTSTATUS cmd_set_ss_level(void)
336 struct cmd_list *tmp;
338 /* Close any existing connections not at this level. */
340 for (tmp = cmd_list; tmp; tmp = tmp->next) {
341 struct cmd_set *tmp_set;
343 for (tmp_set = tmp->cmd_set; tmp_set->name; tmp_set++) {
344 if (tmp_set->rpc_pipe == NULL) {
345 continue;
348 if ((tmp_set->rpc_pipe->auth->auth_type
349 != pipe_default_auth_type)
350 || (tmp_set->rpc_pipe->auth->auth_level
351 != pipe_default_auth_level)) {
352 TALLOC_FREE(tmp_set->rpc_pipe);
353 tmp_set->rpc_pipe = NULL;
357 return NT_STATUS_OK;
360 static NTSTATUS cmd_set_transport(void)
362 struct cmd_list *tmp;
364 /* Close any existing connections not at this level. */
366 for (tmp = cmd_list; tmp; tmp = tmp->next) {
367 struct cmd_set *tmp_set;
369 for (tmp_set = tmp->cmd_set; tmp_set->name; tmp_set++) {
370 if (tmp_set->rpc_pipe == NULL) {
371 continue;
374 if (tmp_set->rpc_pipe->transport->transport != default_transport) {
375 TALLOC_FREE(tmp_set->rpc_pipe);
376 tmp_set->rpc_pipe = NULL;
380 return NT_STATUS_OK;
383 static NTSTATUS cmd_sign(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
384 int argc, const char **argv)
386 const char *type = "NTLMSSP";
388 pipe_default_auth_level = DCERPC_AUTH_LEVEL_INTEGRITY;
389 pipe_default_auth_type = DCERPC_AUTH_TYPE_NTLMSSP;
391 if (argc > 2) {
392 printf("Usage: %s [NTLMSSP|NTLMSSP_SPNEGO|SCHANNEL]\n", argv[0]);
393 return NT_STATUS_OK;
396 if (argc == 2) {
397 type = argv[1];
398 if (strequal(type, "NTLMSSP")) {
399 pipe_default_auth_type = DCERPC_AUTH_TYPE_NTLMSSP;
400 } else if (strequal(type, "NTLMSSP_SPNEGO")) {
401 pipe_default_auth_type = DCERPC_AUTH_TYPE_SPNEGO;
402 pipe_default_auth_spnego_type = PIPE_AUTH_TYPE_SPNEGO_NTLMSSP;
403 } else if (strequal(type, "SCHANNEL")) {
404 pipe_default_auth_type = DCERPC_AUTH_TYPE_SCHANNEL;
405 } else {
406 printf("unknown type %s\n", type);
407 printf("Usage: %s [NTLMSSP|NTLMSSP_SPNEGO|SCHANNEL]\n", argv[0]);
408 return NT_STATUS_INVALID_LEVEL;
412 d_printf("Setting %s - sign\n", type);
414 return cmd_set_ss_level();
417 static NTSTATUS cmd_seal(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
418 int argc, const char **argv)
420 const char *type = "NTLMSSP";
422 pipe_default_auth_level = DCERPC_AUTH_LEVEL_PRIVACY;
423 pipe_default_auth_type = DCERPC_AUTH_TYPE_NTLMSSP;
425 if (argc > 2) {
426 printf("Usage: %s [NTLMSSP|NTLMSSP_SPNEGO|SCHANNEL]\n", argv[0]);
427 return NT_STATUS_OK;
430 if (argc == 2) {
431 type = argv[1];
432 if (strequal(type, "NTLMSSP")) {
433 pipe_default_auth_type = DCERPC_AUTH_TYPE_NTLMSSP;
434 } else if (strequal(type, "NTLMSSP_SPNEGO")) {
435 pipe_default_auth_type = DCERPC_AUTH_TYPE_SPNEGO;
436 pipe_default_auth_spnego_type = PIPE_AUTH_TYPE_SPNEGO_NTLMSSP;
437 } else if (strequal(type, "SCHANNEL")) {
438 pipe_default_auth_type = DCERPC_AUTH_TYPE_SCHANNEL;
439 } else {
440 printf("unknown type %s\n", type);
441 printf("Usage: %s [NTLMSSP|NTLMSSP_SPNEGO|SCHANNEL]\n", argv[0]);
442 return NT_STATUS_INVALID_LEVEL;
446 d_printf("Setting %s - sign and seal\n", type);
448 return cmd_set_ss_level();
451 static NTSTATUS cmd_timeout(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
452 int argc, const char **argv)
454 struct cmd_list *tmp;
456 if (argc > 2) {
457 printf("Usage: %s timeout\n", argv[0]);
458 return NT_STATUS_OK;
461 if (argc == 2) {
462 timeout = atoi(argv[1]);
464 for (tmp = cmd_list; tmp; tmp = tmp->next) {
466 struct cmd_set *tmp_set;
468 for (tmp_set = tmp->cmd_set; tmp_set->name; tmp_set++) {
469 if (tmp_set->rpc_pipe == NULL) {
470 continue;
473 rpccli_set_timeout(tmp_set->rpc_pipe, timeout);
478 printf("timeout is %d\n", timeout);
480 return NT_STATUS_OK;
484 static NTSTATUS cmd_none(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
485 int argc, const char **argv)
487 pipe_default_auth_level = DCERPC_AUTH_LEVEL_NONE;
488 pipe_default_auth_type = DCERPC_AUTH_TYPE_NONE;
489 pipe_default_auth_spnego_type = PIPE_AUTH_TYPE_SPNEGO_NONE;
491 return cmd_set_ss_level();
494 static NTSTATUS cmd_schannel(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
495 int argc, const char **argv)
497 d_printf("Setting schannel - sign and seal\n");
498 pipe_default_auth_level = DCERPC_AUTH_LEVEL_PRIVACY;
499 pipe_default_auth_type = DCERPC_AUTH_TYPE_SCHANNEL;
501 return cmd_set_ss_level();
504 static NTSTATUS cmd_schannel_sign(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
505 int argc, const char **argv)
507 d_printf("Setting schannel - sign only\n");
508 pipe_default_auth_level = DCERPC_AUTH_LEVEL_INTEGRITY;
509 pipe_default_auth_type = DCERPC_AUTH_TYPE_SCHANNEL;
511 return cmd_set_ss_level();
514 static NTSTATUS cmd_choose_transport(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
515 int argc, const char **argv)
517 NTSTATUS status;
519 if (argc != 2) {
520 printf("Usage: %s [NCACN_NP|NCACN_IP_TCP]\n", argv[0]);
521 return NT_STATUS_OK;
524 if (strequal(argv[1], "NCACN_NP")) {
525 default_transport = NCACN_NP;
526 } else if (strequal(argv[1], "NCACN_IP_TCP")) {
527 default_transport = NCACN_IP_TCP;
528 } else {
529 printf("transport type: %s unknown or not supported\n", argv[1]);
530 return NT_STATUS_NOT_SUPPORTED;
533 status = cmd_set_transport();
534 if (!NT_STATUS_IS_OK(status)) {
535 return status;
538 printf("default transport is now: %s\n", argv[1]);
540 return NT_STATUS_OK;
543 /* Built in rpcclient commands */
545 static struct cmd_set rpcclient_commands[] = {
547 { "GENERAL OPTIONS" },
549 { "help", RPC_RTYPE_NTSTATUS, cmd_help, NULL, NULL, NULL, "Get help on commands", "[command]" },
550 { "?", RPC_RTYPE_NTSTATUS, cmd_help, NULL, NULL, NULL, "Get help on commands", "[command]" },
551 { "debuglevel", RPC_RTYPE_NTSTATUS, cmd_debuglevel, NULL, NULL, NULL, "Set debug level", "level" },
552 { "debug", RPC_RTYPE_NTSTATUS, cmd_debuglevel, NULL, NULL, NULL, "Set debug level", "level" },
553 { "list", RPC_RTYPE_NTSTATUS, cmd_listcommands, NULL, NULL, NULL, "List available commands on <pipe>", "pipe" },
554 { "exit", RPC_RTYPE_NTSTATUS, cmd_quit, NULL, NULL, NULL, "Exit program", "" },
555 { "quit", RPC_RTYPE_NTSTATUS, cmd_quit, NULL, NULL, NULL, "Exit program", "" },
556 { "sign", RPC_RTYPE_NTSTATUS, cmd_sign, NULL, NULL, NULL, "Force RPC pipe connections to be signed", "" },
557 { "seal", RPC_RTYPE_NTSTATUS, cmd_seal, NULL, NULL, NULL, "Force RPC pipe connections to be sealed", "" },
558 { "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.", "" },
559 { "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.", "" },
560 { "timeout", RPC_RTYPE_NTSTATUS, cmd_timeout, NULL, NULL, NULL, "Set timeout (in milliseonds) for RPC operations", "" },
561 { "transport", RPC_RTYPE_NTSTATUS, cmd_choose_transport, NULL, NULL, NULL, "Choose ncacn transport for RPC operations", "" },
562 { "none", RPC_RTYPE_NTSTATUS, cmd_none, NULL, NULL, NULL, "Force RPC pipe connections to have no special properties", "" },
564 { NULL }
567 static struct cmd_set separator_command[] = {
568 { "---------------", MAX_RPC_RETURN_TYPE, NULL, NULL, NULL, NULL, "----------------------" },
569 { NULL }
573 /* Various pipe commands */
575 extern struct cmd_set lsarpc_commands[];
576 extern struct cmd_set samr_commands[];
577 extern struct cmd_set spoolss_commands[];
578 extern struct cmd_set netlogon_commands[];
579 extern struct cmd_set srvsvc_commands[];
580 extern struct cmd_set dfs_commands[];
581 extern struct cmd_set ds_commands[];
582 extern struct cmd_set echo_commands[];
583 extern struct cmd_set epmapper_commands[];
584 extern struct cmd_set shutdown_commands[];
585 extern struct cmd_set test_commands[];
586 extern struct cmd_set wkssvc_commands[];
587 extern struct cmd_set ntsvcs_commands[];
588 extern struct cmd_set drsuapi_commands[];
589 extern struct cmd_set eventlog_commands[];
591 static struct cmd_set *rpcclient_command_list[] = {
592 rpcclient_commands,
593 lsarpc_commands,
594 ds_commands,
595 samr_commands,
596 spoolss_commands,
597 netlogon_commands,
598 srvsvc_commands,
599 dfs_commands,
600 echo_commands,
601 epmapper_commands,
602 shutdown_commands,
603 test_commands,
604 wkssvc_commands,
605 ntsvcs_commands,
606 drsuapi_commands,
607 eventlog_commands,
608 NULL
611 static void add_command_set(struct cmd_set *cmd_set)
613 struct cmd_list *entry;
615 if (!(entry = SMB_MALLOC_P(struct cmd_list))) {
616 DEBUG(0, ("out of memory\n"));
617 return;
620 ZERO_STRUCTP(entry);
622 entry->cmd_set = cmd_set;
623 DLIST_ADD(cmd_list, entry);
628 * Call an rpcclient function, passing an argv array.
630 * @param cmd Command to run, as a single string.
632 static NTSTATUS do_cmd(struct cli_state *cli,
633 struct user_auth_info *auth_info,
634 struct cmd_set *cmd_entry,
635 struct dcerpc_binding *binding,
636 int argc, char **argv)
638 NTSTATUS ntresult;
639 WERROR wresult;
641 TALLOC_CTX *mem_ctx;
643 /* Create mem_ctx */
645 if (!(mem_ctx = talloc_init("do_cmd"))) {
646 DEBUG(0, ("talloc_init() failed\n"));
647 return NT_STATUS_NO_MEMORY;
650 /* Open pipe */
652 if ((cmd_entry->interface != NULL) && (cmd_entry->rpc_pipe == NULL)) {
653 switch (pipe_default_auth_type) {
654 case DCERPC_AUTH_TYPE_NONE:
655 ntresult = cli_rpc_pipe_open_noauth_transport(
656 cli, default_transport,
657 cmd_entry->interface,
658 &cmd_entry->rpc_pipe);
659 break;
660 case DCERPC_AUTH_TYPE_SPNEGO:
661 if (pipe_default_auth_spnego_type !=
662 PIPE_AUTH_TYPE_SPNEGO_NTLMSSP) {
663 DEBUG(0, ("Could not initialise %s. "
664 "Currently only NTLMSSP is "
665 "supported for SPNEGO\n",
666 get_pipe_name_from_syntax(
667 talloc_tos(),
668 cmd_entry->interface)));
669 return NT_STATUS_UNSUCCESSFUL;
671 ntresult = cli_rpc_pipe_open_spnego_ntlmssp(
672 cli, cmd_entry->interface,
673 default_transport,
674 pipe_default_auth_level,
675 get_cmdline_auth_info_domain(auth_info),
676 get_cmdline_auth_info_username(auth_info),
677 get_cmdline_auth_info_password(auth_info),
678 &cmd_entry->rpc_pipe);
679 break;
680 case DCERPC_AUTH_TYPE_NTLMSSP:
681 ntresult = cli_rpc_pipe_open_ntlmssp(
682 cli, cmd_entry->interface,
683 default_transport,
684 pipe_default_auth_level,
685 get_cmdline_auth_info_domain(auth_info),
686 get_cmdline_auth_info_username(auth_info),
687 get_cmdline_auth_info_password(auth_info),
688 &cmd_entry->rpc_pipe);
689 break;
690 case DCERPC_AUTH_TYPE_SCHANNEL:
691 ntresult = cli_rpc_pipe_open_schannel(
692 cli, cmd_entry->interface,
693 default_transport,
694 pipe_default_auth_level,
695 get_cmdline_auth_info_domain(auth_info),
696 &cmd_entry->rpc_pipe);
697 break;
698 case DCERPC_AUTH_TYPE_KRB5:
699 ntresult = cli_rpc_pipe_open_krb5(
700 cli, cmd_entry->interface,
701 default_transport,
702 pipe_default_auth_level,
703 cli->desthost,
704 NULL, NULL,
705 &cmd_entry->rpc_pipe);
706 break;
707 default:
708 DEBUG(0, ("Could not initialise %s. Invalid "
709 "auth type %u\n",
710 get_pipe_name_from_syntax(
711 talloc_tos(),
712 cmd_entry->interface),
713 pipe_default_auth_type ));
714 return NT_STATUS_UNSUCCESSFUL;
716 if (!NT_STATUS_IS_OK(ntresult)) {
717 DEBUG(0, ("Could not initialise %s. Error was %s\n",
718 get_pipe_name_from_syntax(
719 talloc_tos(), cmd_entry->interface),
720 nt_errstr(ntresult) ));
721 return ntresult;
724 if (ndr_syntax_id_equal(cmd_entry->interface,
725 &ndr_table_netlogon.syntax_id)) {
726 uint32_t neg_flags = NETLOGON_NEG_AUTH2_ADS_FLAGS;
727 enum netr_SchannelType sec_channel_type;
728 uchar trust_password[16];
729 const char *machine_account;
731 if (!get_trust_pw_hash(get_cmdline_auth_info_domain(auth_info),
732 trust_password, &machine_account,
733 &sec_channel_type))
735 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
738 ntresult = rpccli_netlogon_setup_creds(cmd_entry->rpc_pipe,
739 cli->desthost, /* server name */
740 get_cmdline_auth_info_domain(auth_info), /* domain */
741 global_myname(), /* client name */
742 machine_account, /* machine account name */
743 trust_password,
744 sec_channel_type,
745 &neg_flags);
747 if (!NT_STATUS_IS_OK(ntresult)) {
748 DEBUG(0, ("Could not initialise credentials for %s.\n",
749 get_pipe_name_from_syntax(
750 talloc_tos(),
751 cmd_entry->interface)));
752 return ntresult;
757 /* Run command */
759 if ( cmd_entry->returntype == RPC_RTYPE_NTSTATUS ) {
760 ntresult = cmd_entry->ntfn(cmd_entry->rpc_pipe, mem_ctx, argc, (const char **) argv);
761 if (!NT_STATUS_IS_OK(ntresult)) {
762 printf("result was %s\n", nt_errstr(ntresult));
764 } else {
765 wresult = cmd_entry->wfn(cmd_entry->rpc_pipe, mem_ctx, argc, (const char **) argv);
766 /* print out the DOS error */
767 if (!W_ERROR_IS_OK(wresult)) {
768 printf( "result was %s\n", win_errstr(wresult));
770 ntresult = W_ERROR_IS_OK(wresult)?NT_STATUS_OK:NT_STATUS_UNSUCCESSFUL;
773 /* Cleanup */
775 talloc_destroy(mem_ctx);
777 return ntresult;
782 * Process a command entered at the prompt or as part of -c
784 * @returns The NTSTATUS from running the command.
786 static NTSTATUS process_cmd(struct user_auth_info *auth_info,
787 struct cli_state *cli,
788 struct dcerpc_binding *binding,
789 char *cmd)
791 struct cmd_list *temp_list;
792 NTSTATUS result = NT_STATUS_OK;
793 int ret;
794 int argc;
795 char **argv = NULL;
797 if ((ret = poptParseArgvString(cmd, &argc, (const char ***) &argv)) != 0) {
798 fprintf(stderr, "rpcclient: %s\n", poptStrerror(ret));
799 return NT_STATUS_UNSUCCESSFUL;
803 /* Walk through a dlist of arrays of commands. */
804 for (temp_list = cmd_list; temp_list; temp_list = temp_list->next) {
805 struct cmd_set *temp_set = temp_list->cmd_set;
807 while (temp_set->name) {
808 if (strequal(argv[0], temp_set->name)) {
809 if (!(temp_set->returntype == RPC_RTYPE_NTSTATUS && temp_set->ntfn ) &&
810 !(temp_set->returntype == RPC_RTYPE_WERROR && temp_set->wfn )) {
811 fprintf (stderr, "Invalid command\n");
812 goto out_free;
815 result = do_cmd(cli, auth_info, temp_set,
816 binding, argc, argv);
818 goto out_free;
820 temp_set++;
824 if (argv[0]) {
825 printf("command not found: %s\n", argv[0]);
828 out_free:
829 /* moved to do_cmd()
830 if (!NT_STATUS_IS_OK(result)) {
831 printf("result was %s\n", nt_errstr(result));
835 /* NOTE: popt allocates the whole argv, including the
836 * strings, as a single block. So a single free is
837 * enough to release it -- we don't free the
838 * individual strings. rtfm. */
839 free(argv);
841 return result;
845 /* Main function */
847 int main(int argc, char *argv[])
849 int opt;
850 static char *cmdstr = NULL;
851 const char *server;
852 struct cli_state *cli = NULL;
853 static char *opt_ipaddr=NULL;
854 struct cmd_set **cmd_set;
855 struct sockaddr_storage server_ss;
856 NTSTATUS nt_status;
857 static int opt_port = 0;
858 fstring new_workgroup;
859 int result = 0;
860 TALLOC_CTX *frame = talloc_stackframe();
861 uint32_t flags = 0;
862 struct dcerpc_binding *binding = NULL;
863 const char *binding_string = NULL;
864 char *user, *domain, *q;
866 /* make sure the vars that get altered (4th field) are in
867 a fixed location or certain compilers complain */
868 poptContext pc;
869 struct poptOption long_options[] = {
870 POPT_AUTOHELP
871 {"command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated cmds", "COMMANDS"},
872 {"dest-ip", 'I', POPT_ARG_STRING, &opt_ipaddr, 'I', "Specify destination IP address", "IP"},
873 {"port", 'p', POPT_ARG_INT, &opt_port, 'p', "Specify port number", "PORT"},
874 POPT_COMMON_SAMBA
875 POPT_COMMON_CONNECTION
876 POPT_COMMON_CREDENTIALS
877 POPT_TABLEEND
880 load_case_tables();
882 zero_sockaddr(&server_ss);
884 setlinebuf(stdout);
886 /* the following functions are part of the Samba debugging
887 facilities. See lib/debug.c */
888 setup_logging("rpcclient", True);
890 rpcclient_auth_info = user_auth_info_init(frame);
891 if (rpcclient_auth_info == NULL) {
892 exit(1);
894 popt_common_set_auth_info(rpcclient_auth_info);
896 /* Parse options */
898 pc = poptGetContext("rpcclient", argc, (const char **) argv,
899 long_options, 0);
901 if (argc == 1) {
902 poptPrintHelp(pc, stderr, 0);
903 goto done;
906 while((opt = poptGetNextOpt(pc)) != -1) {
907 switch (opt) {
909 case 'I':
910 if (!interpret_string_addr(&server_ss,
911 opt_ipaddr,
912 AI_NUMERICHOST)) {
913 fprintf(stderr, "%s not a valid IP address\n",
914 opt_ipaddr);
915 result = 1;
916 goto done;
921 /* Get server as remaining unparsed argument. Print usage if more
922 than one unparsed argument is present. */
924 server = poptGetArg(pc);
926 if (!server || poptGetArg(pc)) {
927 poptPrintHelp(pc, stderr, 0);
928 result = 1;
929 goto done;
932 poptFreeContext(pc);
934 load_interfaces();
936 if (!init_names()) {
937 result = 1;
938 goto done;
941 /* save the workgroup...
943 FIXME!! do we need to do this for other options as well
944 (or maybe a generic way to keep lp_load() from overwriting
945 everything)? */
947 fstrcpy( new_workgroup, lp_workgroup() );
949 /* Load smb.conf file */
951 if (!lp_load(get_dyn_CONFIGFILE(),True,False,False,True))
952 fprintf(stderr, "Can't load %s\n", get_dyn_CONFIGFILE());
954 if ( strlen(new_workgroup) != 0 )
955 set_global_myworkgroup( new_workgroup );
958 * Get password
959 * from stdin if necessary
962 if (get_cmdline_auth_info_use_machine_account(rpcclient_auth_info) &&
963 !set_cmdline_auth_info_machine_account_creds(rpcclient_auth_info)) {
964 result = 1;
965 goto done;
968 set_cmdline_auth_info_getpass(rpcclient_auth_info);
970 if ((server[0] == '/' && server[1] == '/') ||
971 (server[0] == '\\' && server[1] == '\\')) {
972 server += 2;
975 nt_status = dcerpc_parse_binding(frame, server, &binding);
977 if (!NT_STATUS_IS_OK(nt_status)) {
979 binding_string = talloc_asprintf(frame, "ncacn_np:%s",
980 strip_hostname(server));
981 if (!binding_string) {
982 result = 1;
983 goto done;
986 nt_status = dcerpc_parse_binding(frame, binding_string, &binding);
987 if (!NT_STATUS_IS_OK(nt_status)) {
988 result = -1;
989 goto done;
993 if (binding->transport == NCA_UNKNOWN) {
994 binding->transport = NCACN_NP;
997 if (binding->flags & DCERPC_SIGN) {
998 pipe_default_auth_level = DCERPC_AUTH_LEVEL_INTEGRITY;
999 pipe_default_auth_type = DCERPC_AUTH_TYPE_NTLMSSP;
1001 if (binding->flags & DCERPC_SEAL) {
1002 pipe_default_auth_level = DCERPC_AUTH_LEVEL_PRIVACY;
1003 pipe_default_auth_type = DCERPC_AUTH_TYPE_NTLMSSP;
1005 if (binding->flags & DCERPC_AUTH_SPNEGO) {
1006 pipe_default_auth_type = DCERPC_AUTH_TYPE_SPNEGO;
1007 pipe_default_auth_spnego_type = PIPE_AUTH_TYPE_SPNEGO_NTLMSSP;
1009 if (binding->flags & DCERPC_AUTH_NTLM) {
1010 /* If neither Integrity or Privacy are requested then
1011 * Use just Connect level */
1012 if (pipe_default_auth_level == DCERPC_AUTH_LEVEL_NONE) {
1013 pipe_default_auth_level = DCERPC_AUTH_LEVEL_CONNECT;
1016 if (pipe_default_auth_type == DCERPC_AUTH_TYPE_SPNEGO) {
1017 pipe_default_auth_spnego_type = PIPE_AUTH_TYPE_SPNEGO_NTLMSSP;
1018 } else {
1019 pipe_default_auth_type = DCERPC_AUTH_TYPE_NTLMSSP;
1022 if (binding->flags & DCERPC_AUTH_KRB5) {
1023 /* If neither Integrity or Privacy are requested then
1024 * Use just Connect level */
1025 if (pipe_default_auth_level == DCERPC_AUTH_LEVEL_NONE) {
1026 pipe_default_auth_level = DCERPC_AUTH_LEVEL_CONNECT;
1029 if (pipe_default_auth_type == DCERPC_AUTH_TYPE_SPNEGO) {
1030 pipe_default_auth_spnego_type = PIPE_AUTH_TYPE_SPNEGO_KRB5;
1031 } else {
1032 pipe_default_auth_type = DCERPC_AUTH_TYPE_KRB5;
1036 if (get_cmdline_auth_info_use_kerberos(rpcclient_auth_info)) {
1037 flags |= CLI_FULL_CONNECTION_USE_KERBEROS |
1038 CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS;
1040 if (get_cmdline_auth_info_use_ccache(rpcclient_auth_info)) {
1041 flags |= CLI_FULL_CONNECTION_USE_CCACHE;
1044 user = talloc_strdup(frame, get_cmdline_auth_info_username(rpcclient_auth_info));
1045 SMB_ASSERT(user != NULL);
1046 domain = talloc_strdup(frame, lp_workgroup());
1047 SMB_ASSERT(domain != NULL);
1048 set_cmdline_auth_info_domain(rpcclient_auth_info, domain);
1050 if ((q = strchr_m(user,'\\'))) {
1051 *q = 0;
1052 set_cmdline_auth_info_domain(rpcclient_auth_info, user);
1053 set_cmdline_auth_info_username(rpcclient_auth_info, q+1);
1057 nt_status = cli_full_connection(&cli, global_myname(), binding->host,
1058 opt_ipaddr ? &server_ss : NULL, opt_port,
1059 "IPC$", "IPC",
1060 get_cmdline_auth_info_username(rpcclient_auth_info),
1061 get_cmdline_auth_info_domain(rpcclient_auth_info),
1062 get_cmdline_auth_info_password(rpcclient_auth_info),
1063 flags,
1064 get_cmdline_auth_info_signing_state(rpcclient_auth_info),
1065 NULL);
1067 if (!NT_STATUS_IS_OK(nt_status)) {
1068 DEBUG(0,("Cannot connect to server. Error was %s\n", nt_errstr(nt_status)));
1069 result = 1;
1070 goto done;
1073 if (get_cmdline_auth_info_smb_encrypt(rpcclient_auth_info)) {
1074 nt_status = cli_cm_force_encryption(cli,
1075 get_cmdline_auth_info_username(rpcclient_auth_info),
1076 get_cmdline_auth_info_password(rpcclient_auth_info),
1077 get_cmdline_auth_info_domain(rpcclient_auth_info),
1078 "IPC$");
1079 if (!NT_STATUS_IS_OK(nt_status)) {
1080 result = 1;
1081 goto done;
1085 #if 0 /* COMMENT OUT FOR TESTING */
1086 memset(cmdline_auth_info.password,'X',sizeof(cmdline_auth_info.password));
1087 #endif
1089 /* Load command lists */
1091 timeout = cli_set_timeout(cli, 10000);
1093 cmd_set = rpcclient_command_list;
1095 while(*cmd_set) {
1096 add_command_set(*cmd_set);
1097 add_command_set(separator_command);
1098 cmd_set++;
1101 default_transport = binding->transport;
1103 fetch_machine_sid(cli);
1105 /* Do anything specified with -c */
1106 if (cmdstr && cmdstr[0]) {
1107 char *cmd;
1108 char *p = cmdstr;
1110 result = 0;
1112 while((cmd=next_command(&p)) != NULL) {
1113 NTSTATUS cmd_result = process_cmd(rpcclient_auth_info, cli,
1114 binding, cmd);
1115 SAFE_FREE(cmd);
1116 result = NT_STATUS_IS_ERR(cmd_result);
1119 goto done;
1122 /* Loop around accepting commands */
1124 while(1) {
1125 char *line = NULL;
1127 line = smb_readline("rpcclient $> ", NULL, completion_fn);
1129 if (line == NULL)
1130 break;
1132 if (line[0] != '\n')
1133 process_cmd(rpcclient_auth_info, cli, binding, line);
1134 SAFE_FREE(line);
1137 done:
1138 if (cli != NULL) {
1139 cli_shutdown(cli);
1141 TALLOC_FREE(frame);
1142 return result;