Mercurial > emacs
annotate nt/cmdproxy.c @ 23323:0800a4f84757
(underlying_strftime):
Set the buffer to a nonzero value before calling
strftime, and check to see whether strftime has set the buffer to zero.
This lets us distinguish between an empty buffer and an error.
I'm installing this patch by hand now; it will be superseded whenever
the glibc sources are propagated back to fsf.org.
| author | Paul Eggert <eggert@twinsun.com> |
|---|---|
| date | Fri, 25 Sep 1998 21:40:23 +0000 |
| parents | a373669e1196 |
| children | 0110032de8b3 |
| rev | line source |
|---|---|
| 19236 | 1 /* Proxy shell designed for use with Emacs on Windows 95 and NT. |
| 2 Copyright (C) 1997 Free Software Foundation, Inc. | |
| 3 | |
| 4 Accepts subset of Unix sh(1) command-line options, for compatability | |
| 5 with elisp code written for Unix. When possible, executes external | |
| 6 programs directly (a common use of /bin/sh by Emacs), otherwise | |
| 7 invokes the user-specified command processor to handle built-in shell | |
| 8 commands, batch files and interactive mode. | |
| 9 | |
| 10 The main function is simply to process the "-c string" option in the | |
| 11 way /bin/sh does, since the standard Windows command shells use the | |
| 12 convention that everything after "/c" (the Windows equivalent of | |
| 13 "-c") is the input string. | |
| 14 | |
| 15 This file is part of GNU Emacs. | |
| 16 | |
| 17 GNU Emacs is free software; you can redistribute it and/or modify | |
| 18 it under the terms of the GNU General Public License as published by | |
| 19 the Free Software Foundation; either version 2, or (at your option) | |
| 20 any later version. | |
| 21 | |
| 22 GNU Emacs is distributed in the hope that it will be useful, | |
| 23 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 25 GNU General Public License for more details. | |
| 26 | |
| 27 You should have received a copy of the GNU General Public License | |
| 28 along with GNU Emacs; see the file COPYING. If not, write to | |
| 29 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 30 Boston, MA 02111-1307, USA. */ | |
| 31 | |
| 32 #include <windows.h> | |
| 33 | |
| 34 #include <stdarg.h> /* va_args */ | |
| 35 #include <malloc.h> /* alloca */ | |
| 36 #include <stdlib.h> /* getenv */ | |
| 37 #include <string.h> /* strlen */ | |
| 38 | |
| 39 | |
| 40 /******* Mock C library routines *********************************/ | |
| 41 | |
| 42 /* These routines are used primarily to minimize the executable size. */ | |
| 43 | |
| 44 #define stdin GetStdHandle (STD_INPUT_HANDLE) | |
| 45 #define stdout GetStdHandle (STD_OUTPUT_HANDLE) | |
| 46 #define stderr GetStdHandle (STD_ERROR_HANDLE) | |
| 47 | |
| 48 int | |
| 49 vfprintf(HANDLE hnd, char * msg, va_list args) | |
| 50 { | |
| 51 DWORD bytes_written; | |
| 52 char buf[1024]; | |
| 53 | |
| 54 wvsprintf (buf, msg, args); | |
| 55 return WriteFile (hnd, buf, strlen (buf), &bytes_written, NULL); | |
| 56 } | |
| 57 | |
| 58 int | |
| 59 fprintf(HANDLE hnd, char * msg, ...) | |
| 60 { | |
| 61 va_list args; | |
| 62 int rc; | |
| 63 | |
| 64 va_start (args, msg); | |
| 65 rc = vfprintf (hnd, msg, args); | |
| 66 va_end (args); | |
| 67 | |
| 68 return rc; | |
| 69 } | |
| 70 | |
| 71 int | |
| 72 printf(char * msg, ...) | |
| 73 { | |
| 74 va_list args; | |
| 75 int rc; | |
| 76 | |
| 77 va_start (args, msg); | |
| 78 rc = vfprintf (stdout, msg, args); | |
| 79 va_end (args); | |
| 80 | |
| 81 return rc; | |
| 82 } | |
| 83 | |
| 84 void | |
| 85 fail (char * msg, ...) | |
| 86 { | |
| 87 va_list args; | |
| 88 | |
| 89 va_start (args, msg); | |
| 90 vfprintf (stderr, msg, args); | |
| 91 va_end (args); | |
| 92 | |
|
21598
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
93 exit (-1); |
| 19236 | 94 } |
| 95 | |
| 96 void | |
| 97 warn (char * msg, ...) | |
| 98 { | |
| 99 va_list args; | |
| 100 | |
| 101 va_start (args, msg); | |
| 102 vfprintf (stderr, msg, args); | |
| 103 va_end (args); | |
| 104 } | |
| 105 | |
| 106 /******************************************************************/ | |
| 107 | |
| 108 char * | |
| 109 canon_filename (char *fname) | |
| 110 { | |
| 111 char *p = fname; | |
| 112 | |
| 113 while (*p) | |
| 114 { | |
| 115 if (*p == '/') | |
| 116 *p = '\\'; | |
| 117 p++; | |
| 118 } | |
| 119 | |
| 120 return fname; | |
| 121 } | |
| 122 | |
| 123 char * | |
| 124 skip_space (char *str) | |
| 125 { | |
| 126 while (isspace (*str)) str++; | |
| 127 return str; | |
| 128 } | |
| 129 | |
| 130 char * | |
| 131 skip_nonspace (char *str) | |
| 132 { | |
| 133 while (*str && !isspace (*str)) str++; | |
| 134 return str; | |
| 135 } | |
| 136 | |
| 137 int escape_char = '\\'; | |
| 138 | |
| 139 /* Get next token from input, advancing pointer. */ | |
| 140 int | |
| 141 get_next_token (char * buf, char ** pSrc) | |
| 142 { | |
| 143 char * p = *pSrc; | |
| 144 char * o = buf; | |
| 145 | |
| 146 p = skip_space (p); | |
| 147 if (*p == '"') | |
| 148 { | |
| 149 int escape_char_run = 0; | |
| 150 | |
| 151 /* Go through src until an ending quote is found, unescaping | |
| 152 quotes along the way. If the escape char is not quote, then do | |
| 153 special handling of multiple escape chars preceding a quote | |
| 154 char (ie. the reverse of what Emacs does to escape quotes). */ | |
| 155 p++; | |
| 156 while (1) | |
| 157 { | |
| 158 if (p[0] == escape_char && escape_char != '"') | |
| 159 { | |
| 160 escape_char_run++; | |
| 161 continue; | |
| 162 } | |
| 163 else if (p[0] == '"') | |
| 164 { | |
| 165 while (escape_char_run > 1) | |
| 166 { | |
| 167 *o++ = escape_char; | |
| 168 escape_char_run -= 2; | |
| 169 } | |
| 170 | |
| 171 if (escape_char_run > 0) | |
| 172 { | |
| 173 /* escaped quote */ | |
| 174 *o++ = *p++; | |
| 175 escape_char_run = 0; | |
| 176 } | |
| 177 else if (p[1] == escape_char && escape_char == '"') | |
| 178 { | |
| 179 /* quote escaped by doubling */ | |
| 180 *o++ = *p; | |
| 181 p += 2; | |
| 182 } | |
| 183 else | |
| 184 { | |
| 185 /* The ending quote. */ | |
| 186 *o = '\0'; | |
| 187 /* Leave input pointer after token. */ | |
| 188 p++; | |
| 189 break; | |
| 190 } | |
| 191 } | |
| 192 else if (p[0] == '\0') | |
| 193 { | |
| 194 /* End of string, but no ending quote found. We might want to | |
| 195 flag this as an error, but for now will consider the end as | |
| 196 the end of the token. */ | |
| 197 *o = '\0'; | |
| 198 break; | |
| 199 } | |
| 200 else | |
| 201 { | |
| 202 *o++ = *p++; | |
| 203 } | |
| 204 } | |
| 205 } | |
| 206 else | |
| 207 { | |
| 208 /* Next token is delimited by whitespace. */ | |
| 209 char * p1 = skip_nonspace (p); | |
| 210 memcpy (o, p, p1 - p); | |
| 211 o += (p1 - p); | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
212 *o = '\0'; |
| 19236 | 213 p = p1; |
| 214 } | |
| 215 | |
| 216 *pSrc = p; | |
| 217 | |
| 218 return o - buf; | |
| 219 } | |
| 220 | |
| 221 /* Search for EXEC file in DIR. If EXEC does not have an extension, | |
| 222 DIR is searched for EXEC with the standard extensions appended. */ | |
| 223 int | |
| 224 search_dir (char *dir, char *exec, int bufsize, char *buffer) | |
| 225 { | |
| 226 char *exts[] = {".bat", ".cmd", ".exe", ".com"}; | |
| 227 int n_exts = sizeof (exts) / sizeof (char *); | |
| 228 char *dummy; | |
| 229 int i, rc; | |
| 230 | |
| 231 /* Search the directory for the program. */ | |
| 232 for (i = 0; i < n_exts; i++) | |
| 233 { | |
| 234 rc = SearchPath (dir, exec, exts[i], bufsize, buffer, &dummy); | |
| 235 if (rc > 0) | |
| 236 return rc; | |
| 237 } | |
| 238 | |
| 239 return 0; | |
| 240 } | |
| 241 | |
| 242 /* Return the absolute name of executable file PROG, including | |
| 243 any file extensions. If an absolute name for PROG cannot be found, | |
| 244 return NULL. */ | |
| 245 char * | |
| 246 make_absolute (char *prog) | |
| 247 { | |
| 248 char absname[MAX_PATH]; | |
| 249 char dir[MAX_PATH]; | |
| 250 char curdir[MAX_PATH]; | |
| 251 char *p, *fname; | |
| 252 char *path; | |
| 253 int i; | |
| 254 | |
| 255 /* At least partial absolute path specified; search there. */ | |
| 256 if ((isalpha (prog[0]) && prog[1] == ':') || | |
| 257 (prog[0] == '\\')) | |
| 258 { | |
| 259 /* Split the directory from the filename. */ | |
| 260 fname = strrchr (prog, '\\'); | |
| 261 if (!fname) | |
| 262 /* Only a drive specifier is given. */ | |
| 263 fname = prog + 2; | |
| 264 strncpy (dir, prog, fname - prog); | |
| 265 dir[fname - prog] = '\0'; | |
| 266 | |
| 267 /* Search the directory for the program. */ | |
| 268 if (search_dir (dir, prog, MAX_PATH, absname) > 0) | |
| 269 return strdup (absname); | |
| 270 else | |
| 271 return NULL; | |
| 272 } | |
| 273 | |
| 274 if (GetCurrentDirectory (MAX_PATH, curdir) <= 0) | |
| 275 return NULL; | |
| 276 | |
| 277 /* Relative path; search in current dir. */ | |
| 278 if (strpbrk (prog, "\\")) | |
| 279 { | |
| 280 if (search_dir (curdir, prog, MAX_PATH, absname) > 0) | |
| 281 return strdup (absname); | |
| 282 else | |
| 283 return NULL; | |
| 284 } | |
| 285 | |
| 286 /* Just filename; search current directory then PATH. */ | |
| 287 path = alloca (strlen (getenv ("PATH")) + strlen (curdir) + 2); | |
| 288 strcpy (path, curdir); | |
| 289 strcat (path, ";"); | |
| 290 strcat (path, getenv ("PATH")); | |
| 291 | |
| 292 while (*path) | |
| 293 { | |
| 294 /* Get next directory from path. */ | |
| 295 p = path; | |
| 296 while (*p && *p != ';') p++; | |
| 297 strncpy (dir, path, p - path); | |
| 298 dir[p - path] = '\0'; | |
| 299 | |
| 300 /* Search the directory for the program. */ | |
| 301 if (search_dir (dir, prog, MAX_PATH, absname) > 0) | |
| 302 return strdup (absname); | |
| 303 | |
| 304 /* Move to the next directory. */ | |
| 305 path = p + 1; | |
| 306 } | |
| 307 | |
| 308 return NULL; | |
| 309 } | |
| 310 | |
| 311 /*****************************************************************/ | |
| 312 | |
| 313 #if 0 | |
| 314 char ** _argv; | |
| 315 int _argc; | |
| 316 | |
| 317 /* Parse commandline into argv array, allowing proper quoting of args. */ | |
| 318 void | |
| 319 setup_argv (void) | |
| 320 { | |
| 321 char * cmdline = GetCommandLine (); | |
| 322 int arg_bytes = 0; | |
| 323 | |
| 324 | |
| 325 } | |
| 326 #endif | |
| 327 | |
| 328 /* Information about child proc is global, to allow for automatic | |
| 329 termination when interrupted. At the moment, only one child process | |
| 330 can be running at any one time. */ | |
| 331 | |
| 332 PROCESS_INFORMATION child; | |
| 333 int interactive = TRUE; | |
| 334 | |
| 335 BOOL | |
| 336 console_event_handler (DWORD event) | |
| 337 { | |
| 338 switch (event) | |
| 339 { | |
| 340 case CTRL_C_EVENT: | |
| 341 case CTRL_BREAK_EVENT: | |
| 342 if (!interactive) | |
| 343 { | |
| 344 /* Both command.com and cmd.exe have the annoying behaviour of | |
| 345 prompting "Terminate batch job (y/n)?" when interrupted | |
| 346 while running a batch file, even if running in | |
| 347 non-interactive (-c) mode. Try to make up for this | |
| 348 deficiency by forcibly terminating the subprocess if | |
| 349 running non-interactively. */ | |
| 350 if (child.hProcess && | |
| 351 WaitForSingleObject (child.hProcess, 500) != WAIT_OBJECT_0) | |
| 352 TerminateProcess (child.hProcess, 0); | |
| 353 exit (STATUS_CONTROL_C_EXIT); | |
| 354 } | |
| 355 break; | |
| 356 | |
| 357 #if 0 | |
| 358 default: | |
| 359 /* CLOSE, LOGOFF and SHUTDOWN events - actually we don't get these | |
| 360 under Windows 95. */ | |
| 361 fail ("cmdproxy: received %d event\n", event); | |
| 362 if (child.hProcess) | |
| 363 TerminateProcess (child.hProcess, 0); | |
| 364 #endif | |
| 365 } | |
| 366 return TRUE; | |
| 367 } | |
| 368 | |
|
21598
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
369 /* Change from normal usage; return value indicates whether spawn |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
370 succeeded or failed - program return code is returned separately. */ |
| 19236 | 371 int |
|
21598
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
372 spawn (char * progname, char * cmdline, int * retcode) |
| 19236 | 373 { |
|
21598
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
374 BOOL success = FALSE; |
| 19236 | 375 SECURITY_ATTRIBUTES sec_attrs; |
| 376 STARTUPINFO start; | |
|
21598
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
377 /* In theory, passing NULL for the environment block to CreateProcess |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
378 is the same as passing the value of GetEnvironmentStrings, but |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
379 doing this explicitly seems to cure problems running DOS programs |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
380 in some cases. */ |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
381 char * envblock = GetEnvironmentStrings (); |
| 19236 | 382 |
| 383 sec_attrs.nLength = sizeof (sec_attrs); | |
| 384 sec_attrs.lpSecurityDescriptor = NULL; | |
| 385 sec_attrs.bInheritHandle = FALSE; | |
| 386 | |
| 387 memset (&start, 0, sizeof (start)); | |
| 388 start.cb = sizeof (start); | |
| 389 | |
| 390 if (CreateProcess (progname, cmdline, &sec_attrs, NULL, TRUE, | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
391 0, envblock, NULL, &start, &child)) |
| 19236 | 392 { |
|
21598
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
393 success = TRUE; |
| 19236 | 394 /* wait for completion and pass on return code */ |
| 395 WaitForSingleObject (child.hProcess, INFINITE); | |
|
21598
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
396 if (retcode) |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
397 GetExitCodeProcess (child.hProcess, (DWORD *)retcode); |
| 19236 | 398 CloseHandle (child.hThread); |
| 399 CloseHandle (child.hProcess); | |
| 400 child.hProcess = NULL; | |
| 401 } | |
| 402 | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
403 FreeEnvironmentStrings (envblock); |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
404 |
|
21598
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
405 return success; |
| 19236 | 406 } |
| 407 | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
408 /* Return size of current environment block. */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
409 int |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
410 get_env_size () |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
411 { |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
412 char * start = GetEnvironmentStrings (); |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
413 char * tmp = start; |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
414 |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
415 while (tmp[0] || tmp[1]) |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
416 ++tmp; |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
417 FreeEnvironmentStrings (start); |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
418 return tmp + 2 - start; |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
419 } |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
420 |
| 19236 | 421 /******* Main program ********************************************/ |
| 422 | |
| 423 int | |
| 424 main (int argc, char ** argv) | |
| 425 { | |
| 426 int rc; | |
| 427 int need_shell; | |
| 428 char * cmdline; | |
| 429 char * progname; | |
| 430 int envsize; | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
431 char **pass_through_args; |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
432 int num_pass_through_args; |
| 19236 | 433 char modname[MAX_PATH]; |
| 434 char path[MAX_PATH]; | |
| 435 | |
| 436 | |
| 437 interactive = TRUE; | |
| 438 | |
| 439 SetConsoleCtrlHandler ((PHANDLER_ROUTINE) console_event_handler, TRUE); | |
| 440 | |
| 441 /* We serve double duty: we can be called either as a proxy for the | |
| 442 real shell (that is, because we are defined to be the user shell), | |
| 443 or in our role as a helper application for running DOS programs. | |
| 444 In the former case, we interpret the command line options as if we | |
| 445 were a Unix shell, but in the latter case we simply pass our | |
| 446 command line to CreateProcess. We know which case we are dealing | |
| 447 with by whether argv[0] refers to ourself or to some other program. | |
| 448 (This relies on an arcane feature of CreateProcess, where we can | |
| 449 specify cmdproxy as the module to run, but specify a different | |
| 450 program in the command line - the MSVC startup code sets argv[0] | |
| 451 from the command line.) */ | |
| 452 | |
| 453 if (!GetModuleFileName (NULL, modname, sizeof (modname))) | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
454 fail ("error: GetModuleFileName failed\n"); |
| 19236 | 455 |
| 456 /* Although Emacs always sets argv[0] to an absolute pathname, we | |
| 457 might get run in other ways as well, so convert argv[0] to an | |
| 458 absolute name before comparing to the module name. */ | |
| 459 if (!SearchPath (NULL, argv[0], ".exe", sizeof (path), path, &progname) | |
| 460 || stricmp (modname, path) != 0) | |
| 461 { | |
| 462 /* We are being used as a helper to run a DOS app; just pass | |
| 463 command line to DOS app without change. */ | |
| 464 /* TODO: fill in progname. */ | |
|
21598
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
465 if (spawn (NULL, GetCommandLine (), &rc)) |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
466 return rc; |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
467 fail ("Could not run %s\n", GetCommandLine ()); |
| 19236 | 468 } |
| 469 | |
| 470 /* Process command line. If running interactively (-c or /c not | |
| 471 specified) then spawn a real command shell, passing it the command | |
| 472 line arguments. | |
| 473 | |
| 474 If not running interactively, then attempt to execute the specified | |
| 475 command directly. If necessary, spawn a real shell to execute the | |
| 476 command. | |
| 477 | |
| 478 */ | |
| 479 | |
| 480 progname = NULL; | |
| 481 cmdline = NULL; | |
| 482 /* If no args, spawn real shell for interactive use. */ | |
| 483 need_shell = TRUE; | |
| 484 interactive = TRUE; | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
485 /* Ask command.com to create an environment block with a reasonable |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
486 amount of free space. */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
487 envsize = get_env_size () + 300; |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
488 pass_through_args = (char **) alloca (argc * sizeof(char *)); |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
489 num_pass_through_args = 0; |
| 19236 | 490 |
| 491 while (--argc > 0) | |
| 492 { | |
| 493 ++argv; | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
494 /* Act on switches we recognize (mostly single letter switches, |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
495 except for -e); all unrecognised switches and extra args are |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
496 passed on to real shell if used (only really of benefit for |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
497 interactive use, but allow for batch use as well). Accept / as |
| 19236 | 498 switch char for compatability with cmd.exe. */ |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
499 if ( ((*argv)[0] == '-' || (*argv)[0] == '/') && (*argv)[1] != '\0' ) |
| 19236 | 500 { |
| 501 if ( ((*argv)[1] == 'c') && ((*argv)[2] == '\0') ) | |
| 502 { | |
| 503 if (--argc == 0) | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
504 fail ("error: expecting arg for %s\n", *argv); |
| 19236 | 505 cmdline = *(++argv); |
| 506 interactive = FALSE; | |
| 507 } | |
| 508 else if ( ((*argv)[1] == 'i') && ((*argv)[2] == '\0') ) | |
| 509 { | |
| 510 if (cmdline) | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
511 warn ("warning: %s ignored because of -c\n", *argv); |
| 19236 | 512 } |
| 513 else if ( ((*argv)[1] == 'e') && ((*argv)[2] == ':') ) | |
| 514 { | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
515 int requested_envsize = atoi (*argv + 3); |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
516 /* Enforce a reasonable minimum size, as above. */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
517 if (requested_envsize > envsize) |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
518 envsize = requested_envsize; |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
519 /* For sanity, enforce a reasonable maximum. */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
520 if (envsize > 32768) |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
521 envsize = 32768; |
| 19236 | 522 } |
| 523 else | |
| 524 { | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
525 /* warn ("warning: unknown option %s ignored", *argv); */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
526 pass_through_args[num_pass_through_args++] = *argv; |
| 19236 | 527 } |
| 528 } | |
| 529 else | |
| 530 break; | |
| 531 } | |
| 532 | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
533 #if 0 |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
534 /* I think this is probably not useful - cmd.exe ignores extra |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
535 (non-switch) args in interactive mode, and they cannot be passed on |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
536 when -c was given. */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
537 |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
538 /* Collect any remaining args after (initial) switches. */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
539 while (argc-- > 0) |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
540 { |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
541 pass_through_args[num_pass_through_args++] = *argv++; |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
542 } |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
543 #else |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
544 /* Probably a mistake for there to be extra args; not fatal. */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
545 if (argc > 0) |
|
21733
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
546 warn ("warning: extra args ignored after '%s'\n", argv[-1]); |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
547 #endif |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
548 |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
549 pass_through_args[num_pass_through_args] = NULL; |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
550 |
| 19236 | 551 /* If -c option, determine if we must spawn a real shell, or if we can |
| 552 execute the command directly ourself. */ | |
| 553 if (cmdline) | |
| 554 { | |
| 555 /* If no redirection or piping, and if program can be found, then | |
| 556 run program directly. Otherwise invoke a real shell. */ | |
| 557 | |
| 558 static char copout_chars[] = "|<>&"; | |
| 559 | |
| 560 if (strpbrk (cmdline, copout_chars) == NULL) | |
| 561 { | |
| 562 char *args; | |
| 563 | |
| 564 /* The program name is the first token of cmdline. Since | |
| 565 filenames cannot legally contain embedded quotes, the value | |
| 566 of escape_char doesn't matter. */ | |
| 567 args = cmdline; | |
| 568 if (!get_next_token (path, &args)) | |
| 569 fail ("error: no program name specified.\n"); | |
| 570 | |
| 571 canon_filename (path); | |
| 572 progname = make_absolute (path); | |
| 573 | |
| 574 /* If we found the program, run it directly (if not found it | |
| 575 might be an internal shell command, so don't fail). */ | |
| 576 if (progname != NULL) | |
| 577 need_shell = FALSE; | |
| 578 } | |
| 579 } | |
| 580 | |
|
21733
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
581 pass_to_shell: |
| 19236 | 582 if (need_shell) |
| 583 { | |
| 584 char * p; | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
585 int extra_arg_space = 0; |
| 19236 | 586 |
| 587 progname = getenv ("COMSPEC"); | |
| 588 if (!progname) | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
589 fail ("error: COMSPEC is not set\n"); |
| 19236 | 590 |
| 591 canon_filename (progname); | |
| 592 progname = make_absolute (progname); | |
| 593 | |
| 594 if (progname == NULL || strchr (progname, '\\') == NULL) | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
595 fail ("error: the program %s could not be found.\n", getenv ("COMSPEC")); |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
596 |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
597 /* Work out how much extra space is required for |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
598 pass_through_args. */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
599 for (argv = pass_through_args; *argv != NULL; ++argv) |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
600 /* We don't expect to have to quote switches. */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
601 extra_arg_space += strlen (*argv) + 2; |
| 19236 | 602 |
| 603 if (cmdline) | |
| 604 { | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
605 char * buf; |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
606 |
| 19236 | 607 /* Convert to syntax expected by cmd.exe/command.com for |
| 608 running non-interactively. Always quote program name in | |
| 609 case path contains spaces (fortunately it can't contain | |
| 610 quotes, since they are illegal in path names). */ | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
611 |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
612 buf = p = alloca (strlen (progname) + extra_arg_space + |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
613 strlen (cmdline) + 16); |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
614 |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
615 /* Quote progname in case it contains spaces. */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
616 p += wsprintf (p, "\"%s\"", progname); |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
617 |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
618 /* Include pass_through_args verbatim; these are just switches |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
619 so should not need quoting. */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
620 for (argv = pass_through_args; *argv != NULL; ++argv) |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
621 p += wsprintf (p, " %s", *argv); |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
622 |
|
21733
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
623 if (GetVersion () & 0x80000000) |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
624 /* Set environment size to something reasonable on Windows 95. */ |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
625 wsprintf(p, " /e:%d /c %s", envsize, cmdline); |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
626 else |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
627 wsprintf(p, " /c %s", cmdline); |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
628 cmdline = buf; |
| 19236 | 629 } |
| 630 else | |
| 631 { | |
|
21733
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
632 if (GetVersion () & 0x80000000) |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
633 { |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
634 /* Provide dir arg expected by command.com when first |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
635 started interactively (the "command search path"). |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
636 cmd.exe does not require it, but accepts it silently - |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
637 presumably other DOS compatible shells do the same. To |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
638 avoid potential problems with spaces in command dir |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
639 (which cannot be quoted - command.com doesn't like it), |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
640 we always use the 8.3 form. */ |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
641 GetShortPathName (progname, path, sizeof (path)); |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
642 p = strrchr (path, '\\'); |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
643 /* Trailing slash is acceptable, so always leave it. */ |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
644 *(++p) = '\0'; |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
645 } |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
646 else |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
647 /* Dir arg not needed on NT. */ |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
648 path[0] = '\0'; |
| 19236 | 649 |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
650 cmdline = p = alloca (strlen (progname) + extra_arg_space + |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
651 strlen (path) + 13); |
| 19236 | 652 |
| 653 /* Quote progname in case it contains spaces. */ | |
|
19718
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
654 p += wsprintf (p, "\"%s\" %s", progname, path); |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
655 |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
656 /* Include pass_through_args verbatim; these are just switches |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
657 so should not need quoting. */ |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
658 for (argv = pass_through_args; *argv != NULL; ++argv) |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
659 p += wsprintf (p, " %s", *argv); |
|
f645084cc96c
(get_env_size): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19236
diff
changeset
|
660 |
|
21733
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
661 if (GetVersion () & 0x80000000) |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
662 /* Set environment size to something reasonable on Windows 95. */ |
|
a373669e1196
(main): Only set environment size for real shell, and
Geoff Voelker <voelker@cs.washington.edu>
parents:
21598
diff
changeset
|
663 wsprintf (p, " /e:%d", envsize); |
| 19236 | 664 } |
| 665 } | |
| 666 | |
| 667 if (!progname) | |
| 668 fail ("Internal error: program name not defined\n"); | |
| 669 | |
| 670 if (!cmdline) | |
| 671 cmdline = progname; | |
| 672 | |
|
21598
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
673 if (spawn (progname, cmdline, &rc)) |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
674 return rc; |
| 19236 | 675 |
|
21598
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
676 if (!need_shell) |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
677 { |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
678 need_shell = TRUE; |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
679 goto pass_to_shell; |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
680 } |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
681 |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
682 fail ("Could not run %s\n", progname); |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
683 |
|
235f717e6916
(fail): Exit with a negative return value.
Geoff Voelker <voelker@cs.washington.edu>
parents:
19718
diff
changeset
|
684 return 0; |
| 19236 | 685 } |
