[USB-BRINGUP-TRUNK]
[reactos.git] / base / shell / cmd / cmd.c
1 /*
2 * CMD.C - command-line interface.
3 *
4 *
5 * History:
6 *
7 * 17 Jun 1994 (Tim Norman)
8 * started.
9 *
10 * 08 Aug 1995 (Matt Rains)
11 * I have cleaned up the source code. changes now bring this source
12 * into guidelines for recommended programming practice.
13 *
14 * A added the the standard FreeDOS GNU licence test to the
15 * initialize() function.
16 *
17 * Started to replace puts() with printf(). this will help
18 * standardize output. please follow my lead.
19 *
20 * I have added some constants to help making changes easier.
21 *
22 * 15 Dec 1995 (Tim Norman)
23 * major rewrite of the code to make it more efficient and add
24 * redirection support (finally!)
25 *
26 * 06 Jan 1996 (Tim Norman)
27 * finished adding redirection support! Changed to use our own
28 * exec code (MUCH thanks to Svante Frey!!)
29 *
30 * 29 Jan 1996 (Tim Norman)
31 * added support for CHDIR, RMDIR, MKDIR, and ERASE, as per
32 * suggestion of Steffan Kaiser
33 *
34 * changed "file not found" error message to "bad command or
35 * filename" thanks to Dustin Norman for noticing that confusing
36 * message!
37 *
38 * changed the format to call internal commands (again) so that if
39 * they want to split their commands, they can do it themselves
40 * (none of the internal functions so far need that much power, anyway)
41 *
42 * 27 Aug 1996 (Tim Norman)
43 * added in support for Oliver Mueller's ALIAS command
44 *
45 * 14 Jun 1997 (Steffan Kaiser)
46 * added ctrl-break handling and error level
47 *
48 * 16 Jun 1998 (Rob Lake)
49 * Runs command.com if /P is specified in command line. Command.com
50 * also stays permanent. If /C is in the command line, starts the
51 * program next in the line.
52 *
53 * 21 Jun 1998 (Rob Lake)
54 * Fixed up /C so that arguments for the program
55 *
56 * 08-Jul-1998 (John P. Price)
57 * Now sets COMSPEC environment variable
58 * misc clean up and optimization
59 * added date and time commands
60 * changed to using spawnl instead of exec. exec does not copy the
61 * environment to the child process!
62 *
63 * 14 Jul 1998 (Hans B Pufal)
64 * Reorganised source to be more efficient and to more closely
65 * follow MS-DOS conventions. (eg %..% environment variable
66 * replacement works form command line as well as batch file.
67 *
68 * New organisation also properly support nested batch files.
69 *
70 * New command table structure is half way towards providing a
71 * system in which COMMAND will find out what internal commands
72 * are loaded
73 *
74 * 24 Jul 1998 (Hans B Pufal) [HBP_003]
75 * Fixed return value when called with /C option
76 *
77 * 27 Jul 1998 John P. Price
78 * added config.h include
79 *
80 * 28 Jul 1998 John P. Price
81 * added showcmds function to show commands and options available
82 *
83 * 07-Aug-1998 (John P Price <linux-guru@gcfl.net>)
84 * Fixed carrage return output to better match MSDOS with echo
85 * on or off. (marked with "JPP 19980708")
86 *
87 * 07-Dec-1998 (Eric Kohl)
88 * First ReactOS release.
89 * Extended length of commandline buffers to 512.
90 *
91 * 13-Dec-1998 (Eric Kohl)
92 * Added COMSPEC environment variable.
93 * Added "/t" support (color) on cmd command line.
94 *
95 * 07-Jan-1999 (Eric Kohl)
96 * Added help text ("cmd /?").
97 *
98 * 25-Jan-1999 (Eric Kohl)
99 * Unicode and redirection safe!
100 * Fixed redirections and piping.
101 * Piping is based on temporary files, but basic support
102 * for anonymous pipes already exists.
103 *
104 * 27-Jan-1999 (Eric Kohl)
105 * Replaced spawnl() by CreateProcess().
106 *
107 * 22-Oct-1999 (Eric Kohl)
108 * Added break handler.
109 *
110 * 15-Dec-1999 (Eric Kohl)
111 * Fixed current directory
112 *
113 * 28-Dec-1999 (Eric Kohl)
114 * Restore window title after program/batch execution
115 *
116 * 03-Feb-2001 (Eric Kohl)
117 * Workaround because argc[0] is NULL under ReactOS
118 *
119 * 23-Feb-2001 (Carl Nettelblad <cnettel@hem.passagen.se>)
120 * %envvar% replacement conflicted with for.
121 *
122 * 30-Apr-2004 (Filip Navara <xnavara@volny.cz>)
123 * Make MakeSureDirectoryPathExistsEx unicode safe.
124 *
125 * 28-Mai-2004
126 * Removed MakeSureDirectoryPathExistsEx.
127 * Use the current directory if GetTempPath fails.
128 *
129 * 12-Jul-2004 (Jens Collin <jens.collin@lakhei.com>)
130 * Added ShellExecute call when all else fails to be able to "launch" any file.
131 *
132 * 02-Apr-2005 (Magnus Olsen <magnus@greatlord.com>)
133 * Remove all hardcode string to En.rc
134 *
135 * 06-May-2005 (Klemens Friedl <frik85@gmail.com>)
136 * Add 'help' command (list all commands plus description)
137 *
138 * 06-jul-2005 (Magnus Olsen <magnus@greatlord.com>)
139 * translate '%errorlevel%' to the internal value.
140 * Add proper memmory alloc ProcessInput, the error
141 * handling for memmory handling need to be improve
142 */
143
144 #include <precomp.h>
145 #include <reactos/buildno.h>
146 #include <reactos/version.h>
147
148 #ifndef NT_SUCCESS
149 #define NT_SUCCESS(StatCode) ((NTSTATUS)(StatCode) >= 0)
150 #endif
151
152 typedef NTSTATUS (WINAPI *NtQueryInformationProcessProc)(HANDLE, PROCESSINFOCLASS,
153 PVOID, ULONG, PULONG);
154 typedef NTSTATUS (WINAPI *NtReadVirtualMemoryProc)(HANDLE, PVOID, PVOID, ULONG, PULONG);
155
156 BOOL bExit = FALSE; /* indicates EXIT was typed */
157 BOOL bCanExit = TRUE; /* indicates if this shell is exitable */
158 BOOL bCtrlBreak = FALSE; /* Ctrl-Break or Ctrl-C hit */
159 BOOL bIgnoreEcho = FALSE; /* Set this to TRUE to prevent a newline, when executing a command */
160 INT nErrorLevel = 0; /* Errorlevel of last launched external program */
161 CRITICAL_SECTION ChildProcessRunningLock;
162 BOOL bUnicodeOutput = FALSE;
163 BOOL bDisableBatchEcho = FALSE;
164 BOOL bDelayedExpansion = FALSE;
165 DWORD dwChildProcessId = 0;
166 OSVERSIONINFO osvi;
167 HANDLE hIn;
168 HANDLE hOut;
169 LPTSTR lpOriginalEnvironment;
170 HANDLE CMD_ModuleHandle;
171
172 static NtQueryInformationProcessProc NtQueryInformationProcessPtr = NULL;
173 static NtReadVirtualMemoryProc NtReadVirtualMemoryPtr = NULL;
174
175 #ifdef INCLUDE_CMD_COLOR
176 WORD wDefColor; /* default color */
177 #endif
178
179 /*
180 * convert
181 *
182 * insert commas into a number
183 */
184 INT
185 ConvertULargeInteger(ULONGLONG num, LPTSTR des, UINT len, BOOL bPutSeperator)
186 {
187 TCHAR temp[39]; /* maximum length with nNumberGroups == 1 */
188 UINT n, iTarget;
189
190 if (len <= 1)
191 return 0;
192
193 n = 0;
194 iTarget = nNumberGroups;
195 if (!nNumberGroups)
196 bPutSeperator = FALSE;
197
198 do
199 {
200 if (iTarget == n && bPutSeperator)
201 {
202 iTarget += nNumberGroups + 1;
203 temp[38 - n++] = cThousandSeparator;
204 }
205 temp[38 - n++] = (TCHAR)(num % 10) + _T('0');
206 num /= 10;
207 } while (num > 0);
208 if (n > len-1)
209 n = len-1;
210
211 memcpy(des, temp + 39 - n, n * sizeof(TCHAR));
212 des[n] = _T('\0');
213
214 return n;
215 }
216
217 /*
218 * Is a process a console process?
219 */
220 static BOOL IsConsoleProcess(HANDLE Process)
221 {
222 NTSTATUS Status;
223 PROCESS_BASIC_INFORMATION Info;
224 PEB ProcessPeb;
225 ULONG BytesRead;
226
227 if (NULL == NtQueryInformationProcessPtr || NULL == NtReadVirtualMemoryPtr)
228 {
229 return TRUE;
230 }
231
232 Status = NtQueryInformationProcessPtr (
233 Process, ProcessBasicInformation,
234 &Info, sizeof(PROCESS_BASIC_INFORMATION), NULL);
235 if (! NT_SUCCESS(Status))
236 {
237 WARN ("NtQueryInformationProcess failed with status %08x\n", Status);
238 return TRUE;
239 }
240 Status = NtReadVirtualMemoryPtr (
241 Process, Info.PebBaseAddress, &ProcessPeb,
242 sizeof(PEB), &BytesRead);
243 if (! NT_SUCCESS(Status) || sizeof(PEB) != BytesRead)
244 {
245 WARN ("Couldn't read virt mem status %08x bytes read %lu\n", Status, BytesRead);
246 return TRUE;
247 }
248
249 return IMAGE_SUBSYSTEM_WINDOWS_CUI == ProcessPeb.ImageSubsystem;
250 }
251
252
253
254 #ifdef _UNICODE
255 #define SHELLEXECUTETEXT "ShellExecuteExW"
256 #else
257 #define SHELLEXECUTETEXT "ShellExecuteExA"
258 #endif
259
260 typedef BOOL (WINAPI *MYEX)(LPSHELLEXECUTEINFO lpExecInfo);
261
262 HANDLE RunFile(DWORD flags, LPTSTR filename, LPTSTR params,
263 LPTSTR directory, INT show)
264 {
265 SHELLEXECUTEINFO sei;
266 HMODULE hShell32;
267 MYEX hShExt;
268 BOOL ret;
269
270 TRACE ("RunFile(%s)\n", debugstr_aw(filename));
271 hShell32 = LoadLibrary(_T("SHELL32.DLL"));
272 if (!hShell32)
273 {
274 WARN ("RunFile: couldn't load SHELL32.DLL!\n");
275 return NULL;
276 }
277
278 hShExt = (MYEX)(FARPROC)GetProcAddress(hShell32, SHELLEXECUTETEXT);
279 if (!hShExt)
280 {
281 WARN ("RunFile: couldn't find ShellExecuteExA/W in SHELL32.DLL!\n");
282 FreeLibrary(hShell32);
283 return NULL;
284 }
285
286 TRACE ("RunFile: ShellExecuteExA/W is at %x\n", hShExt);
287
288 memset(&sei, 0, sizeof sei);
289 sei.cbSize = sizeof sei;
290 sei.fMask = flags;
291 sei.lpFile = filename;
292 sei.lpParameters = params;
293 sei.lpDirectory = directory;
294 sei.nShow = show;
295 ret = hShExt(&sei);
296
297 TRACE ("RunFile: ShellExecuteExA/W returned 0x%p\n", ret);
298
299 FreeLibrary(hShell32);
300 return ret ? sei.hProcess : NULL;
301 }
302
303
304
305 /*
306 * This command (in first) was not found in the command table
307 *
308 * Full - buffer to hold whole command line
309 * First - first word on command line
310 * Rest - rest of command line
311 */
312
313 static INT
314 Execute (LPTSTR Full, LPTSTR First, LPTSTR Rest, PARSED_COMMAND *Cmd)
315 {
316 TCHAR szFullName[MAX_PATH];
317 TCHAR *first, *rest, *dot;
318 TCHAR szWindowTitle[MAX_PATH];
319 DWORD dwExitCode = 0;
320 TCHAR *FirstEnd;
321 TCHAR szFullCmdLine [CMDLINE_LENGTH];
322
323 TRACE ("Execute: \'%s\' \'%s\'\n", debugstr_aw(First), debugstr_aw(Rest));
324
325 /* Though it was already parsed once, we have a different set of rules
326 for parsing before we pass to CreateProccess */
327 if (First[0] == _T('/') || (First[0] && First[1] == _T(':')))
328 {
329 /* Use the entire first word as the program name (no change) */
330 FirstEnd = First + _tcslen(First);
331 }
332 else
333 {
334 /* If present in the first word, spaces and ,;=/ end the program
335 * name and become the beginning of its parameters. */
336 BOOL bInside = FALSE;
337 for (FirstEnd = First; *FirstEnd; FirstEnd++)
338 {
339 if (!bInside && (_istspace(*FirstEnd) || _tcschr(_T(",;=/"), *FirstEnd)))
340 break;
341 bInside ^= *FirstEnd == _T('"');
342 }
343 }
344
345 /* Copy the new first/rest into the buffer */
346 first = Full;
347 rest = &Full[FirstEnd - First + 1];
348 _tcscpy(rest, FirstEnd);
349 _tcscat(rest, Rest);
350 *FirstEnd = _T('\0');
351 _tcscpy(first, First);
352
353 /* check for a drive change */
354 if ((_istalpha (first[0])) && (!_tcscmp (first + 1, _T(":"))))
355 {
356 BOOL working = TRUE;
357 if (!SetCurrentDirectory(first))
358 /* Guess they changed disc or something, handle that gracefully and get to root */
359 {
360 TCHAR str[4];
361 str[0]=first[0];
362 str[1]=_T(':');
363 str[2]=_T('\\');
364 str[3]=0;
365 working = SetCurrentDirectory(str);
366 }
367
368 if (!working) ConErrResPuts (STRING_FREE_ERROR1);
369 return !working;
370 }
371
372 /* get the PATH environment variable and parse it */
373 /* search the PATH environment variable for the binary */
374 StripQuotes(First);
375 if (!SearchForExecutable(First, szFullName))
376 {
377 error_bad_command(first);
378 return 1;
379 }
380
381 GetConsoleTitle (szWindowTitle, MAX_PATH);
382
383 /* check if this is a .BAT or .CMD file */
384 dot = _tcsrchr (szFullName, _T('.'));
385 if (dot && (!_tcsicmp (dot, _T(".bat")) || !_tcsicmp (dot, _T(".cmd"))))
386 {
387 while (*rest == _T(' '))
388 rest++;
389 TRACE ("[BATCH: %s %s]\n", debugstr_aw(szFullName), debugstr_aw(rest));
390 dwExitCode = Batch(szFullName, first, rest, Cmd);
391 }
392 else
393 {
394 /* exec the program */
395 PROCESS_INFORMATION prci;
396 STARTUPINFO stui;
397
398 /* build command line for CreateProcess(): FullName + " " + rest */
399 _tcscpy(szFullCmdLine, szFullName);
400
401 if (*rest)
402 {
403 _tcsncat(szFullCmdLine, _T(" "), CMDLINE_LENGTH - _tcslen(szFullCmdLine));
404 _tcsncat(szFullCmdLine, rest, CMDLINE_LENGTH - _tcslen(szFullCmdLine));
405 }
406
407 TRACE ("[EXEC: %s]\n", debugstr_aw(szFullCmdLine));
408
409 /* fill startup info */
410 memset (&stui, 0, sizeof (STARTUPINFO));
411 stui.cb = sizeof (STARTUPINFO);
412 stui.dwFlags = STARTF_USESHOWWINDOW;
413 stui.wShowWindow = SW_SHOWDEFAULT;
414
415 // return console to standard mode
416 SetConsoleMode (GetStdHandle(STD_INPUT_HANDLE),
417 ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT | ENABLE_ECHO_INPUT );
418
419 if (CreateProcess (szFullName,
420 szFullCmdLine,
421 NULL,
422 NULL,
423 TRUE,
424 0, /* CREATE_NEW_PROCESS_GROUP */
425 NULL,
426 NULL,
427 &stui,
428 &prci))
429
430 {
431 CloseHandle(prci.hThread);
432 }
433 else
434 {
435 // See if we can run this with ShellExecute() ie myfile.xls
436 prci.hProcess = RunFile(SEE_MASK_NOCLOSEPROCESS | SEE_MASK_NO_CONSOLE,
437 szFullName,
438 rest,
439 NULL,
440 SW_SHOWNORMAL);
441 }
442
443 if (prci.hProcess != NULL)
444 {
445 if (IsConsoleProcess(prci.hProcess))
446 {
447 EnterCriticalSection(&ChildProcessRunningLock);
448 dwChildProcessId = prci.dwProcessId;
449
450 WaitForSingleObject (prci.hProcess, INFINITE);
451
452 LeaveCriticalSection(&ChildProcessRunningLock);
453
454 GetExitCodeProcess (prci.hProcess, &dwExitCode);
455 nErrorLevel = (INT)dwExitCode;
456 }
457 CloseHandle (prci.hProcess);
458 }
459 else
460 {
461 TRACE ("[ShellExecute failed!: %s]\n", debugstr_aw(Full));
462 error_bad_command (first);
463 dwExitCode = 1;
464 }
465
466 // restore console mode
467 SetConsoleMode (
468 GetStdHandle( STD_INPUT_HANDLE ),
469 ENABLE_PROCESSED_INPUT );
470 }
471
472 /* Get code page if it has been change */
473 InputCodePage= GetConsoleCP();
474 OutputCodePage = GetConsoleOutputCP();
475 SetConsoleTitle (szWindowTitle);
476
477 return dwExitCode;
478 }
479
480
481 /*
482 * look through the internal commands and determine whether or not this
483 * command is one of them. If it is, call the command. If not, call
484 * execute to run it as an external program.
485 *
486 * first - first word on command line
487 * rest - rest of command line
488 */
489
490 INT
491 DoCommand(LPTSTR first, LPTSTR rest, PARSED_COMMAND *Cmd)
492 {
493 TCHAR *com;
494 TCHAR *cp;
495 LPTSTR param; /* pointer to command's parameters */
496 INT cl;
497 LPCOMMAND cmdptr;
498 BOOL nointernal = FALSE;
499 INT ret;
500
501 TRACE ("DoCommand: (\'%s\' \'%s\')\n", debugstr_aw(first), debugstr_aw(rest));
502
503 /* full command line */
504 com = cmd_alloc((_tcslen(first) + _tcslen(rest) + 2) * sizeof(TCHAR));
505 if (com == NULL)
506 {
507 error_out_of_memory();
508 return 1;
509 }
510
511 /* If present in the first word, these characters end the name of an
512 * internal command and become the beginning of its parameters. */
513 cp = first + _tcscspn(first, _T("\t +,/;=[]"));
514
515 for (cl = 0; cl < (cp - first); cl++)
516 {
517 /* These characters do it too, but if one of them is present,
518 * then we check to see if the word is a file name and skip
519 * checking for internal commands if so.
520 * This allows running programs with names like "echo.exe" */
521 if (_tcschr(_T(".:\\"), first[cl]))
522 {
523 TCHAR tmp = *cp;
524 *cp = _T('\0');
525 nointernal = IsExistingFile(first);
526 *cp = tmp;
527 break;
528 }
529 }
530
531 /* Scan internal command table */
532 for (cmdptr = cmds; !nointernal && cmdptr->name; cmdptr++)
533 {
534 if (!_tcsnicmp(first, cmdptr->name, cl) && cmdptr->name[cl] == _T('\0'))
535 {
536 _tcscpy(com, first);
537 _tcscat(com, rest);
538 param = &com[cl];
539
540 /* Skip over whitespace to rest of line, exclude 'echo' command */
541 if (_tcsicmp(cmdptr->name, _T("echo")) != 0)
542 while (_istspace(*param))
543 param++;
544 ret = cmdptr->func(param);
545 cmd_free(com);
546 return ret;
547 }
548 }
549
550 ret = Execute(com, first, rest, Cmd);
551 cmd_free(com);
552 return ret;
553 }
554
555
556 /*
557 * process the command line and execute the appropriate functions
558 * full input/output redirection and piping are supported
559 */
560
561 INT ParseCommandLine (LPTSTR cmd)
562 {
563 INT Ret = 0;
564 PARSED_COMMAND *Cmd = ParseCommand(cmd);
565 if (Cmd)
566 {
567 Ret = ExecuteCommand(Cmd);
568 FreeCommand(Cmd);
569 }
570 return Ret;
571 }
572
573 /* Execute a command without waiting for it to finish. If it's an internal
574 * command or batch file, we must create a new cmd.exe process to handle it.
575 * TODO: For now, this just always creates a cmd.exe process.
576 * This works, but is inefficient for running external programs,
577 * which could just be run directly. */
578 static HANDLE
579 ExecuteAsync(PARSED_COMMAND *Cmd)
580 {
581 TCHAR CmdPath[MAX_PATH];
582 TCHAR CmdParams[CMDLINE_LENGTH], *ParamsEnd;
583 STARTUPINFO stui;
584 PROCESS_INFORMATION prci;
585
586 /* Get the path to cmd.exe */
587 GetModuleFileName(NULL, CmdPath, MAX_PATH);
588
589 /* Build the parameter string to pass to cmd.exe */
590 ParamsEnd = _stpcpy(CmdParams, _T("/S/D/C\""));
591 ParamsEnd = Unparse(Cmd, ParamsEnd, &CmdParams[CMDLINE_LENGTH - 2]);
592 if (!ParamsEnd)
593 {
594 error_out_of_memory();
595 return NULL;
596 }
597 _tcscpy(ParamsEnd, _T("\""));
598
599 memset(&stui, 0, sizeof stui);
600 stui.cb = sizeof(STARTUPINFO);
601 if (!CreateProcess(CmdPath, CmdParams, NULL, NULL, TRUE, 0,
602 NULL, NULL, &stui, &prci))
603 {
604 ErrorMessage(GetLastError(), NULL);
605 return NULL;
606 }
607
608 CloseHandle(prci.hThread);
609 return prci.hProcess;
610 }
611
612 static VOID
613 ExecutePipeline(PARSED_COMMAND *Cmd)
614 {
615 #ifdef FEATURE_REDIRECTION
616 HANDLE hInput = NULL;
617 HANDLE hOldConIn = GetStdHandle(STD_INPUT_HANDLE);
618 HANDLE hOldConOut = GetStdHandle(STD_OUTPUT_HANDLE);
619 HANDLE hProcess[MAXIMUM_WAIT_OBJECTS];
620 INT nProcesses = 0;
621 DWORD dwExitCode;
622
623 /* Do all but the last pipe command */
624 do
625 {
626 HANDLE hPipeRead, hPipeWrite;
627 if (nProcesses > (MAXIMUM_WAIT_OBJECTS - 2))
628 {
629 error_too_many_parameters(_T("|"));
630 goto failed;
631 }
632
633 /* Create the pipe that this process will write into.
634 * Make the handles non-inheritable initially, because this
635 * process shouldn't inherit the reading handle. */
636 if (!CreatePipe(&hPipeRead, &hPipeWrite, NULL, 0))
637 {
638 error_no_pipe();
639 goto failed;
640 }
641
642 /* The writing side of the pipe is STDOUT for this process */
643 SetHandleInformation(hPipeWrite, HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT);
644 SetStdHandle(STD_OUTPUT_HANDLE, hPipeWrite);
645
646 /* Execute it (error check is done later for easier cleanup) */
647 hProcess[nProcesses] = ExecuteAsync(Cmd->Subcommands);
648 CloseHandle(hPipeWrite);
649 if (hInput)
650 CloseHandle(hInput);
651
652 /* The reading side of the pipe will be STDIN for the next process */
653 SetHandleInformation(hPipeRead, HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT);
654 SetStdHandle(STD_INPUT_HANDLE, hPipeRead);
655 hInput = hPipeRead;
656
657 if (!hProcess[nProcesses])
658 goto failed;
659 nProcesses++;
660
661 Cmd = Cmd->Subcommands->Next;
662 } while (Cmd->Type == C_PIPE);
663
664 /* The last process uses the original STDOUT */
665 SetStdHandle(STD_OUTPUT_HANDLE, hOldConOut);
666 hProcess[nProcesses] = ExecuteAsync(Cmd);
667 if (!hProcess[nProcesses])
668 goto failed;
669 nProcesses++;
670 CloseHandle(hInput);
671 SetStdHandle(STD_INPUT_HANDLE, hOldConIn);
672
673 /* Wait for all processes to complete */
674 EnterCriticalSection(&ChildProcessRunningLock);
675 WaitForMultipleObjects(nProcesses, hProcess, TRUE, INFINITE);
676 LeaveCriticalSection(&ChildProcessRunningLock);
677
678 /* Use the exit code of the last process in the pipeline */
679 GetExitCodeProcess(hProcess[nProcesses - 1], &dwExitCode);
680 nErrorLevel = (INT)dwExitCode;
681
682 while (--nProcesses >= 0)
683 CloseHandle(hProcess[nProcesses]);
684 return;
685
686 failed:
687 if (hInput)
688 CloseHandle(hInput);
689 while (--nProcesses >= 0)
690 {
691 TerminateProcess(hProcess[nProcesses], 0);
692 CloseHandle(hProcess[nProcesses]);
693 }
694 SetStdHandle(STD_INPUT_HANDLE, hOldConIn);
695 SetStdHandle(STD_OUTPUT_HANDLE, hOldConOut);
696 #endif
697 }
698
699 INT
700 ExecuteCommand(PARSED_COMMAND *Cmd)
701 {
702 PARSED_COMMAND *Sub;
703 LPTSTR First, Rest;
704 INT Ret = 0;
705
706 if (!PerformRedirection(Cmd->Redirections))
707 return 1;
708
709 switch (Cmd->Type)
710 {
711 case C_COMMAND:
712 Ret = 1;
713 First = DoDelayedExpansion(Cmd->Command.First);
714 if (First)
715 {
716 Rest = DoDelayedExpansion(Cmd->Command.Rest);
717 if (Rest)
718 {
719 Ret = DoCommand(First, Rest, Cmd);
720 cmd_free(Rest);
721 }
722 cmd_free(First);
723 }
724 break;
725 case C_QUIET:
726 case C_BLOCK:
727 case C_MULTI:
728 for (Sub = Cmd->Subcommands; Sub; Sub = Sub->Next)
729 Ret = ExecuteCommand(Sub);
730 break;
731 case C_IFFAILURE:
732 Sub = Cmd->Subcommands;
733 Ret = ExecuteCommand(Sub);
734 if (Ret != 0)
735 {
736 nErrorLevel = Ret;
737 Ret = ExecuteCommand(Sub->Next);
738 }
739 break;
740 case C_IFSUCCESS:
741 Sub = Cmd->Subcommands;
742 Ret = ExecuteCommand(Sub);
743 if (Ret == 0)
744 Ret = ExecuteCommand(Sub->Next);
745 break;
746 case C_PIPE:
747 ExecutePipeline(Cmd);
748 break;
749 case C_IF:
750 Ret = ExecuteIf(Cmd);
751 break;
752 case C_FOR:
753 Ret = ExecuteFor(Cmd);
754 break;
755 }
756
757 UndoRedirection(Cmd->Redirections, NULL);
758 return Ret;
759 }
760
761 LPTSTR
762 GetEnvVar(LPCTSTR varName)
763 {
764 static LPTSTR ret = NULL;
765 UINT size;
766
767 cmd_free(ret);
768 ret = NULL;
769 size = GetEnvironmentVariable(varName, NULL, 0);
770 if (size > 0)
771 {
772 ret = cmd_alloc(size * sizeof(TCHAR));
773 if (ret != NULL)
774 GetEnvironmentVariable(varName, ret, size + 1);
775 }
776 return ret;
777 }
778
779 LPCTSTR
780 GetEnvVarOrSpecial(LPCTSTR varName)
781 {
782 static TCHAR ret[MAX_PATH];
783
784 LPTSTR var = GetEnvVar(varName);
785 if (var)
786 return var;
787
788 /* env var doesn't exist, look for a "special" one */
789 /* %CD% */
790 if (_tcsicmp(varName,_T("cd")) ==0)
791 {
792 GetCurrentDirectory(MAX_PATH, ret);
793 return ret;
794 }
795 /* %TIME% */
796 else if (_tcsicmp(varName,_T("time")) ==0)
797 {
798 return GetTimeString();
799 }
800 /* %DATE% */
801 else if (_tcsicmp(varName,_T("date")) ==0)
802 {
803 return GetDateString();
804 }
805
806 /* %RANDOM% */
807 else if (_tcsicmp(varName,_T("random")) ==0)
808 {
809 /* Get random number */
810 _itot(rand(),ret,10);
811 return ret;
812 }
813
814 /* %CMDCMDLINE% */
815 else if (_tcsicmp(varName,_T("cmdcmdline")) ==0)
816 {
817 return GetCommandLine();
818 }
819
820 /* %CMDEXTVERSION% */
821 else if (_tcsicmp(varName,_T("cmdextversion")) ==0)
822 {
823 /* Set version number to 2 */
824 _itot(2,ret,10);
825 return ret;
826 }
827
828 /* %ERRORLEVEL% */
829 else if (_tcsicmp(varName,_T("errorlevel")) ==0)
830 {
831 _itot(nErrorLevel,ret,10);
832 return ret;
833 }
834
835 return NULL;
836 }
837
838 /* Handle the %~var syntax */
839 static LPTSTR
840 GetEnhancedVar(TCHAR **pFormat, LPTSTR (*GetVar)(TCHAR, BOOL *))
841 {
842 static const TCHAR ModifierTable[] = _T("dpnxfsatz");
843 enum {
844 M_DRIVE = 1, /* D: drive letter */
845 M_PATH = 2, /* P: path */
846 M_NAME = 4, /* N: filename */
847 M_EXT = 8, /* X: extension */
848 M_FULL = 16, /* F: full path (drive+path+name+ext) */
849 M_SHORT = 32, /* S: full path (drive+path+name+ext), use short names */
850 M_ATTR = 64, /* A: attributes */
851 M_TIME = 128, /* T: modification time */
852 M_SIZE = 256, /* Z: file size */
853 } Modifiers = 0;
854
855 TCHAR *Format, *FormatEnd;
856 TCHAR *PathVarName = NULL;
857 LPTSTR Variable;
858 TCHAR *VarEnd;
859 BOOL VariableIsParam0;
860 TCHAR FullPath[MAX_PATH];
861 TCHAR FixedPath[MAX_PATH], *Filename, *Extension;
862 HANDLE hFind;
863 WIN32_FIND_DATA w32fd;
864 TCHAR *In, *Out;
865
866 static TCHAR Result[CMDLINE_LENGTH];
867
868 /* There is ambiguity between modifier characters and FOR variables;
869 * the rule that cmd uses is to pick the longest possible match.
870 * For example, if there is a %n variable, then out of %~anxnd,
871 * %~anxn will be substituted rather than just %~an. */
872
873 /* First, go through as many modifier characters as possible */
874 FormatEnd = Format = *pFormat;
875 while (*FormatEnd && _tcschr(ModifierTable, _totlower(*FormatEnd)))
876 FormatEnd++;
877
878 if (*FormatEnd == _T('$'))
879 {
880 /* $PATH: syntax */
881 PathVarName = FormatEnd + 1;
882 FormatEnd = _tcschr(PathVarName, _T(':'));
883 if (!FormatEnd)
884 return NULL;
885
886 /* Must be immediately followed by the variable */
887 Variable = GetVar(*++FormatEnd, &VariableIsParam0);
888 if (!Variable)
889 return NULL;
890 }
891 else
892 {
893 /* Backtrack if necessary to get a variable name match */
894 while (!(Variable = GetVar(*FormatEnd, &VariableIsParam0)))
895 {
896 if (FormatEnd == Format)
897 return NULL;
898 FormatEnd--;
899 }
900 }
901
902 for (; Format < FormatEnd && *Format != _T('$'); Format++)
903 Modifiers |= 1 << (_tcschr(ModifierTable, _totlower(*Format)) - ModifierTable);
904
905 *pFormat = FormatEnd + 1;
906
907 /* Exclude the leading and trailing quotes */
908 VarEnd = &Variable[_tcslen(Variable)];
909 if (*Variable == _T('"'))
910 {
911 Variable++;
912 if (VarEnd > Variable && VarEnd[-1] == _T('"'))
913 VarEnd--;
914 }
915
916 if ((char *)VarEnd - (char *)Variable >= sizeof Result)
917 return _T("");
918 memcpy(Result, Variable, (char *)VarEnd - (char *)Variable);
919 Result[VarEnd - Variable] = _T('\0');
920
921 if (PathVarName)
922 {
923 /* $PATH: syntax - search the directories listed in the
924 * specified environment variable for the file */
925 LPTSTR PathVar;
926 FormatEnd[-1] = _T('\0');
927 PathVar = GetEnvVar(PathVarName);
928 FormatEnd[-1] = _T(':');
929 if (!PathVar ||
930 !SearchPath(PathVar, Result, NULL, MAX_PATH, FullPath, NULL))
931 {
932 return _T("");
933 }
934 }
935 else if (Modifiers == 0)
936 {
937 /* For plain %~var with no modifiers, just return the variable without quotes */
938 return Result;
939 }
940 else if (VariableIsParam0)
941 {
942 /* Special case: If the variable is %0 and modifier characters are present,
943 * use the batch file's path (which includes the .bat/.cmd extension)
944 * rather than the actual %0 variable (which might not). */
945 _tcscpy(FullPath, bc->BatchFilePath);
946 }
947 else
948 {
949 /* Convert the variable, now without quotes, to a full path */
950 if (!GetFullPathName(Result, MAX_PATH, FullPath, NULL))
951 return _T("");
952 }
953
954 /* Next step is to change the path to fix letter case (e.g.
955 * C:\ReAcToS -> C:\ReactOS) and, if requested with the S modifier,
956 * replace long filenames with short. */
957
958 In = FullPath;
959 Out = FixedPath;
960
961 /* Copy drive letter */
962 *Out++ = *In++;
963 *Out++ = *In++;
964 *Out++ = *In++;
965 /* Loop over each \-separated component in the path */
966 do {
967 TCHAR *Next = _tcschr(In, _T('\\'));
968 if (Next)
969 *Next++ = _T('\0');
970 /* Use FindFirstFile to get the correct name */
971 if (Out + _tcslen(In) + 1 >= &FixedPath[MAX_PATH])
972 return _T("");
973 _tcscpy(Out, In);
974 hFind = FindFirstFile(FixedPath, &w32fd);
975 /* If it doesn't exist, just leave the name as it was given */
976 if (hFind != INVALID_HANDLE_VALUE)
977 {
978 LPTSTR FixedComponent = w32fd.cFileName;
979 if (*w32fd.cAlternateFileName &&
980 ((Modifiers & M_SHORT) || !_tcsicmp(In, w32fd.cAlternateFileName)))
981 {
982 FixedComponent = w32fd.cAlternateFileName;
983 }
984 FindClose(hFind);
985
986 if (Out + _tcslen(FixedComponent) + 1 >= &FixedPath[MAX_PATH])
987 return _T("");
988 _tcscpy(Out, FixedComponent);
989 }
990 Filename = Out;
991 Out += _tcslen(Out);
992 *Out++ = _T('\\');
993
994 In = Next;
995 } while (In != NULL);
996 Out[-1] = _T('\0');
997
998 /* Build the result string. Start with attributes, modification time, and
999 * file size. If the file didn't exist, these fields will all be empty. */
1000 Out = Result;
1001 if (hFind != INVALID_HANDLE_VALUE)
1002 {
1003 if (Modifiers & M_ATTR)
1004 {
1005 static const struct {
1006 TCHAR Character;
1007 WORD Value;
1008 } *Attrib, Table[] = {
1009 { _T('d'), FILE_ATTRIBUTE_DIRECTORY },
1010 { _T('r'), FILE_ATTRIBUTE_READONLY },
1011 { _T('a'), FILE_ATTRIBUTE_ARCHIVE },
1012 { _T('h'), FILE_ATTRIBUTE_HIDDEN },
1013 { _T('s'), FILE_ATTRIBUTE_SYSTEM },
1014 { _T('c'), FILE_ATTRIBUTE_COMPRESSED },
1015 { _T('o'), FILE_ATTRIBUTE_OFFLINE },
1016 { _T('t'), FILE_ATTRIBUTE_TEMPORARY },
1017 { _T('l'), FILE_ATTRIBUTE_REPARSE_POINT },
1018 };
1019 for (Attrib = Table; Attrib != &Table[9]; Attrib++)
1020 {
1021 *Out++ = w32fd.dwFileAttributes & Attrib->Value
1022 ? Attrib->Character
1023 : _T('-');
1024 }
1025 *Out++ = _T(' ');
1026 }
1027 if (Modifiers & M_TIME)
1028 {
1029 FILETIME ft;
1030 SYSTEMTIME st;
1031 FileTimeToLocalFileTime(&w32fd.ftLastWriteTime, &ft);
1032 FileTimeToSystemTime(&ft, &st);
1033
1034 Out += FormatDate(Out, &st, TRUE);
1035 *Out++ = _T(' ');
1036 Out += FormatTime(Out, &st);
1037 *Out++ = _T(' ');
1038 }
1039 if (Modifiers & M_SIZE)
1040 {
1041 ULARGE_INTEGER Size;
1042 Size.LowPart = w32fd.nFileSizeLow;
1043 Size.HighPart = w32fd.nFileSizeHigh;
1044 Out += _stprintf(Out, _T("%I64u "), Size.QuadPart);
1045 }
1046 }
1047
1048 /* When using the path-searching syntax or the S modifier,
1049 * at least part of the file path is always included.
1050 * If none of the DPNX modifiers are present, include the full path */
1051 if (PathVarName || (Modifiers & M_SHORT))
1052 if ((Modifiers & (M_DRIVE | M_PATH | M_NAME | M_EXT)) == 0)
1053 Modifiers |= M_FULL;
1054
1055 /* Now add the requested parts of the name.
1056 * With the F modifier, add all parts to form the full path. */
1057 Extension = _tcsrchr(Filename, _T('.'));
1058 if (Modifiers & (M_DRIVE | M_FULL))
1059 {
1060 *Out++ = FixedPath[0];
1061 *Out++ = FixedPath[1];
1062 }
1063 if (Modifiers & (M_PATH | M_FULL))
1064 {
1065 memcpy(Out, &FixedPath[2], (char *)Filename - (char *)&FixedPath[2]);
1066 Out += Filename - &FixedPath[2];
1067 }
1068 if (Modifiers & (M_NAME | M_FULL))
1069 {
1070 while (*Filename && Filename != Extension)
1071 *Out++ = *Filename++;
1072 }
1073 if (Modifiers & (M_EXT | M_FULL))
1074 {
1075 if (Extension)
1076 Out = _stpcpy(Out, Extension);
1077 }
1078
1079 /* Trim trailing space which otherwise would appear as a
1080 * result of using the A/T/Z modifiers but no others. */
1081 while (Out != &Result[0] && Out[-1] == _T(' '))
1082 Out--;
1083 *Out = _T('\0');
1084
1085 return Result;
1086 }
1087
1088 LPCTSTR
1089 GetBatchVar(TCHAR *varName, UINT *varNameLen)
1090 {
1091 LPCTSTR ret;
1092 TCHAR *varNameEnd;
1093 BOOL dummy;
1094
1095 *varNameLen = 1;
1096
1097 switch ( *varName )
1098 {
1099 case _T('~'):
1100 varNameEnd = varName + 1;
1101 ret = GetEnhancedVar(&varNameEnd, FindArg);
1102 if (!ret)
1103 {
1104 error_syntax(varName);
1105 return NULL;
1106 }
1107 *varNameLen = varNameEnd - varName;
1108 return ret;
1109 case _T('0'):
1110 case _T('1'):
1111 case _T('2'):
1112 case _T('3'):
1113 case _T('4'):
1114 case _T('5'):
1115 case _T('6'):
1116 case _T('7'):
1117 case _T('8'):
1118 case _T('9'):
1119 return FindArg(*varName, &dummy);
1120
1121 case _T('*'):
1122 //
1123 // Copy over the raw params(not including the batch file name
1124 //
1125 return bc->raw_params;
1126
1127 case _T('%'):
1128 return _T("%");
1129 }
1130 return NULL;
1131 }
1132
1133 BOOL
1134 SubstituteVars(TCHAR *Src, TCHAR *Dest, TCHAR Delim)
1135 {
1136 #define APPEND(From, Length) { \
1137 if (Dest + (Length) > DestEnd) \
1138 goto too_long; \
1139 memcpy(Dest, From, (Length) * sizeof(TCHAR)); \
1140 Dest += Length; }
1141 #define APPEND1(Char) { \
1142 if (Dest >= DestEnd) \
1143 goto too_long; \
1144 *Dest++ = Char; }
1145
1146 TCHAR *DestEnd = Dest + CMDLINE_LENGTH - 1;
1147 const TCHAR *Var;
1148 int VarLength;
1149 TCHAR *SubstStart;
1150 TCHAR EndChr;
1151 while (*Src)
1152 {
1153 if (*Src != Delim)
1154 {
1155 APPEND1(*Src++)
1156 continue;
1157 }
1158
1159 Src++;
1160 if (bc && Delim == _T('%'))
1161 {
1162 UINT NameLen;
1163 Var = GetBatchVar(Src, &NameLen);
1164 if (Var != NULL)
1165 {
1166 VarLength = _tcslen(Var);
1167 APPEND(Var, VarLength)
1168 Src += NameLen;
1169 continue;
1170 }
1171 }
1172
1173 /* Find the end of the variable name. A colon (:) will usually
1174 * end the name and begin the optional modifier, but not if it
1175 * is immediately followed by the delimiter (%VAR:%). */
1176 SubstStart = Src;
1177 while (*Src != Delim && !(*Src == _T(':') && Src[1] != Delim))
1178 {
1179 if (!*Src)
1180 goto bad_subst;
1181 Src++;
1182 }
1183
1184 EndChr = *Src;
1185 *Src = _T('\0');
1186 Var = GetEnvVarOrSpecial(SubstStart);
1187 *Src++ = EndChr;
1188 if (Var == NULL)
1189 {
1190 /* In a batch file, %NONEXISTENT% "expands" to an empty string */
1191 if (bc)
1192 continue;
1193 goto bad_subst;
1194 }
1195 VarLength = _tcslen(Var);
1196
1197 if (EndChr == Delim)
1198 {
1199 /* %VAR% - use as-is */
1200 APPEND(Var, VarLength)
1201 }
1202 else if (*Src == _T('~'))
1203 {
1204 /* %VAR:~[start][,length]% - substring
1205 * Negative values are offsets from the end */
1206 int Start = _tcstol(Src + 1, &Src, 0);
1207 int End = VarLength;
1208 if (Start < 0)
1209 Start += VarLength;
1210 Start = max(Start, 0);
1211 Start = min(Start, VarLength);
1212 if (*Src == _T(','))
1213 {
1214 End = _tcstol(Src + 1, &Src, 0);
1215 End += (End < 0) ? VarLength : Start;
1216 End = max(End, Start);
1217 End = min(End, VarLength);
1218 }
1219 if (*Src++ != Delim)
1220 goto bad_subst;
1221 APPEND(&Var[Start], End - Start);
1222 }
1223 else
1224 {
1225 /* %VAR:old=new% - replace all occurrences of old with new
1226 * %VAR:*old=new% - replace first occurrence only,
1227 * and remove everything before it */
1228 TCHAR *Old, *New;
1229 DWORD OldLength, NewLength;
1230 BOOL Star = FALSE;
1231 int LastMatch = 0, i = 0;
1232
1233 if (*Src == _T('*'))
1234 {
1235 Star = TRUE;
1236 Src++;
1237 }
1238
1239 /* the string to replace may contain the delimiter */
1240 Src = _tcschr(Old = Src, _T('='));
1241 if (Src == NULL)
1242 goto bad_subst;
1243 OldLength = Src++ - Old;
1244 if (OldLength == 0)
1245 goto bad_subst;
1246
1247 Src = _tcschr(New = Src, Delim);
1248 if (Src == NULL)
1249 goto bad_subst;
1250 NewLength = Src++ - New;
1251
1252 while (i < VarLength)
1253 {
1254 if (_tcsnicmp(&Var[i], Old, OldLength) == 0)
1255 {
1256 if (!Star)
1257 APPEND(&Var[LastMatch], i - LastMatch)
1258 APPEND(New, NewLength)
1259 i += OldLength;
1260 LastMatch = i;
1261 if (Star)
1262 break;
1263 continue;
1264 }
1265 i++;
1266 }
1267 APPEND(&Var[LastMatch], VarLength - LastMatch)
1268 }
1269 continue;
1270
1271 bad_subst:
1272 Src = SubstStart;
1273 if (!bc)
1274 APPEND1(Delim)
1275 }
1276 *Dest = _T('\0');
1277 return TRUE;
1278 too_long:
1279 ConOutResPrintf(STRING_ALIAS_ERROR);
1280 nErrorLevel = 9023;
1281 return FALSE;
1282 #undef APPEND
1283 #undef APPEND1
1284 }
1285
1286 /* Search the list of FOR contexts for a variable */
1287 static LPTSTR FindForVar(TCHAR Var, BOOL *IsParam0)
1288 {
1289 FOR_CONTEXT *Ctx;
1290 *IsParam0 = FALSE;
1291 for (Ctx = fc; Ctx != NULL; Ctx = Ctx->prev)
1292 if ((UINT)(Var - Ctx->firstvar) < Ctx->varcount)
1293 return Ctx->values[Var - Ctx->firstvar];
1294 return NULL;
1295 }
1296
1297 BOOL
1298 SubstituteForVars(TCHAR *Src, TCHAR *Dest)
1299 {
1300 TCHAR *DestEnd = &Dest[CMDLINE_LENGTH - 1];
1301 while (*Src)
1302 {
1303 if (Src[0] == _T('%'))
1304 {
1305 BOOL Dummy;
1306 LPTSTR End = &Src[2];
1307 LPTSTR Value = NULL;
1308
1309 if (Src[1] == _T('~'))
1310 Value = GetEnhancedVar(&End, FindForVar);
1311
1312 if (!Value)
1313 Value = FindForVar(Src[1], &Dummy);
1314
1315 if (Value)
1316 {
1317 if (Dest + _tcslen(Value) > DestEnd)
1318 return FALSE;
1319 Dest = _stpcpy(Dest, Value);
1320 Src = End;
1321 continue;
1322 }
1323 }
1324 /* Not a variable; just copy the character */
1325 if (Dest >= DestEnd)
1326 return FALSE;
1327 *Dest++ = *Src++;
1328 }
1329 *Dest = _T('\0');
1330 return TRUE;
1331 }
1332
1333 LPTSTR
1334 DoDelayedExpansion(LPTSTR Line)
1335 {
1336 TCHAR Buf1[CMDLINE_LENGTH];
1337 TCHAR Buf2[CMDLINE_LENGTH];
1338
1339 /* First, substitute FOR variables */
1340 if (!SubstituteForVars(Line, Buf1))
1341 return NULL;
1342
1343 if (!bDelayedExpansion || !_tcschr(Buf1, _T('!')))
1344 return cmd_dup(Buf1);
1345
1346 /* FIXME: Delayed substitutions actually aren't quite the same as
1347 * immediate substitutions. In particular, it's possible to escape
1348 * the exclamation point using ^. */
1349 if (!SubstituteVars(Buf1, Buf2, _T('!')))
1350 return NULL;
1351 return cmd_dup(Buf2);
1352 }
1353
1354
1355 /*
1356 * do the prompt/input/process loop
1357 *
1358 */
1359
1360 BOOL
1361 ReadLine (TCHAR *commandline, BOOL bMore)
1362 {
1363 TCHAR readline[CMDLINE_LENGTH];
1364 LPTSTR ip;
1365
1366 /* if no batch input then... */
1367 if (bc == NULL)
1368 {
1369 if (bMore)
1370 {
1371 ConOutResPrintf(STRING_MORE);
1372 }
1373 else
1374 {
1375 /* JPP 19980807 - if echo off, don't print prompt */
1376 if (bEcho)
1377 {
1378 if (!bIgnoreEcho)
1379 ConOutChar('\n');
1380 PrintPrompt();
1381 }
1382 }
1383
1384 if (!ReadCommand(readline, CMDLINE_LENGTH - 1))
1385 {
1386 bExit = TRUE;
1387 return FALSE;
1388 }
1389
1390 if (CheckCtrlBreak(BREAK_INPUT))
1391 {
1392 ConOutPuts(_T("\n"));
1393 return FALSE;
1394 }
1395 ip = readline;
1396 }
1397 else
1398 {
1399 ip = ReadBatchLine();
1400 if (!ip)
1401 return FALSE;
1402 }
1403
1404 return SubstituteVars(ip, commandline, _T('%'));
1405 }
1406
1407 static VOID
1408 ProcessInput()
1409 {
1410 PARSED_COMMAND *Cmd;
1411
1412 while (!bCanExit || !bExit)
1413 {
1414 Cmd = ParseCommand(NULL);
1415 if (!Cmd)
1416 continue;
1417
1418 ExecuteCommand(Cmd);
1419 FreeCommand(Cmd);
1420 }
1421 }
1422
1423
1424 /*
1425 * control-break handler.
1426 */
1427 BOOL WINAPI BreakHandler (DWORD dwCtrlType)
1428 {
1429
1430 DWORD dwWritten;
1431 INPUT_RECORD rec;
1432 static BOOL SelfGenerated = FALSE;
1433
1434 if ((dwCtrlType != CTRL_C_EVENT) &&
1435 (dwCtrlType != CTRL_BREAK_EVENT))
1436 {
1437 return FALSE;
1438 }
1439 else
1440 {
1441 if(SelfGenerated)
1442 {
1443 SelfGenerated = FALSE;
1444 return TRUE;
1445 }
1446 }
1447
1448 if (!TryEnterCriticalSection(&ChildProcessRunningLock))
1449 {
1450 SelfGenerated = TRUE;
1451 GenerateConsoleCtrlEvent (dwCtrlType, 0);
1452 return TRUE;
1453 }
1454 else
1455 {
1456 LeaveCriticalSection(&ChildProcessRunningLock);
1457 }
1458
1459 rec.EventType = KEY_EVENT;
1460 rec.Event.KeyEvent.bKeyDown = TRUE;
1461 rec.Event.KeyEvent.wRepeatCount = 1;
1462 rec.Event.KeyEvent.wVirtualKeyCode = _T('C');
1463 rec.Event.KeyEvent.wVirtualScanCode = _T('C') - 35;
1464 rec.Event.KeyEvent.uChar.AsciiChar = _T('C');
1465 rec.Event.KeyEvent.uChar.UnicodeChar = _T('C');
1466 rec.Event.KeyEvent.dwControlKeyState = RIGHT_CTRL_PRESSED;
1467
1468 WriteConsoleInput(
1469 hIn,
1470 &rec,
1471 1,
1472 &dwWritten);
1473
1474 bCtrlBreak = TRUE;
1475 /* FIXME: Handle batch files */
1476
1477 //ConOutPrintf(_T("^C"));
1478
1479
1480 return TRUE;
1481 }
1482
1483
1484 VOID AddBreakHandler (VOID)
1485 {
1486 SetConsoleCtrlHandler ((PHANDLER_ROUTINE)BreakHandler, TRUE);
1487 }
1488
1489
1490 VOID RemoveBreakHandler (VOID)
1491 {
1492 SetConsoleCtrlHandler ((PHANDLER_ROUTINE)BreakHandler, FALSE);
1493 }
1494
1495
1496 /*
1497 * show commands and options that are available.
1498 *
1499 */
1500 #if 0
1501 static VOID
1502 ShowCommands (VOID)
1503 {
1504 /* print command list */
1505 ConOutResPuts(STRING_CMD_HELP1);
1506 PrintCommandList();
1507
1508 /* print feature list */
1509 ConOutResPuts(STRING_CMD_HELP2);
1510
1511 #ifdef FEATURE_ALIASES
1512 ConOutResPuts(STRING_CMD_HELP3);
1513 #endif
1514 #ifdef FEATURE_HISTORY
1515 ConOutResPuts(STRING_CMD_HELP4);
1516 #endif
1517 #ifdef FEATURE_UNIX_FILENAME_COMPLETION
1518 ConOutResPuts(STRING_CMD_HELP5);
1519 #endif
1520 #ifdef FEATURE_DIRECTORY_STACK
1521 ConOutResPuts(STRING_CMD_HELP6);
1522 #endif
1523 #ifdef FEATURE_REDIRECTION
1524 ConOutResPuts(STRING_CMD_HELP7);
1525 #endif
1526 ConOutChar(_T('\n'));
1527 }
1528 #endif
1529
1530 static VOID
1531 ExecuteAutoRunFile(HKEY hkeyRoot)
1532 {
1533 TCHAR autorun[2048];
1534 DWORD len = sizeof autorun;
1535 HKEY hkey;
1536
1537 if (RegOpenKeyEx(hkeyRoot,
1538 _T("SOFTWARE\\Microsoft\\Command Processor"),
1539 0,
1540 KEY_READ,
1541 &hkey ) == ERROR_SUCCESS)
1542 {
1543 if(RegQueryValueEx(hkey,
1544 _T("AutoRun"),
1545 0,
1546 0,
1547 (LPBYTE)autorun,
1548 &len) == ERROR_SUCCESS)
1549 {
1550 if (*autorun)
1551 ParseCommandLine(autorun);
1552 }
1553 RegCloseKey(hkey);
1554 }
1555 }
1556
1557 /* Get the command that comes after a /C or /K switch */
1558 static VOID
1559 GetCmdLineCommand(TCHAR *commandline, TCHAR *ptr, BOOL AlwaysStrip)
1560 {
1561 TCHAR *LastQuote;
1562
1563 while (_istspace(*ptr))
1564 ptr++;
1565
1566 /* Remove leading quote, find final quote */
1567 if (*ptr == _T('"') &&
1568 (LastQuote = _tcsrchr(++ptr, _T('"'))) != NULL)
1569 {
1570 TCHAR *Space;
1571 /* Under certain circumstances, all quotes are preserved.
1572 * CMD /? documents these conditions as follows:
1573 * 1. No /S switch
1574 * 2. Exactly two quotes
1575 * 3. No "special characters" between the quotes
1576 * (CMD /? says &<>()@^| but parentheses did not
1577 * trigger this rule when I tested them.)
1578 * 4. Whitespace exists between the quotes
1579 * 5. Enclosed string is an executable filename
1580 */
1581 *LastQuote = _T('\0');
1582 for (Space = ptr + 1; Space < LastQuote; Space++)
1583 {
1584 if (_istspace(*Space)) /* Rule 4 */
1585 {
1586 if (!AlwaysStrip && /* Rule 1 */
1587 !_tcspbrk(ptr, _T("\"&<>@^|")) && /* Rules 2, 3 */
1588 SearchForExecutable(ptr, commandline)) /* Rule 5 */
1589 {
1590 /* All conditions met: preserve both the quotes */
1591 *LastQuote = _T('"');
1592 _tcscpy(commandline, ptr - 1);
1593 return;
1594 }
1595 break;
1596 }
1597 }
1598
1599 /* The conditions were not met: remove both the
1600 * leading quote and the last quote */
1601 _tcscpy(commandline, ptr);
1602 _tcscpy(&commandline[LastQuote - ptr], LastQuote + 1);
1603 return;
1604 }
1605
1606 /* No quotes; just copy */
1607 _tcscpy(commandline, ptr);
1608 }
1609
1610 /*
1611 * set up global initializations and process parameters
1612 */
1613 static VOID
1614 Initialize()
1615 {
1616 HMODULE NtDllModule;
1617 TCHAR commandline[CMDLINE_LENGTH];
1618 TCHAR ModuleName[_MAX_PATH + 1];
1619 TCHAR lpBuffer[2];
1620 INT nExitCode;
1621
1622 //INT len;
1623 TCHAR *ptr, *cmdLine, option = 0;
1624 BOOL AlwaysStrip = FALSE;
1625 BOOL AutoRun = TRUE;
1626
1627 /* get version information */
1628 osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
1629 GetVersionEx (&osvi);
1630
1631 /* Some people like to run ReactOS cmd.exe on Win98, it helps in the
1632 * build process. So don't link implicitly against ntdll.dll, load it
1633 * dynamically instead */
1634 NtDllModule = GetModuleHandle(TEXT("ntdll.dll"));
1635 if (NtDllModule != NULL)
1636 {
1637 NtQueryInformationProcessPtr = (NtQueryInformationProcessProc)GetProcAddress(NtDllModule, "NtQueryInformationProcess");
1638 NtReadVirtualMemoryPtr = (NtReadVirtualMemoryProc)GetProcAddress(NtDllModule, "NtReadVirtualMemory");
1639 }
1640
1641 InitLocale ();
1642
1643 /* get default input and output console handles */
1644 hOut = GetStdHandle (STD_OUTPUT_HANDLE);
1645 hIn = GetStdHandle (STD_INPUT_HANDLE);
1646
1647 /* Set EnvironmentVariable PROMPT if it does not exists any env value.
1648 for you can change the EnvirommentVariable for prompt before cmd start
1649 this patch are not 100% right, if it does not exists a PROMPT value cmd should use
1650 $P$G as defualt not set EnvirommentVariable PROMPT to $P$G if it does not exists */
1651 if (GetEnvironmentVariable(_T("PROMPT"),lpBuffer, sizeof(lpBuffer) / sizeof(lpBuffer[0])) == 0)
1652 SetEnvironmentVariable (_T("PROMPT"), _T("$P$G"));
1653
1654 #ifdef FEATURE_DIR_STACK
1655 /* initialize directory stack */
1656 InitDirectoryStack ();
1657 #endif
1658
1659 #ifdef FEATURE_HISTORY
1660 /*initialize history*/
1661 InitHistory();
1662 #endif
1663
1664 /* Set COMSPEC environment variable */
1665 if (0 != GetModuleFileName (NULL, ModuleName, _MAX_PATH + 1))
1666 {
1667 ModuleName[_MAX_PATH] = _T('\0');
1668 SetEnvironmentVariable (_T("COMSPEC"), ModuleName);
1669 }
1670
1671 /* add ctrl break handler */
1672 AddBreakHandler ();
1673
1674
1675 SetConsoleMode (hIn, ENABLE_PROCESSED_INPUT);
1676
1677 cmdLine = GetCommandLine();
1678 TRACE ("[command args: %s]\n", debugstr_aw(cmdLine));
1679
1680 for (ptr = cmdLine; *ptr; ptr++)
1681 {
1682 if (*ptr == _T('/'))
1683 {
1684 option = _totupper(ptr[1]);
1685 if (option == _T('?'))
1686 {
1687 ConOutResPaging(TRUE,STRING_CMD_HELP8);
1688 nErrorLevel = 1;
1689 bExit = TRUE;
1690 return;
1691 }
1692 else if (option == _T('P'))
1693 {
1694 if (!IsExistingFile (_T("\\autoexec.bat")))
1695 {
1696 #ifdef INCLUDE_CMD_DATE
1697 cmd_date (_T(""));
1698 #endif
1699 #ifdef INCLUDE_CMD_TIME
1700 cmd_time (_T(""));
1701 #endif
1702 }
1703 else
1704 {
1705 ParseCommandLine (_T("\\autoexec.bat"));
1706 }
1707 bCanExit = FALSE;
1708 }
1709 else if (option == _T('A'))
1710 {
1711 bUnicodeOutput = FALSE;
1712 }
1713 else if (option == _T('C') || option == _T('K') || option == _T('R'))
1714 {
1715 /* Remainder of command line is a command to be run */
1716 break;
1717 }
1718 else if (option == _T('D'))
1719 {
1720 AutoRun = FALSE;
1721 }
1722 else if (option == _T('Q'))
1723 {
1724 bDisableBatchEcho = TRUE;
1725 }
1726 else if (option == _T('S'))
1727 {
1728 AlwaysStrip = TRUE;
1729 }
1730 #ifdef INCLUDE_CMD_COLOR
1731 else if (!_tcsnicmp(ptr, _T("/T:"), 3))
1732 {
1733 /* process /t (color) argument */
1734 wDefColor = (WORD)_tcstoul(&ptr[3], &ptr, 16);
1735 SetScreenColor(wDefColor, TRUE);
1736 }
1737 #endif
1738 else if (option == _T('U'))
1739 {
1740 bUnicodeOutput = TRUE;
1741 }
1742 else if (option == _T('V'))
1743 {
1744 bDelayedExpansion = _tcsnicmp(&ptr[2], _T(":OFF"), 4);
1745 }
1746 }
1747 }
1748
1749 if (!*ptr)
1750 {
1751 /* If neither /C or /K was given, display a simple version string */
1752 ConOutResPrintf(STRING_REACTOS_VERSION,
1753 _T(KERNEL_RELEASE_STR),
1754 _T(KERNEL_VERSION_BUILD_STR));
1755 ConOutPuts(_T("(C) Copyright 1998-") _T(COPYRIGHT_YEAR) _T(" ReactOS Team."));
1756 }
1757
1758 if (AutoRun)
1759 {
1760 ExecuteAutoRunFile(HKEY_LOCAL_MACHINE);
1761 ExecuteAutoRunFile(HKEY_CURRENT_USER);
1762 }
1763
1764 if (*ptr)
1765 {
1766 /* Do the /C or /K command */
1767 GetCmdLineCommand(commandline, &ptr[2], AlwaysStrip);
1768 nExitCode = ParseCommandLine(commandline);
1769 if (option != _T('K'))
1770 {
1771 nErrorLevel = nExitCode;
1772 bExit = TRUE;
1773 }
1774 }
1775 }
1776
1777
1778 static VOID Cleanup()
1779 {
1780 /* run cmdexit.bat */
1781 if (IsExistingFile (_T("cmdexit.bat")))
1782 {
1783 ConErrResPuts(STRING_CMD_ERROR5);
1784
1785 ParseCommandLine (_T("cmdexit.bat"));
1786 }
1787 else if (IsExistingFile (_T("\\cmdexit.bat")))
1788 {
1789 ConErrResPuts (STRING_CMD_ERROR5);
1790 ParseCommandLine (_T("\\cmdexit.bat"));
1791 }
1792
1793 #ifdef FEATURE_DIECTORY_STACK
1794 /* destroy directory stack */
1795 DestroyDirectoryStack ();
1796 #endif
1797
1798 #ifdef FEATURE_HISTORY
1799 CleanHistory();
1800 #endif
1801
1802 /* free GetEnvVar's buffer */
1803 GetEnvVar(NULL);
1804
1805 /* remove ctrl break handler */
1806 RemoveBreakHandler ();
1807 SetConsoleMode( GetStdHandle( STD_INPUT_HANDLE ),
1808 ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT | ENABLE_ECHO_INPUT );
1809 DeleteCriticalSection(&ChildProcessRunningLock);
1810 }
1811
1812 /*
1813 * main function
1814 */
1815 int cmd_main (int argc, const TCHAR *argv[])
1816 {
1817 HANDLE hConsole;
1818 TCHAR startPath[MAX_PATH];
1819 CONSOLE_SCREEN_BUFFER_INFO Info;
1820
1821 InitializeCriticalSection(&ChildProcessRunningLock);
1822 lpOriginalEnvironment = DuplicateEnvironment();
1823
1824 GetCurrentDirectory(MAX_PATH,startPath);
1825 _tchdir(startPath);
1826
1827 SetFileApisToOEM();
1828 InputCodePage= 0;
1829 OutputCodePage = 0;
1830
1831 hConsole = CreateFile(_T("CONOUT$"), GENERIC_READ|GENERIC_WRITE,
1832 FILE_SHARE_READ|FILE_SHARE_WRITE, NULL,
1833 OPEN_EXISTING, 0, NULL);
1834 if (hConsole != INVALID_HANDLE_VALUE)
1835 {
1836 if (!GetConsoleScreenBufferInfo(hConsole, &Info))
1837 {
1838 ConErrFormatMessage(GetLastError());
1839 return(1);
1840 }
1841 wDefColor = Info.wAttributes;
1842 CloseHandle(hConsole);
1843 }
1844
1845 InputCodePage= GetConsoleCP();
1846 OutputCodePage = GetConsoleOutputCP();
1847 CMD_ModuleHandle = GetModuleHandle(NULL);
1848
1849 /* check switches on command-line */
1850 Initialize();
1851
1852 /* call prompt routine */
1853 ProcessInput();
1854
1855 /* do the cleanup */
1856 Cleanup();
1857
1858 cmd_free(lpOriginalEnvironment);
1859
1860 cmd_exit(nErrorLevel);
1861 return(nErrorLevel);
1862 }
1863
1864 /* EOF */