- Implement ProtocolResetComplete
[reactos.git] / base / shell / cmd / internal.c
1 /*
2 * INTERNAL.C - command.com internal commands.
3 *
4 *
5 * History:
6 *
7 * 17/08/94 (Tim Norman)
8 * started.
9 *
10 * 08/08/95 (Matt Rains)
11 * i have cleaned up the source code. changes now bring this source into
12 * guidelines for recommended programming practice.
13 *
14 * cd()
15 * started.
16 *
17 * dir()
18 * i have added support for file attributes to the DIR() function. the
19 * routine adds "d" (directory) and "r" (read only) output. files with the
20 * system attribute have the filename converted to lowercase. files with
21 * the hidden attribute are not displayed.
22 *
23 * i have added support for directorys. now if the directory attribute is
24 * detected the file size if replaced with the string "<dir>".
25 *
26 * ver()
27 * started.
28 *
29 * md()
30 * started.
31 *
32 * rd()
33 * started.
34 *
35 * del()
36 * started.
37 *
38 * does not support wildcard selection.
39 *
40 * todo: add delete directory support.
41 * add recursive directory delete support.
42 *
43 * ren()
44 * started.
45 *
46 * does not support wildcard selection.
47 *
48 * todo: add rename directory support.
49 *
50 * a general structure has been used for the cd, rd and md commands. this
51 * will be better in the long run. it is too hard to maintain such diverse
52 * functions when you are involved in a group project like this.
53 *
54 * 12/14/95 (Tim Norman)
55 * fixed DIR so that it will stick \*.* if a directory is specified and
56 * that it will stick on .* if a file with no extension is specified or
57 * *.* if it ends in a \
58 *
59 * 1/6/96 (Tim Norman)
60 * added an isatty call to DIR so it won't prompt for keypresses unless
61 * stdin and stdout are the console.
62 *
63 * changed parameters to be mutually consistent to make calling the
64 * functions easier
65 *
66 * rem()
67 * started.
68 *
69 * doskey()
70 * started.
71 *
72 * 01/22/96 (Oliver Mueller)
73 * error messages are now handled by perror.
74 *
75 * 02/05/96 (Tim Norman)
76 * converted all functions to accept first/rest parameters
77 *
78 * 07/26/96 (Tim Norman)
79 * changed return values to int instead of void
80 *
81 * path() started.
82 *
83 * 12/23/96 (Aaron Kaufman)
84 * rewrote dir() to mimic MS-DOS's dir
85 *
86 * 01/28/97 (Tim Norman)
87 * cleaned up Aaron's DIR code
88 *
89 * 06/13/97 (Tim Norman)
90 * moved DIR code to dir.c
91 * re-implemented Aaron's DIR code
92 *
93 * 06/14/97 (Steffan Kaiser)
94 * ctrl-break handling
95 * bug fixes
96 *
97 * 27-Jul-1998 (John P Price <linux-guru@gcfl.net>)
98 * added config.h include
99 *
100 * 03-Dec-1998 (Eric Kohl)
101 * Replaced DOS calls by Win32 calls.
102 *
103 * 08-Dec-1998 (Eric Kohl)
104 * Added help texts ("/?").
105 *
106 * 18-Dec-1998 (Eric Kohl)
107 * Added support for quoted arguments (cd "program files").
108 *
109 * 07-Jan-1999 (Eric Kohl)
110 * Clean up.
111 *
112 * 26-Jan-1999 (Eric Kohl)
113 * Replaced remaining CRT io functions by Win32 io functions.
114 * Unicode safe!
115 *
116 * 30-Jan-1999 (Eric Kohl)
117 * Added "cd -" feature. Changes to the previous directory.
118 *
119 * 15-Mar-1999 (Eric Kohl)
120 * Fixed bug in "cd -" feature. If the previous directory was a root
121 * directory, it was ignored.
122 *
123 * 23-Feb-2001 (Carl Nettelblad <cnettel@hem.passagen.se>)
124 * Improved chdir/cd command.
125 *
126 * 02-Apr-2004 (Magnus Olsen <magnus@greatlord.com>)
127 * Remove all hard code string so they can be
128 * translate to other langues.
129 *
130 * 19-Jul-2005 (Brandon Turner <turnerb7@msu.edu>)
131 * Rewrite the CD, it working as Windows 2000 CMD
132 *
133 * 19-Jul-2005 (Magnus Olsen <magnus@greatlord.com>)
134 * Add SetRootPath and GetRootPath
135 *
136 * 14-Jul-2007 (Pierre Schweitzer <heis_spiter@hotmail.com>)
137 * Added commands help display to help command (ex. : "help cmd")
138 */
139
140 #include <precomp.h>
141
142 #ifdef INCLUDE_CMD_CHDIR
143
144 static LPTSTR lpLastPath;
145
146
147 VOID InitLastPath (VOID)
148 {
149 lpLastPath = NULL;
150 }
151
152
153 VOID FreeLastPath (VOID)
154 {
155 if (lpLastPath)
156 cmd_free (lpLastPath);
157 }
158
159 /* help functions for getting current path from drive
160 without changing drive. Return code 0 = ok, 1 = fail.
161 INT GetRootPath("C:",outbuffer,chater size of outbuffer);
162 the first param can have any size, if the the two frist
163 letter are not a drive with : it will get Currentpath on
164 current drive exacly as GetCurrentDirectory does.
165 */
166
167 INT GetRootPath(TCHAR *InPath,TCHAR *OutPath,INT size)
168 {
169 INT retcode = 1;
170
171 if (_tcslen(InPath)>1)
172 {
173 if (InPath[1]==_T(':'))
174 {
175 INT t=0;
176
177 if ((InPath[0] >= _T('0')) && (InPath[0] <= _T('9')))
178 {
179 t = (InPath[0] - _T('0')) +28;
180 }
181
182 if ((InPath[0] >= _T('a')) && (InPath[0] <= _T('z')))
183 {
184 t = (InPath[0] - _T('a')) +1;
185 InPath[0] = t + _T('A') - 1;
186 }
187
188 if ((InPath[0] >= _T('A')) && (InPath[0] <= _T('Z')))
189 {
190 t = (InPath[0] - _T('A')) +1;
191 }
192
193 if (_tgetdcwd(t,OutPath,size) != NULL)
194 {
195 return 0;
196 }
197 }
198 }
199
200 /* fail */
201 if (_tcslen(InPath)>1)
202 {
203 if (InPath[1]==_T(':'))
204 return 1;
205 }
206
207 /* Get current directory */
208 retcode = GetCurrentDirectory(size,OutPath);
209 if (retcode==0)
210 return 1;
211
212 return 0;
213 }
214
215
216 BOOL SetRootPath(TCHAR *InPath)
217 {
218 TCHAR oldpath[MAX_PATH];
219 TCHAR OutPath[MAX_PATH];
220 TCHAR OutPathTemp[MAX_PATH];
221 TCHAR OutPathTemp2[MAX_PATH];
222 BOOL fail;
223
224
225 /* Get The current directory path and save it */
226 fail = GetCurrentDirectory(MAX_PATH,oldpath);
227 if (!fail)
228 return 1;
229
230 /* Get current drive directory path if C: was only pass down*/
231
232 if (_tcsncicmp(&InPath[1],_T(":\\"),2)!=0)
233 {
234 if (!GetRootPath(InPath,OutPathTemp,MAX_PATH))
235 _tcscpy(OutPathTemp,InPath);
236 }
237 else
238 {
239 _tcscpy(OutPathTemp,InPath);
240 }
241
242 _tcsupr(OutPathTemp);
243 /* The use of both of these together will correct the case of a path
244 where as one alone or GetFullPath will not. Exameple:
245 c:\windows\SYSTEM32 => C:\WINDOWS\system32 */
246 GetFullPathName(OutPathTemp, MAX_PATH, OutPathTemp2, NULL);
247 GetPathCase(OutPathTemp2, OutPath);
248
249 fail = SetCurrentDirectory(OutPath);
250 if (!fail)
251 return 1;
252
253
254
255 SetCurrentDirectory(OutPath);
256 GetCurrentDirectory(MAX_PATH,OutPath);
257 _tchdir(OutPath);
258
259 if (_tcsncicmp(OutPath,oldpath,2)!=0)
260 SetCurrentDirectory(oldpath);
261
262 return 0;
263 }
264
265
266 /*
267 * CD / CHDIR
268 *
269 */
270 INT cmd_chdir (LPTSTR cmd, LPTSTR param)
271 {
272
273 WIN32_FIND_DATA f;
274 HANDLE hFile;
275 BOOL bChangeDrive = FALSE;
276 TCHAR szPath[MAX_PATH];
277 TCHAR szFinalPath[MAX_PATH];
278 TCHAR * tmpPath;
279 TCHAR szCurrent[MAX_PATH];
280 INT i;
281
282
283 /* Filter out special cases first */
284
285 /* Print Help */
286 if (!_tcsncmp(param, _T("/?"), 2))
287 {
288 ConOutResPaging(TRUE,STRING_CD_HELP);
289 return 0;
290 }
291
292 /* Set Error Level to Success */
293 nErrorLevel = 0;
294
295 /* Input String Contains /D Switch */
296 if (!_tcsncicmp(param, _T("/D"), 2))
297 {
298 bChangeDrive = TRUE;
299 tmpPath = _tcsstr(param,_T(" "));
300 if(!tmpPath)
301 {
302 /* Didnt find an directories */
303 ConErrResPrintf(STRING_ERROR_PATH_NOT_FOUND);
304 nErrorLevel = 1;
305 return 1;
306 }
307 tmpPath++;
308 _tcscpy(szPath,tmpPath);
309 }
310 else
311 {
312 _tcscpy(szPath,param);
313 }
314
315 /* Print Current Directory on a disk */
316 if (_tcslen(szPath) == 2 && szPath[1] == _T(':'))
317 {
318 if(GetRootPath(szPath,szCurrent,MAX_PATH))
319 {
320 nErrorLevel = 1;
321 return 1;
322 }
323 ConOutPuts(szCurrent);
324 return 0;
325 }
326
327 /* Get Current Directory */
328 GetRootPath(_T("."),szCurrent,MAX_PATH);
329
330 /* Remove " */
331 i = 0;
332 while(i < (INT)_tcslen(szPath))
333 {
334 if(szPath[i] == _T('\"'))
335 memmove(&szPath[i],&szPath[i + 1], _tcslen(&szPath[i]) * sizeof(TCHAR));
336 else
337 i++;
338 }
339
340 tmpPath = szPath;
341 while (_istspace (*tmpPath))
342 tmpPath++;
343 _tcscpy(szPath,tmpPath);
344
345 if (szPath[0] == _T('\0'))
346 {
347 ConOutPuts(szCurrent);
348 return 0;
349 }
350
351
352 /* change to full path if relative path was given */
353 GetFullPathName(szPath,MAX_PATH,szFinalPath,NULL);
354
355 if(szFinalPath[_tcslen(szFinalPath) - 1] == _T('\\') && _tcslen(szFinalPath) > 3)
356 szFinalPath[_tcslen(szFinalPath) - 1] = _T('\0');
357
358 /* Handle Root Directory Alone*/
359 if (_tcslen(szFinalPath) == 3 && szFinalPath[1] == _T(':'))
360 {
361 if(!SetRootPath(szFinalPath))
362 {
363 /* Change prompt if it is one the same drive or /D */
364 if(bChangeDrive || !_tcsncicmp(szFinalPath,szCurrent,1))
365 SetCurrentDirectory(szFinalPath);
366 return 0;
367 }
368 /* Didnt find an directories */
369 ConErrResPrintf(STRING_ERROR_PATH_NOT_FOUND);
370 nErrorLevel = 1;
371 return 1;
372
373 }
374
375 /* Get a list of all the files */
376 hFile = FindFirstFile (szFinalPath, &f);
377
378 do
379 {
380 if(hFile == INVALID_HANDLE_VALUE)
381 {
382 ConErrFormatMessage (GetLastError(), szFinalPath);
383 nErrorLevel = 1;
384 return 1;
385 }
386
387 /* Strip the paths back to the folder they are in */
388 for(i = (_tcslen(szFinalPath) - 1); i > -1; i--)
389 if(szFinalPath[i] != _T('\\'))
390 szFinalPath[i] = _T('\0');
391 else
392 break;
393
394 _tcscat(szFinalPath,f.cFileName);
395
396 if ((f.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == FILE_ATTRIBUTE_DIRECTORY)
397 {
398 if(!SetRootPath(szFinalPath))
399 {
400 /* Change for /D */
401 if(bChangeDrive)
402 {
403 _tcsupr(szFinalPath);
404 GetPathCase(szFinalPath, szPath);
405 SetCurrentDirectory(szPath);
406 }
407 return 0;
408 }
409
410 }
411 }while(FindNextFile (hFile, &f));
412
413 /* Didnt find an directories */
414 ConErrResPrintf(STRING_ERROR_PATH_NOT_FOUND);
415 nErrorLevel = 1;
416 return 1;
417 }
418
419 #endif
420
421
422
423 #ifdef INCLUDE_CMD_MKDIR
424
425 /* Helper funtion for mkdir to make directories in a path.
426 Dont use the api to decrease depence on libs */
427 BOOL
428 MakeFullPath(TCHAR * DirPath)
429 {
430 TCHAR path[MAX_PATH];
431 TCHAR *p = DirPath;
432 INT n;
433
434 if (p[0] && p[1] == _T(':'))
435 p += 2;
436 while (*p == _T('\\'))
437 p++; /* skip drive root */
438 do
439 {
440 p = _tcschr(p, _T('\\'));
441 n = p ? p++ - DirPath : _tcslen(DirPath);
442 _tcsncpy(path, DirPath, n);
443 path[n] = _T('\0');
444 if( !CreateDirectory(path, NULL) &&
445 (GetLastError() != ERROR_ALREADY_EXISTS))
446 return FALSE;
447 } while (p != NULL);
448 if (GetLastError() == ERROR_ALREADY_EXISTS)
449 SetLastError(ERROR_SUCCESS);
450
451 return TRUE;
452 }
453
454 /*
455 * MD / MKDIR
456 *
457 */
458 INT cmd_mkdir (LPTSTR cmd, LPTSTR param)
459 {
460 LPTSTR dir; /* pointer to the directory to change to */
461 LPTSTR place; /* used to search for the \ when no space is used */
462 LPTSTR *p = NULL;
463 INT argc;
464 nErrorLevel = 0;
465 if (!_tcsncmp (param, _T("/?"), 2))
466 {
467 ConOutResPaging(TRUE,STRING_MKDIR_HELP);
468 return 0;
469 }
470
471
472 /* check if there is no space between the command and the path */
473 if (param[0] == _T('\0'))
474 {
475 /* search for the \ or . so that both short & long names will work */
476 for (place = cmd; *place; place++)
477 if (*place == _T('.') || *place == _T('\\'))
478 break;
479
480 if (*place)
481 {
482 argc = 0;
483 if (add_entry(&argc, &p, place))
484 dir = place;
485 else
486 dir = NULL;
487 }
488 else
489 /* signal that there are no parameters */
490 dir = NULL;
491 }
492 else
493 {
494 p = split (param, &argc, FALSE);
495 if (argc > 1)
496 {
497 /*JPP 20-Jul-1998 use standard error message */
498 error_too_many_parameters (param);
499 freep (p);
500 return 1;
501 }
502 else
503 dir = p[0];
504 }
505
506 if (!dir)
507 {
508 ConErrResPuts (STRING_ERROR_REQ_PARAM_MISSING);
509 nErrorLevel = 1;
510 if(p != NULL)
511 freep (p);
512 return 1;
513 }
514
515 if (!MakeFullPath(dir))
516 {
517 if(GetLastError() == ERROR_PATH_NOT_FOUND)
518 {
519 ConErrResPuts(STRING_MD_ERROR2);
520 }
521 else
522 {
523 ErrorMessage (GetLastError(), _T("MD"));
524 }
525 nErrorLevel = 1;
526 freep (p);
527 return 1;
528 }
529
530 freep (p);
531
532 return 0;
533 }
534 #endif
535
536
537 #ifdef INCLUDE_CMD_RMDIR
538 /*
539 * RD / RMDIR
540 *
541 */
542 BOOL DeleteFolder(LPTSTR FileName)
543 {
544 TCHAR Base[MAX_PATH];
545 TCHAR TempFileName[MAX_PATH];
546 HANDLE hFile;
547 WIN32_FIND_DATA f;
548 _tcscpy(Base,FileName);
549 _tcscat(Base,_T("\\*"));
550 hFile = FindFirstFile(Base, &f);
551 Base[_tcslen(Base) - 1] = _T('\0');
552 if (hFile != INVALID_HANDLE_VALUE)
553 {
554 do
555 {
556 if (!_tcscmp(f.cFileName, _T(".")) ||
557 !_tcscmp(f.cFileName, _T("..")))
558 continue;
559 _tcscpy(TempFileName,Base);
560 _tcscat(TempFileName,f.cFileName);
561
562 if(f.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
563 DeleteFolder(TempFileName);
564 else
565 {
566 SetFileAttributes(TempFileName,FILE_ATTRIBUTE_NORMAL);
567 if(!DeleteFile(TempFileName))
568 return 0;
569 }
570
571 }while (FindNextFile (hFile, &f));
572 FindClose (hFile);
573 }
574 return RemoveDirectory(FileName);
575 }
576 INT cmd_rmdir (LPTSTR cmd, LPTSTR param)
577 {
578 TCHAR dir[MAX_PATH]; /* pointer to the directory to change to */
579 TCHAR ch;
580 INT args;
581 LPTSTR *arg = NULL;
582 INT i;
583 BOOL RD_SUB = FALSE;
584 BOOL RD_QUIET = FALSE;
585 HANDLE hFile;
586 WIN32_FIND_DATA f;
587 INT res;
588 TCHAR szFullPath[MAX_PATH];
589
590 if (!_tcsncmp (param, _T("/?"), 2))
591 {
592 ConOutResPaging(TRUE,STRING_RMDIR_HELP);
593 return 0;
594 }
595
596 nErrorLevel = 0;
597
598 arg = split (param, &args, FALSE);
599
600 if (args == 0)
601 {
602 /* only command given */
603 error_req_param_missing ();
604 freep (arg);
605 return 1;
606 }
607
608 dir[0] = 0;
609
610 /* check for options anywhere in command line */
611 for (i = 0; i < args; i++)
612 {
613 if (*arg[i] == _T('/'))
614 {
615 /*found a command, but check to make sure it has something after it*/
616 if (_tcslen (arg[i]) == 2)
617 {
618 ch = _totupper (arg[i][1]);
619
620 if (ch == _T('S'))
621 {
622 RD_SUB = TRUE;
623 }
624 else if (ch == _T('Q'))
625 {
626 RD_QUIET = TRUE;
627 }
628 }
629 }
630 else
631 {
632 /* get the folder name */
633 _tcscpy(dir,arg[i]);
634 }
635 }
636
637 if (dir[0] == _T('\0'))
638 {
639 /* No folder to remove */
640 ConErrResPuts(STRING_ERROR_REQ_PARAM_MISSING);
641 freep(arg);
642 return 1;
643 }
644
645 GetFullPathName(dir,MAX_PATH,szFullPath,NULL);
646
647 /* remove trailing \ if any, but ONLY if dir is not the root dir */
648 if (_tcslen (szFullPath) >= 2 && szFullPath[_tcslen (szFullPath) - 1] == _T('\\'))
649 szFullPath[_tcslen(szFullPath) - 1] = _T('\0');
650
651 if(RD_SUB)
652 {
653 /* ask if they want to delete evrything in the folder */
654 if (!RD_QUIET)
655 {
656 res = FilePromptYNA (STRING_DEL_HELP2);
657 if ((res == PROMPT_NO) || (res == PROMPT_BREAK))
658 {
659 freep(arg);
660 nErrorLevel = 1;
661 return 1;
662 }
663 }
664
665 }
666 else
667 {
668 /* check for files in the folder */
669 _tcscat(szFullPath,_T("\\*"));
670
671 hFile = FindFirstFile(szFullPath, &f);
672 if (hFile != INVALID_HANDLE_VALUE)
673 {
674 do
675 {
676 if (!_tcscmp(f.cFileName,_T(".")) ||
677 !_tcscmp(f.cFileName,_T("..")))
678 continue;
679 ConOutResPuts(STRING_RMDIR_HELP2);
680 freep(arg);
681 FindClose (hFile);
682 nErrorLevel = 1;
683 return 1;
684 } while (FindNextFile (hFile, &f));
685 FindClose (hFile);
686 }
687 /* reovme the \\* */
688 szFullPath[_tcslen(szFullPath) - 2] = _T('\0');
689 }
690
691 if (!DeleteFolder(szFullPath))
692 {
693 /* Couldnt delete the folder, clean up and print out the error */
694 ErrorMessage (GetLastError(), _T("RD"));
695 freep (arg);
696 nErrorLevel = 1;
697 return 1;
698 }
699
700 freep (arg);
701 return 0;
702 }
703 #endif
704
705
706 /*
707 * set the exitflag to true
708 *
709 */
710 INT CommandExit (LPTSTR cmd, LPTSTR param)
711 {
712 if (!_tcsncmp (param, _T("/?"), 2))
713 {
714 ConOutResPaging(TRUE,STRING_EXIT_HELP);
715 /* Just make sure */
716 bExit = FALSE;
717 /* Dont exit */
718 return 0;
719 }
720
721 if (bc != NULL && _tcsnicmp(param,_T("/b"),2) == 0)
722 {
723 param += 2;
724 while (_istspace (*param))
725 param++;
726 if (_istdigit(*param))
727 nErrorLevel = _ttoi(param);
728 ExitBatch (NULL);
729 }
730
731 else
732 bExit = TRUE;
733
734
735 return 0;
736
737 }
738
739 #ifdef INCLUDE_CMD_REM
740 /*
741 * does nothing
742 *
743 */
744 INT CommandRem (LPTSTR cmd, LPTSTR param)
745 {
746 if (!_tcsncmp (param, _T("/?"), 2))
747 {
748 ConOutResPaging(TRUE,STRING_REM_HELP);
749 }
750
751 return 0;
752 }
753 #endif /* INCLUDE_CMD_REM */
754
755
756 INT CommandShowCommands (LPTSTR cmd, LPTSTR param)
757 {
758 PrintCommandList ();
759 return 0;
760 }
761
762 INT CommandShowCommandsDetail (LPTSTR cmd, LPTSTR param)
763 {
764 /* If a param was send, display help of correspondent command */
765 if (_tcslen(param))
766 {
767 LPTSTR NewCommand = cmd_alloc((_tcslen(param)+4)*sizeof(TCHAR));
768 _tcscpy(NewCommand, param);
769 _tcscat(NewCommand, _T(" /?"));
770 DoCommand(NewCommand);
771 cmd_free(NewCommand);
772 }
773 /* Else, display detailed commands list */
774 else
775 {
776 PrintCommandListDetail ();
777 }
778 return 0;
779 }
780
781 /* EOF */