Add some ctrl breaker checks into copy, del, and dir.
[reactos.git] / reactos / subsys / system / 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 <ekohl@abo.rhein-zeitung.de>)
88 * First ReactOS release.
89 * Extended length of commandline buffers to 512.
90 *
91 * 13-Dec-1998 (Eric Kohl <ekohl@abo.rhein-zeitung.de>)
92 * Added COMSPEC environment variable.
93 * Added "/t" support (color) on cmd command line.
94 *
95 * 07-Jan-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>)
96 * Added help text ("cmd /?").
97 *
98 * 25-Jan-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>)
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 <ekohl@abo.rhein-zeitung.de>)
105 * Replaced spawnl() by CreateProcess().
106 *
107 * 22-Oct-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>)
108 * Added break handler.
109 *
110 * 15-Dec-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>)
111 * Fixed current directory
112 *
113 * 28-Dec-1999 (Eric Kohl <ekohl@abo.rhein-zeitung.de>)
114 * Restore window title after program/batch execution
115 *
116 * 03-Feb-2001 (Eric Kohl <ekohl@rz-online.de>)
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 (Hartmut Birr)
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 <malloc.h>
146 #include "resource.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; /* Ignore 'newline' before 'cls' */
160 INT nErrorLevel = 0; /* Errorlevel of last launched external program */
161 BOOL bChildProcessRunning = FALSE;
162 DWORD dwChildProcessId = 0;
163 OSVERSIONINFO osvi;
164 HANDLE hIn;
165 HANDLE hOut;
166 HANDLE hConsole;
167 HANDLE CMD_ModuleHandle;
168 HMODULE NtDllModule;
169
170 static NtQueryInformationProcessProc NtQueryInformationProcessPtr = NULL;
171 static NtReadVirtualMemoryProc NtReadVirtualMemoryPtr = NULL;
172
173 #ifdef INCLUDE_CMD_COLOR
174 WORD wColor; /* current color */
175 WORD wDefColor; /* default color */
176 #endif
177
178 /*
179 * is character a delimeter when used on first word?
180 *
181 */
182
183 static BOOL IsDelimiter (TCHAR c)
184 {
185 return (c == _T('/') || c == _T('=') || c == _T('\0') || _istspace (c));
186 }
187
188 /*
189 * Is a process a console process?
190 */
191 static BOOL IsConsoleProcess(HANDLE Process)
192 {
193 NTSTATUS Status;
194 PROCESS_BASIC_INFORMATION Info;
195 PEB ProcessPeb;
196 ULONG BytesRead;
197
198 if (NULL == NtQueryInformationProcessPtr || NULL == NtReadVirtualMemoryPtr)
199 {
200 return TRUE;
201 }
202
203 Status = NtQueryInformationProcessPtr (
204 Process, ProcessBasicInformation,
205 &Info, sizeof(PROCESS_BASIC_INFORMATION), NULL);
206 if (! NT_SUCCESS(Status))
207 {
208 #ifdef _DEBUG
209 DebugPrintf (_T("NtQueryInformationProcess failed with status %08x\n"), Status);
210 #endif
211 return TRUE;
212 }
213 Status = NtReadVirtualMemoryPtr (
214 Process, Info.PebBaseAddress, &ProcessPeb,
215 sizeof(PEB), &BytesRead);
216 if (! NT_SUCCESS(Status) || sizeof(PEB) != BytesRead)
217 {
218 #ifdef _DEBUG
219 DebugPrintf (_T("Couldn't read virt mem status %08x bytes read %lu\n"), Status, BytesRead);
220 #endif
221 return TRUE;
222 }
223
224 return IMAGE_SUBSYSTEM_WINDOWS_CUI == ProcessPeb.ImageSubSystem;
225 }
226
227
228
229 #ifdef _UNICODE
230 #define SHELLEXECUTETEXT "ShellExecuteW"
231 #else
232 #define SHELLEXECUTETEXT "ShellExecuteA"
233 #endif
234
235 typedef HINSTANCE (WINAPI *MYEX)(
236 HWND hwnd,
237 LPCTSTR lpOperation,
238 LPCTSTR lpFile,
239 LPCTSTR lpParameters,
240 LPCTSTR lpDirectory,
241 INT nShowCmd
242 );
243
244
245
246 static BOOL RunFile(LPTSTR filename)
247 {
248 HMODULE hShell32;
249 MYEX hShExt;
250 HINSTANCE ret;
251
252 #ifdef _DEBUG
253 DebugPrintf (_T("RunFile(%s)\n"), filename);
254 #endif
255 hShell32 = LoadLibrary(_T("SHELL32.DLL"));
256 if (!hShell32)
257 {
258 #ifdef _DEBUG
259 DebugPrintf (_T("RunFile: couldn't load SHELL32.DLL!\n"));
260 #endif
261 return FALSE;
262 }
263
264 hShExt = (MYEX)(FARPROC)GetProcAddress(hShell32, SHELLEXECUTETEXT);
265 if (!hShExt)
266 {
267 #ifdef _DEBUG
268 DebugPrintf (_T("RunFile: couldn't find ShellExecuteA/W in SHELL32.DLL!\n"));
269 #endif
270 FreeLibrary(hShell32);
271 return FALSE;
272 }
273
274 #ifdef _DEBUG
275 DebugPrintf (_T("RunFile: ShellExecuteA/W is at %x\n"), hShExt);
276 #endif
277
278 ret = (hShExt)(NULL, _T("open"), filename, NULL, NULL, SW_SHOWNORMAL);
279
280 #ifdef _DEBUG
281 DebugPrintf (_T("RunFile: ShellExecuteA/W returned %d\n"), (DWORD)ret);
282 #endif
283
284 FreeLibrary(hShell32);
285 return (((DWORD)ret) > 32);
286 }
287
288
289
290 /*
291 * This command (in first) was not found in the command table
292 *
293 * Full - whole command line
294 * First - first word on command line
295 * Rest - rest of command line
296 */
297
298 static VOID
299 Execute (LPTSTR Full, LPTSTR First, LPTSTR Rest)
300 {
301 TCHAR *szFullName=NULL;
302 TCHAR *first = NULL;
303 TCHAR *rest = NULL;
304 TCHAR *full = NULL;
305 TCHAR *dot = NULL;
306 TCHAR szWindowTitle[MAX_PATH];
307 DWORD dwExitCode = 0;
308
309 #ifdef _DEBUG
310 DebugPrintf (_T("Execute: \'%s\' \'%s\'\n"), first, rest);
311 #endif
312
313 /* we need biger buffer that First, Rest, Full are already
314 need rewrite some code to use realloc when it need instead
315 of add 512bytes extra */
316
317 first = malloc ( (_tcslen(First) + 512) * sizeof(TCHAR));
318 if (first == NULL)
319 {
320 error_out_of_memory();
321 return ;
322 }
323
324 rest = malloc ( (_tcslen(Rest) + 512) * sizeof(TCHAR));
325 if (rest == NULL)
326 {
327 free (first);
328 error_out_of_memory();
329 return ;
330 }
331
332 full = malloc ( (_tcslen(Full) + 512) * sizeof(TCHAR));
333 if (full == NULL)
334 {
335 free (first);
336 free (rest);
337 error_out_of_memory();
338 return ;
339 }
340
341 szFullName = malloc ( (_tcslen(Full) + 512) * sizeof(TCHAR));
342 if (full == NULL)
343 {
344 free (first);
345 free (rest);
346 free (full);
347 error_out_of_memory();
348 return ;
349 }
350
351
352 /* Though it was already parsed once, we have a different set of rules
353 for parsing before we pass to CreateProccess */
354 if(!_tcschr(Full,_T('\"')))
355 {
356 _tcscpy(first,First);
357 _tcscpy(rest,Rest);
358 _tcscpy(full,Full);
359 }
360 else
361 {
362 UINT i = 0;
363 BOOL bInside = FALSE;
364 rest[0] = _T('\0');
365 full[0] = _T('\0');
366 first[0] = _T('\0');
367 _tcscpy(first,Full);
368 /* find the end of the command and start of the args */
369 for(i = 0; i < _tcslen(first); i++)
370 {
371 if(!_tcsncmp(&first[i], _T("\""), 1))
372 bInside = !bInside;
373 if(!_tcsncmp(&first[i], _T(" "), 1) && !bInside)
374 {
375 _tcscpy(rest,&first[i]);
376 first[i] = _T('\0');
377 break;
378 }
379
380 }
381 i = 0;
382 /* remove any slashes */
383 while(i < _tcslen(first))
384 {
385 if(first[i] == _T('\"'))
386 memmove(&first[i],&first[i + 1], _tcslen(&first[i]) * sizeof(TCHAR));
387 else
388 i++;
389 }
390 /* Drop quotes around it just in case there is a space */
391 _tcscpy(full,_T("\""));
392 _tcscat(full,first);
393 _tcscat(full,_T("\" "));
394 _tcscat(full,rest);
395 }
396
397 /* check for a drive change */
398 if ((_istalpha (first[0])) && (!_tcscmp (first + 1, _T(":"))))
399 {
400 BOOL working = TRUE;
401 if (!SetCurrentDirectory(first))
402 /* Guess they changed disc or something, handle that gracefully and get to root */
403 {
404 TCHAR str[4];
405 str[0]=first[0];
406 str[1]=_T(':');
407 str[2]=_T('\\');
408 str[3]=0;
409 working = SetCurrentDirectory(str);
410 }
411
412 if (!working) ConErrResPuts (STRING_FREE_ERROR1);
413
414 free (first);
415 free (rest);
416 free (full);
417 free (szFullName);
418
419 return;
420 }
421
422 /* get the PATH environment variable and parse it */
423 /* search the PATH environment variable for the binary */
424 if (!SearchForExecutable (first, szFullName))
425 {
426 error_bad_command ();
427 free (first);
428 free (rest);
429 free (full);
430 free (szFullName);
431 return;
432
433 }
434
435 GetConsoleTitle (szWindowTitle, MAX_PATH);
436
437 /* check if this is a .BAT or .CMD file */
438 dot = _tcsrchr (szFullName, _T('.'));
439 if (dot && (!_tcsicmp (dot, _T(".bat")) || !_tcsicmp (dot, _T(".cmd"))))
440 {
441 #ifdef _DEBUG
442 DebugPrintf (_T("[BATCH: %s %s]\n"), szFullName, rest);
443 #endif
444 Batch (szFullName, first, rest);
445 }
446 else
447 {
448 /* exec the program */
449 PROCESS_INFORMATION prci;
450 STARTUPINFO stui;
451
452 #ifdef _DEBUG
453 DebugPrintf (_T("[EXEC: %s %s]\n"), full, rest);
454 #endif
455 /* build command line for CreateProcess() */
456
457 /* fill startup info */
458 memset (&stui, 0, sizeof (STARTUPINFO));
459 stui.cb = sizeof (STARTUPINFO);
460 stui.dwFlags = STARTF_USESHOWWINDOW;
461 stui.wShowWindow = SW_SHOWDEFAULT;
462
463 // return console to standard mode
464 SetConsoleMode (GetStdHandle(STD_INPUT_HANDLE),
465 ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT | ENABLE_ECHO_INPUT );
466
467 if (CreateProcess (szFullName,
468 full,
469 NULL,
470 NULL,
471 TRUE,
472 0, /* CREATE_NEW_PROCESS_GROUP */
473 NULL,
474 NULL,
475 &stui,
476 &prci))
477
478 {
479 if (IsConsoleProcess(prci.hProcess))
480 {
481 /* FIXME: Protect this with critical section */
482 bChildProcessRunning = TRUE;
483 dwChildProcessId = prci.dwProcessId;
484
485 WaitForSingleObject (prci.hProcess, INFINITE);
486
487 /* FIXME: Protect this with critical section */
488 bChildProcessRunning = FALSE;
489
490 GetExitCodeProcess (prci.hProcess, &dwExitCode);
491 nErrorLevel = (INT)dwExitCode;
492 }
493 CloseHandle (prci.hThread);
494 CloseHandle (prci.hProcess);
495 }
496 else
497 {
498 #ifdef _DEBUG
499 DebugPrintf (_T("[ShellExecute: %s]\n"), full);
500 #endif
501 // See if we can run this with ShellExecute() ie myfile.xls
502 if (!RunFile(full))
503 {
504 #ifdef _DEBUG
505 DebugPrintf (_T("[ShellExecute failed!: %s]\n"), full);
506 #endif
507 error_bad_command ();
508 }
509 }
510 // restore console mode
511 SetConsoleMode (
512 GetStdHandle( STD_INPUT_HANDLE ),
513 ENABLE_PROCESSED_INPUT );
514 }
515
516 /* Get code page if it has been change */
517 InputCodePage= GetConsoleCP();
518 OutputCodePage = GetConsoleOutputCP();
519 SetConsoleTitle (szWindowTitle);
520
521 free(first);
522 free(rest);
523 free(full);
524 free (szFullName);
525 }
526
527
528 /*
529 * look through the internal commands and determine whether or not this
530 * command is one of them. If it is, call the command. If not, call
531 * execute to run it as an external program.
532 *
533 * line - the command line of the program to run
534 *
535 */
536
537 static VOID
538 DoCommand (LPTSTR line)
539 {
540 TCHAR *com = NULL; /* the first word in the command */
541 TCHAR *cp = NULL;
542 LPTSTR cstart;
543 LPTSTR rest; /* pointer to the rest of the command line */
544 INT cl;
545 LPCOMMAND cmdptr;
546
547 #ifdef _DEBUG
548 DebugPrintf (_T("DoCommand: (\'%s\')\n"), line);
549 #endif /* DEBUG */
550
551 com = malloc( (_tcslen(line) +512)*sizeof(TCHAR) );
552 if (com == NULL)
553 {
554 error_out_of_memory();
555 return;
556 }
557
558 cp = com;
559 /* Skip over initial white space */
560 while (_istspace (*line))
561 line++;
562 rest = line;
563
564 cstart = rest;
565
566 /* Anything to do ? */
567 if (*rest)
568 {
569 if (*rest == _T('"'))
570 {
571 /* treat quoted words specially */
572
573 rest++;
574
575 while(*rest != _T('\0') && *rest != _T('"'))
576 *cp++ = _totlower (*rest++);
577 if (*rest == _T('"'))
578 rest++;
579 }
580 else
581 {
582 while (!IsDelimiter (*rest))
583 *cp++ = _totlower (*rest++);
584 }
585
586
587 /* Terminate first word */
588 *cp = _T('\0');
589
590 /* Do not limit commands to MAX_PATH */
591 /*
592 if(_tcslen(com) > MAX_PATH)
593 {
594 error_bad_command();
595 free(com);
596 return;
597 }
598 */
599
600 /* Skip over whitespace to rest of line */
601 while (_istspace (*rest))
602 rest++;
603
604 /* Scan internal command table */
605 for (cmdptr = cmds;; cmdptr++)
606 {
607 /* If end of table execute ext cmd */
608 if (cmdptr->name == NULL)
609 {
610 Execute (line, com, rest);
611 break;
612 }
613
614 if (!_tcscmp (com, cmdptr->name))
615 {
616 cmdptr->func (com, rest);
617 break;
618 }
619
620 /* The following code handles the case of commands like CD which
621 * are recognised even when the command name and parameter are
622 * not space separated.
623 *
624 * e.g dir..
625 * cd\freda
626 */
627
628 /* Get length of command name */
629 cl = _tcslen (cmdptr->name);
630
631 if ((cmdptr->flags & CMD_SPECIAL) &&
632 (!_tcsncmp (cmdptr->name, com, cl)) &&
633 (_tcschr (_T("\\.-"), *(com + cl))))
634 {
635 /* OK its one of the specials...*/
636
637 /* Terminate first word properly */
638 com[cl] = _T('\0');
639
640 /* Call with new rest */
641 cmdptr->func (com, cstart + cl);
642 break;
643 }
644 }
645 }
646 /* Just in case a CTRL+C slipped through a command */
647 bCtrlBreak = FALSE;
648 free(com);
649 }
650
651
652 /*
653 * process the command line and execute the appropriate functions
654 * full input/output redirection and piping are supported
655 */
656
657 VOID ParseCommandLine (LPTSTR cmd)
658 {
659 TCHAR szMsg[RC_STRING_MAX_SIZE];
660 TCHAR cmdline[CMDLINE_LENGTH];
661 LPTSTR s;
662 #ifdef FEATURE_REDIRECTION
663 TCHAR in[CMDLINE_LENGTH] = _T("");
664 TCHAR out[CMDLINE_LENGTH] = _T("");
665 TCHAR err[CMDLINE_LENGTH] = _T("");
666 TCHAR szTempPath[MAX_PATH] = _T(".\\");
667 TCHAR szFileName[2][MAX_PATH] = {_T(""), _T("")};
668 HANDLE hFile[2] = {INVALID_HANDLE_VALUE, INVALID_HANDLE_VALUE};
669 LPTSTR t = NULL;
670 INT num = 0;
671 INT nRedirFlags = 0;
672 INT Length;
673 UINT Attributes;
674 BOOL bNewBatch = TRUE;
675 HANDLE hOldConIn;
676 HANDLE hOldConOut;
677 HANDLE hOldConErr;
678 #endif /* FEATURE_REDIRECTION */
679
680 _tcscpy (cmdline, cmd);
681 s = &cmdline[0];
682
683 #ifdef _DEBUG
684 DebugPrintf (_T("ParseCommandLine: (\'%s\')\n"), s);
685 #endif /* DEBUG */
686
687 #ifdef FEATURE_ALIASES
688 /* expand all aliases */
689 ExpandAlias (s, CMDLINE_LENGTH);
690 #endif /* FEATURE_ALIAS */
691
692 #ifdef FEATURE_REDIRECTION
693 /* find the temp path to store temporary files */
694 Length = GetTempPath (MAX_PATH, szTempPath);
695 if (Length > 0 && Length < MAX_PATH)
696 {
697 Attributes = GetFileAttributes(szTempPath);
698 if (Attributes == 0xffffffff ||
699 !(Attributes & FILE_ATTRIBUTE_DIRECTORY))
700 {
701 Length = 0;
702 }
703 }
704 if (Length == 0 || Length >= MAX_PATH)
705 {
706 _tcscpy(szTempPath, _T(".\\"));
707 }
708 if (szTempPath[_tcslen (szTempPath) - 1] != _T('\\'))
709 _tcscat (szTempPath, _T("\\"));
710
711 /* get the redirections from the command line */
712 num = GetRedirection (s, in, out, err, &nRedirFlags);
713
714 /* more efficient, but do we really need to do this? */
715 for (t = in; _istspace (*t); t++)
716 ;
717 _tcscpy (in, t);
718
719 for (t = out; _istspace (*t); t++)
720 ;
721 _tcscpy (out, t);
722
723 for (t = err; _istspace (*t); t++)
724 ;
725 _tcscpy (err, t);
726
727 if(bc && !_tcslen (in) && _tcslen (bc->In))
728 _tcscpy(in, bc->In);
729 if(bc && !out[0] && _tcslen(bc->Out))
730 {
731 nRedirFlags |= OUTPUT_APPEND;
732 _tcscpy(out, bc->Out);
733 }
734 if(bc && !_tcslen (err) && _tcslen (bc->Err))
735 {
736 nRedirFlags |= ERROR_APPEND;
737 _tcscpy(err, bc->Err);
738 }
739
740
741 /* Set up the initial conditions ... */
742 /* preserve STDIN, STDOUT and STDERR handles */
743 hOldConIn = GetStdHandle (STD_INPUT_HANDLE);
744 hOldConOut = GetStdHandle (STD_OUTPUT_HANDLE);
745 hOldConErr = GetStdHandle (STD_ERROR_HANDLE);
746
747 /* redirect STDIN */
748 if (in[0])
749 {
750 HANDLE hFile;
751 SECURITY_ATTRIBUTES sa = {sizeof(SECURITY_ATTRIBUTES), NULL, TRUE};
752
753 /* we need make sure the LastError msg is zero before calling CreateFile */
754 SetLastError(0);
755
756 /* Set up pipe for the standard input handler */
757 hFile = CreateFile (in, GENERIC_READ, FILE_SHARE_READ, &sa, OPEN_EXISTING,
758 FILE_ATTRIBUTE_NORMAL, NULL);
759 if (hFile == INVALID_HANDLE_VALUE)
760 {
761 LoadString(CMD_ModuleHandle, STRING_CMD_ERROR1, szMsg, RC_STRING_MAX_SIZE);
762 ConErrPrintf(szMsg, in);
763 return;
764 }
765
766 if (!SetStdHandle (STD_INPUT_HANDLE, hFile))
767 {
768 LoadString(CMD_ModuleHandle, STRING_CMD_ERROR1, szMsg, RC_STRING_MAX_SIZE);
769 ConErrPrintf(szMsg, in);
770 return;
771 }
772 #ifdef _DEBUG
773 DebugPrintf (_T("Input redirected from: %s\n"), in);
774 #endif
775 }
776
777 /* Now do all but the last pipe command */
778 *szFileName[0] = _T('\0');
779 hFile[0] = INVALID_HANDLE_VALUE;
780
781 while (num-- > 1)
782 {
783 SECURITY_ATTRIBUTES sa = {sizeof(SECURITY_ATTRIBUTES), NULL, TRUE};
784
785 /* Create unique temporary file name */
786 GetTempFileName (szTempPath, _T("CMD"), 0, szFileName[1]);
787
788 /* we need make sure the LastError msg is zero before calling CreateFile */
789 SetLastError(0);
790
791 /* Set current stdout to temporary file */
792 hFile[1] = CreateFile (szFileName[1], GENERIC_WRITE, 0, &sa,
793 TRUNCATE_EXISTING, FILE_ATTRIBUTE_TEMPORARY, NULL);
794
795 if (hFile[1] == INVALID_HANDLE_VALUE)
796 {
797 LoadString(CMD_ModuleHandle, STRING_CMD_ERROR2, szMsg, RC_STRING_MAX_SIZE);
798 ConErrPrintf(szMsg);
799 return;
800 }
801
802 SetStdHandle (STD_OUTPUT_HANDLE, hFile[1]);
803
804 DoCommand (s);
805
806 /* close stdout file */
807 SetStdHandle (STD_OUTPUT_HANDLE, hOldConOut);
808 if ((hFile[1] != INVALID_HANDLE_VALUE) && (hFile[1] != hOldConOut))
809 {
810 CloseHandle (hFile[1]);
811 hFile[1] = INVALID_HANDLE_VALUE;
812 }
813
814 /* close old stdin file */
815 SetStdHandle (STD_INPUT_HANDLE, hOldConIn);
816 if ((hFile[0] != INVALID_HANDLE_VALUE) && (hFile[0] != hOldConIn))
817 {
818 /* delete old stdin file, if it is a real file */
819 CloseHandle (hFile[0]);
820 hFile[0] = INVALID_HANDLE_VALUE;
821 DeleteFile (szFileName[0]);
822 *szFileName[0] = _T('\0');
823 }
824
825 /* copy stdout file name to stdin file name */
826 _tcscpy (szFileName[0], szFileName[1]);
827 *szFileName[1] = _T('\0');
828
829 /* we need make sure the LastError msg is zero before calling CreateFile */
830 SetLastError(0);
831
832 /* open new stdin file */
833 hFile[0] = CreateFile (szFileName[0], GENERIC_READ, 0, &sa,
834 OPEN_EXISTING, FILE_ATTRIBUTE_TEMPORARY, NULL);
835 SetStdHandle (STD_INPUT_HANDLE, hFile[0]);
836
837 s = s + _tcslen (s) + 1;
838 }
839
840 /* Now set up the end conditions... */
841 /* redirect STDOUT */
842 if (out[0])
843 {
844 /* Final output to here */
845 HANDLE hFile;
846 SECURITY_ATTRIBUTES sa = {sizeof(SECURITY_ATTRIBUTES), NULL, TRUE};
847
848 /* we need make sure the LastError msg is zero before calling CreateFile */
849 SetLastError(0);
850
851 hFile = CreateFile (out, GENERIC_WRITE, FILE_SHARE_WRITE | FILE_SHARE_READ | FILE_SHARE_DELETE, &sa,
852 (nRedirFlags & OUTPUT_APPEND) ? OPEN_ALWAYS : CREATE_ALWAYS,
853 FILE_ATTRIBUTE_NORMAL | FILE_FLAG_WRITE_THROUGH, NULL);
854
855 if (hFile == INVALID_HANDLE_VALUE)
856 {
857 INT size = _tcslen(out)-1;
858
859 if (out[size] != _T(':'))
860 {
861 LoadString(CMD_ModuleHandle, STRING_CMD_ERROR3, szMsg, RC_STRING_MAX_SIZE);
862 ConErrPrintf(szMsg, out);
863 return;
864 }
865
866 out[size]=_T('\0');
867 hFile = CreateFile (out, GENERIC_WRITE, FILE_SHARE_WRITE | FILE_SHARE_READ | FILE_SHARE_DELETE, &sa,
868 (nRedirFlags & OUTPUT_APPEND) ? OPEN_ALWAYS : CREATE_ALWAYS,
869 FILE_ATTRIBUTE_NORMAL | FILE_FLAG_WRITE_THROUGH, NULL);
870
871 if (hFile == INVALID_HANDLE_VALUE)
872 {
873 LoadString(CMD_ModuleHandle, STRING_CMD_ERROR3, szMsg, RC_STRING_MAX_SIZE);
874 ConErrPrintf(szMsg, out);
875 return;
876 }
877
878 }
879
880 if (!SetStdHandle (STD_OUTPUT_HANDLE, hFile))
881 {
882 LoadString(CMD_ModuleHandle, STRING_CMD_ERROR3, szMsg, RC_STRING_MAX_SIZE);
883 ConErrPrintf(szMsg, out);
884 return;
885 }
886
887 if (nRedirFlags & OUTPUT_APPEND)
888 {
889 LONG lHighPos = 0;
890
891 if (GetFileType (hFile) == FILE_TYPE_DISK)
892 SetFilePointer (hFile, 0, &lHighPos, FILE_END);
893 }
894 #ifdef _DEBUG
895 DebugPrintf (_T("Output redirected to: %s\n"), out);
896 #endif
897 }
898 else if (hOldConOut != INVALID_HANDLE_VALUE)
899 {
900 /* Restore original stdout */
901 HANDLE hOut = GetStdHandle (STD_OUTPUT_HANDLE);
902 SetStdHandle (STD_OUTPUT_HANDLE, hOldConOut);
903 if (hOldConOut != hOut)
904 CloseHandle (hOut);
905 hOldConOut = INVALID_HANDLE_VALUE;
906 }
907
908 /* redirect STDERR */
909 if (err[0])
910 {
911 /* Final output to here */
912 HANDLE hFile;
913 SECURITY_ATTRIBUTES sa = {sizeof(SECURITY_ATTRIBUTES), NULL, TRUE};
914
915 if (!_tcscmp (err, out))
916 {
917 #ifdef _DEBUG
918 DebugPrintf (_T("Stdout and stderr will use the same file!!\n"));
919 #endif
920 DuplicateHandle (GetCurrentProcess (),
921 GetStdHandle (STD_OUTPUT_HANDLE),
922 GetCurrentProcess (),
923 &hFile, 0, TRUE, DUPLICATE_SAME_ACCESS);
924 }
925 else
926 {
927 hFile = CreateFile (err,
928 GENERIC_WRITE,
929 FILE_SHARE_WRITE | FILE_SHARE_READ | FILE_SHARE_DELETE,
930 &sa,
931 (nRedirFlags & ERROR_APPEND) ? OPEN_ALWAYS : CREATE_ALWAYS,
932 FILE_ATTRIBUTE_NORMAL | FILE_FLAG_WRITE_THROUGH,
933 NULL);
934 if (hFile == INVALID_HANDLE_VALUE)
935 {
936 LoadString(CMD_ModuleHandle, STRING_CMD_ERROR3, szMsg, RC_STRING_MAX_SIZE);
937 ConErrPrintf(szMsg, err);
938 return;
939 }
940 }
941
942 if (!SetStdHandle (STD_ERROR_HANDLE, hFile))
943 {
944 LoadString(CMD_ModuleHandle, STRING_CMD_ERROR3, szMsg, RC_STRING_MAX_SIZE);
945 ConErrPrintf(szMsg, err);
946 return;
947 }
948
949 if (nRedirFlags & ERROR_APPEND)
950 {
951 LONG lHighPos = 0;
952
953 if (GetFileType (hFile) == FILE_TYPE_DISK)
954 SetFilePointer (hFile, 0, &lHighPos, FILE_END);
955 }
956 #ifdef _DEBUG
957 DebugPrintf (_T("Error redirected to: %s\n"), err);
958 #endif
959 }
960 else if (hOldConErr != INVALID_HANDLE_VALUE)
961 {
962 /* Restore original stderr */
963 HANDLE hErr = GetStdHandle (STD_ERROR_HANDLE);
964 SetStdHandle (STD_ERROR_HANDLE, hOldConErr);
965 if (hOldConErr != hErr)
966 CloseHandle (hErr);
967 hOldConErr = INVALID_HANDLE_VALUE;
968 }
969
970 if(bc)
971 bNewBatch = FALSE;
972 #endif
973
974 /* process final command */
975 DoCommand (s);
976
977 #ifdef FEATURE_REDIRECTION
978 if(bNewBatch && bc)
979 AddBatchRedirection(in, out, err);
980 /* close old stdin file */
981 #if 0 /* buggy implementation */
982 SetStdHandle (STD_INPUT_HANDLE, hOldConIn);
983 if ((hFile[0] != INVALID_HANDLE_VALUE) &&
984 (hFile[0] != hOldConIn))
985 {
986 /* delete old stdin file, if it is a real file */
987 CloseHandle (hFile[0]);
988 hFile[0] = INVALID_HANDLE_VALUE;
989 DeleteFile (szFileName[0]);
990 *szFileName[0] = _T('\0');
991 }
992
993 /* Restore original STDIN */
994 if (hOldConIn != INVALID_HANDLE_VALUE)
995 {
996 HANDLE hIn = GetStdHandle (STD_INPUT_HANDLE);
997 SetStdHandle (STD_INPUT_HANDLE, hOldConIn);
998 if (hOldConIn != hIn)
999 CloseHandle (hIn);
1000 hOldConIn = INVALID_HANDLE_VALUE;
1001 }
1002 else
1003 {
1004 #ifdef _DEBUG
1005 DebugPrintf (_T("Can't restore STDIN! Is invalid!!\n"), out);
1006 #endif
1007 }
1008 #endif /* buggy implementation */
1009
1010
1011 if (hOldConIn != INVALID_HANDLE_VALUE)
1012 {
1013 HANDLE hIn = GetStdHandle (STD_INPUT_HANDLE);
1014 SetStdHandle (STD_INPUT_HANDLE, hOldConIn);
1015 if (hIn == INVALID_HANDLE_VALUE)
1016 {
1017 #ifdef _DEBUG
1018 DebugPrintf (_T("Previous STDIN is invalid!!\n"));
1019 #endif
1020 }
1021 else
1022 {
1023 if (GetFileType (hIn) == FILE_TYPE_DISK)
1024 {
1025 if (hFile[0] == hIn)
1026 {
1027 CloseHandle (hFile[0]);
1028 hFile[0] = INVALID_HANDLE_VALUE;
1029 DeleteFile (szFileName[0]);
1030 *szFileName[0] = _T('\0');
1031 }
1032 else
1033 {
1034 #ifdef _DEBUG
1035 DebugPrintf (_T("hFile[0] and hIn dont match!!!\n"));
1036 #endif
1037 }
1038 }
1039 }
1040 }
1041
1042
1043 /* Restore original STDOUT */
1044 if (hOldConOut != INVALID_HANDLE_VALUE)
1045 {
1046 HANDLE hOut = GetStdHandle (STD_OUTPUT_HANDLE);
1047 SetStdHandle (STD_OUTPUT_HANDLE, hOldConOut);
1048 if (hOldConOut != hOut)
1049 CloseHandle (hOut);
1050 hOldConOut = INVALID_HANDLE_VALUE;
1051 }
1052
1053 /* Restore original STDERR */
1054 if (hOldConErr != INVALID_HANDLE_VALUE)
1055 {
1056 HANDLE hErr = GetStdHandle (STD_ERROR_HANDLE);
1057 SetStdHandle (STD_ERROR_HANDLE, hOldConErr);
1058 if (hOldConErr != hErr)
1059 CloseHandle (hErr);
1060 hOldConErr = INVALID_HANDLE_VALUE;
1061 }
1062 #endif /* FEATURE_REDIRECTION */
1063 }
1064
1065 BOOL
1066 GrowIfNecessary ( UINT needed, LPTSTR* ret, UINT* retlen )
1067 {
1068 if ( *ret && needed < *retlen )
1069 return TRUE;
1070 *retlen = needed;
1071 if ( *ret )
1072 free ( *ret );
1073 *ret = (LPTSTR)malloc ( *retlen * sizeof(TCHAR) );
1074 if ( !*ret )
1075 SetLastError ( ERROR_OUTOFMEMORY );
1076 return *ret != NULL;
1077 }
1078
1079 LPCTSTR
1080 GetEnvVarOrSpecial ( LPCTSTR varName )
1081 {
1082 static LPTSTR ret = NULL;
1083 static UINT retlen = 0;
1084 UINT size;
1085
1086 size = GetEnvironmentVariable ( varName, ret, retlen );
1087 if ( size > retlen )
1088 {
1089 if ( !GrowIfNecessary ( size, &ret, &retlen ) )
1090 return NULL;
1091 size = GetEnvironmentVariable ( varName, ret, retlen );
1092 }
1093 if ( size )
1094 return ret;
1095
1096 /* env var doesn't exist, look for a "special" one */
1097 /* %CD% */
1098 if (_tcsicmp(varName,_T("cd")) ==0)
1099 {
1100 size = GetCurrentDirectory ( retlen, ret );
1101 if ( size > retlen )
1102 {
1103 if ( !GrowIfNecessary ( size, &ret, &retlen ) )
1104 return NULL;
1105 size = GetCurrentDirectory ( retlen, ret );
1106 }
1107 if ( !size )
1108 return NULL;
1109 return ret;
1110 }
1111 /* %TIME% */
1112 else if (_tcsicmp(varName,_T("time")) ==0)
1113 {
1114 SYSTEMTIME t;
1115 if ( !GrowIfNecessary ( MAX_PATH, &ret, &retlen ) )
1116 return NULL;
1117 GetSystemTime(&t);
1118 _sntprintf ( ret, retlen, _T("%02d%c%02d%c%02d%c%02d"),
1119 t.wHour, cTimeSeparator, t.wMinute, cTimeSeparator,
1120 t.wSecond, cDecimalSeparator, t.wMilliseconds );
1121 return ret;
1122 }
1123 /* %DATE% */
1124 else if (_tcsicmp(varName,_T("date")) ==0)
1125 {
1126 LPTSTR tmp;
1127
1128 if ( !GrowIfNecessary ( MAX_PATH, &ret, &retlen ) )
1129 return NULL;
1130 size = GetDateFormat(LOCALE_USER_DEFAULT, 0, NULL, _T("ddd"), ret, retlen );
1131 /* TODO FIXME - test whether GetDateFormat() can return a value indicating the buffer wasn't big enough */
1132 if ( !size )
1133 return NULL;
1134 tmp = ret + _tcslen(ret);
1135 *tmp++ = _T(' ');
1136 size = GetDateFormat(LOCALE_USER_DEFAULT, DATE_SHORTDATE, NULL, NULL, tmp, retlen-(tmp-ret));
1137 /* TODO FIXME - test whether GetDateFormat() can return a value indicating the buffer wasn't big enough */
1138 if ( !size )
1139 return NULL;
1140 return ret;
1141 }
1142
1143 /* %RANDOM% */
1144 else if (_tcsicmp(varName,_T("random")) ==0)
1145 {
1146 if ( !GrowIfNecessary ( MAX_PATH, &ret, &retlen ) )
1147 return NULL;
1148 /* Get random number */
1149 _itot(rand(),ret,10);
1150 return ret;
1151 }
1152
1153 /* %CMDCMDLINE% */
1154 else if (_tcsicmp(varName,_T("cmdcmdline")) ==0)
1155 {
1156 return GetCommandLine();
1157 }
1158
1159 /* %CMDEXTVERSION% */
1160 else if (_tcsicmp(varName,_T("cmdextversion")) ==0)
1161 {
1162 if ( !GrowIfNecessary ( MAX_PATH, &ret, &retlen ) )
1163 return NULL;
1164 /* Set version number to 2 */
1165 _itot(2,ret,10);
1166 return ret;
1167 }
1168
1169 /* %ERRORLEVEL% */
1170 else if (_tcsicmp(varName,_T("errorlevel")) ==0)
1171 {
1172 if ( !GrowIfNecessary ( MAX_PATH, &ret, &retlen ) )
1173 return NULL;
1174 _itot(nErrorLevel,ret,10);
1175 return ret;
1176 }
1177
1178 return _T(""); /* not found - return empty string */
1179 }
1180
1181 LPCTSTR
1182 GetParsedEnvVar ( LPCTSTR varName, UINT* varNameLen, BOOL ModeSetA )
1183 {
1184 static LPTSTR ret = NULL;
1185 static UINT retlen = 0;
1186 LPTSTR p, tmp;
1187 UINT size;
1188
1189 if ( varNameLen )
1190 *varNameLen = 0;
1191 SetLastError(0);
1192 if ( *varName++ != '%' )
1193 return NULL;
1194 switch ( *varName )
1195 {
1196 case _T('0'):
1197 case _T('1'):
1198 case _T('2'):
1199 case _T('3'):
1200 case _T('4'):
1201 case _T('5'):
1202 case _T('6'):
1203 case _T('7'):
1204 case _T('8'):
1205 case _T('9'):
1206 if ((tmp = FindArg (*varName - _T('0'))))
1207 {
1208 if ( varNameLen )
1209 *varNameLen = 2;
1210 if ( !*tmp )
1211 return _T("");
1212 if ( !GrowIfNecessary ( _tcslen(tmp)+1, &ret, &retlen ) )
1213 return NULL;
1214 _tcscpy ( ret, tmp );
1215 return ret;
1216 }
1217 if ( !GrowIfNecessary ( 3, &ret, &retlen ) )
1218 return NULL;
1219 ret[0] = _T('%');
1220 ret[1] = *varName;
1221 ret[2] = 0;
1222 if ( varNameLen )
1223 *varNameLen = 2;
1224 return ret;
1225
1226 case _T('%'):
1227 if ( !GrowIfNecessary ( 2, &ret, &retlen ) )
1228 return NULL;
1229 ret[0] = _T('%');
1230 ret[1] = 0;
1231 if ( varNameLen )
1232 *varNameLen = 2;
1233 return ret;
1234
1235 case _T('?'):
1236 /* TODO FIXME 10 is only max size for 32-bit */
1237 if ( !GrowIfNecessary ( 11, &ret, &retlen ) )
1238 return NULL;
1239 _sntprintf ( ret, retlen, _T("%u"), nErrorLevel);
1240 ret[retlen-1] = 0;
1241 if ( varNameLen )
1242 *varNameLen = 2;
1243 return ret;
1244 }
1245 if ( ModeSetA )
1246 {
1247 /* HACK for set/a */
1248 if ( !GrowIfNecessary ( 2, &ret, &retlen ) )
1249 return NULL;
1250 ret[0] = _T('%');
1251 ret[1] = 0;
1252 if ( varNameLen )
1253 *varNameLen = 1;
1254 return ret;
1255 }
1256 p = _tcschr ( varName, _T('%') );
1257 if ( !p )
1258 {
1259 SetLastError ( ERROR_INVALID_PARAMETER );
1260 return NULL;
1261 }
1262 size = p-varName;
1263 if ( varNameLen )
1264 *varNameLen = size + 2;
1265 p = alloca ( (size+1) * sizeof(TCHAR) );
1266 memmove ( p, varName, size * sizeof(TCHAR) );
1267 p[size] = 0;
1268 varName = p;
1269 return GetEnvVarOrSpecial ( varName );
1270 }
1271
1272
1273 /*
1274 * do the prompt/input/process loop
1275 *
1276 */
1277
1278 static INT
1279 ProcessInput (BOOL bFlag)
1280 {
1281 TCHAR commandline[CMDLINE_LENGTH];
1282 TCHAR readline[CMDLINE_LENGTH];
1283 LPTSTR ip;
1284 LPTSTR cp;
1285 LPCTSTR tmp;
1286 BOOL bEchoThisLine;
1287 BOOL bModeSetA;
1288 BOOL bIsBatch;
1289
1290 do
1291 {
1292 /* if no batch input then... */
1293 if (!(ip = ReadBatchLine (&bEchoThisLine)))
1294 {
1295 if (bFlag)
1296 return 0;
1297
1298 ReadCommand (readline, CMDLINE_LENGTH);
1299 ip = readline;
1300 bEchoThisLine = FALSE;
1301 bIsBatch = FALSE;
1302 }
1303 else
1304 {
1305 bIsBatch = TRUE;
1306 }
1307
1308 /* skip leading blanks */
1309 while ( _istspace(*ip) )
1310 ++ip;
1311
1312 cp = commandline;
1313 bModeSetA = FALSE;
1314 while (*ip)
1315 {
1316 if ( *ip == _T('%') )
1317 {
1318 UINT envNameLen;
1319 LPCTSTR envVal = GetParsedEnvVar ( ip, &envNameLen, bModeSetA );
1320 if ( !envVal )
1321 return 1;
1322 ip += envNameLen;
1323 cp = _stpcpy ( cp, envVal );
1324 continue;
1325 }
1326
1327 if (_istcntrl (*ip))
1328 *ip = _T(' ');
1329 *cp++ = *ip++;
1330
1331 /* HACK HACK HACK check whether bModeSetA needs to be toggled */
1332 *cp = 0;
1333 tmp = commandline;
1334 tmp += _tcsspn(tmp,_T(" \t"));
1335 /* first we find and skip and pre-redirections... */
1336 while ( _tcschr(_T("<>"),*tmp)
1337 || !_tcsncmp(tmp,_T("1>"),2)
1338 || !_tcsncmp(tmp,_T("2>"),2) )
1339 {
1340 if ( _istdigit(*tmp) )
1341 tmp += 2;
1342 else
1343 tmp++;
1344 tmp += _tcsspn(tmp,_T(" \t"));
1345 if ( *tmp == _T('\"') )
1346 {
1347 tmp = _tcschr(tmp+1,_T('\"'));
1348 if ( tmp )
1349 ++tmp;
1350 }
1351 else
1352 tmp = _tcspbrk(tmp,_T(" \t"));
1353 tmp += _tcsspn(tmp,_T(" \t"));
1354 }
1355 /* we should now be pointing to the actual command
1356 * (if there is one yet)*/
1357 if ( tmp )
1358 {
1359 /* if we're currently substituting ( which is default )
1360 * check to see if we've parsed out a set/a. if so, we
1361 * need to disable substitution until we come across a
1362 * redirection */
1363 if ( !bModeSetA )
1364 {
1365 /* look for set /a */
1366 if ( !_tcsnicmp(tmp,_T("set"),3) )
1367 {
1368 tmp += 3;
1369 tmp += _tcsspn(tmp,_T(" \t"));
1370 if ( !_tcsnicmp(tmp,_T("/a"),2) )
1371 bModeSetA = TRUE;
1372 }
1373 }
1374 /* if we're not currently substituting, it means we're
1375 * already inside a set /a. now we need to look for
1376 * a redirection in order to turn redirection back on */
1377 else
1378 {
1379 /* look for redirector of some kind after the command */
1380 while ( (tmp = _tcspbrk ( tmp, _T("^<>|") )) )
1381 {
1382 if ( *tmp == _T('^') )
1383 {
1384 if ( _tcschr(_T("<>|&"), *++tmp ) && *tmp )
1385 ++tmp;
1386 }
1387 else
1388 {
1389 bModeSetA = FALSE;
1390 break;
1391 }
1392 }
1393 }
1394 }
1395 }
1396
1397 *cp = _T('\0');
1398
1399 /* strip trailing spaces */
1400 while ((--cp >= commandline) && _istspace (*cp));
1401
1402 *(cp + 1) = _T('\0');
1403
1404 /* JPP 19980807 */
1405 /* Echo batch file line */
1406 if (bEchoThisLine)
1407 {
1408 PrintPrompt ();
1409 ConOutPuts (commandline);
1410 }
1411
1412 if (*commandline)
1413 {
1414 ParseCommandLine (commandline);
1415 if (bEcho && !bIgnoreEcho && (!bIsBatch || bEchoThisLine))
1416 ConOutChar ('\n');
1417 bIgnoreEcho = FALSE;
1418 }
1419 }
1420 while (!bCanExit || !bExit);
1421
1422 return 0;
1423 }
1424
1425
1426 /*
1427 * control-break handler.
1428 */
1429 BOOL WINAPI BreakHandler (DWORD dwCtrlType)
1430 {
1431
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 (bChildProcessRunning == TRUE)
1449 {
1450 SelfGenerated = TRUE;
1451 GenerateConsoleCtrlEvent (dwCtrlType, 0);
1452 return TRUE;
1453 }
1454
1455 bCtrlBreak = TRUE;
1456 /* FIXME: Handle batch files */
1457
1458 //ConOutPrintf(_T("^C"));
1459
1460
1461 return TRUE;
1462 }
1463
1464
1465 VOID AddBreakHandler (VOID)
1466 {
1467 SetConsoleCtrlHandler ((PHANDLER_ROUTINE)BreakHandler, TRUE);
1468 }
1469
1470
1471 VOID RemoveBreakHandler (VOID)
1472 {
1473 SetConsoleCtrlHandler ((PHANDLER_ROUTINE)BreakHandler, FALSE);
1474 }
1475
1476
1477 /*
1478 * show commands and options that are available.
1479 *
1480 */
1481 #if 0
1482 static VOID
1483 ShowCommands (VOID)
1484 {
1485 /* print command list */
1486 ConOutResPuts(STRING_CMD_HELP1);
1487 PrintCommandList();
1488
1489 /* print feature list */
1490 ConOutResPuts(STRING_CMD_HELP2);
1491
1492 #ifdef FEATURE_ALIASES
1493 ConOutResPuts(STRING_CMD_HELP3);
1494 #endif
1495 #ifdef FEATURE_HISTORY
1496 ConOutResPuts(STRING_CMD_HELP4);
1497 #endif
1498 #ifdef FEATURE_UNIX_FILENAME_COMPLETION
1499 ConOutResPuts(STRING_CMD_HELP5);
1500 #endif
1501 #ifdef FEATURE_DIRECTORY_STACK
1502 ConOutResPuts(STRING_CMD_HELP6);
1503 #endif
1504 #ifdef FEATURE_REDIRECTION
1505 ConOutResPuts(STRING_CMD_HELP7);
1506 #endif
1507 ConOutChar(_T('\n'));
1508 }
1509 #endif
1510
1511 /*
1512 * set up global initializations and process parameters
1513 *
1514 * argc - number of parameters to command.com
1515 * argv - command-line parameters
1516 *
1517 */
1518 static VOID
1519 Initialize (int argc, TCHAR* argv[])
1520 {
1521 TCHAR commandline[CMDLINE_LENGTH];
1522 TCHAR ModuleName[_MAX_PATH + 1];
1523 INT i;
1524 TCHAR lpBuffer[2];
1525
1526 //INT len;
1527 //TCHAR *ptr, *cmdLine;
1528
1529 /* get version information */
1530 osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
1531 GetVersionEx (&osvi);
1532
1533 /* Some people like to run ReactOS cmd.exe on Win98, it helps in the
1534 * build process. So don't link implicitly against ntdll.dll, load it
1535 * dynamically instead */
1536
1537 if (osvi.dwPlatformId == VER_PLATFORM_WIN32_NT)
1538 {
1539 /* ntdll is always present on NT */
1540 NtDllModule = GetModuleHandle(TEXT("ntdll.dll"));
1541 }
1542 else
1543 {
1544 /* not all 9x versions have a ntdll.dll, try to load it */
1545 NtDllModule = LoadLibrary(TEXT("ntdll.dll"));
1546 }
1547
1548 if (NtDllModule != NULL)
1549 {
1550 NtQueryInformationProcessPtr = (NtQueryInformationProcessProc)GetProcAddress(NtDllModule, "NtQueryInformationProcess");
1551 NtReadVirtualMemoryPtr = (NtReadVirtualMemoryProc)GetProcAddress(NtDllModule, "NtReadVirtualMemory");
1552 }
1553
1554
1555 #ifdef _DEBUG
1556 DebugPrintf (_T("[command args:\n"));
1557 for (i = 0; i < argc; i++)
1558 {
1559 DebugPrintf (_T("%d. %s\n"), i, argv[i]);
1560 }
1561 DebugPrintf (_T("]\n"));
1562 #endif
1563
1564 InitLocale ();
1565
1566 /* get default input and output console handles */
1567 hOut = GetStdHandle (STD_OUTPUT_HANDLE);
1568 hIn = GetStdHandle (STD_INPUT_HANDLE);
1569
1570 /* Set EnvironmentVariable PROMPT if it does not exists any env value.
1571 for you can change the EnvirommentVariable for prompt before cmd start
1572 this patch are not 100% right, if it does not exists a PROMPT value cmd should use
1573 $P$G as defualt not set EnvirommentVariable PROMPT to $P$G if it does not exists */
1574 if (GetEnvironmentVariable(_T("PROMPT"),lpBuffer, sizeof(lpBuffer) / sizeof(lpBuffer[0])) == 0)
1575 SetEnvironmentVariable (_T("PROMPT"), _T("$P$G"));
1576
1577
1578 if (argc >= 2 && !_tcsncmp (argv[1], _T("/?"), 2))
1579 {
1580 ConOutResPaging(TRUE,STRING_CMD_HELP8);
1581 ExitProcess(0);
1582 }
1583 SetConsoleMode (hIn, ENABLE_PROCESSED_INPUT);
1584
1585 #ifdef INCLUDE_CMD_CHDIR
1586 InitLastPath ();
1587 #endif
1588
1589 #ifdef FATURE_ALIASES
1590 InitializeAlias ();
1591 #endif
1592
1593 if (argc >= 2)
1594 {
1595 for (i = 1; i < argc; i++)
1596 {
1597 if (!_tcsicmp (argv[i], _T("/p")))
1598 {
1599 if (!IsExistingFile (_T("\\autoexec.bat")))
1600 {
1601 #ifdef INCLUDE_CMD_DATE
1602 cmd_date (_T(""), _T(""));
1603 #endif
1604 #ifdef INCLUDE_CMD_TIME
1605 cmd_time (_T(""), _T(""));
1606 #endif
1607 }
1608 else
1609 {
1610 ParseCommandLine (_T("\\autoexec.bat"));
1611 }
1612 bCanExit = FALSE;
1613 }
1614 else if (!_tcsicmp (argv[i], _T("/c")))
1615 {
1616 /* This just runs a program and exits */
1617 ++i;
1618 if (i < argc)
1619 {
1620 _tcscpy (commandline, argv[i]);
1621 while (++i < argc)
1622 {
1623 _tcscat (commandline, _T(" "));
1624 _tcscat (commandline, argv[i]);
1625 }
1626
1627 ParseCommandLine(commandline);
1628 ExitProcess (ProcessInput (TRUE));
1629 }
1630 else
1631 {
1632 ExitProcess (0);
1633 }
1634 }
1635 else if (!_tcsicmp (argv[i], _T("/k")))
1636 {
1637 /* This just runs a program and remains */
1638 ++i;
1639 if (i < argc)
1640 {
1641 _tcscpy (commandline, _T("\""));
1642 _tcscat (commandline, argv[i]);
1643 _tcscat (commandline, _T("\""));
1644 while (++i < argc)
1645 {
1646 _tcscat (commandline, _T(" "));
1647 _tcscat (commandline, argv[i]);
1648 }
1649 ParseCommandLine(commandline);
1650 }
1651 }
1652 #ifdef INCLUDE_CMD_COLOR
1653 else if (!_tcsnicmp (argv[i], _T("/t:"), 3))
1654 {
1655 /* process /t (color) argument */
1656 wDefColor = (WORD)_tcstoul (&argv[i][3], NULL, 16);
1657 wColor = wDefColor;
1658 SetScreenColor (wColor, TRUE);
1659 }
1660 #endif
1661 }
1662 }
1663
1664 /* run cmdstart.bat */
1665 if (IsExistingFile (_T("cmdstart.bat")))
1666 {
1667 ParseCommandLine (_T("cmdstart.bat"));
1668 }
1669 else if (IsExistingFile (_T("\\cmdstart.bat")))
1670 {
1671 ParseCommandLine (_T("\\cmdstart.bat"));
1672 }
1673
1674 #ifdef FEATURE_DIR_STACK
1675 /* initialize directory stack */
1676 InitDirectoryStack ();
1677 #endif
1678
1679
1680 #ifdef FEATURE_HISTORY
1681 /*initialize history*/
1682 InitHistory();
1683 #endif
1684
1685 /* Set COMSPEC environment variable */
1686 if (0 != GetModuleFileName (NULL, ModuleName, _MAX_PATH + 1))
1687 {
1688 ModuleName[_MAX_PATH] = _T('\0');
1689 SetEnvironmentVariable (_T("COMSPEC"), ModuleName);
1690 }
1691
1692 /* add ctrl break handler */
1693 AddBreakHandler ();
1694 }
1695
1696
1697 static VOID Cleanup (int argc, TCHAR *argv[])
1698 {
1699 /* run cmdexit.bat */
1700 if (IsExistingFile (_T("cmdexit.bat")))
1701 {
1702 ConErrResPuts(STRING_CMD_ERROR5);
1703
1704 ParseCommandLine (_T("cmdexit.bat"));
1705 }
1706 else if (IsExistingFile (_T("\\cmdexit.bat")))
1707 {
1708 ConErrResPuts (STRING_CMD_ERROR5);
1709 ParseCommandLine (_T("\\cmdexit.bat"));
1710 }
1711
1712 #ifdef FEATURE_ALIASES
1713 DestroyAlias ();
1714 #endif
1715
1716 #ifdef FEATURE_DIECTORY_STACK
1717 /* destroy directory stack */
1718 DestroyDirectoryStack ();
1719 #endif
1720
1721 #ifdef INCLUDE_CMD_CHDIR
1722 FreeLastPath ();
1723 #endif
1724
1725 #ifdef FEATURE_HISTORY
1726 CleanHistory();
1727 #endif
1728
1729
1730 /* remove ctrl break handler */
1731 RemoveBreakHandler ();
1732 SetConsoleMode( GetStdHandle( STD_INPUT_HANDLE ),
1733 ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT | ENABLE_ECHO_INPUT );
1734
1735 if (NtDllModule != NULL)
1736 {
1737 FreeLibrary(NtDllModule);
1738 }
1739 }
1740
1741 /*
1742 * main function
1743 */
1744 #ifdef _UNICODE
1745 int _main(void)
1746 #else
1747 int _main (int argc, char *argv[])
1748 #endif
1749 {
1750 TCHAR startPath[MAX_PATH];
1751 CONSOLE_SCREEN_BUFFER_INFO Info;
1752 INT nExitCode;
1753 #ifdef _UNICODE
1754 PWCHAR * argv;
1755 int argc=0;
1756 argv = CommandLineToArgvW(GetCommandLineW(), &argc);
1757 #endif
1758
1759 GetCurrentDirectory(MAX_PATH,startPath);
1760 _tchdir(startPath);
1761
1762 SetFileApisToOEM();
1763 InputCodePage= 0;
1764 OutputCodePage = 0;
1765
1766 hConsole = CreateFile(_T("CONOUT$"), GENERIC_READ|GENERIC_WRITE,
1767 FILE_SHARE_READ|FILE_SHARE_WRITE, NULL,
1768 OPEN_EXISTING, 0, NULL);
1769 if (GetConsoleScreenBufferInfo(hConsole, &Info) == FALSE)
1770 {
1771 ConErrFormatMessage(GetLastError());
1772 return(1);
1773 }
1774 wColor = Info.wAttributes;
1775 wDefColor = wColor;
1776
1777 InputCodePage= GetConsoleCP();
1778 OutputCodePage = GetConsoleOutputCP();
1779 CMD_ModuleHandle = GetModuleHandle(NULL);
1780
1781 /* check switches on command-line */
1782 Initialize(argc, argv);
1783
1784 /* call prompt routine */
1785 nExitCode = ProcessInput(FALSE);
1786
1787 /* do the cleanup */
1788 Cleanup(argc, argv);
1789
1790 return(nExitCode);
1791 }
1792
1793 /* EOF */