]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Application/Shell/Shell.c
ShellPkg: Not add redundant quotes any longer to parameters with spaces.
[mirror_edk2.git] / ShellPkg / Application / Shell / Shell.c
1 /** @file
2 This is THE shell (application)
3
4 Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
5 (C) Copyright 2013-2014, Hewlett-Packard Development Company, L.P.
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #include "Shell.h"
17
18 //
19 // Initialize the global structure
20 //
21 SHELL_INFO ShellInfoObject = {
22 NULL,
23 NULL,
24 FALSE,
25 FALSE,
26 {
27 {{
28 0,
29 0,
30 0,
31 0,
32 0,
33 0,
34 0,
35 0,
36 0
37 }},
38 0,
39 NULL,
40 NULL
41 },
42 {{NULL, NULL}, NULL},
43 {
44 {{NULL, NULL}, NULL},
45 0,
46 0,
47 TRUE
48 },
49 NULL,
50 0,
51 NULL,
52 NULL,
53 NULL,
54 NULL,
55 NULL,
56 {{NULL, NULL}, NULL, NULL},
57 {{NULL, NULL}, NULL, NULL},
58 NULL,
59 NULL,
60 NULL,
61 NULL,
62 NULL,
63 NULL,
64 NULL,
65 NULL,
66 FALSE
67 };
68
69 STATIC CONST CHAR16 mScriptExtension[] = L".NSH";
70 STATIC CONST CHAR16 mExecutableExtensions[] = L".NSH;.EFI";
71 STATIC CONST CHAR16 mStartupScript[] = L"startup.nsh";
72
73 /**
74 Cleans off leading and trailing spaces and tabs.
75
76 @param[in] String pointer to the string to trim them off.
77 **/
78 EFI_STATUS
79 EFIAPI
80 TrimSpaces(
81 IN CHAR16 **String
82 )
83 {
84 ASSERT(String != NULL);
85 ASSERT(*String!= NULL);
86 //
87 // Remove any spaces and tabs at the beginning of the (*String).
88 //
89 while (((*String)[0] == L' ') || ((*String)[0] == L'\t')) {
90 CopyMem((*String), (*String)+1, StrSize((*String)) - sizeof((*String)[0]));
91 }
92
93 //
94 // Remove any spaces and tabs at the end of the (*String).
95 //
96 while ((StrLen (*String) > 0) && (((*String)[StrLen((*String))-1] == L' ') || ((*String)[StrLen((*String))-1] == L'\t'))) {
97 (*String)[StrLen((*String))-1] = CHAR_NULL;
98 }
99
100 return (EFI_SUCCESS);
101 }
102
103 /**
104 Find a command line contains a split operation
105
106 @param[in] CmdLine The command line to parse.
107
108 @retval A pointer to the | character in CmdLine or NULL if not present.
109 **/
110 CONST CHAR16*
111 EFIAPI
112 FindSplit(
113 IN CONST CHAR16 *CmdLine
114 )
115 {
116 CONST CHAR16 *TempSpot;
117 TempSpot = NULL;
118 if (StrStr(CmdLine, L"|") != NULL) {
119 for (TempSpot = CmdLine ; TempSpot != NULL && *TempSpot != CHAR_NULL ; TempSpot++) {
120 if (*TempSpot == L'^' && *(TempSpot+1) == L'|') {
121 TempSpot++;
122 } else if (*TempSpot == L'|') {
123 break;
124 }
125 }
126 }
127 return (TempSpot);
128 }
129
130 /**
131 Determine if a command line contains a split operation
132
133 @param[in] CmdLine The command line to parse.
134
135 @retval TRUE CmdLine has a valid split.
136 @retval FALSE CmdLine does not have a valid split.
137 **/
138 BOOLEAN
139 EFIAPI
140 ContainsSplit(
141 IN CONST CHAR16 *CmdLine
142 )
143 {
144 CONST CHAR16 *TempSpot;
145 TempSpot = FindSplit(CmdLine);
146 return (BOOLEAN) ((TempSpot != NULL) && (*TempSpot != CHAR_NULL));
147 }
148
149 /**
150 Function to start monitoring for CTRL-S using SimpleTextInputEx. This
151 feature's enabled state was not known when the shell initially launched.
152
153 @retval EFI_SUCCESS The feature is enabled.
154 @retval EFI_OUT_OF_RESOURCES There is not enough mnemory available.
155 **/
156 EFI_STATUS
157 EFIAPI
158 InternalEfiShellStartCtrlSMonitor(
159 VOID
160 )
161 {
162 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *SimpleEx;
163 EFI_KEY_DATA KeyData;
164 EFI_STATUS Status;
165
166 Status = gBS->OpenProtocol(
167 gST->ConsoleInHandle,
168 &gEfiSimpleTextInputExProtocolGuid,
169 (VOID**)&SimpleEx,
170 gImageHandle,
171 NULL,
172 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
173 if (EFI_ERROR(Status)) {
174 ShellPrintHiiEx(
175 -1,
176 -1,
177 NULL,
178 STRING_TOKEN (STR_SHELL_NO_IN_EX),
179 ShellInfoObject.HiiHandle);
180 return (EFI_SUCCESS);
181 }
182
183 KeyData.KeyState.KeyToggleState = 0;
184 KeyData.Key.ScanCode = 0;
185 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED;
186 KeyData.Key.UnicodeChar = L's';
187
188 Status = SimpleEx->RegisterKeyNotify(
189 SimpleEx,
190 &KeyData,
191 NotificationFunction,
192 &ShellInfoObject.CtrlSNotifyHandle1);
193
194 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED;
195 if (!EFI_ERROR(Status)) {
196 Status = SimpleEx->RegisterKeyNotify(
197 SimpleEx,
198 &KeyData,
199 NotificationFunction,
200 &ShellInfoObject.CtrlSNotifyHandle2);
201 }
202 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED;
203 KeyData.Key.UnicodeChar = 19;
204
205 if (!EFI_ERROR(Status)) {
206 Status = SimpleEx->RegisterKeyNotify(
207 SimpleEx,
208 &KeyData,
209 NotificationFunction,
210 &ShellInfoObject.CtrlSNotifyHandle3);
211 }
212 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED;
213 if (!EFI_ERROR(Status)) {
214 Status = SimpleEx->RegisterKeyNotify(
215 SimpleEx,
216 &KeyData,
217 NotificationFunction,
218 &ShellInfoObject.CtrlSNotifyHandle4);
219 }
220 return (Status);
221 }
222
223
224
225 /**
226 The entry point for the application.
227
228 @param[in] ImageHandle The firmware allocated handle for the EFI image.
229 @param[in] SystemTable A pointer to the EFI System Table.
230
231 @retval EFI_SUCCESS The entry point is executed successfully.
232 @retval other Some error occurs when executing this entry point.
233
234 **/
235 EFI_STATUS
236 EFIAPI
237 UefiMain (
238 IN EFI_HANDLE ImageHandle,
239 IN EFI_SYSTEM_TABLE *SystemTable
240 )
241 {
242 EFI_STATUS Status;
243 CHAR16 *TempString;
244 UINTN Size;
245 EFI_HANDLE ConInHandle;
246 EFI_SIMPLE_TEXT_INPUT_PROTOCOL *OldConIn;
247 UINTN ExitDataSize;
248 CHAR16 *ExitData;
249 SHELL_STATUS ExitStatus;
250
251 if (PcdGet8(PcdShellSupportLevel) > 3) {
252 return (EFI_UNSUPPORTED);
253 }
254
255 //
256 // Clear the screen
257 //
258 Status = gST->ConOut->ClearScreen(gST->ConOut);
259 if (EFI_ERROR(Status)) {
260 return (Status);
261 }
262
263 //
264 // Populate the global structure from PCDs
265 //
266 ShellInfoObject.ImageDevPath = NULL;
267 ShellInfoObject.FileDevPath = NULL;
268 ShellInfoObject.PageBreakEnabled = PcdGetBool(PcdShellPageBreakDefault);
269 ShellInfoObject.ViewingSettings.InsertMode = PcdGetBool(PcdShellInsertModeDefault);
270 ShellInfoObject.LogScreenCount = PcdGet8 (PcdShellScreenLogCount );
271
272 //
273 // verify we dont allow for spec violation
274 //
275 ASSERT(ShellInfoObject.LogScreenCount >= 3);
276
277 //
278 // Initialize the LIST ENTRY objects...
279 //
280 InitializeListHead(&ShellInfoObject.BufferToFreeList.Link);
281 InitializeListHead(&ShellInfoObject.ViewingSettings.CommandHistory.Link);
282 InitializeListHead(&ShellInfoObject.SplitList.Link);
283
284 //
285 // Check PCDs for optional features that are not implemented yet.
286 //
287 if ( PcdGetBool(PcdShellSupportOldProtocols)
288 || !FeaturePcdGet(PcdShellRequireHiiPlatform)
289 || FeaturePcdGet(PcdShellSupportFrameworkHii)
290 ) {
291 return (EFI_UNSUPPORTED);
292 }
293
294 //
295 // turn off the watchdog timer
296 //
297 gBS->SetWatchdogTimer (0, 0, 0, NULL);
298
299 //
300 // install our console logger. This will keep a log of the output for back-browsing
301 //
302 Status = ConsoleLoggerInstall(ShellInfoObject.LogScreenCount, &ShellInfoObject.ConsoleInfo);
303 if(EFI_ERROR (Status)) {
304 ExitStatus = (SHELL_STATUS) (Status & (~MAX_BIT));
305 } else {
306 ExitStatus = SHELL_SUCCESS;
307 }
308
309 if (!EFI_ERROR(Status)) {
310 //
311 // Enable the cursor to be visible
312 //
313 gST->ConOut->EnableCursor (gST->ConOut, TRUE);
314
315 //
316 // If supporting EFI 1.1 we need to install HII protocol
317 // only do this if PcdShellRequireHiiPlatform == FALSE
318 //
319 // remove EFI_UNSUPPORTED check above when complete.
320 ///@todo add support for Framework HII
321
322 //
323 // install our (solitary) HII package
324 //
325 ShellInfoObject.HiiHandle = HiiAddPackages (&gEfiCallerIdGuid, gImageHandle, ShellStrings, NULL);
326 if (ShellInfoObject.HiiHandle == NULL) {
327 if (PcdGetBool(PcdShellSupportFrameworkHii)) {
328 ///@todo Add our package into Framework HII
329 }
330 if (ShellInfoObject.HiiHandle == NULL) {
331 Status = EFI_NOT_STARTED;
332 goto FreeResources;
333 }
334 }
335
336 //
337 // create and install the EfiShellParametersProtocol
338 //
339 Status = CreatePopulateInstallShellParametersProtocol(&ShellInfoObject.NewShellParametersProtocol, &ShellInfoObject.RootShellInstance);
340 ASSERT_EFI_ERROR(Status);
341 ASSERT(ShellInfoObject.NewShellParametersProtocol != NULL);
342
343 //
344 // create and install the EfiShellProtocol
345 //
346 Status = CreatePopulateInstallShellProtocol(&ShellInfoObject.NewEfiShellProtocol);
347 ASSERT_EFI_ERROR(Status);
348 ASSERT(ShellInfoObject.NewEfiShellProtocol != NULL);
349
350 //
351 // Now initialize the shell library (it requires Shell Parameters protocol)
352 //
353 Status = ShellInitialize();
354 ASSERT_EFI_ERROR(Status);
355
356 Status = CommandInit();
357 ASSERT_EFI_ERROR(Status);
358
359 //
360 // Check the command line
361 //
362 Status = ProcessCommandLine ();
363 if (EFI_ERROR (Status)) {
364 goto FreeResources;
365 }
366
367 //
368 // If shell support level is >= 1 create the mappings and paths
369 //
370 if (PcdGet8(PcdShellSupportLevel) >= 1) {
371 Status = ShellCommandCreateInitialMappingsAndPaths();
372 }
373
374 //
375 // save the device path for the loaded image and the device path for the filepath (under loaded image)
376 // These are where to look for the startup.nsh file
377 //
378 Status = GetDevicePathsForImageAndFile(&ShellInfoObject.ImageDevPath, &ShellInfoObject.FileDevPath);
379 ASSERT_EFI_ERROR(Status);
380
381 //
382 // Display the version
383 //
384 if (!ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoVersion) {
385 ShellPrintHiiEx (
386 0,
387 gST->ConOut->Mode->CursorRow,
388 NULL,
389 STRING_TOKEN (STR_VER_OUTPUT_MAIN_SHELL),
390 ShellInfoObject.HiiHandle,
391 SupportLevel[PcdGet8(PcdShellSupportLevel)],
392 gEfiShellProtocol->MajorVersion,
393 gEfiShellProtocol->MinorVersion
394 );
395
396 ShellPrintHiiEx (
397 -1,
398 -1,
399 NULL,
400 STRING_TOKEN (STR_VER_OUTPUT_MAIN_SUPPLIER),
401 ShellInfoObject.HiiHandle,
402 (CHAR16 *) PcdGetPtr (PcdShellSupplier)
403 );
404
405 ShellPrintHiiEx (
406 -1,
407 -1,
408 NULL,
409 STRING_TOKEN (STR_VER_OUTPUT_MAIN_UEFI),
410 ShellInfoObject.HiiHandle,
411 (gST->Hdr.Revision&0xffff0000)>>16,
412 (gST->Hdr.Revision&0x0000ffff),
413 gST->FirmwareVendor,
414 gST->FirmwareRevision
415 );
416 }
417
418 //
419 // Display the mapping
420 //
421 if (PcdGet8(PcdShellSupportLevel) >= 2 && !ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoMap) {
422 Status = RunCommand(L"map", NULL);
423 ASSERT_EFI_ERROR(Status);
424 }
425
426 //
427 // init all the built in alias'
428 //
429 Status = SetBuiltInAlias();
430 ASSERT_EFI_ERROR(Status);
431
432 //
433 // Initialize environment variables
434 //
435 if (ShellCommandGetProfileList() != NULL) {
436 Status = InternalEfiShellSetEnv(L"profiles", ShellCommandGetProfileList(), TRUE);
437 ASSERT_EFI_ERROR(Status);
438 }
439
440 Size = 100;
441 TempString = AllocateZeroPool(Size);
442
443 UnicodeSPrint(TempString, Size, L"%d", PcdGet8(PcdShellSupportLevel));
444 Status = InternalEfiShellSetEnv(L"uefishellsupport", TempString, TRUE);
445 ASSERT_EFI_ERROR(Status);
446
447 UnicodeSPrint(TempString, Size, L"%d.%d", ShellInfoObject.NewEfiShellProtocol->MajorVersion, ShellInfoObject.NewEfiShellProtocol->MinorVersion);
448 Status = InternalEfiShellSetEnv(L"uefishellversion", TempString, TRUE);
449 ASSERT_EFI_ERROR(Status);
450
451 UnicodeSPrint(TempString, Size, L"%d.%d", (gST->Hdr.Revision & 0xFFFF0000) >> 16, gST->Hdr.Revision & 0x0000FFFF);
452 Status = InternalEfiShellSetEnv(L"uefiversion", TempString, TRUE);
453 ASSERT_EFI_ERROR(Status);
454
455 FreePool(TempString);
456
457 if (!EFI_ERROR(Status)) {
458 if (!ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoInterrupt) {
459 //
460 // Set up the event for CTRL-C monitoring...
461 //
462 Status = InernalEfiShellStartMonitor();
463 }
464
465 if (!EFI_ERROR(Status) && !ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoConsoleIn) {
466 //
467 // Set up the event for CTRL-S monitoring...
468 //
469 Status = InternalEfiShellStartCtrlSMonitor();
470 }
471
472 if (!EFI_ERROR(Status) && ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoConsoleIn) {
473 //
474 // close off the gST->ConIn
475 //
476 OldConIn = gST->ConIn;
477 ConInHandle = gST->ConsoleInHandle;
478 gST->ConIn = CreateSimpleTextInOnFile((SHELL_FILE_HANDLE)&FileInterfaceNulFile, &gST->ConsoleInHandle);
479 } else {
480 OldConIn = NULL;
481 ConInHandle = NULL;
482 }
483
484 if (!EFI_ERROR(Status) && PcdGet8(PcdShellSupportLevel) >= 1) {
485 //
486 // process the startup script or launch the called app.
487 //
488 Status = DoStartupScript(
489 ShellInfoObject.ImageDevPath,
490 ShellInfoObject.FileDevPath,
491 &ExitStatus
492 );
493 }
494
495 if (!ShellInfoObject.ShellInitSettings.BitUnion.Bits.Exit && !ShellCommandGetExit() && (PcdGet8(PcdShellSupportLevel) >= 3 || PcdGetBool(PcdShellForceConsole)) && !EFI_ERROR(Status) && !ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoConsoleIn) {
496 //
497 // begin the UI waiting loop
498 //
499 do {
500 //
501 // clean out all the memory allocated for CONST <something> * return values
502 // between each shell prompt presentation
503 //
504 if (!IsListEmpty(&ShellInfoObject.BufferToFreeList.Link)){
505 FreeBufferList(&ShellInfoObject.BufferToFreeList);
506 }
507
508 //
509 // Reset page break back to default.
510 //
511 ShellInfoObject.PageBreakEnabled = PcdGetBool(PcdShellPageBreakDefault);
512 ASSERT (ShellInfoObject.ConsoleInfo != NULL);
513 ShellInfoObject.ConsoleInfo->Enabled = TRUE;
514 ShellInfoObject.ConsoleInfo->RowCounter = 0;
515
516 //
517 // Reset the CTRL-C event (yes we ignore the return values)
518 //
519 Status = gBS->CheckEvent (ShellInfoObject.NewEfiShellProtocol->ExecutionBreak);
520
521 //
522 // Display Prompt
523 //
524 Status = DoShellPrompt();
525 } while (!ShellCommandGetExit());
526 ExitStatus = (SHELL_STATUS) ShellCommandGetExitCode();
527 }
528 if (OldConIn != NULL && ConInHandle != NULL) {
529 CloseSimpleTextInOnFile (gST->ConIn);
530 gST->ConIn = OldConIn;
531 gST->ConsoleInHandle = ConInHandle;
532 }
533 }
534 }
535
536 FreeResources:
537 //
538 // uninstall protocols / free memory / etc...
539 //
540 if (ShellInfoObject.UserBreakTimer != NULL) {
541 gBS->CloseEvent(ShellInfoObject.UserBreakTimer);
542 DEBUG_CODE(ShellInfoObject.UserBreakTimer = NULL;);
543 }
544 if (ShellInfoObject.ImageDevPath != NULL) {
545 FreePool(ShellInfoObject.ImageDevPath);
546 DEBUG_CODE(ShellInfoObject.ImageDevPath = NULL;);
547 }
548 if (ShellInfoObject.FileDevPath != NULL) {
549 FreePool(ShellInfoObject.FileDevPath);
550 DEBUG_CODE(ShellInfoObject.FileDevPath = NULL;);
551 }
552 if (ShellInfoObject.NewShellParametersProtocol != NULL) {
553 CleanUpShellParametersProtocol(ShellInfoObject.NewShellParametersProtocol);
554 DEBUG_CODE(ShellInfoObject.NewShellParametersProtocol = NULL;);
555 }
556 if (ShellInfoObject.NewEfiShellProtocol != NULL){
557 if (ShellInfoObject.NewEfiShellProtocol->IsRootShell()){
558 InternalEfiShellSetEnv(L"cwd", NULL, TRUE);
559 }
560 CleanUpShellProtocol(ShellInfoObject.NewEfiShellProtocol);
561 DEBUG_CODE(ShellInfoObject.NewEfiShellProtocol = NULL;);
562 }
563
564 if (!IsListEmpty(&ShellInfoObject.BufferToFreeList.Link)){
565 FreeBufferList(&ShellInfoObject.BufferToFreeList);
566 }
567
568 if (!IsListEmpty(&ShellInfoObject.SplitList.Link)){
569 ASSERT(FALSE); ///@todo finish this de-allocation.
570 }
571
572 if (ShellInfoObject.ShellInitSettings.FileName != NULL) {
573 FreePool(ShellInfoObject.ShellInitSettings.FileName);
574 DEBUG_CODE(ShellInfoObject.ShellInitSettings.FileName = NULL;);
575 }
576
577 if (ShellInfoObject.ShellInitSettings.FileOptions != NULL) {
578 FreePool(ShellInfoObject.ShellInitSettings.FileOptions);
579 DEBUG_CODE(ShellInfoObject.ShellInitSettings.FileOptions = NULL;);
580 }
581
582 if (ShellInfoObject.HiiHandle != NULL) {
583 HiiRemovePackages(ShellInfoObject.HiiHandle);
584 DEBUG_CODE(ShellInfoObject.HiiHandle = NULL;);
585 }
586
587 if (!IsListEmpty(&ShellInfoObject.ViewingSettings.CommandHistory.Link)){
588 FreeBufferList(&ShellInfoObject.ViewingSettings.CommandHistory);
589 }
590
591 ASSERT(ShellInfoObject.ConsoleInfo != NULL);
592 if (ShellInfoObject.ConsoleInfo != NULL) {
593 ConsoleLoggerUninstall(ShellInfoObject.ConsoleInfo);
594 FreePool(ShellInfoObject.ConsoleInfo);
595 DEBUG_CODE(ShellInfoObject.ConsoleInfo = NULL;);
596 }
597
598 if (!EFI_ERROR (Status)) {
599 // If the command exited with an error, we pass this error out in the ExitData
600 // so that it can be retrieved by the EfiShellExecute function (which may
601 // start the shell with gBS->StartImage)
602 if (ExitStatus != SHELL_SUCCESS) {
603 // Allocate a buffer for exit data to pass to gBS->Exit().
604 // This buffer will contain the empty string immediately followed by
605 // the shell's exit status. (The empty string is required by the UEFI spec)
606 ExitDataSize = (sizeof (CHAR16) + sizeof (SHELL_STATUS));
607 ExitData = AllocatePool (ExitDataSize);
608 if (ExitData == NULL) {
609 return EFI_OUT_OF_RESOURCES;
610 }
611 ExitData[0] = '\0';
612 // Use CopyMem to avoid alignment faults
613 CopyMem ((ExitData + 1), &ExitStatus, sizeof (ExitStatus));
614
615 gBS->Exit (ImageHandle, EFI_ABORTED, ExitDataSize, ExitData);
616
617 ASSERT (FALSE);
618 return EFI_SUCCESS;
619 } else {
620 return EFI_SUCCESS;
621 }
622 } else {
623 return Status;
624 }
625 }
626
627 /**
628 Sets all the alias' that were registered with the ShellCommandLib library.
629
630 @retval EFI_SUCCESS all init commands were run sucessfully.
631 **/
632 EFI_STATUS
633 EFIAPI
634 SetBuiltInAlias(
635 )
636 {
637 EFI_STATUS Status;
638 CONST ALIAS_LIST *List;
639 ALIAS_LIST *Node;
640
641 //
642 // Get all the commands we want to run
643 //
644 List = ShellCommandGetInitAliasList();
645
646 //
647 // for each command in the List
648 //
649 for ( Node = (ALIAS_LIST*)GetFirstNode(&List->Link)
650 ; !IsNull (&List->Link, &Node->Link)
651 ; Node = (ALIAS_LIST *)GetNextNode(&List->Link, &Node->Link)
652 ){
653 //
654 // install the alias'
655 //
656 Status = InternalSetAlias(Node->CommandString, Node->Alias, TRUE);
657 ASSERT_EFI_ERROR(Status);
658 }
659 return (EFI_SUCCESS);
660 }
661
662 /**
663 Internal function to determine if 2 command names are really the same.
664
665 @param[in] Command1 The pointer to the first command name.
666 @param[in] Command2 The pointer to the second command name.
667
668 @retval TRUE The 2 command names are the same.
669 @retval FALSE The 2 command names are not the same.
670 **/
671 BOOLEAN
672 EFIAPI
673 IsCommand(
674 IN CONST CHAR16 *Command1,
675 IN CONST CHAR16 *Command2
676 )
677 {
678 if (StringNoCaseCompare(&Command1, &Command2) == 0) {
679 return (TRUE);
680 }
681 return (FALSE);
682 }
683
684 /**
685 Internal function to determine if a command is a script only command.
686
687 @param[in] CommandName The pointer to the command name.
688
689 @retval TRUE The command is a script only command.
690 @retval FALSE The command is not a script only command.
691 **/
692 BOOLEAN
693 EFIAPI
694 IsScriptOnlyCommand(
695 IN CONST CHAR16 *CommandName
696 )
697 {
698 if (IsCommand(CommandName, L"for")
699 ||IsCommand(CommandName, L"endfor")
700 ||IsCommand(CommandName, L"if")
701 ||IsCommand(CommandName, L"else")
702 ||IsCommand(CommandName, L"endif")
703 ||IsCommand(CommandName, L"goto")) {
704 return (TRUE);
705 }
706 return (FALSE);
707 }
708
709 /**
710 This function will populate the 2 device path protocol parameters based on the
711 global gImageHandle. The DevPath will point to the device path for the handle that has
712 loaded image protocol installed on it. The FilePath will point to the device path
713 for the file that was loaded.
714
715 @param[in, out] DevPath On a sucessful return the device path to the loaded image.
716 @param[in, out] FilePath On a sucessful return the device path to the file.
717
718 @retval EFI_SUCCESS The 2 device paths were sucessfully returned.
719 @retval other A error from gBS->HandleProtocol.
720
721 @sa HandleProtocol
722 **/
723 EFI_STATUS
724 EFIAPI
725 GetDevicePathsForImageAndFile (
726 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevPath,
727 IN OUT EFI_DEVICE_PATH_PROTOCOL **FilePath
728 )
729 {
730 EFI_STATUS Status;
731 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage;
732 EFI_DEVICE_PATH_PROTOCOL *ImageDevicePath;
733
734 ASSERT(DevPath != NULL);
735 ASSERT(FilePath != NULL);
736
737 Status = gBS->OpenProtocol (
738 gImageHandle,
739 &gEfiLoadedImageProtocolGuid,
740 (VOID**)&LoadedImage,
741 gImageHandle,
742 NULL,
743 EFI_OPEN_PROTOCOL_GET_PROTOCOL
744 );
745 if (!EFI_ERROR (Status)) {
746 Status = gBS->OpenProtocol (
747 LoadedImage->DeviceHandle,
748 &gEfiDevicePathProtocolGuid,
749 (VOID**)&ImageDevicePath,
750 gImageHandle,
751 NULL,
752 EFI_OPEN_PROTOCOL_GET_PROTOCOL
753 );
754 if (!EFI_ERROR (Status)) {
755 *DevPath = DuplicateDevicePath (ImageDevicePath);
756 *FilePath = DuplicateDevicePath (LoadedImage->FilePath);
757 gBS->CloseProtocol(
758 LoadedImage->DeviceHandle,
759 &gEfiDevicePathProtocolGuid,
760 gImageHandle,
761 NULL);
762 }
763 gBS->CloseProtocol(
764 gImageHandle,
765 &gEfiLoadedImageProtocolGuid,
766 gImageHandle,
767 NULL);
768 }
769 return (Status);
770 }
771
772 /**
773 Process all Uefi Shell 2.0 command line options.
774
775 see Uefi Shell 2.0 section 3.2 for full details.
776
777 the command line must resemble the following:
778
779 shell.efi [ShellOpt-options] [options] [file-name [file-name-options]]
780
781 ShellOpt-options Options which control the initialization behavior of the shell.
782 These options are read from the EFI global variable "ShellOpt"
783 and are processed before options or file-name.
784
785 options Options which control the initialization behavior of the shell.
786
787 file-name The name of a UEFI shell application or script to be executed
788 after initialization is complete. By default, if file-name is
789 specified, then -nostartup is implied. Scripts are not supported
790 by level 0.
791
792 file-name-options The command-line options that are passed to file-name when it
793 is invoked.
794
795 This will initialize the ShellInfoObject.ShellInitSettings global variable.
796
797 @retval EFI_SUCCESS The variable is initialized.
798 **/
799 EFI_STATUS
800 EFIAPI
801 ProcessCommandLine(
802 VOID
803 )
804 {
805 UINTN Size;
806 UINTN LoopVar;
807 CHAR16 *CurrentArg;
808 CHAR16 *DelayValueStr;
809 UINT64 DelayValue;
810 EFI_STATUS Status;
811 EFI_UNICODE_COLLATION_PROTOCOL *UnicodeCollation;
812
813 // `file-name-options` will contain arguments to `file-name` that we don't
814 // know about. This would cause ShellCommandLineParse to error, so we parse
815 // arguments manually, ignoring those after the first thing that doesn't look
816 // like a shell option (which is assumed to be `file-name`).
817
818 Status = gBS->LocateProtocol (
819 &gEfiUnicodeCollationProtocolGuid,
820 NULL,
821 (VOID **) &UnicodeCollation
822 );
823 if (EFI_ERROR (Status)) {
824 return Status;
825 }
826
827 // Set default options
828 ShellInfoObject.ShellInitSettings.BitUnion.Bits.Startup = FALSE;
829 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoStartup = FALSE;
830 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoConsoleOut = FALSE;
831 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoConsoleIn = FALSE;
832 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoInterrupt = FALSE;
833 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoMap = FALSE;
834 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoVersion = FALSE;
835 ShellInfoObject.ShellInitSettings.BitUnion.Bits.Delay = FALSE;
836 ShellInfoObject.ShellInitSettings.BitUnion.Bits.Exit = FALSE;
837 ShellInfoObject.ShellInitSettings.Delay = 5;
838
839 //
840 // Start LoopVar at 0 to parse only optional arguments at Argv[0]
841 // and parse other parameters from Argv[1]. This is for use case that
842 // UEFI Shell boot option is created, and OptionalData is provided
843 // that starts with shell command-line options.
844 //
845 for (LoopVar = 0 ; LoopVar < gEfiShellParametersProtocol->Argc ; LoopVar++) {
846 CurrentArg = gEfiShellParametersProtocol->Argv[LoopVar];
847 if (UnicodeCollation->StriColl (
848 UnicodeCollation,
849 L"-startup",
850 CurrentArg
851 ) == 0) {
852 ShellInfoObject.ShellInitSettings.BitUnion.Bits.Startup = TRUE;
853 }
854 else if (UnicodeCollation->StriColl (
855 UnicodeCollation,
856 L"-nostartup",
857 CurrentArg
858 ) == 0) {
859 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoStartup = TRUE;
860 }
861 else if (UnicodeCollation->StriColl (
862 UnicodeCollation,
863 L"-noconsoleout",
864 CurrentArg
865 ) == 0) {
866 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoConsoleOut = TRUE;
867 }
868 else if (UnicodeCollation->StriColl (
869 UnicodeCollation,
870 L"-noconsolein",
871 CurrentArg
872 ) == 0) {
873 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoConsoleIn = TRUE;
874 }
875 else if (UnicodeCollation->StriColl (
876 UnicodeCollation,
877 L"-nointerrupt",
878 CurrentArg
879 ) == 0) {
880 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoInterrupt = TRUE;
881 }
882 else if (UnicodeCollation->StriColl (
883 UnicodeCollation,
884 L"-nomap",
885 CurrentArg
886 ) == 0) {
887 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoMap = TRUE;
888 }
889 else if (UnicodeCollation->StriColl (
890 UnicodeCollation,
891 L"-noversion",
892 CurrentArg
893 ) == 0) {
894 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoVersion = TRUE;
895 }
896 else if (UnicodeCollation->StriColl (
897 UnicodeCollation,
898 L"-delay",
899 CurrentArg
900 ) == 0) {
901 ShellInfoObject.ShellInitSettings.BitUnion.Bits.Delay = TRUE;
902 // Check for optional delay value following "-delay"
903 DelayValueStr = gEfiShellParametersProtocol->Argv[LoopVar + 1];
904 if (DelayValueStr != NULL){
905 if (*DelayValueStr == L':') {
906 DelayValueStr++;
907 }
908 if (!EFI_ERROR(ShellConvertStringToUint64 (
909 DelayValueStr,
910 &DelayValue,
911 FALSE,
912 FALSE
913 ))) {
914 ShellInfoObject.ShellInitSettings.Delay = (UINTN)DelayValue;
915 LoopVar++;
916 }
917 }
918 } else if (UnicodeCollation->StriColl (
919 UnicodeCollation,
920 L"-_exit",
921 CurrentArg
922 ) == 0) {
923 ShellInfoObject.ShellInitSettings.BitUnion.Bits.Exit = TRUE;
924 } else if (StrnCmp (L"-", CurrentArg, 1) == 0) {
925 // Unrecognised option
926 ShellPrintHiiEx(-1, -1, NULL,
927 STRING_TOKEN (STR_GEN_PROBLEM),
928 ShellInfoObject.HiiHandle,
929 CurrentArg
930 );
931 return EFI_INVALID_PARAMETER;
932 } else {
933 //
934 // First argument should be Shell.efi image name
935 //
936 if (LoopVar == 0) {
937 continue;
938 }
939
940 ShellInfoObject.ShellInitSettings.FileName = AllocateCopyPool(StrSize(CurrentArg), CurrentArg);
941 if (ShellInfoObject.ShellInitSettings.FileName == NULL) {
942 return (EFI_OUT_OF_RESOURCES);
943 }
944 //
945 // We found `file-name`.
946 //
947 ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoStartup = 1;
948 LoopVar++;
949
950 // Add `file-name-options`
951 for (Size = 0 ; LoopVar < gEfiShellParametersProtocol->Argc ; LoopVar++) {
952 ASSERT((ShellInfoObject.ShellInitSettings.FileOptions == NULL && Size == 0) || (ShellInfoObject.ShellInitSettings.FileOptions != NULL));
953 StrnCatGrow(&ShellInfoObject.ShellInitSettings.FileOptions,
954 &Size,
955 L" ",
956 0);
957 if (ShellInfoObject.ShellInitSettings.FileOptions == NULL) {
958 SHELL_FREE_NON_NULL(ShellInfoObject.ShellInitSettings.FileName);
959 return (EFI_OUT_OF_RESOURCES);
960 }
961 StrnCatGrow(&ShellInfoObject.ShellInitSettings.FileOptions,
962 &Size,
963 gEfiShellParametersProtocol->Argv[LoopVar],
964 0);
965 if (ShellInfoObject.ShellInitSettings.FileOptions == NULL) {
966 SHELL_FREE_NON_NULL(ShellInfoObject.ShellInitSettings.FileName);
967 return (EFI_OUT_OF_RESOURCES);
968 }
969 }
970 }
971 }
972
973 // "-nointerrupt" overrides "-delay"
974 if (ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoInterrupt) {
975 ShellInfoObject.ShellInitSettings.Delay = 0;
976 }
977
978 return EFI_SUCCESS;
979 }
980
981 /**
982 Handles all interaction with the default startup script.
983
984 this will check that the correct command line parameters were passed, handle the delay, and then start running the script.
985
986 @param ImagePath the path to the image for shell. first place to look for the startup script
987 @param FilePath the path to the file for shell. second place to look for the startup script.
988
989 @param[out] ExitStatus The exit code of the script. Ignored if NULL.
990
991 @retval EFI_SUCCESS the variable is initialized.
992 **/
993 EFI_STATUS
994 EFIAPI
995 DoStartupScript(
996 IN EFI_DEVICE_PATH_PROTOCOL *ImagePath,
997 IN EFI_DEVICE_PATH_PROTOCOL *FilePath,
998 OUT SHELL_STATUS *ExitStatus
999 )
1000 {
1001 EFI_STATUS Status;
1002 UINTN Delay;
1003 EFI_INPUT_KEY Key;
1004 SHELL_FILE_HANDLE FileHandle;
1005 EFI_DEVICE_PATH_PROTOCOL *NewPath;
1006 EFI_DEVICE_PATH_PROTOCOL *NamePath;
1007 CHAR16 *FileStringPath;
1008 CHAR16 *TempSpot;
1009 UINTN NewSize;
1010 CONST CHAR16 *MapName;
1011
1012 Key.UnicodeChar = CHAR_NULL;
1013 Key.ScanCode = 0;
1014 FileHandle = NULL;
1015
1016 if (!ShellInfoObject.ShellInitSettings.BitUnion.Bits.Startup && ShellInfoObject.ShellInitSettings.FileName != NULL) {
1017 //
1018 // launch something else instead
1019 //
1020 NewSize = StrSize(ShellInfoObject.ShellInitSettings.FileName);
1021 if (ShellInfoObject.ShellInitSettings.FileOptions != NULL) {
1022 NewSize += StrSize(ShellInfoObject.ShellInitSettings.FileOptions) + sizeof(CHAR16);
1023 }
1024 FileStringPath = AllocateZeroPool(NewSize);
1025 if (FileStringPath == NULL) {
1026 return (EFI_OUT_OF_RESOURCES);
1027 }
1028 StrnCpy(FileStringPath, ShellInfoObject.ShellInitSettings.FileName, NewSize/sizeof(CHAR16) -1);
1029 if (ShellInfoObject.ShellInitSettings.FileOptions != NULL) {
1030 StrnCat(FileStringPath, L" ", NewSize/sizeof(CHAR16) - StrLen(FileStringPath) -1);
1031 StrnCat(FileStringPath, ShellInfoObject.ShellInitSettings.FileOptions, NewSize/sizeof(CHAR16) - StrLen(FileStringPath) -1);
1032 }
1033 Status = RunCommand(FileStringPath, ExitStatus);
1034 FreePool(FileStringPath);
1035 return (Status);
1036
1037 }
1038
1039 //
1040 // for shell level 0 we do no scripts
1041 // Without the Startup bit overriding we allow for nostartup to prevent scripts
1042 //
1043 if ( (PcdGet8(PcdShellSupportLevel) < 1)
1044 || (ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoStartup && !ShellInfoObject.ShellInitSettings.BitUnion.Bits.Startup)
1045 ){
1046 return (EFI_SUCCESS);
1047 }
1048
1049 gST->ConOut->EnableCursor(gST->ConOut, FALSE);
1050 //
1051 // print out our warning and see if they press a key
1052 //
1053 for ( Status = EFI_UNSUPPORTED, Delay = ShellInfoObject.ShellInitSettings.Delay
1054 ; Delay != 0 && EFI_ERROR(Status)
1055 ; Delay--
1056 ){
1057 ShellPrintHiiEx(0, gST->ConOut->Mode->CursorRow, NULL, STRING_TOKEN (STR_SHELL_STARTUP_QUESTION), ShellInfoObject.HiiHandle, Delay);
1058 gBS->Stall (1000000);
1059 if (!ShellInfoObject.ShellInitSettings.BitUnion.Bits.NoConsoleIn) {
1060 Status = gST->ConIn->ReadKeyStroke (gST->ConIn, &Key);
1061 }
1062 }
1063 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_SHELL_CRLF), ShellInfoObject.HiiHandle);
1064 gST->ConOut->EnableCursor(gST->ConOut, TRUE);
1065
1066 //
1067 // ESC was pressed
1068 //
1069 if (Status == EFI_SUCCESS && Key.UnicodeChar == 0 && Key.ScanCode == SCAN_ESC) {
1070 return (EFI_SUCCESS);
1071 }
1072
1073 //
1074 // Try the first location (must be file system)
1075 //
1076 MapName = ShellInfoObject.NewEfiShellProtocol->GetMapFromDevicePath(&ImagePath);
1077 if (MapName != NULL) {
1078 FileStringPath = NULL;
1079 NewSize = 0;
1080 FileStringPath = StrnCatGrow(&FileStringPath, &NewSize, MapName, 0);
1081 if (FileStringPath == NULL) {
1082 Status = EFI_OUT_OF_RESOURCES;
1083 } else {
1084 TempSpot = StrStr(FileStringPath, L";");
1085 if (TempSpot != NULL) {
1086 *TempSpot = CHAR_NULL;
1087 }
1088 FileStringPath = StrnCatGrow(&FileStringPath, &NewSize, ((FILEPATH_DEVICE_PATH*)FilePath)->PathName, 0);
1089 PathRemoveLastItem(FileStringPath);
1090 FileStringPath = StrnCatGrow(&FileStringPath, &NewSize, mStartupScript, 0);
1091 Status = ShellInfoObject.NewEfiShellProtocol->OpenFileByName(FileStringPath, &FileHandle, EFI_FILE_MODE_READ);
1092 FreePool(FileStringPath);
1093 }
1094 }
1095 if (EFI_ERROR(Status)) {
1096 NamePath = FileDevicePath (NULL, mStartupScript);
1097 NewPath = AppendDevicePathNode (ImagePath, NamePath);
1098 FreePool(NamePath);
1099
1100 //
1101 // Try the location
1102 //
1103 Status = InternalOpenFileDevicePath(NewPath, &FileHandle, EFI_FILE_MODE_READ, 0);
1104 FreePool(NewPath);
1105 }
1106 //
1107 // If we got a file, run it
1108 //
1109 if (!EFI_ERROR(Status) && FileHandle != NULL) {
1110 Status = RunScriptFile (
1111 mStartupScript,
1112 FileHandle,
1113 L"",
1114 ShellInfoObject.NewShellParametersProtocol,
1115 ExitStatus
1116 );
1117 ShellInfoObject.NewEfiShellProtocol->CloseFile(FileHandle);
1118 } else {
1119 FileStringPath = ShellFindFilePath(mStartupScript);
1120 if (FileStringPath == NULL) {
1121 //
1122 // we return success since we dont need to have a startup script
1123 //
1124 Status = EFI_SUCCESS;
1125 ASSERT(FileHandle == NULL);
1126 } else {
1127 Status = RunScriptFile(
1128 FileStringPath,
1129 NULL,
1130 L"",
1131 ShellInfoObject.NewShellParametersProtocol,
1132 ExitStatus
1133 );
1134 FreePool(FileStringPath);
1135 }
1136 }
1137
1138
1139 return (Status);
1140 }
1141
1142 /**
1143 Function to perform the shell prompt looping. It will do a single prompt,
1144 dispatch the result, and then return. It is expected that the caller will
1145 call this function in a loop many times.
1146
1147 @retval EFI_SUCCESS
1148 @retval RETURN_ABORTED
1149 **/
1150 EFI_STATUS
1151 EFIAPI
1152 DoShellPrompt (
1153 VOID
1154 )
1155 {
1156 UINTN Column;
1157 UINTN Row;
1158 CHAR16 *CmdLine;
1159 CONST CHAR16 *CurDir;
1160 UINTN BufferSize;
1161 EFI_STATUS Status;
1162
1163 CurDir = NULL;
1164
1165 //
1166 // Get screen setting to decide size of the command line buffer
1167 //
1168 gST->ConOut->QueryMode (gST->ConOut, gST->ConOut->Mode->Mode, &Column, &Row);
1169 BufferSize = Column * Row * sizeof (CHAR16);
1170 CmdLine = AllocateZeroPool (BufferSize);
1171 if (CmdLine == NULL) {
1172 return EFI_OUT_OF_RESOURCES;
1173 }
1174
1175 CurDir = ShellInfoObject.NewEfiShellProtocol->GetEnv(L"cwd");
1176
1177 //
1178 // Prompt for input
1179 //
1180 gST->ConOut->SetCursorPosition (gST->ConOut, 0, gST->ConOut->Mode->CursorRow);
1181
1182 if (CurDir != NULL && StrLen(CurDir) > 1) {
1183 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_SHELL_CURDIR), ShellInfoObject.HiiHandle, CurDir);
1184 } else {
1185 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_SHELL_SHELL), ShellInfoObject.HiiHandle);
1186 }
1187
1188 //
1189 // Read a line from the console
1190 //
1191 Status = ShellInfoObject.NewEfiShellProtocol->ReadFile(ShellInfoObject.NewShellParametersProtocol->StdIn, &BufferSize, CmdLine);
1192
1193 //
1194 // Null terminate the string and parse it
1195 //
1196 if (!EFI_ERROR (Status)) {
1197 CmdLine[BufferSize / sizeof (CHAR16)] = CHAR_NULL;
1198 Status = RunCommand(CmdLine, NULL);
1199 }
1200
1201 //
1202 // Done with this command
1203 //
1204 FreePool (CmdLine);
1205 return Status;
1206 }
1207
1208 /**
1209 Add a buffer to the Buffer To Free List for safely returning buffers to other
1210 places without risking letting them modify internal shell information.
1211
1212 @param Buffer Something to pass to FreePool when the shell is exiting.
1213 **/
1214 VOID*
1215 EFIAPI
1216 AddBufferToFreeList(
1217 VOID *Buffer
1218 )
1219 {
1220 BUFFER_LIST *BufferListEntry;
1221
1222 if (Buffer == NULL) {
1223 return (NULL);
1224 }
1225
1226 BufferListEntry = AllocateZeroPool(sizeof(BUFFER_LIST));
1227 ASSERT(BufferListEntry != NULL);
1228 BufferListEntry->Buffer = Buffer;
1229 InsertTailList(&ShellInfoObject.BufferToFreeList.Link, &BufferListEntry->Link);
1230 return (Buffer);
1231 }
1232
1233 /**
1234 Add a buffer to the Line History List
1235
1236 @param Buffer The line buffer to add.
1237 **/
1238 VOID
1239 EFIAPI
1240 AddLineToCommandHistory(
1241 IN CONST CHAR16 *Buffer
1242 )
1243 {
1244 BUFFER_LIST *Node;
1245
1246 Node = AllocateZeroPool(sizeof(BUFFER_LIST));
1247 ASSERT(Node != NULL);
1248 Node->Buffer = AllocateCopyPool(StrSize(Buffer), Buffer);
1249 ASSERT(Node->Buffer != NULL);
1250
1251 InsertTailList(&ShellInfoObject.ViewingSettings.CommandHistory.Link, &Node->Link);
1252 }
1253
1254 /**
1255 Checks if a string is an alias for another command. If yes, then it replaces the alias name
1256 with the correct command name.
1257
1258 @param[in, out] CommandString Upon entry the potential alias. Upon return the
1259 command name if it was an alias. If it was not
1260 an alias it will be unchanged. This function may
1261 change the buffer to fit the command name.
1262
1263 @retval EFI_SUCCESS The name was changed.
1264 @retval EFI_SUCCESS The name was not an alias.
1265 @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
1266 **/
1267 EFI_STATUS
1268 EFIAPI
1269 ShellConvertAlias(
1270 IN OUT CHAR16 **CommandString
1271 )
1272 {
1273 CONST CHAR16 *NewString;
1274
1275 NewString = ShellInfoObject.NewEfiShellProtocol->GetAlias(*CommandString, NULL);
1276 if (NewString == NULL) {
1277 return (EFI_SUCCESS);
1278 }
1279 FreePool(*CommandString);
1280 *CommandString = AllocateCopyPool(StrSize(NewString), NewString);
1281 if (*CommandString == NULL) {
1282 return (EFI_OUT_OF_RESOURCES);
1283 }
1284 return (EFI_SUCCESS);
1285 }
1286
1287 /**
1288 Parse for the next instance of one string within another string. Can optionally make sure that
1289 the string was not escaped (^ character) per the shell specification.
1290
1291 @param[in] SourceString The string to search within
1292 @param[in] FindString The string to look for
1293 @param[in] CheckForEscapeCharacter TRUE to skip escaped instances of FinfString, otherwise will return even escaped instances
1294 **/
1295 CHAR16*
1296 EFIAPI
1297 FindNextInstance(
1298 IN CONST CHAR16 *SourceString,
1299 IN CONST CHAR16 *FindString,
1300 IN CONST BOOLEAN CheckForEscapeCharacter
1301 )
1302 {
1303 CHAR16 *Temp;
1304 if (SourceString == NULL) {
1305 return (NULL);
1306 }
1307 Temp = StrStr(SourceString, FindString);
1308
1309 //
1310 // If nothing found, or we dont care about escape characters
1311 //
1312 if (Temp == NULL || !CheckForEscapeCharacter) {
1313 return (Temp);
1314 }
1315
1316 //
1317 // If we found an escaped character, try again on the remainder of the string
1318 //
1319 if ((Temp > (SourceString)) && *(Temp-1) == L'^') {
1320 return FindNextInstance(Temp+1, FindString, CheckForEscapeCharacter);
1321 }
1322
1323 //
1324 // we found the right character
1325 //
1326 return (Temp);
1327 }
1328
1329 /**
1330 This function will eliminate unreplaced (and therefore non-found) environment variables.
1331
1332 @param[in,out] CmdLine The command line to update.
1333 **/
1334 EFI_STATUS
1335 EFIAPI
1336 StripUnreplacedEnvironmentVariables(
1337 IN OUT CHAR16 *CmdLine
1338 )
1339 {
1340 CHAR16 *FirstPercent;
1341 CHAR16 *FirstQuote;
1342 CHAR16 *SecondPercent;
1343 CHAR16 *SecondQuote;
1344 CHAR16 *CurrentLocator;
1345
1346 for (CurrentLocator = CmdLine ; CurrentLocator != NULL ; ) {
1347 FirstQuote = FindNextInstance(CurrentLocator, L"\"", TRUE);
1348 FirstPercent = FindNextInstance(CurrentLocator, L"%", TRUE);
1349 SecondPercent = FirstPercent!=NULL?FindNextInstance(FirstPercent+1, L"%", TRUE):NULL;
1350 if (FirstPercent == NULL || SecondPercent == NULL) {
1351 //
1352 // If we ever dont have 2 % we are done.
1353 //
1354 break;
1355 }
1356
1357 if (FirstQuote < FirstPercent) {
1358 SecondQuote = FirstQuote!= NULL?FindNextInstance(FirstQuote+1, L"\"", TRUE):NULL;
1359 //
1360 // Quote is first found
1361 //
1362
1363 if (SecondQuote < FirstPercent) {
1364 //
1365 // restart after the pair of "
1366 //
1367 CurrentLocator = SecondQuote + 1;
1368 } else /* FirstPercent < SecondQuote */{
1369 //
1370 // Restart on the first percent
1371 //
1372 CurrentLocator = FirstPercent;
1373 }
1374 continue;
1375 }
1376 ASSERT(FirstPercent < FirstQuote);
1377 if (SecondPercent < FirstQuote) {
1378 FirstPercent[0] = L'\"';
1379 SecondPercent[0] = L'\"';
1380
1381 //
1382 // We need to remove from FirstPercent to SecondPercent
1383 //
1384 CopyMem(FirstPercent + 1, SecondPercent, StrSize(SecondPercent));
1385 CurrentLocator = FirstPercent + 2;
1386 continue;
1387 }
1388 ASSERT(FirstQuote < SecondPercent);
1389 CurrentLocator = FirstQuote;
1390 }
1391 return (EFI_SUCCESS);
1392 }
1393
1394 /**
1395 Function allocates a new command line and replaces all instances of environment
1396 variable names that are correctly preset to their values.
1397
1398 If the return value is not NULL the memory must be caller freed.
1399
1400 @param[in] OriginalCommandLine The original command line
1401
1402 @retval NULL An error ocurred.
1403 @return The new command line with no environment variables present.
1404 **/
1405 CHAR16*
1406 EFIAPI
1407 ShellConvertVariables (
1408 IN CONST CHAR16 *OriginalCommandLine
1409 )
1410 {
1411 CONST CHAR16 *MasterEnvList;
1412 UINTN NewSize;
1413 CHAR16 *NewCommandLine1;
1414 CHAR16 *NewCommandLine2;
1415 CHAR16 *Temp;
1416 UINTN ItemSize;
1417 CHAR16 *ItemTemp;
1418 SCRIPT_FILE *CurrentScriptFile;
1419 ALIAS_LIST *AliasListNode;
1420
1421 ASSERT(OriginalCommandLine != NULL);
1422
1423 ItemSize = 0;
1424 NewSize = StrSize(OriginalCommandLine);
1425 CurrentScriptFile = ShellCommandGetCurrentScriptFile();
1426 Temp = NULL;
1427
1428 ///@todo update this to handle the %0 - %9 for scripting only (borrow from line 1256 area) ? ? ?
1429
1430 //
1431 // calculate the size required for the post-conversion string...
1432 //
1433 if (CurrentScriptFile != NULL) {
1434 for (AliasListNode = (ALIAS_LIST*)GetFirstNode(&CurrentScriptFile->SubstList)
1435 ; !IsNull(&CurrentScriptFile->SubstList, &AliasListNode->Link)
1436 ; AliasListNode = (ALIAS_LIST*)GetNextNode(&CurrentScriptFile->SubstList, &AliasListNode->Link)
1437 ){
1438 for (Temp = StrStr(OriginalCommandLine, AliasListNode->Alias)
1439 ; Temp != NULL
1440 ; Temp = StrStr(Temp+1, AliasListNode->Alias)
1441 ){
1442 //
1443 // we need a preceeding and if there is space no ^ preceeding (if no space ignore)
1444 //
1445 if ((((Temp-OriginalCommandLine)>2) && *(Temp-2) != L'^') || ((Temp-OriginalCommandLine)<=2)) {
1446 NewSize += StrSize(AliasListNode->CommandString);
1447 }
1448 }
1449 }
1450 }
1451
1452 for (MasterEnvList = EfiShellGetEnv(NULL)
1453 ; MasterEnvList != NULL && *MasterEnvList != CHAR_NULL //&& *(MasterEnvList+1) != CHAR_NULL
1454 ; MasterEnvList += StrLen(MasterEnvList) + 1
1455 ){
1456 if (StrSize(MasterEnvList) > ItemSize) {
1457 ItemSize = StrSize(MasterEnvList);
1458 }
1459 for (Temp = StrStr(OriginalCommandLine, MasterEnvList)
1460 ; Temp != NULL
1461 ; Temp = StrStr(Temp+1, MasterEnvList)
1462 ){
1463 //
1464 // we need a preceeding and following % and if there is space no ^ preceeding (if no space ignore)
1465 //
1466 if (*(Temp-1) == L'%' && *(Temp+StrLen(MasterEnvList)) == L'%' &&
1467 ((((Temp-OriginalCommandLine)>2) && *(Temp-2) != L'^') || ((Temp-OriginalCommandLine)<=2))) {
1468 NewSize+=StrSize(EfiShellGetEnv(MasterEnvList));
1469 }
1470 }
1471 }
1472
1473 //
1474 // now do the replacements...
1475 //
1476 NewCommandLine1 = AllocateCopyPool(NewSize, OriginalCommandLine);
1477 NewCommandLine2 = AllocateZeroPool(NewSize);
1478 ItemTemp = AllocateZeroPool(ItemSize+(2*sizeof(CHAR16)));
1479 if (NewCommandLine1 == NULL || NewCommandLine2 == NULL || ItemTemp == NULL) {
1480 SHELL_FREE_NON_NULL(NewCommandLine1);
1481 SHELL_FREE_NON_NULL(NewCommandLine2);
1482 SHELL_FREE_NON_NULL(ItemTemp);
1483 return (NULL);
1484 }
1485 for (MasterEnvList = EfiShellGetEnv(NULL)
1486 ; MasterEnvList != NULL && *MasterEnvList != CHAR_NULL
1487 ; MasterEnvList += StrLen(MasterEnvList) + 1
1488 ){
1489 *ItemTemp = L'%';
1490 StrnCat(ItemTemp, MasterEnvList, ((ItemSize+(2*sizeof(CHAR16)))/sizeof(CHAR16))-1 - StrLen(ItemTemp));
1491 StrnCat(ItemTemp, L"%", ((ItemSize+(2*sizeof(CHAR16)))/sizeof(CHAR16))-1 - StrLen(ItemTemp));
1492 ShellCopySearchAndReplace(NewCommandLine1, NewCommandLine2, NewSize, ItemTemp, EfiShellGetEnv(MasterEnvList), TRUE, FALSE);
1493 StrnCpy(NewCommandLine1, NewCommandLine2, NewSize/sizeof(CHAR16)-1);
1494 }
1495 if (CurrentScriptFile != NULL) {
1496 for (AliasListNode = (ALIAS_LIST*)GetFirstNode(&CurrentScriptFile->SubstList)
1497 ; !IsNull(&CurrentScriptFile->SubstList, &AliasListNode->Link)
1498 ; AliasListNode = (ALIAS_LIST*)GetNextNode(&CurrentScriptFile->SubstList, &AliasListNode->Link)
1499 ){
1500 ShellCopySearchAndReplace(NewCommandLine1, NewCommandLine2, NewSize, AliasListNode->Alias, AliasListNode->CommandString, TRUE, FALSE);
1501 StrnCpy(NewCommandLine1, NewCommandLine2, NewSize/sizeof(CHAR16)-1);
1502 }
1503
1504 //
1505 // Remove non-existant environment variables in scripts only
1506 //
1507 StripUnreplacedEnvironmentVariables(NewCommandLine1);
1508 }
1509
1510 //
1511 // Now cleanup any straggler intentionally ignored "%" characters
1512 //
1513 ShellCopySearchAndReplace(NewCommandLine1, NewCommandLine2, NewSize, L"^%", L"%", TRUE, FALSE);
1514 StrnCpy(NewCommandLine1, NewCommandLine2, NewSize/sizeof(CHAR16)-1);
1515
1516 FreePool(NewCommandLine2);
1517 FreePool(ItemTemp);
1518
1519 return (NewCommandLine1);
1520 }
1521
1522 /**
1523 Internal function to run a command line with pipe usage.
1524
1525 @param[in] CmdLine The pointer to the command line.
1526 @param[in] StdIn The pointer to the Standard input.
1527 @param[in] StdOut The pointer to the Standard output.
1528
1529 @param[out] ExitStatus The exit code of the last command in the pipeline.
1530 Ignored if NULL.
1531
1532 @retval EFI_SUCCESS The split command is executed successfully.
1533 @retval other Some error occurs when executing the split command.
1534 **/
1535 EFI_STATUS
1536 EFIAPI
1537 RunSplitCommand(
1538 IN CONST CHAR16 *CmdLine,
1539 IN SHELL_FILE_HANDLE *StdIn,
1540 IN SHELL_FILE_HANDLE *StdOut,
1541 OUT SHELL_STATUS *ExitStatus
1542 )
1543 {
1544 EFI_STATUS Status;
1545 CHAR16 *NextCommandLine;
1546 CHAR16 *OurCommandLine;
1547 UINTN Size1;
1548 UINTN Size2;
1549 SPLIT_LIST *Split;
1550 SHELL_FILE_HANDLE *TempFileHandle;
1551 BOOLEAN Unicode;
1552
1553 ASSERT(StdOut == NULL);
1554
1555 ASSERT(StrStr(CmdLine, L"|") != NULL);
1556
1557 Status = EFI_SUCCESS;
1558 NextCommandLine = NULL;
1559 OurCommandLine = NULL;
1560 Size1 = 0;
1561 Size2 = 0;
1562
1563 NextCommandLine = StrnCatGrow(&NextCommandLine, &Size1, StrStr(CmdLine, L"|")+1, 0);
1564 OurCommandLine = StrnCatGrow(&OurCommandLine , &Size2, CmdLine , StrStr(CmdLine, L"|") - CmdLine);
1565
1566 if (NextCommandLine == NULL || OurCommandLine == NULL) {
1567 SHELL_FREE_NON_NULL(OurCommandLine);
1568 SHELL_FREE_NON_NULL(NextCommandLine);
1569 return (EFI_OUT_OF_RESOURCES);
1570 } else if (StrStr(OurCommandLine, L"|") != NULL || Size1 == 0 || Size2 == 0) {
1571 SHELL_FREE_NON_NULL(OurCommandLine);
1572 SHELL_FREE_NON_NULL(NextCommandLine);
1573 return (EFI_INVALID_PARAMETER);
1574 } else if (NextCommandLine[0] != CHAR_NULL &&
1575 NextCommandLine[0] == L'a' &&
1576 NextCommandLine[1] == L' '
1577 ){
1578 CopyMem(NextCommandLine, NextCommandLine+1, StrSize(NextCommandLine) - sizeof(NextCommandLine[0]));
1579 Unicode = FALSE;
1580 } else {
1581 Unicode = TRUE;
1582 }
1583
1584
1585 //
1586 // make a SPLIT_LIST item and add to list
1587 //
1588 Split = AllocateZeroPool(sizeof(SPLIT_LIST));
1589 ASSERT(Split != NULL);
1590 Split->SplitStdIn = StdIn;
1591 Split->SplitStdOut = ConvertEfiFileProtocolToShellHandle(CreateFileInterfaceMem(Unicode), NULL);
1592 ASSERT(Split->SplitStdOut != NULL);
1593 InsertHeadList(&ShellInfoObject.SplitList.Link, &Split->Link);
1594
1595 Status = RunCommand(OurCommandLine, NULL);
1596
1597 //
1598 // move the output from the first to the in to the second.
1599 //
1600 TempFileHandle = Split->SplitStdOut;
1601 if (Split->SplitStdIn == StdIn) {
1602 Split->SplitStdOut = NULL;
1603 } else {
1604 Split->SplitStdOut = Split->SplitStdIn;
1605 }
1606 Split->SplitStdIn = TempFileHandle;
1607 ShellInfoObject.NewEfiShellProtocol->SetFilePosition(ConvertShellHandleToEfiFileProtocol(Split->SplitStdIn), 0);
1608
1609 if (!EFI_ERROR(Status)) {
1610 Status = RunCommand(NextCommandLine, ExitStatus);
1611 }
1612
1613 //
1614 // remove the top level from the ScriptList
1615 //
1616 ASSERT((SPLIT_LIST*)GetFirstNode(&ShellInfoObject.SplitList.Link) == Split);
1617 RemoveEntryList(&Split->Link);
1618
1619 //
1620 // Note that the original StdIn is now the StdOut...
1621 //
1622 if (Split->SplitStdOut != NULL && Split->SplitStdOut != StdIn) {
1623 ShellInfoObject.NewEfiShellProtocol->CloseFile(ConvertShellHandleToEfiFileProtocol(Split->SplitStdOut));
1624 }
1625 if (Split->SplitStdIn != NULL) {
1626 ShellInfoObject.NewEfiShellProtocol->CloseFile(ConvertShellHandleToEfiFileProtocol(Split->SplitStdIn));
1627 }
1628
1629 FreePool(Split);
1630 FreePool(NextCommandLine);
1631 FreePool(OurCommandLine);
1632
1633 return (Status);
1634 }
1635
1636 /**
1637 Take the original command line, substitute any variables, free
1638 the original string, return the modified copy.
1639
1640 @param[in] CmdLine pointer to the command line to update.
1641
1642 @retval EFI_SUCCESS the function was successful.
1643 @retval EFI_OUT_OF_RESOURCES a memory allocation failed.
1644 **/
1645 EFI_STATUS
1646 EFIAPI
1647 ShellSubstituteVariables(
1648 IN CHAR16 **CmdLine
1649 )
1650 {
1651 CHAR16 *NewCmdLine;
1652 NewCmdLine = ShellConvertVariables(*CmdLine);
1653 SHELL_FREE_NON_NULL(*CmdLine);
1654 if (NewCmdLine == NULL) {
1655 return (EFI_OUT_OF_RESOURCES);
1656 }
1657 *CmdLine = NewCmdLine;
1658 return (EFI_SUCCESS);
1659 }
1660
1661 /**
1662 Take the original command line, substitute any alias in the first group of space delimited characters, free
1663 the original string, return the modified copy.
1664
1665 @param[in] CmdLine pointer to the command line to update.
1666
1667 @retval EFI_SUCCESS the function was successful.
1668 @retval EFI_OUT_OF_RESOURCES a memory allocation failed.
1669 **/
1670 EFI_STATUS
1671 EFIAPI
1672 ShellSubstituteAliases(
1673 IN CHAR16 **CmdLine
1674 )
1675 {
1676 CHAR16 *NewCmdLine;
1677 CHAR16 *CommandName;
1678 EFI_STATUS Status;
1679 UINTN PostAliasSize;
1680 ASSERT(CmdLine != NULL);
1681 ASSERT(*CmdLine!= NULL);
1682
1683
1684 CommandName = NULL;
1685 if (StrStr((*CmdLine), L" ") == NULL){
1686 StrnCatGrow(&CommandName, NULL, (*CmdLine), 0);
1687 } else {
1688 StrnCatGrow(&CommandName, NULL, (*CmdLine), StrStr((*CmdLine), L" ") - (*CmdLine));
1689 }
1690
1691 //
1692 // This cannot happen 'inline' since the CmdLine can need extra space.
1693 //
1694 NewCmdLine = NULL;
1695 if (!ShellCommandIsCommandOnList(CommandName)) {
1696 //
1697 // Convert via alias
1698 //
1699 Status = ShellConvertAlias(&CommandName);
1700 if (EFI_ERROR(Status)){
1701 return (Status);
1702 }
1703 PostAliasSize = 0;
1704 NewCmdLine = StrnCatGrow(&NewCmdLine, &PostAliasSize, CommandName, 0);
1705 if (NewCmdLine == NULL) {
1706 SHELL_FREE_NON_NULL(CommandName);
1707 SHELL_FREE_NON_NULL(*CmdLine);
1708 return (EFI_OUT_OF_RESOURCES);
1709 }
1710 NewCmdLine = StrnCatGrow(&NewCmdLine, &PostAliasSize, StrStr((*CmdLine), L" "), 0);
1711 if (NewCmdLine == NULL) {
1712 SHELL_FREE_NON_NULL(CommandName);
1713 SHELL_FREE_NON_NULL(*CmdLine);
1714 return (EFI_OUT_OF_RESOURCES);
1715 }
1716 } else {
1717 NewCmdLine = StrnCatGrow(&NewCmdLine, NULL, (*CmdLine), 0);
1718 }
1719
1720 SHELL_FREE_NON_NULL(*CmdLine);
1721 SHELL_FREE_NON_NULL(CommandName);
1722
1723 //
1724 // re-assign the passed in double pointer to point to our newly allocated buffer
1725 //
1726 *CmdLine = NewCmdLine;
1727
1728 return (EFI_SUCCESS);
1729 }
1730
1731 /**
1732 Takes the Argv[0] part of the command line and determine the meaning of it.
1733
1734 @param[in] CmdName pointer to the command line to update.
1735
1736 @retval Internal_Command The name is an internal command.
1737 @retval File_Sys_Change the name is a file system change.
1738 @retval Script_File_Name the name is a NSH script file.
1739 @retval Unknown_Invalid the name is unknown.
1740 @retval Efi_Application the name is an application (.EFI).
1741 **/
1742 SHELL_OPERATION_TYPES
1743 EFIAPI
1744 GetOperationType(
1745 IN CONST CHAR16 *CmdName
1746 )
1747 {
1748 CHAR16* FileWithPath;
1749 CONST CHAR16* TempLocation;
1750 CONST CHAR16* TempLocation2;
1751
1752 FileWithPath = NULL;
1753 //
1754 // test for an internal command.
1755 //
1756 if (ShellCommandIsCommandOnList(CmdName)) {
1757 return (Internal_Command);
1758 }
1759
1760 //
1761 // Test for file system change request. anything ending with first : and cant have spaces.
1762 //
1763 if (CmdName[(StrLen(CmdName)-1)] == L':') {
1764 if ( StrStr(CmdName, L" ") != NULL
1765 || StrLen(StrStr(CmdName, L":")) > 1
1766 ) {
1767 return (Unknown_Invalid);
1768 }
1769 return (File_Sys_Change);
1770 }
1771
1772 //
1773 // Test for a file
1774 //
1775 if ((FileWithPath = ShellFindFilePathEx(CmdName, mExecutableExtensions)) != NULL) {
1776 //
1777 // See if that file has a script file extension
1778 //
1779 if (StrLen(FileWithPath) > 4) {
1780 TempLocation = FileWithPath+StrLen(FileWithPath)-4;
1781 TempLocation2 = mScriptExtension;
1782 if (StringNoCaseCompare((VOID*)(&TempLocation), (VOID*)(&TempLocation2)) == 0) {
1783 SHELL_FREE_NON_NULL(FileWithPath);
1784 return (Script_File_Name);
1785 }
1786 }
1787
1788 //
1789 // Was a file, but not a script. we treat this as an application.
1790 //
1791 SHELL_FREE_NON_NULL(FileWithPath);
1792 return (Efi_Application);
1793 }
1794
1795 SHELL_FREE_NON_NULL(FileWithPath);
1796 //
1797 // No clue what this is... return invalid flag...
1798 //
1799 return (Unknown_Invalid);
1800 }
1801
1802 /**
1803 Determine if the first item in a command line is valid.
1804
1805 @param[in] CmdLine The command line to parse.
1806
1807 @retval EFI_SUCCESS The item is valid.
1808 @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
1809 @retval EFI_NOT_FOUND The operation type is unknown or invalid.
1810 **/
1811 EFI_STATUS
1812 EFIAPI
1813 IsValidSplit(
1814 IN CONST CHAR16 *CmdLine
1815 )
1816 {
1817 CHAR16 *Temp;
1818 CHAR16 *FirstParameter;
1819 CHAR16 *TempWalker;
1820 EFI_STATUS Status;
1821
1822 Temp = NULL;
1823
1824 Temp = StrnCatGrow(&Temp, NULL, CmdLine, 0);
1825 if (Temp == NULL) {
1826 return (EFI_OUT_OF_RESOURCES);
1827 }
1828
1829 FirstParameter = StrStr(Temp, L"|");
1830 if (FirstParameter != NULL) {
1831 *FirstParameter = CHAR_NULL;
1832 }
1833
1834 FirstParameter = NULL;
1835
1836 //
1837 // Process the command line
1838 //
1839 Status = ProcessCommandLineToFinal(&Temp);
1840
1841 if (!EFI_ERROR(Status)) {
1842 FirstParameter = AllocateZeroPool(StrSize(CmdLine));
1843 if (FirstParameter == NULL) {
1844 SHELL_FREE_NON_NULL(Temp);
1845 return (EFI_OUT_OF_RESOURCES);
1846 }
1847 TempWalker = (CHAR16*)Temp;
1848 GetNextParameter(&TempWalker, &FirstParameter, StrSize(CmdLine));
1849
1850 if (GetOperationType(FirstParameter) == Unknown_Invalid) {
1851 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_SHELL_NOT_FOUND), ShellInfoObject.HiiHandle, FirstParameter);
1852 SetLastError(SHELL_NOT_FOUND);
1853 Status = EFI_NOT_FOUND;
1854 }
1855 }
1856
1857 SHELL_FREE_NON_NULL(Temp);
1858 SHELL_FREE_NON_NULL(FirstParameter);
1859 return Status;
1860 }
1861
1862 /**
1863 Determine if a command line contains with a split contains only valid commands.
1864
1865 @param[in] CmdLine The command line to parse.
1866
1867 @retval EFI_SUCCESS CmdLine has only valid commands, application, or has no split.
1868 @retval EFI_ABORTED CmdLine has at least one invalid command or application.
1869 **/
1870 EFI_STATUS
1871 EFIAPI
1872 VerifySplit(
1873 IN CONST CHAR16 *CmdLine
1874 )
1875 {
1876 CONST CHAR16 *TempSpot;
1877 EFI_STATUS Status;
1878
1879 //
1880 // Verify up to the pipe or end character
1881 //
1882 Status = IsValidSplit(CmdLine);
1883 if (EFI_ERROR(Status)) {
1884 return (Status);
1885 }
1886
1887 //
1888 // If this was the only item, then get out
1889 //
1890 if (!ContainsSplit(CmdLine)) {
1891 return (EFI_SUCCESS);
1892 }
1893
1894 //
1895 // recurse to verify the next item
1896 //
1897 TempSpot = FindSplit(CmdLine)+1;
1898 return (VerifySplit(TempSpot));
1899 }
1900
1901 /**
1902 Process a split based operation.
1903
1904 @param[in] CmdLine Pointer to the command line to process
1905 @param[out] ExitStatus The exit status of the command. Ignored if NULL.
1906 Invalid if this function returns an error.
1907
1908 @retval EFI_SUCCESS The operation was successful
1909 @return an error occured.
1910 **/
1911 EFI_STATUS
1912 EFIAPI
1913 ProcessNewSplitCommandLine(
1914 IN CONST CHAR16 *CmdLine,
1915 OUT SHELL_STATUS *ExitStatus
1916 )
1917 {
1918 SPLIT_LIST *Split;
1919 EFI_STATUS Status;
1920
1921 Status = VerifySplit(CmdLine);
1922 if (EFI_ERROR(Status)) {
1923 return (Status);
1924 }
1925
1926 Split = NULL;
1927
1928 //
1929 // are we in an existing split???
1930 //
1931 if (!IsListEmpty(&ShellInfoObject.SplitList.Link)) {
1932 Split = (SPLIT_LIST*)GetFirstNode(&ShellInfoObject.SplitList.Link);
1933 }
1934
1935 if (Split == NULL) {
1936 Status = RunSplitCommand(CmdLine, NULL, NULL, ExitStatus);
1937 } else {
1938 Status = RunSplitCommand(
1939 CmdLine,
1940 Split->SplitStdIn,
1941 Split->SplitStdOut,
1942 ExitStatus
1943 );
1944 }
1945 if (EFI_ERROR(Status)) {
1946 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_SHELL_INVALID_SPLIT), ShellInfoObject.HiiHandle, CmdLine);
1947 }
1948 return (Status);
1949 }
1950
1951 /**
1952 Handle a request to change the current file system.
1953
1954 @param[in] CmdLine The passed in command line.
1955
1956 @retval EFI_SUCCESS The operation was successful.
1957 **/
1958 EFI_STATUS
1959 EFIAPI
1960 ChangeMappedDrive(
1961 IN CONST CHAR16 *CmdLine
1962 )
1963 {
1964 EFI_STATUS Status;
1965 Status = EFI_SUCCESS;
1966
1967 //
1968 // make sure we are the right operation
1969 //
1970 ASSERT(CmdLine[(StrLen(CmdLine)-1)] == L':' && StrStr(CmdLine, L" ") == NULL);
1971
1972 //
1973 // Call the protocol API to do the work
1974 //
1975 Status = ShellInfoObject.NewEfiShellProtocol->SetCurDir(NULL, CmdLine);
1976
1977 //
1978 // Report any errors
1979 //
1980 if (EFI_ERROR(Status)) {
1981 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_SHELL_INVALID_MAPPING), ShellInfoObject.HiiHandle, CmdLine);
1982 }
1983
1984 return (Status);
1985 }
1986
1987 /**
1988 Reprocess the command line to direct all -? to the help command.
1989
1990 if found, will add "help" as argv[0], and move the rest later.
1991
1992 @param[in,out] CmdLine pointer to the command line to update
1993 **/
1994 EFI_STATUS
1995 EFIAPI
1996 DoHelpUpdate(
1997 IN OUT CHAR16 **CmdLine
1998 )
1999 {
2000 CHAR16 *CurrentParameter;
2001 CHAR16 *Walker;
2002 CHAR16 *LastWalker;
2003 CHAR16 *NewCommandLine;
2004 EFI_STATUS Status;
2005
2006 Status = EFI_SUCCESS;
2007
2008 CurrentParameter = AllocateZeroPool(StrSize(*CmdLine));
2009 if (CurrentParameter == NULL) {
2010 return (EFI_OUT_OF_RESOURCES);
2011 }
2012
2013 Walker = *CmdLine;
2014 while(Walker != NULL && *Walker != CHAR_NULL) {
2015 LastWalker = Walker;
2016 GetNextParameter(&Walker, &CurrentParameter, StrSize(*CmdLine));
2017 if (StrStr(CurrentParameter, L"-?") == CurrentParameter) {
2018 LastWalker[0] = L' ';
2019 LastWalker[1] = L' ';
2020 NewCommandLine = AllocateZeroPool(StrSize(L"help ") + StrSize(*CmdLine));
2021 if (NewCommandLine == NULL) {
2022 Status = EFI_OUT_OF_RESOURCES;
2023 break;
2024 }
2025
2026 //
2027 // We know the space is sufficient since we just calculated it.
2028 //
2029 StrnCpy(NewCommandLine, L"help ", 5);
2030 StrnCat(NewCommandLine, *CmdLine, StrLen(*CmdLine));
2031 SHELL_FREE_NON_NULL(*CmdLine);
2032 *CmdLine = NewCommandLine;
2033 break;
2034 }
2035 }
2036
2037 SHELL_FREE_NON_NULL(CurrentParameter);
2038
2039 return (Status);
2040 }
2041
2042 /**
2043 Function to update the shell variable "lasterror".
2044
2045 @param[in] ErrorCode the error code to put into lasterror.
2046 **/
2047 EFI_STATUS
2048 EFIAPI
2049 SetLastError(
2050 IN CONST SHELL_STATUS ErrorCode
2051 )
2052 {
2053 CHAR16 LeString[19];
2054 if (sizeof(EFI_STATUS) == sizeof(UINT64)) {
2055 UnicodeSPrint(LeString, sizeof(LeString), L"0x%Lx", ErrorCode);
2056 } else {
2057 UnicodeSPrint(LeString, sizeof(LeString), L"0x%x", ErrorCode);
2058 }
2059 DEBUG_CODE(InternalEfiShellSetEnv(L"debuglasterror", LeString, TRUE););
2060 InternalEfiShellSetEnv(L"lasterror", LeString, TRUE);
2061
2062 return (EFI_SUCCESS);
2063 }
2064
2065 /**
2066 Converts the command line to it's post-processed form. this replaces variables and alias' per UEFI Shell spec.
2067
2068 @param[in,out] CmdLine pointer to the command line to update
2069
2070 @retval EFI_SUCCESS The operation was successful
2071 @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
2072 @return some other error occured
2073 **/
2074 EFI_STATUS
2075 EFIAPI
2076 ProcessCommandLineToFinal(
2077 IN OUT CHAR16 **CmdLine
2078 )
2079 {
2080 EFI_STATUS Status;
2081 TrimSpaces(CmdLine);
2082
2083 Status = ShellSubstituteAliases(CmdLine);
2084 if (EFI_ERROR(Status)) {
2085 return (Status);
2086 }
2087
2088 TrimSpaces(CmdLine);
2089
2090 Status = ShellSubstituteVariables(CmdLine);
2091 if (EFI_ERROR(Status)) {
2092 return (Status);
2093 }
2094 ASSERT (*CmdLine != NULL);
2095
2096 TrimSpaces(CmdLine);
2097
2098 //
2099 // update for help parsing
2100 //
2101 if (StrStr(*CmdLine, L"?") != NULL) {
2102 //
2103 // This may do nothing if the ? does not indicate help.
2104 // Save all the details for in the API below.
2105 //
2106 Status = DoHelpUpdate(CmdLine);
2107 }
2108
2109 TrimSpaces(CmdLine);
2110
2111 return (EFI_SUCCESS);
2112 }
2113
2114 /**
2115 Run an internal shell command.
2116
2117 This API will upadate the shell's environment since these commands are libraries.
2118
2119 @param[in] CmdLine the command line to run.
2120 @param[in] FirstParameter the first parameter on the command line
2121 @param[in] ParamProtocol the shell parameters protocol pointer
2122
2123 @param[out] ExitStatus The exit code of the command. Ignored if NULL.
2124
2125 @retval EFI_SUCCESS The command was completed.
2126 @retval EFI_ABORTED The command's operation was aborted.
2127 **/
2128 EFI_STATUS
2129 EFIAPI
2130 RunInternalCommand(
2131 IN CONST CHAR16 *CmdLine,
2132 IN CHAR16 *FirstParameter,
2133 IN EFI_SHELL_PARAMETERS_PROTOCOL *ParamProtocol,
2134 OUT SHELL_STATUS *ExitStatus OPTIONAL
2135 )
2136 {
2137 EFI_STATUS Status;
2138 UINTN Argc;
2139 CHAR16 **Argv;
2140 SHELL_STATUS CommandReturnedStatus;
2141 BOOLEAN LastError;
2142
2143 //
2144 // get the argc and argv updated for internal commands
2145 //
2146 Status = UpdateArgcArgv(ParamProtocol, CmdLine, &Argv, &Argc);
2147 if (!EFI_ERROR(Status)) {
2148 //
2149 // Run the internal command.
2150 //
2151 Status = ShellCommandRunCommandHandler(FirstParameter, &CommandReturnedStatus, &LastError);
2152
2153 if (!EFI_ERROR(Status)) {
2154 //
2155 // Update last error status.
2156 // some commands do not update last error.
2157 //
2158 if (LastError) {
2159 SetLastError(CommandReturnedStatus);
2160 }
2161 if (ExitStatus != NULL) {
2162 *ExitStatus = CommandReturnedStatus;
2163 }
2164
2165 //
2166 // Pass thru the exitcode from the app.
2167 //
2168 if (ShellCommandGetExit()) {
2169 //
2170 // An Exit was requested ("exit" command), pass its value up.
2171 //
2172 Status = CommandReturnedStatus;
2173 } else if (CommandReturnedStatus != SHELL_SUCCESS && IsScriptOnlyCommand(FirstParameter)) {
2174 //
2175 // Always abort when a script only command fails for any reason
2176 //
2177 Status = EFI_ABORTED;
2178 } else if (ShellCommandGetCurrentScriptFile() != NULL && CommandReturnedStatus == SHELL_ABORTED) {
2179 //
2180 // Abort when in a script and a command aborted
2181 //
2182 Status = EFI_ABORTED;
2183 }
2184 }
2185 }
2186
2187 //
2188 // This is guarenteed to be called after UpdateArgcArgv no matter what else happened.
2189 // This is safe even if the update API failed. In this case, it may be a no-op.
2190 //
2191 RestoreArgcArgv(ParamProtocol, &Argv, &Argc);
2192
2193 //
2194 // If a script is running and the command is not a scipt only command, then
2195 // change return value to success so the script won't halt (unless aborted).
2196 //
2197 // Script only commands have to be able halt the script since the script will
2198 // not operate if they are failing.
2199 //
2200 if ( ShellCommandGetCurrentScriptFile() != NULL
2201 && !IsScriptOnlyCommand(FirstParameter)
2202 && Status != EFI_ABORTED
2203 ) {
2204 Status = EFI_SUCCESS;
2205 }
2206
2207 return (Status);
2208 }
2209
2210 /**
2211 Function to run the command or file.
2212
2213 @param[in] Type the type of operation being run.
2214 @param[in] CmdLine the command line to run.
2215 @param[in] FirstParameter the first parameter on the command line
2216 @param[in] ParamProtocol the shell parameters protocol pointer
2217
2218 @param[out] ExitStatus The exit code of the command or file.
2219 Ignored if NULL.
2220
2221 @retval EFI_SUCCESS The command was completed.
2222 @retval EFI_ABORTED The command's operation was aborted.
2223 **/
2224 EFI_STATUS
2225 EFIAPI
2226 RunCommandOrFile(
2227 IN SHELL_OPERATION_TYPES Type,
2228 IN CONST CHAR16 *CmdLine,
2229 IN CHAR16 *FirstParameter,
2230 IN EFI_SHELL_PARAMETERS_PROTOCOL *ParamProtocol,
2231 OUT SHELL_STATUS *ExitStatus
2232 )
2233 {
2234 EFI_STATUS Status;
2235 EFI_STATUS StartStatus;
2236 CHAR16 *CommandWithPath;
2237 EFI_DEVICE_PATH_PROTOCOL *DevPath;
2238 SHELL_STATUS CalleeExitStatus;
2239
2240 Status = EFI_SUCCESS;
2241 CommandWithPath = NULL;
2242 DevPath = NULL;
2243 CalleeExitStatus = SHELL_INVALID_PARAMETER;
2244
2245 switch (Type) {
2246 case Internal_Command:
2247 Status = RunInternalCommand(
2248 CmdLine,
2249 FirstParameter,
2250 ParamProtocol,
2251 &CalleeExitStatus
2252 );
2253 break;
2254 case Script_File_Name:
2255 case Efi_Application:
2256 //
2257 // Process a fully qualified path
2258 //
2259 if (StrStr(FirstParameter, L":") != NULL) {
2260 ASSERT (CommandWithPath == NULL);
2261 if (ShellIsFile(FirstParameter) == EFI_SUCCESS) {
2262 CommandWithPath = StrnCatGrow(&CommandWithPath, NULL, FirstParameter, 0);
2263 }
2264 }
2265
2266 //
2267 // Process a relative path and also check in the path environment variable
2268 //
2269 if (CommandWithPath == NULL) {
2270 CommandWithPath = ShellFindFilePathEx(FirstParameter, mExecutableExtensions);
2271 }
2272
2273 //
2274 // This should be impossible now.
2275 //
2276 ASSERT(CommandWithPath != NULL);
2277
2278 //
2279 // Make sure that path is not just a directory (or not found)
2280 //
2281 if (!EFI_ERROR(ShellIsDirectory(CommandWithPath))) {
2282 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_SHELL_NOT_FOUND), ShellInfoObject.HiiHandle, FirstParameter);
2283 SetLastError(SHELL_NOT_FOUND);
2284 }
2285 switch (Type) {
2286 case Script_File_Name:
2287 Status = RunScriptFile (
2288 CommandWithPath,
2289 NULL,
2290 CmdLine,
2291 ParamProtocol,
2292 &CalleeExitStatus
2293 );
2294 break;
2295 case Efi_Application:
2296 //
2297 // Get the device path of the application image
2298 //
2299 DevPath = ShellInfoObject.NewEfiShellProtocol->GetDevicePathFromFilePath(CommandWithPath);
2300 if (DevPath == NULL){
2301 Status = EFI_OUT_OF_RESOURCES;
2302 break;
2303 }
2304
2305 //
2306 // Execute the device path
2307 //
2308 Status = InternalShellExecuteDevicePath(
2309 &gImageHandle,
2310 DevPath,
2311 CmdLine,
2312 NULL,
2313 &StartStatus,
2314 NULL,
2315 NULL
2316 );
2317
2318 SHELL_FREE_NON_NULL(DevPath);
2319
2320 if(EFI_ERROR (Status)) {
2321 CalleeExitStatus = (SHELL_STATUS) (Status & (~MAX_BIT));
2322 } else {
2323 CalleeExitStatus = (SHELL_STATUS) StartStatus;
2324 }
2325
2326 //
2327 // Update last error status.
2328 //
2329 // Status is an EFI_STATUS. Clear top bit to convert to SHELL_STATUS
2330 SetLastError(CalleeExitStatus);
2331 break;
2332 default:
2333 //
2334 // Do nothing.
2335 //
2336 break;
2337 }
2338 break;
2339 default:
2340 //
2341 // Do nothing.
2342 //
2343 break;
2344 }
2345
2346 SHELL_FREE_NON_NULL(CommandWithPath);
2347
2348 if (ExitStatus != NULL) {
2349 *ExitStatus = CalleeExitStatus;
2350 }
2351
2352 return (Status);
2353 }
2354
2355 /**
2356 Function to setup StdIn, StdErr, StdOut, and then run the command or file.
2357
2358 @param[in] Type the type of operation being run.
2359 @param[in] CmdLine the command line to run.
2360 @param[in] FirstParameter the first parameter on the command line.
2361 @param[in] ParamProtocol the shell parameters protocol pointer
2362
2363 @param[out] ExitStatus The exit code of the command or file.
2364 Ignored if NULL.
2365
2366 @retval EFI_SUCCESS The command was completed.
2367 @retval EFI_ABORTED The command's operation was aborted.
2368 **/
2369 EFI_STATUS
2370 EFIAPI
2371 SetupAndRunCommandOrFile(
2372 IN SHELL_OPERATION_TYPES Type,
2373 IN CHAR16 *CmdLine,
2374 IN CHAR16 *FirstParameter,
2375 IN EFI_SHELL_PARAMETERS_PROTOCOL *ParamProtocol,
2376 OUT SHELL_STATUS *ExitStatus
2377 )
2378 {
2379 EFI_STATUS Status;
2380 SHELL_FILE_HANDLE OriginalStdIn;
2381 SHELL_FILE_HANDLE OriginalStdOut;
2382 SHELL_FILE_HANDLE OriginalStdErr;
2383 SYSTEM_TABLE_INFO OriginalSystemTableInfo;
2384
2385 //
2386 // Update the StdIn, StdOut, and StdErr for redirection to environment variables, files, etc... unicode and ASCII
2387 //
2388 Status = UpdateStdInStdOutStdErr(ParamProtocol, CmdLine, &OriginalStdIn, &OriginalStdOut, &OriginalStdErr, &OriginalSystemTableInfo);
2389
2390 //
2391 // The StdIn, StdOut, and StdErr are set up.
2392 // Now run the command, script, or application
2393 //
2394 if (!EFI_ERROR(Status)) {
2395 Status = RunCommandOrFile(
2396 Type,
2397 CmdLine,
2398 FirstParameter,
2399 ParamProtocol,
2400 ExitStatus
2401 );
2402 }
2403
2404 //
2405 // Now print errors
2406 //
2407 if (EFI_ERROR(Status)) {
2408 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_SHELL_ERROR), ShellInfoObject.HiiHandle, (VOID*)(Status));
2409 }
2410
2411 //
2412 // put back the original StdIn, StdOut, and StdErr
2413 //
2414 RestoreStdInStdOutStdErr(ParamProtocol, &OriginalStdIn, &OriginalStdOut, &OriginalStdErr, &OriginalSystemTableInfo);
2415
2416 return (Status);
2417 }
2418
2419 /**
2420 Function will process and run a command line.
2421
2422 This will determine if the command line represents an internal shell
2423 command or dispatch an external application.
2424
2425 @param[in] CmdLine The command line to parse.
2426 @param[out] ExitStatus The exit code of the command. Ignored if NULL.
2427
2428 @retval EFI_SUCCESS The command was completed.
2429 @retval EFI_ABORTED The command's operation was aborted.
2430 **/
2431 EFI_STATUS
2432 EFIAPI
2433 RunCommand(
2434 IN CONST CHAR16 *CmdLine,
2435 OUT SHELL_STATUS *ExitStatus
2436 )
2437 {
2438 EFI_STATUS Status;
2439 CHAR16 *CleanOriginal;
2440 CHAR16 *FirstParameter;
2441 CHAR16 *TempWalker;
2442 SHELL_OPERATION_TYPES Type;
2443
2444 ASSERT(CmdLine != NULL);
2445 if (StrLen(CmdLine) == 0) {
2446 return (EFI_SUCCESS);
2447 }
2448
2449 Status = EFI_SUCCESS;
2450 CleanOriginal = NULL;
2451
2452 CleanOriginal = StrnCatGrow(&CleanOriginal, NULL, CmdLine, 0);
2453 if (CleanOriginal == NULL) {
2454 return (EFI_OUT_OF_RESOURCES);
2455 }
2456
2457 TrimSpaces(&CleanOriginal);
2458
2459 //
2460 // NULL out comments (leveraged from RunScriptFileHandle() ).
2461 // The # character on a line is used to denote that all characters on the same line
2462 // and to the right of the # are to be ignored by the shell.
2463 // Afterward, again remove spaces, in case any were between the last command-parameter and '#'.
2464 //
2465 for (TempWalker = CleanOriginal; TempWalker != NULL && *TempWalker != CHAR_NULL; TempWalker++) {
2466 if (*TempWalker == L'^') {
2467 if (*(TempWalker + 1) == L'#') {
2468 CopyMem (TempWalker, TempWalker + 1, StrSize (TempWalker) - sizeof (TempWalker[0]));
2469 }
2470 } else if (*TempWalker == L'#') {
2471 *TempWalker = CHAR_NULL;
2472 }
2473 }
2474
2475 TrimSpaces(&CleanOriginal);
2476
2477 //
2478 // Handle case that passed in command line is just 1 or more " " characters.
2479 //
2480 if (StrLen (CleanOriginal) == 0) {
2481 SHELL_FREE_NON_NULL(CleanOriginal);
2482 return (EFI_SUCCESS);
2483 }
2484
2485 Status = ProcessCommandLineToFinal(&CleanOriginal);
2486 if (EFI_ERROR(Status)) {
2487 SHELL_FREE_NON_NULL(CleanOriginal);
2488 return (Status);
2489 }
2490
2491 //
2492 // We dont do normal processing with a split command line (output from one command input to another)
2493 //
2494 if (ContainsSplit(CleanOriginal)) {
2495 Status = ProcessNewSplitCommandLine(CleanOriginal, ExitStatus);
2496 SHELL_FREE_NON_NULL(CleanOriginal);
2497 return (Status);
2498 }
2499
2500 //
2501 // We need the first parameter information so we can determine the operation type
2502 //
2503 FirstParameter = AllocateZeroPool(StrSize(CleanOriginal));
2504 if (FirstParameter == NULL) {
2505 SHELL_FREE_NON_NULL(CleanOriginal);
2506 return (EFI_OUT_OF_RESOURCES);
2507 }
2508 TempWalker = CleanOriginal;
2509 GetNextParameter(&TempWalker, &FirstParameter, StrSize(CleanOriginal));
2510
2511 //
2512 // Depending on the first parameter we change the behavior
2513 //
2514 switch (Type = GetOperationType(FirstParameter)) {
2515 case File_Sys_Change:
2516 Status = ChangeMappedDrive (FirstParameter);
2517 break;
2518 case Internal_Command:
2519 case Script_File_Name:
2520 case Efi_Application:
2521 Status = SetupAndRunCommandOrFile(
2522 Type,
2523 CleanOriginal,
2524 FirstParameter,
2525 ShellInfoObject.NewShellParametersProtocol,
2526 ExitStatus
2527 );
2528 break;
2529 default:
2530 //
2531 // Whatever was typed, it was invalid.
2532 //
2533 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_SHELL_NOT_FOUND), ShellInfoObject.HiiHandle, FirstParameter);
2534 SetLastError(SHELL_NOT_FOUND);
2535 break;
2536 }
2537
2538 SHELL_FREE_NON_NULL(CleanOriginal);
2539 SHELL_FREE_NON_NULL(FirstParameter);
2540
2541 return (Status);
2542 }
2543
2544 STATIC CONST UINT16 InvalidChars[] = {L'*', L'?', L'<', L'>', L'\\', L'/', L'\"', 0x0001, 0x0002};
2545 /**
2546 Function determins if the CommandName COULD be a valid command. It does not determine whether
2547 this is a valid command. It only checks for invalid characters.
2548
2549 @param[in] CommandName The name to check
2550
2551 @retval TRUE CommandName could be a command name
2552 @retval FALSE CommandName could not be a valid command name
2553 **/
2554 BOOLEAN
2555 EFIAPI
2556 IsValidCommandName(
2557 IN CONST CHAR16 *CommandName
2558 )
2559 {
2560 UINTN Count;
2561 if (CommandName == NULL) {
2562 ASSERT(FALSE);
2563 return (FALSE);
2564 }
2565 for ( Count = 0
2566 ; Count < sizeof(InvalidChars) / sizeof(InvalidChars[0])
2567 ; Count++
2568 ){
2569 if (ScanMem16(CommandName, StrSize(CommandName), InvalidChars[Count]) != NULL) {
2570 return (FALSE);
2571 }
2572 }
2573 return (TRUE);
2574 }
2575
2576 /**
2577 Function to process a NSH script file via SHELL_FILE_HANDLE.
2578
2579 @param[in] Handle The handle to the already opened file.
2580 @param[in] Name The name of the script file.
2581
2582 @param[out] ExitStatus The exit code of the script. Ignored if NULL.
2583
2584 @retval EFI_SUCCESS the script completed sucessfully
2585 **/
2586 EFI_STATUS
2587 EFIAPI
2588 RunScriptFileHandle (
2589 IN SHELL_FILE_HANDLE Handle,
2590 IN CONST CHAR16 *Name,
2591 OUT SHELL_STATUS *ExitStatus
2592 )
2593 {
2594 EFI_STATUS Status;
2595 SCRIPT_FILE *NewScriptFile;
2596 UINTN LoopVar;
2597 CHAR16 *CommandLine;
2598 CHAR16 *CommandLine2;
2599 CHAR16 *CommandLine3;
2600 SCRIPT_COMMAND_LIST *LastCommand;
2601 BOOLEAN Ascii;
2602 BOOLEAN PreScriptEchoState;
2603 BOOLEAN PreCommandEchoState;
2604 CONST CHAR16 *CurDir;
2605 UINTN LineCount;
2606 CHAR16 LeString[50];
2607 SHELL_STATUS CalleeExitStatus;
2608
2609 ASSERT(!ShellCommandGetScriptExit());
2610
2611 CalleeExitStatus = SHELL_SUCCESS;
2612
2613 PreScriptEchoState = ShellCommandGetEchoState();
2614
2615 NewScriptFile = (SCRIPT_FILE*)AllocateZeroPool(sizeof(SCRIPT_FILE));
2616 if (NewScriptFile == NULL) {
2617 return (EFI_OUT_OF_RESOURCES);
2618 }
2619
2620 //
2621 // Set up the name
2622 //
2623 ASSERT(NewScriptFile->ScriptName == NULL);
2624 NewScriptFile->ScriptName = StrnCatGrow(&NewScriptFile->ScriptName, NULL, Name, 0);
2625 if (NewScriptFile->ScriptName == NULL) {
2626 DeleteScriptFileStruct(NewScriptFile);
2627 return (EFI_OUT_OF_RESOURCES);
2628 }
2629
2630 //
2631 // Save the parameters (used to replace %0 to %9 later on)
2632 //
2633 NewScriptFile->Argc = ShellInfoObject.NewShellParametersProtocol->Argc;
2634 if (NewScriptFile->Argc != 0) {
2635 NewScriptFile->Argv = (CHAR16**)AllocateZeroPool(NewScriptFile->Argc * sizeof(CHAR16*));
2636 if (NewScriptFile->Argv == NULL) {
2637 DeleteScriptFileStruct(NewScriptFile);
2638 return (EFI_OUT_OF_RESOURCES);
2639 }
2640 for (LoopVar = 0 ; LoopVar < 10 && LoopVar < NewScriptFile->Argc; LoopVar++) {
2641 ASSERT(NewScriptFile->Argv[LoopVar] == NULL);
2642 NewScriptFile->Argv[LoopVar] = StrnCatGrow(&NewScriptFile->Argv[LoopVar], NULL, ShellInfoObject.NewShellParametersProtocol->Argv[LoopVar], 0);
2643 if (NewScriptFile->Argv[LoopVar] == NULL) {
2644 DeleteScriptFileStruct(NewScriptFile);
2645 return (EFI_OUT_OF_RESOURCES);
2646 }
2647 }
2648 } else {
2649 NewScriptFile->Argv = NULL;
2650 }
2651
2652 InitializeListHead(&NewScriptFile->CommandList);
2653 InitializeListHead(&NewScriptFile->SubstList);
2654
2655 //
2656 // Now build the list of all script commands.
2657 //
2658 LineCount = 0;
2659 while(!ShellFileHandleEof(Handle)) {
2660 CommandLine = ShellFileHandleReturnLine(Handle, &Ascii);
2661 LineCount++;
2662 if (CommandLine == NULL || StrLen(CommandLine) == 0 || CommandLine[0] == '#') {
2663 SHELL_FREE_NON_NULL(CommandLine);
2664 continue;
2665 }
2666 NewScriptFile->CurrentCommand = AllocateZeroPool(sizeof(SCRIPT_COMMAND_LIST));
2667 if (NewScriptFile->CurrentCommand == NULL) {
2668 SHELL_FREE_NON_NULL(CommandLine);
2669 DeleteScriptFileStruct(NewScriptFile);
2670 return (EFI_OUT_OF_RESOURCES);
2671 }
2672
2673 NewScriptFile->CurrentCommand->Cl = CommandLine;
2674 NewScriptFile->CurrentCommand->Data = NULL;
2675 NewScriptFile->CurrentCommand->Line = LineCount;
2676
2677 InsertTailList(&NewScriptFile->CommandList, &NewScriptFile->CurrentCommand->Link);
2678 }
2679
2680 //
2681 // Add this as the topmost script file
2682 //
2683 ShellCommandSetNewScript (NewScriptFile);
2684
2685 //
2686 // Now enumerate through the commands and run each one.
2687 //
2688 CommandLine = AllocateZeroPool(PcdGet16(PcdShellPrintBufferSize));
2689 if (CommandLine == NULL) {
2690 DeleteScriptFileStruct(NewScriptFile);
2691 return (EFI_OUT_OF_RESOURCES);
2692 }
2693 CommandLine2 = AllocateZeroPool(PcdGet16(PcdShellPrintBufferSize));
2694 if (CommandLine2 == NULL) {
2695 FreePool(CommandLine);
2696 DeleteScriptFileStruct(NewScriptFile);
2697 return (EFI_OUT_OF_RESOURCES);
2698 }
2699
2700 for ( NewScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)GetFirstNode(&NewScriptFile->CommandList)
2701 ; !IsNull(&NewScriptFile->CommandList, &NewScriptFile->CurrentCommand->Link)
2702 ; // conditional increment in the body of the loop
2703 ){
2704 ASSERT(CommandLine2 != NULL);
2705 StrnCpy(CommandLine2, NewScriptFile->CurrentCommand->Cl, PcdGet16(PcdShellPrintBufferSize)/sizeof(CHAR16)-1);
2706
2707 //
2708 // NULL out comments
2709 //
2710 for (CommandLine3 = CommandLine2 ; CommandLine3 != NULL && *CommandLine3 != CHAR_NULL ; CommandLine3++) {
2711 if (*CommandLine3 == L'^') {
2712 if (*(CommandLine3+1) == L'#' || *(CommandLine3+1) == L':') {
2713 CopyMem(CommandLine3, CommandLine3+1, StrSize(CommandLine3) - sizeof(CommandLine3[0]));
2714 }
2715 } else if (*CommandLine3 == L'#') {
2716 *CommandLine3 = CHAR_NULL;
2717 }
2718 }
2719
2720 if (CommandLine2 != NULL && StrLen(CommandLine2) >= 1) {
2721 //
2722 // Due to variability in starting the find and replace action we need to have both buffers the same.
2723 //
2724 StrnCpy(CommandLine, CommandLine2, PcdGet16(PcdShellPrintBufferSize)/sizeof(CHAR16)-1);
2725
2726 //
2727 // Remove the %0 to %9 from the command line (if we have some arguments)
2728 //
2729 if (NewScriptFile->Argv != NULL) {
2730 switch (NewScriptFile->Argc) {
2731 default:
2732 Status = ShellCopySearchAndReplace(CommandLine2, CommandLine, PcdGet16 (PcdShellPrintBufferSize), L"%9", NewScriptFile->Argv[9], FALSE, FALSE);
2733 ASSERT_EFI_ERROR(Status);
2734 case 9:
2735 Status = ShellCopySearchAndReplace(CommandLine, CommandLine2, PcdGet16 (PcdShellPrintBufferSize), L"%8", NewScriptFile->Argv[8], FALSE, FALSE);
2736 ASSERT_EFI_ERROR(Status);
2737 case 8:
2738 Status = ShellCopySearchAndReplace(CommandLine2, CommandLine, PcdGet16 (PcdShellPrintBufferSize), L"%7", NewScriptFile->Argv[7], FALSE, FALSE);
2739 ASSERT_EFI_ERROR(Status);
2740 case 7:
2741 Status = ShellCopySearchAndReplace(CommandLine, CommandLine2, PcdGet16 (PcdShellPrintBufferSize), L"%6", NewScriptFile->Argv[6], FALSE, FALSE);
2742 ASSERT_EFI_ERROR(Status);
2743 case 6:
2744 Status = ShellCopySearchAndReplace(CommandLine2, CommandLine, PcdGet16 (PcdShellPrintBufferSize), L"%5", NewScriptFile->Argv[5], FALSE, FALSE);
2745 ASSERT_EFI_ERROR(Status);
2746 case 5:
2747 Status = ShellCopySearchAndReplace(CommandLine, CommandLine2, PcdGet16 (PcdShellPrintBufferSize), L"%4", NewScriptFile->Argv[4], FALSE, FALSE);
2748 ASSERT_EFI_ERROR(Status);
2749 case 4:
2750 Status = ShellCopySearchAndReplace(CommandLine2, CommandLine, PcdGet16 (PcdShellPrintBufferSize), L"%3", NewScriptFile->Argv[3], FALSE, FALSE);
2751 ASSERT_EFI_ERROR(Status);
2752 case 3:
2753 Status = ShellCopySearchAndReplace(CommandLine, CommandLine2, PcdGet16 (PcdShellPrintBufferSize), L"%2", NewScriptFile->Argv[2], FALSE, FALSE);
2754 ASSERT_EFI_ERROR(Status);
2755 case 2:
2756 Status = ShellCopySearchAndReplace(CommandLine2, CommandLine, PcdGet16 (PcdShellPrintBufferSize), L"%1", NewScriptFile->Argv[1], FALSE, FALSE);
2757 ASSERT_EFI_ERROR(Status);
2758 case 1:
2759 Status = ShellCopySearchAndReplace(CommandLine, CommandLine2, PcdGet16 (PcdShellPrintBufferSize), L"%0", NewScriptFile->Argv[0], FALSE, FALSE);
2760 ASSERT_EFI_ERROR(Status);
2761 break;
2762 case 0:
2763 break;
2764 }
2765 }
2766 Status = ShellCopySearchAndReplace(CommandLine2, CommandLine, PcdGet16 (PcdShellPrintBufferSize), L"%1", L"\"\"", FALSE, FALSE);
2767 Status = ShellCopySearchAndReplace(CommandLine, CommandLine2, PcdGet16 (PcdShellPrintBufferSize), L"%2", L"\"\"", FALSE, FALSE);
2768 Status = ShellCopySearchAndReplace(CommandLine2, CommandLine, PcdGet16 (PcdShellPrintBufferSize), L"%3", L"\"\"", FALSE, FALSE);
2769 Status = ShellCopySearchAndReplace(CommandLine, CommandLine2, PcdGet16 (PcdShellPrintBufferSize), L"%4", L"\"\"", FALSE, FALSE);
2770 Status = ShellCopySearchAndReplace(CommandLine2, CommandLine, PcdGet16 (PcdShellPrintBufferSize), L"%5", L"\"\"", FALSE, FALSE);
2771 Status = ShellCopySearchAndReplace(CommandLine, CommandLine2, PcdGet16 (PcdShellPrintBufferSize), L"%6", L"\"\"", FALSE, FALSE);
2772 Status = ShellCopySearchAndReplace(CommandLine2, CommandLine, PcdGet16 (PcdShellPrintBufferSize), L"%7", L"\"\"", FALSE, FALSE);
2773 Status = ShellCopySearchAndReplace(CommandLine, CommandLine2, PcdGet16 (PcdShellPrintBufferSize), L"%8", L"\"\"", FALSE, FALSE);
2774 Status = ShellCopySearchAndReplace(CommandLine2, CommandLine, PcdGet16 (PcdShellPrintBufferSize), L"%9", L"\"\"", FALSE, FALSE);
2775
2776 StrnCpy(CommandLine2, CommandLine, PcdGet16(PcdShellPrintBufferSize)/sizeof(CHAR16)-1);
2777
2778 LastCommand = NewScriptFile->CurrentCommand;
2779
2780 for (CommandLine3 = CommandLine2 ; CommandLine3[0] == L' ' ; CommandLine3++);
2781
2782 if (CommandLine3 != NULL && CommandLine3[0] == L':' ) {
2783 //
2784 // This line is a goto target / label
2785 //
2786 } else {
2787 if (CommandLine3 != NULL && StrLen(CommandLine3) > 0) {
2788 if (CommandLine3[0] == L'@') {
2789 //
2790 // We need to save the current echo state
2791 // and disable echo for just this command.
2792 //
2793 PreCommandEchoState = ShellCommandGetEchoState();
2794 ShellCommandSetEchoState(FALSE);
2795 Status = RunCommand(CommandLine3+1, NULL);
2796
2797 //
2798 // If command was "@echo -off" or "@echo -on" then don't restore echo state
2799 //
2800 if (StrCmp (L"@echo -off", CommandLine3) != 0 &&
2801 StrCmp (L"@echo -on", CommandLine3) != 0) {
2802 //
2803 // Now restore the pre-'@' echo state.
2804 //
2805 ShellCommandSetEchoState(PreCommandEchoState);
2806 }
2807 } else {
2808 if (ShellCommandGetEchoState()) {
2809 CurDir = ShellInfoObject.NewEfiShellProtocol->GetEnv(L"cwd");
2810 if (CurDir != NULL && StrLen(CurDir) > 1) {
2811 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_SHELL_CURDIR), ShellInfoObject.HiiHandle, CurDir);
2812 } else {
2813 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_SHELL_SHELL), ShellInfoObject.HiiHandle);
2814 }
2815 ShellPrintEx(-1, -1, L"%s\r\n", CommandLine2);
2816 }
2817 Status = RunCommand(CommandLine3, NULL);
2818 }
2819 }
2820
2821 if (ShellCommandGetScriptExit()) {
2822 //
2823 // ShellCommandGetExitCode() always returns a UINT64
2824 //
2825 CalleeExitStatus = (SHELL_STATUS) ShellCommandGetExitCode();
2826 UnicodeSPrint(LeString, sizeof(LeString), L"0x%Lx", CalleeExitStatus);
2827 DEBUG_CODE(InternalEfiShellSetEnv(L"debuglasterror", LeString, TRUE););
2828 InternalEfiShellSetEnv(L"lasterror", LeString, TRUE);
2829
2830 ShellCommandRegisterExit(FALSE, 0);
2831 Status = EFI_SUCCESS;
2832 break;
2833 }
2834 if (ShellGetExecutionBreakFlag()) {
2835 break;
2836 }
2837 if (EFI_ERROR(Status)) {
2838 CalleeExitStatus = (SHELL_STATUS) Status;
2839 break;
2840 }
2841 if (ShellCommandGetExit()) {
2842 CalleeExitStatus = (SHELL_STATUS) ShellCommandGetExitCode();
2843 break;
2844 }
2845 }
2846 //
2847 // If that commend did not update the CurrentCommand then we need to advance it...
2848 //
2849 if (LastCommand == NewScriptFile->CurrentCommand) {
2850 NewScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)GetNextNode(&NewScriptFile->CommandList, &NewScriptFile->CurrentCommand->Link);
2851 if (!IsNull(&NewScriptFile->CommandList, &NewScriptFile->CurrentCommand->Link)) {
2852 NewScriptFile->CurrentCommand->Reset = TRUE;
2853 }
2854 }
2855 } else {
2856 NewScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)GetNextNode(&NewScriptFile->CommandList, &NewScriptFile->CurrentCommand->Link);
2857 if (!IsNull(&NewScriptFile->CommandList, &NewScriptFile->CurrentCommand->Link)) {
2858 NewScriptFile->CurrentCommand->Reset = TRUE;
2859 }
2860 }
2861 }
2862
2863
2864 FreePool(CommandLine);
2865 FreePool(CommandLine2);
2866 ShellCommandSetNewScript (NULL);
2867
2868 //
2869 // Only if this was the last script reset the state.
2870 //
2871 if (ShellCommandGetCurrentScriptFile()==NULL) {
2872 ShellCommandSetEchoState(PreScriptEchoState);
2873 }
2874
2875 if (ExitStatus != NULL) {
2876 *ExitStatus = CalleeExitStatus;
2877 }
2878
2879 return (EFI_SUCCESS);
2880 }
2881
2882 /**
2883 Function to process a NSH script file.
2884
2885 @param[in] ScriptPath Pointer to the script file name (including file system path).
2886 @param[in] Handle the handle of the script file already opened.
2887 @param[in] CmdLine the command line to run.
2888 @param[in] ParamProtocol the shell parameters protocol pointer
2889
2890 @param[out] ExitStatus The exit code of the script. Ignored if NULL.
2891
2892 @retval EFI_SUCCESS the script completed sucessfully
2893 **/
2894 EFI_STATUS
2895 EFIAPI
2896 RunScriptFile (
2897 IN CONST CHAR16 *ScriptPath,
2898 IN SHELL_FILE_HANDLE Handle OPTIONAL,
2899 IN CONST CHAR16 *CmdLine,
2900 IN EFI_SHELL_PARAMETERS_PROTOCOL *ParamProtocol,
2901 OUT SHELL_STATUS *ExitStatus
2902 )
2903 {
2904 EFI_STATUS Status;
2905 SHELL_FILE_HANDLE FileHandle;
2906 UINTN Argc;
2907 CHAR16 **Argv;
2908
2909 if (ShellIsFile(ScriptPath) != EFI_SUCCESS) {
2910 return (EFI_INVALID_PARAMETER);
2911 }
2912
2913 //
2914 // get the argc and argv updated for scripts
2915 //
2916 Status = UpdateArgcArgv(ParamProtocol, CmdLine, &Argv, &Argc);
2917 if (!EFI_ERROR(Status)) {
2918
2919 if (Handle == NULL) {
2920 //
2921 // open the file
2922 //
2923 Status = ShellOpenFileByName(ScriptPath, &FileHandle, EFI_FILE_MODE_READ, 0);
2924 if (!EFI_ERROR(Status)) {
2925 //
2926 // run it
2927 //
2928 Status = RunScriptFileHandle(FileHandle, ScriptPath, ExitStatus);
2929
2930 //
2931 // now close the file
2932 //
2933 ShellCloseFile(&FileHandle);
2934 }
2935 } else {
2936 Status = RunScriptFileHandle(Handle, ScriptPath, ExitStatus);
2937 }
2938 }
2939
2940 //
2941 // This is guarenteed to be called after UpdateArgcArgv no matter what else happened.
2942 // This is safe even if the update API failed. In this case, it may be a no-op.
2943 //
2944 RestoreArgcArgv(ParamProtocol, &Argv, &Argc);
2945
2946 return (Status);
2947 }