1 /* Proxy shell designed for use with Emacs on Windows 95 and NT.
2 Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
5 Accepts subset of Unix sh(1) command-line options, for compatibility
6 with elisp code written for Unix. When possible, executes external
7 programs directly (a common use of /bin/sh by Emacs), otherwise
8 invokes the user-specified command processor to handle built-in shell
9 commands, batch files and interactive mode.
11 The main function is simply to process the "-c string" option in the
12 way /bin/sh does, since the standard Windows command shells use the
13 convention that everything after "/c" (the Windows equivalent of
14 "-c") is the input string.
16 This file is part of GNU Emacs.
18 GNU Emacs is free software: you can redistribute it and/or modify
19 it under the terms of the GNU General Public License as published by
20 the Free Software Foundation, either version 3 of the License, or
21 (at your option) any later version.
23 GNU Emacs is distributed in the hope that it will be useful,
24 but WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 GNU General Public License for more details.
28 You should have received a copy of the GNU General Public License
29 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
33 #include <stdarg.h> /* va_args */
34 #include <malloc.h> /* alloca */
35 #include <stdlib.h> /* getenv */
36 #include <string.h> /* strlen */
38 /* We don't want to include stdio.h because we are already duplicating
40 extern int _snprintf (char *buffer
, size_t count
, const char *format
, ...);
42 /******* Mock C library routines *********************************/
44 /* These routines are used primarily to minimize the executable size. */
46 #define stdin GetStdHandle (STD_INPUT_HANDLE)
47 #define stdout GetStdHandle (STD_OUTPUT_HANDLE)
48 #define stderr GetStdHandle (STD_ERROR_HANDLE)
51 vfprintf(HANDLE hnd
, char * msg
, va_list args
)
56 wvsprintf (buf
, msg
, args
);
57 return WriteFile (hnd
, buf
, strlen (buf
), &bytes_written
, NULL
);
61 fprintf(HANDLE hnd
, char * msg
, ...)
67 rc
= vfprintf (hnd
, msg
, args
);
74 printf(char * msg
, ...)
80 rc
= vfprintf (stdout
, msg
, args
);
87 fail (char * msg
, ...)
92 vfprintf (stderr
, msg
, args
);
99 warn (char * msg
, ...)
103 va_start (args
, msg
);
104 vfprintf (stderr
, msg
, args
);
108 /******************************************************************/
111 canon_filename (char *fname
)
126 skip_space (char *str
)
128 while (isspace (*str
)) str
++;
133 skip_nonspace (char *str
)
135 while (*str
&& !isspace (*str
)) str
++;
139 int escape_char
= '\\';
141 /* Get next token from input, advancing pointer. */
143 get_next_token (char * buf
, char ** pSrc
)
151 int escape_char_run
= 0;
153 /* Go through src until an ending quote is found, unescaping
154 quotes along the way. If the escape char is not quote, then do
155 special handling of multiple escape chars preceding a quote
156 char (ie. the reverse of what Emacs does to escape quotes). */
160 if (p
[0] == escape_char
&& escape_char
!= '"')
166 else if (p
[0] == '"')
168 while (escape_char_run
> 1)
171 escape_char_run
-= 2;
174 if (escape_char_run
> 0)
180 else if (p
[1] == escape_char
&& escape_char
== '"')
182 /* quote escaped by doubling */
188 /* The ending quote. */
190 /* Leave input pointer after token. */
195 else if (p
[0] == '\0')
197 /* End of string, but no ending quote found. We might want to
198 flag this as an error, but for now will consider the end as
199 the end of the token. */
211 /* Next token is delimited by whitespace. */
212 char * p1
= skip_nonspace (p
);
213 memcpy (o
, p
, p1
- p
);
224 /* Search for EXEC file in DIR. If EXEC does not have an extension,
225 DIR is searched for EXEC with the standard extensions appended. */
227 search_dir (char *dir
, char *exec
, int bufsize
, char *buffer
)
229 char *exts
[] = {".bat", ".cmd", ".exe", ".com"};
230 int n_exts
= sizeof (exts
) / sizeof (char *);
234 /* Search the directory for the program. */
235 for (i
= 0; i
< n_exts
; i
++)
237 rc
= SearchPath (dir
, exec
, exts
[i
], bufsize
, buffer
, &dummy
);
245 /* Return the absolute name of executable file PROG, including
246 any file extensions. If an absolute name for PROG cannot be found,
249 make_absolute (char *prog
)
251 char absname
[MAX_PATH
];
253 char curdir
[MAX_PATH
];
258 /* At least partial absolute path specified; search there. */
259 if ((isalpha (prog
[0]) && prog
[1] == ':') ||
262 /* Split the directory from the filename. */
263 fname
= strrchr (prog
, '\\');
265 /* Only a drive specifier is given. */
267 strncpy (dir
, prog
, fname
- prog
);
268 dir
[fname
- prog
] = '\0';
270 /* Search the directory for the program. */
271 if (search_dir (dir
, prog
, MAX_PATH
, absname
) > 0)
272 return strdup (absname
);
277 if (GetCurrentDirectory (MAX_PATH
, curdir
) <= 0)
280 /* Relative path; search in current dir. */
281 if (strpbrk (prog
, "\\"))
283 if (search_dir (curdir
, prog
, MAX_PATH
, absname
) > 0)
284 return strdup (absname
);
289 /* Just filename; search current directory then PATH. */
290 path
= alloca (strlen (getenv ("PATH")) + strlen (curdir
) + 2);
291 strcpy (path
, curdir
);
293 strcat (path
, getenv ("PATH"));
297 /* Get next directory from path. */
299 while (*p
&& *p
!= ';') p
++;
300 strncpy (dir
, path
, p
- path
);
301 dir
[p
- path
] = '\0';
303 /* Search the directory for the program. */
304 if (search_dir (dir
, prog
, MAX_PATH
, absname
) > 0)
305 return strdup (absname
);
307 /* Move to the next directory. */
314 /*****************************************************************/
320 /* Parse commandline into argv array, allowing proper quoting of args. */
324 char * cmdline
= GetCommandLine ();
331 /* Information about child proc is global, to allow for automatic
332 termination when interrupted. At the moment, only one child process
333 can be running at any one time. */
335 PROCESS_INFORMATION child
;
336 int interactive
= TRUE
;
339 console_event_handler (DWORD event
)
344 case CTRL_BREAK_EVENT
:
347 /* Both command.com and cmd.exe have the annoying behavior of
348 prompting "Terminate batch job (y/n)?" when interrupted
349 while running a batch file, even if running in
350 non-interactive (-c) mode. Try to make up for this
351 deficiency by forcibly terminating the subprocess if
352 running non-interactively. */
353 if (child
.hProcess
&&
354 WaitForSingleObject (child
.hProcess
, 500) != WAIT_OBJECT_0
)
355 TerminateProcess (child
.hProcess
, 0);
356 exit (STATUS_CONTROL_C_EXIT
);
362 /* CLOSE, LOGOFF and SHUTDOWN events - actually we don't get these
364 fail ("cmdproxy: received %d event\n", event
);
366 TerminateProcess (child
.hProcess
, 0);
372 /* Change from normal usage; return value indicates whether spawn
373 succeeded or failed - program return code is returned separately. */
375 spawn (char * progname
, char * cmdline
, char * dir
, int * retcode
)
377 BOOL success
= FALSE
;
378 SECURITY_ATTRIBUTES sec_attrs
;
380 /* In theory, passing NULL for the environment block to CreateProcess
381 is the same as passing the value of GetEnvironmentStrings, but
382 doing this explicitly seems to cure problems running DOS programs
384 char * envblock
= GetEnvironmentStrings ();
386 sec_attrs
.nLength
= sizeof (sec_attrs
);
387 sec_attrs
.lpSecurityDescriptor
= NULL
;
388 sec_attrs
.bInheritHandle
= FALSE
;
390 memset (&start
, 0, sizeof (start
));
391 start
.cb
= sizeof (start
);
393 if (CreateProcess (progname
, cmdline
, &sec_attrs
, NULL
, TRUE
,
394 0, envblock
, dir
, &start
, &child
))
397 /* wait for completion and pass on return code */
398 WaitForSingleObject (child
.hProcess
, INFINITE
);
400 GetExitCodeProcess (child
.hProcess
, (DWORD
*)retcode
);
401 CloseHandle (child
.hThread
);
402 CloseHandle (child
.hProcess
);
403 child
.hProcess
= NULL
;
406 FreeEnvironmentStrings (envblock
);
411 /* Return size of current environment block. */
415 char * start
= GetEnvironmentStrings ();
418 while (tmp
[0] || tmp
[1])
420 FreeEnvironmentStrings (start
);
421 return tmp
+ 2 - start
;
424 /******* Main program ********************************************/
427 main (int argc
, char ** argv
)
434 char **pass_through_args
;
435 int num_pass_through_args
;
436 char modname
[MAX_PATH
];
443 SetConsoleCtrlHandler ((PHANDLER_ROUTINE
) console_event_handler
, TRUE
);
445 if (!GetCurrentDirectory (sizeof (dir
), dir
))
446 fail ("error: GetCurrentDirectory failed\n");
448 /* We serve double duty: we can be called either as a proxy for the
449 real shell (that is, because we are defined to be the user shell),
450 or in our role as a helper application for running DOS programs.
451 In the former case, we interpret the command line options as if we
452 were a Unix shell, but in the latter case we simply pass our
453 command line to CreateProcess. We know which case we are dealing
454 with by whether argv[0] refers to ourself or to some other program.
455 (This relies on an arcane feature of CreateProcess, where we can
456 specify cmdproxy as the module to run, but specify a different
457 program in the command line - the MSVC startup code sets argv[0]
458 from the command line.) */
460 if (!GetModuleFileName (NULL
, modname
, sizeof (modname
)))
461 fail ("error: GetModuleFileName failed\n");
463 /* Change directory to location of .exe so startup directory can be
465 progname
= strrchr (modname
, '\\');
467 SetCurrentDirectory (modname
);
470 /* Due to problems with interaction between API functions that use "OEM"
471 codepage vs API functions that use the "ANSI" codepage, we need to
472 make things consistent by choosing one and sticking with it. */
473 SetConsoleCP (GetACP());
474 SetConsoleOutputCP (GetACP());
476 /* Although Emacs always sets argv[0] to an absolute pathname, we
477 might get run in other ways as well, so convert argv[0] to an
478 absolute name before comparing to the module name. Don't get
479 caught out by mixed short and long names. */
480 GetShortPathName (modname
, modname
, sizeof (modname
));
482 if (!SearchPath (NULL
, argv
[0], ".exe", sizeof (path
), path
, &progname
)
483 || !GetShortPathName (path
, path
, sizeof (path
))
484 || stricmp (modname
, path
) != 0)
486 /* We are being used as a helper to run a DOS app; just pass
487 command line to DOS app without change. */
488 /* TODO: fill in progname. */
489 if (spawn (NULL
, GetCommandLine (), dir
, &rc
))
491 fail ("Could not run %s\n", GetCommandLine ());
494 /* Process command line. If running interactively (-c or /c not
495 specified) then spawn a real command shell, passing it the command
498 If not running interactively, then attempt to execute the specified
499 command directly. If necessary, spawn a real shell to execute the
506 /* If no args, spawn real shell for interactive use. */
509 /* Ask command.com to create an environment block with a reasonable
510 amount of free space. */
511 envsize
= get_env_size () + 300;
512 pass_through_args
= (char **) alloca (argc
* sizeof(char *));
513 num_pass_through_args
= 0;
518 /* Act on switches we recognize (mostly single letter switches,
519 except for -e); all unrecognized switches and extra args are
520 passed on to real shell if used (only really of benefit for
521 interactive use, but allow for batch use as well). Accept / as
522 switch char for compatibility with cmd.exe. */
523 if (((*argv
)[0] == '-' || (*argv
)[0] == '/') && (*argv
)[1] != '\0')
525 if (((*argv
)[1] == 'c' || (*argv
)[1] == 'C') && ((*argv
)[2] == '\0'))
528 fail ("error: expecting arg for %s\n", *argv
);
532 else if (((*argv
)[1] == 'i' || (*argv
)[1] == 'I') && ((*argv
)[2] == '\0'))
535 warn ("warning: %s ignored because of -c\n", *argv
);
537 else if (((*argv
)[1] == 'e' || (*argv
)[1] == 'E') && ((*argv
)[2] == ':'))
539 int requested_envsize
= atoi (*argv
+ 3);
540 /* Enforce a reasonable minimum size, as above. */
541 if (requested_envsize
> envsize
)
542 envsize
= requested_envsize
;
543 /* For sanity, enforce a reasonable maximum. */
549 /* warn ("warning: unknown option %s ignored", *argv); */
550 pass_through_args
[num_pass_through_args
++] = *argv
;
558 /* I think this is probably not useful - cmd.exe ignores extra
559 (non-switch) args in interactive mode, and they cannot be passed on
560 when -c was given. */
562 /* Collect any remaining args after (initial) switches. */
565 pass_through_args
[num_pass_through_args
++] = *argv
++;
568 /* Probably a mistake for there to be extra args; not fatal. */
570 warn ("warning: extra args ignored after '%s'\n", argv
[-1]);
573 pass_through_args
[num_pass_through_args
] = NULL
;
575 /* If -c option, determine if we must spawn a real shell, or if we can
576 execute the command directly ourself. */
579 /* If no redirection or piping, and if program can be found, then
580 run program directly. Otherwise invoke a real shell. */
582 static char copout_chars
[] = "|<>&";
584 if (strpbrk (cmdline
, copout_chars
) == NULL
)
588 /* The program name is the first token of cmdline. Since
589 filenames cannot legally contain embedded quotes, the value
590 of escape_char doesn't matter. */
592 if (!get_next_token (path
, &args
))
593 fail ("error: no program name specified.\n");
595 canon_filename (path
);
596 progname
= make_absolute (path
);
598 /* If we found the program, run it directly (if not found it
599 might be an internal shell command, so don't fail). */
600 if (progname
!= NULL
)
609 int extra_arg_space
= 0;
611 int run_command_dot_com
;
613 progname
= getenv ("COMSPEC");
615 fail ("error: COMSPEC is not set\n");
617 canon_filename (progname
);
618 progname
= make_absolute (progname
);
620 if (progname
== NULL
|| strchr (progname
, '\\') == NULL
)
621 fail ("error: the program %s could not be found.\n", getenv ("COMSPEC"));
623 /* Need to set environment size when running command.com. */
624 run_command_dot_com
=
625 (stricmp (strrchr (progname
, '\\'), "command.com") == 0);
627 /* Work out how much extra space is required for
628 pass_through_args. */
629 for (argv
= pass_through_args
; *argv
!= NULL
; ++argv
)
630 /* We don't expect to have to quote switches. */
631 extra_arg_space
+= strlen (*argv
) + 2;
637 /* Convert to syntax expected by cmd.exe/command.com for
638 running non-interactively. Always quote program name in
639 case path contains spaces (fortunately it can't contain
640 quotes, since they are illegal in path names). */
643 strlen (progname
) + extra_arg_space
+ strlen (cmdline
) + 16;
644 buf
= p
= alloca (maxlen
+ 1);
646 /* Quote progname in case it contains spaces. */
647 p
+= _snprintf (p
, remlen
, "\"%s\"", progname
);
648 remlen
= maxlen
- (p
- buf
);
650 /* Include pass_through_args verbatim; these are just switches
651 so should not need quoting. */
652 for (argv
= pass_through_args
; *argv
!= NULL
; ++argv
)
654 p
+= _snprintf (p
, remlen
, " %s", *argv
);
655 remlen
= maxlen
- (p
- buf
);
658 if (run_command_dot_com
)
659 _snprintf (p
, remlen
, " /e:%d /c %s", envsize
, cmdline
);
661 _snprintf (p
, remlen
, " /c %s", cmdline
);
662 remlen
= maxlen
- (p
- buf
);
667 if (run_command_dot_com
)
669 /* Provide dir arg expected by command.com when first
670 started interactively (the "command search path"). To
671 avoid potential problems with spaces in command dir
672 (which cannot be quoted - command.com doesn't like it),
673 we always use the 8.3 form. */
674 GetShortPathName (progname
, path
, sizeof (path
));
675 p
= strrchr (path
, '\\');
676 /* Trailing slash is acceptable, so always leave it. */
683 strlen (progname
) + extra_arg_space
+ strlen (path
) + 13;
684 cmdline
= p
= alloca (maxlen
+ 1);
686 /* Quote progname in case it contains spaces. */
687 p
+= _snprintf (p
, remlen
, "\"%s\" %s", progname
, path
);
688 remlen
= maxlen
- (p
- cmdline
);
690 /* Include pass_through_args verbatim; these are just switches
691 so should not need quoting. */
692 for (argv
= pass_through_args
; *argv
!= NULL
; ++argv
)
694 p
+= _snprintf (p
, remlen
, " %s", *argv
);
695 remlen
= maxlen
- (p
- cmdline
);
698 if (run_command_dot_com
)
700 _snprintf (p
, remlen
, " /e:%d", envsize
);
701 remlen
= maxlen
- (p
- cmdline
);
707 fail ("Internal error: program name not defined\n");
712 if (spawn (progname
, cmdline
, dir
, &rc
))
721 fail ("Could not run %s\n", progname
);
726 /* arch-tag: 88678d93-07ac-4e2f-ad63-d4a740ca69ac
727 (do not change this comment) */