]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Application/Shell/ShellProtocol.c
ShellPkg: Remove 'STATIC' from function declarations to avoid source level debugging...
[mirror_edk2.git] / ShellPkg / Application / Shell / ShellProtocol.c
1 /** @file
2 Member functions of EFI_SHELL_PROTOCOL and functions for creation,
3 manipulation, and initialization of EFI_SHELL_PROTOCOL.
4
5 (C) Copyright 2014, Hewlett-Packard Development Company, L.P.
6 Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
7 This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15 **/
16
17 #include "Shell.h"
18
19 /**
20 Close an open file handle.
21
22 This function closes a specified file handle. All "dirty" cached file data is
23 flushed to the device, and the file is closed. In all cases the handle is
24 closed.
25
26 @param[in] FileHandle The file handle to close.
27
28 @retval EFI_SUCCESS The file handle was closed successfully.
29 **/
30 EFI_STATUS
31 EFIAPI
32 EfiShellClose (
33 IN SHELL_FILE_HANDLE FileHandle
34 )
35 {
36 ShellFileHandleRemove(FileHandle);
37 return (FileHandleClose(ConvertShellHandleToEfiFileProtocol(FileHandle)));
38 }
39
40 /**
41 Internal worker to determine whether there is a BlockIo somewhere
42 upon the device path specified.
43
44 @param[in] DevicePath The device path to test.
45
46 @retval TRUE gEfiBlockIoProtocolGuid was installed on a handle with this device path
47 @retval FALSE gEfiBlockIoProtocolGuid was not found.
48 **/
49 BOOLEAN
50 EFIAPI
51 InternalShellProtocolIsBlockIoPresent(
52 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath
53 )
54 {
55 EFI_DEVICE_PATH_PROTOCOL *DevicePathCopy;
56 EFI_STATUS Status;
57 EFI_HANDLE Handle;
58
59 Handle = NULL;
60
61 DevicePathCopy = (EFI_DEVICE_PATH_PROTOCOL*)DevicePath;
62 Status = gBS->LocateDevicePath(&gEfiBlockIoProtocolGuid, &DevicePathCopy, &Handle);
63
64 if ((Handle != NULL) && (!EFI_ERROR(Status))) {
65 return (TRUE);
66 }
67 return (FALSE);
68 }
69
70 /**
71 Internal worker to determine whether there is a file system somewhere
72 upon the device path specified.
73
74 @param[in] DevicePath The device path to test.
75
76 @retval TRUE gEfiSimpleFileSystemProtocolGuid was installed on a handle with this device path
77 @retval FALSE gEfiSimpleFileSystemProtocolGuid was not found.
78 **/
79 BOOLEAN
80 EFIAPI
81 InternalShellProtocolIsSimpleFileSystemPresent(
82 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath
83 )
84 {
85 EFI_DEVICE_PATH_PROTOCOL *DevicePathCopy;
86 EFI_STATUS Status;
87 EFI_HANDLE Handle;
88
89 Handle = NULL;
90
91 DevicePathCopy = (EFI_DEVICE_PATH_PROTOCOL*)DevicePath;
92 Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid, &DevicePathCopy, &Handle);
93
94 if ((Handle != NULL) && (!EFI_ERROR(Status))) {
95 return (TRUE);
96 }
97 return (FALSE);
98 }
99
100 /**
101 Internal worker debug helper function to print out maps as they are added.
102
103 @param[in] Mapping string mapping that has been added
104 @param[in] DevicePath pointer to device path that has been mapped.
105
106 @retval EFI_SUCCESS the operation was successful.
107 @return other an error ocurred
108
109 @sa LocateHandle
110 @sa OpenProtocol
111 **/
112 EFI_STATUS
113 EFIAPI
114 InternalShellProtocolDebugPrintMessage (
115 IN CONST CHAR16 *Mapping,
116 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath
117 )
118 {
119 EFI_STATUS Status;
120 CHAR16 *Temp;
121
122 Status = EFI_SUCCESS;
123 DEBUG_CODE_BEGIN();
124
125 if (Mapping != NULL) {
126 DEBUG((EFI_D_INFO, "Added new map item:\"%S\"\r\n", Mapping));
127 }
128 Temp = ConvertDevicePathToText(DevicePath, TRUE, TRUE);
129 DEBUG((EFI_D_INFO, "DevicePath: %S\r\n", Temp));
130 FreePool(Temp);
131
132 DEBUG_CODE_END();
133 return (Status);
134 }
135
136 /**
137 This function creates a mapping for a device path.
138
139 If both DeviecPath and Mapping are NULL, this will reset the mapping to default values.
140
141 @param DevicePath Points to the device path. If this is NULL and Mapping points to a valid mapping,
142 then the mapping will be deleted.
143 @param Mapping Points to the NULL-terminated mapping for the device path. Must end with a ':'
144
145 @retval EFI_SUCCESS Mapping created or deleted successfully.
146 @retval EFI_NO_MAPPING There is no handle that corresponds exactly to DevicePath. See the
147 boot service function LocateDevicePath().
148 @retval EFI_ACCESS_DENIED The mapping is a built-in alias.
149 @retval EFI_INVALID_PARAMETER Mapping was NULL
150 @retval EFI_INVALID_PARAMETER Mapping did not end with a ':'
151 @retval EFI_INVALID_PARAMETER DevicePath was not pointing at a device that had a SIMPLE_FILE_SYSTEM_PROTOCOL installed.
152 @retval EFI_NOT_FOUND There was no mapping found to delete
153 @retval EFI_OUT_OF_RESOURCES Memory allocation failed
154 **/
155 EFI_STATUS
156 EFIAPI
157 EfiShellSetMap(
158 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath OPTIONAL,
159 IN CONST CHAR16 *Mapping
160 )
161 {
162 EFI_STATUS Status;
163 SHELL_MAP_LIST *MapListNode;
164
165 if (Mapping == NULL){
166 return (EFI_INVALID_PARAMETER);
167 }
168
169 if (Mapping[StrLen(Mapping)-1] != ':') {
170 return (EFI_INVALID_PARAMETER);
171 }
172
173 //
174 // Delete the mapping
175 //
176 if (DevicePath == NULL) {
177 if (IsListEmpty(&gShellMapList.Link)) {
178 return (EFI_NOT_FOUND);
179 }
180 for ( MapListNode = (SHELL_MAP_LIST *)GetFirstNode(&gShellMapList.Link)
181 ; !IsNull(&gShellMapList.Link, &MapListNode->Link)
182 ; MapListNode = (SHELL_MAP_LIST *)GetNextNode(&gShellMapList.Link, &MapListNode->Link)
183 ){
184 if (StringNoCaseCompare(&MapListNode->MapName, &Mapping) == 0) {
185 RemoveEntryList(&MapListNode->Link);
186 FreePool(MapListNode);
187 return (EFI_SUCCESS);
188 }
189 } // for loop
190
191 //
192 // We didnt find one to delete
193 //
194 return (EFI_NOT_FOUND);
195 }
196
197 //
198 // make sure this is a valid to add device path
199 //
200 ///@todo add BlockIo to this test...
201 if (!InternalShellProtocolIsSimpleFileSystemPresent(DevicePath)
202 && !InternalShellProtocolIsBlockIoPresent(DevicePath)) {
203 return (EFI_INVALID_PARAMETER);
204 }
205
206 //
207 // First make sure there is no old mapping
208 //
209 Status = EfiShellSetMap(NULL, Mapping);
210 if ((Status != EFI_SUCCESS) && (Status != EFI_NOT_FOUND)) {
211 return (Status);
212 }
213
214 //
215 // now add the new one.
216 //
217 Status = ShellCommandAddMapItemAndUpdatePath(Mapping, DevicePath, 0, FALSE);
218
219 return(Status);
220 }
221
222 /**
223 Gets the device path from the mapping.
224
225 This function gets the device path associated with a mapping.
226
227 @param Mapping A pointer to the mapping
228
229 @retval !=NULL Pointer to the device path that corresponds to the
230 device mapping. The returned pointer does not need
231 to be freed.
232 @retval NULL There is no device path associated with the
233 specified mapping.
234 **/
235 CONST EFI_DEVICE_PATH_PROTOCOL *
236 EFIAPI
237 EfiShellGetDevicePathFromMap(
238 IN CONST CHAR16 *Mapping
239 )
240 {
241 SHELL_MAP_LIST *MapListItem;
242 CHAR16 *NewName;
243 UINTN Size;
244
245 NewName = NULL;
246 Size = 0;
247
248 StrnCatGrow(&NewName, &Size, Mapping, 0);
249 if (Mapping[StrLen(Mapping)-1] != L':') {
250 StrnCatGrow(&NewName, &Size, L":", 0);
251 }
252
253 MapListItem = ShellCommandFindMapItem(NewName);
254
255 FreePool(NewName);
256
257 if (MapListItem != NULL) {
258 return (MapListItem->DevicePath);
259 }
260 return(NULL);
261 }
262
263 /**
264 Gets the mapping(s) that most closely matches the device path.
265
266 This function gets the mapping which corresponds to the device path *DevicePath. If
267 there is no exact match, then the mapping which most closely matches *DevicePath
268 is returned, and *DevicePath is updated to point to the remaining portion of the
269 device path. If there is an exact match, the mapping is returned and *DevicePath
270 points to the end-of-device-path node.
271
272 If there are multiple map names they will be semi-colon seperated in the
273 NULL-terminated string.
274
275 @param DevicePath On entry, points to a device path pointer. On
276 exit, updates the pointer to point to the
277 portion of the device path after the mapping.
278
279 @retval NULL No mapping was found.
280 @return !=NULL Pointer to NULL-terminated mapping. The buffer
281 is callee allocated and should be freed by the caller.
282 **/
283 CONST CHAR16 *
284 EFIAPI
285 EfiShellGetMapFromDevicePath(
286 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath
287 )
288 {
289 SHELL_MAP_LIST *Node;
290 CHAR16 *PathForReturn;
291 UINTN PathSize;
292 // EFI_HANDLE PathHandle;
293 // EFI_HANDLE MapHandle;
294 // EFI_STATUS Status;
295 // EFI_DEVICE_PATH_PROTOCOL *DevicePathCopy;
296 // EFI_DEVICE_PATH_PROTOCOL *MapPathCopy;
297
298 if (DevicePath == NULL || *DevicePath == NULL) {
299 return (NULL);
300 }
301
302 PathForReturn = NULL;
303 PathSize = 0;
304
305 for ( Node = (SHELL_MAP_LIST *)GetFirstNode(&gShellMapList.Link)
306 ; !IsNull(&gShellMapList.Link, &Node->Link)
307 ; Node = (SHELL_MAP_LIST *)GetNextNode(&gShellMapList.Link, &Node->Link)
308 ){
309 //
310 // check for exact match
311 //
312 if (DevicePathCompare(DevicePath, &Node->DevicePath) == 0) {
313 ASSERT((PathForReturn == NULL && PathSize == 0) || (PathForReturn != NULL));
314 if (PathSize != 0) {
315 PathForReturn = StrnCatGrow(&PathForReturn, &PathSize, L";", 0);
316 }
317 PathForReturn = StrnCatGrow(&PathForReturn, &PathSize, Node->MapName, 0);
318 }
319 }
320 if (PathForReturn != NULL) {
321 while (!IsDevicePathEndType (*DevicePath)) {
322 *DevicePath = NextDevicePathNode (*DevicePath);
323 }
324 SetDevicePathEndNode (*DevicePath);
325 }
326 /*
327 ///@todo finish code for inexact matches.
328 if (PathForReturn == NULL) {
329 PathSize = 0;
330
331 DevicePathCopy = DuplicateDevicePath(*DevicePath);
332 ASSERT(DevicePathCopy != NULL);
333 Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid, &DevicePathCopy, &PathHandle);
334 ASSERT_EFI_ERROR(Status);
335 //
336 // check each of the device paths we have to get the root of the path for consist mappings
337 //
338 for ( Node = (SHELL_MAP_LIST *)GetFirstNode(&gShellMapList.Link)
339 ; !IsNull(&gShellMapList.Link, &Node->Link)
340 ; Node = (SHELL_MAP_LIST *)GetNextNode(&gShellMapList.Link, &Node->Link)
341 ){
342 if ((Node->Flags & SHELL_MAP_FLAGS_CONSIST) == 0) {
343 continue;
344 }
345 MapPathCopy = DuplicateDevicePath(Node->DevicePath);
346 ASSERT(MapPathCopy != NULL);
347 Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid, &MapPathCopy, &MapHandle);
348 if (MapHandle == PathHandle) {
349
350 *DevicePath = DevicePathCopy;
351
352 MapPathCopy = NULL;
353 DevicePathCopy = NULL;
354 PathForReturn = StrnCatGrow(&PathForReturn, &PathSize, Node->MapName, 0);
355 PathForReturn = StrnCatGrow(&PathForReturn, &PathSize, L";", 0);
356 break;
357 }
358 }
359 //
360 // now add on the non-consistent mappings
361 //
362 for ( Node = (SHELL_MAP_LIST *)GetFirstNode(&gShellMapList.Link)
363 ; !IsNull(&gShellMapList.Link, &Node->Link)
364 ; Node = (SHELL_MAP_LIST *)GetNextNode(&gShellMapList.Link, &Node->Link)
365 ){
366 if ((Node->Flags & SHELL_MAP_FLAGS_CONSIST) != 0) {
367 continue;
368 }
369 MapPathCopy = Node->DevicePath;
370 ASSERT(MapPathCopy != NULL);
371 Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid, &MapPathCopy, &MapHandle);
372 if (MapHandle == PathHandle) {
373 PathForReturn = StrnCatGrow(&PathForReturn, &PathSize, Node->MapName, 0);
374 PathForReturn = StrnCatGrow(&PathForReturn, &PathSize, L";", 0);
375 break;
376 }
377 }
378 }
379 */
380
381 return (AddBufferToFreeList(PathForReturn));
382 }
383
384 /**
385 Converts a device path to a file system-style path.
386
387 This function converts a device path to a file system path by replacing part, or all, of
388 the device path with the file-system mapping. If there are more than one application
389 file system mappings, the one that most closely matches Path will be used.
390
391 @param Path The pointer to the device path
392
393 @retval NULL the device path could not be found.
394 @return all The pointer of the NULL-terminated file path. The path
395 is callee-allocated and should be freed by the caller.
396 **/
397 CHAR16 *
398 EFIAPI
399 EfiShellGetFilePathFromDevicePath(
400 IN CONST EFI_DEVICE_PATH_PROTOCOL *Path
401 )
402 {
403 EFI_DEVICE_PATH_PROTOCOL *DevicePathCopy;
404 EFI_DEVICE_PATH_PROTOCOL *MapPathCopy;
405 SHELL_MAP_LIST *MapListItem;
406 CHAR16 *PathForReturn;
407 UINTN PathSize;
408 EFI_HANDLE PathHandle;
409 EFI_HANDLE MapHandle;
410 EFI_STATUS Status;
411 FILEPATH_DEVICE_PATH *FilePath;
412 FILEPATH_DEVICE_PATH *AlignedNode;
413
414 PathForReturn = NULL;
415 PathSize = 0;
416
417 DevicePathCopy = (EFI_DEVICE_PATH_PROTOCOL*)Path;
418 ASSERT(DevicePathCopy != NULL);
419 if (DevicePathCopy == NULL) {
420 return (NULL);
421 }
422 ///@todo BlockIo?
423 Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid, &DevicePathCopy, &PathHandle);
424
425 if (EFI_ERROR(Status)) {
426 return (NULL);
427 }
428 //
429 // check each of the device paths we have to get the root of the path
430 //
431 for ( MapListItem = (SHELL_MAP_LIST *)GetFirstNode(&gShellMapList.Link)
432 ; !IsNull(&gShellMapList.Link, &MapListItem->Link)
433 ; MapListItem = (SHELL_MAP_LIST *)GetNextNode(&gShellMapList.Link, &MapListItem->Link)
434 ){
435 MapPathCopy = (EFI_DEVICE_PATH_PROTOCOL*)MapListItem->DevicePath;
436 ASSERT(MapPathCopy != NULL);
437 ///@todo BlockIo?
438 Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid, &MapPathCopy, &MapHandle);
439 if (MapHandle == PathHandle) {
440 ASSERT((PathForReturn == NULL && PathSize == 0) || (PathForReturn != NULL));
441 PathForReturn = StrnCatGrow(&PathForReturn, &PathSize, MapListItem->MapName, 0);
442 //
443 // go through all the remaining nodes in the device path
444 //
445 for ( FilePath = (FILEPATH_DEVICE_PATH*)DevicePathCopy
446 ; !IsDevicePathEnd (&FilePath->Header)
447 ; FilePath = (FILEPATH_DEVICE_PATH*)NextDevicePathNode (&FilePath->Header)
448 ){
449 //
450 // all the rest should be file path nodes
451 //
452 if ((DevicePathType(&FilePath->Header) != MEDIA_DEVICE_PATH) ||
453 (DevicePathSubType(&FilePath->Header) != MEDIA_FILEPATH_DP)) {
454 FreePool(PathForReturn);
455 PathForReturn = NULL;
456 ASSERT(FALSE);
457 } else {
458 //
459 // append the path part onto the filepath.
460 //
461 ASSERT((PathForReturn == NULL && PathSize == 0) || (PathForReturn != NULL));
462
463 AlignedNode = AllocateCopyPool (DevicePathNodeLength(FilePath), FilePath);
464 ASSERT (AlignedNode != NULL);
465
466 // File Path Device Path Nodes 'can optionally add a "\" separator to
467 // the beginning and/or the end of the Path Name string.'
468 // (UEFI Spec 2.4 section 9.3.6.4).
469 // If necessary, add a "\", but otherwise don't
470 // (This is specified in the above section, and also implied by the
471 // UEFI Shell spec section 3.7)
472 if ((PathSize != 0) &&
473 (PathForReturn != NULL) &&
474 (PathForReturn[PathSize - 1] != L'\\') &&
475 (AlignedNode->PathName[0] != L'\\')) {
476 PathForReturn = StrnCatGrow (&PathForReturn, &PathSize, L"\\", 1);
477 }
478
479 PathForReturn = StrnCatGrow(&PathForReturn, &PathSize, AlignedNode->PathName, 0);
480 FreePool(AlignedNode);
481 }
482 } // for loop of remaining nodes
483 }
484 if (PathForReturn != NULL) {
485 break;
486 }
487 } // for loop of paths to check
488 return(PathForReturn);
489 }
490
491 /**
492 Converts a file system style name to a device path.
493
494 This function converts a file system style name to a device path, by replacing any
495 mapping references to the associated device path.
496
497 @param[in] Path The pointer to the path.
498
499 @return The pointer of the file path. The file path is callee
500 allocated and should be freed by the caller.
501 @retval NULL The path could not be found.
502 @retval NULL There was not enough available memory.
503 **/
504 EFI_DEVICE_PATH_PROTOCOL *
505 EFIAPI
506 EfiShellGetDevicePathFromFilePath(
507 IN CONST CHAR16 *Path
508 )
509 {
510 CHAR16 *MapName;
511 CHAR16 *NewPath;
512 CONST CHAR16 *Cwd;
513 UINTN Size;
514 CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath;
515 EFI_DEVICE_PATH_PROTOCOL *DevicePathCopy;
516 EFI_DEVICE_PATH_PROTOCOL *DevicePathCopyForFree;
517 EFI_DEVICE_PATH_PROTOCOL *DevicePathForReturn;
518 EFI_HANDLE Handle;
519 EFI_STATUS Status;
520
521 if (Path == NULL) {
522 return (NULL);
523 }
524
525 MapName = NULL;
526 NewPath = NULL;
527
528 if (StrStr(Path, L":") == NULL) {
529 Cwd = EfiShellGetCurDir(NULL);
530 if (Cwd == NULL) {
531 return (NULL);
532 }
533 Size = StrSize(Cwd);
534 Size += StrSize(Path);
535 NewPath = AllocateZeroPool(Size);
536 if (NewPath == NULL) {
537 return (NULL);
538 }
539 StrCpy(NewPath, Cwd);
540 if (*Path == L'\\') {
541 Path++;
542 while (PathRemoveLastItem(NewPath)) ;
543 }
544 StrCat(NewPath, Path);
545 DevicePathForReturn = EfiShellGetDevicePathFromFilePath(NewPath);
546 FreePool(NewPath);
547 return (DevicePathForReturn);
548 }
549
550 Size = 0;
551 //
552 // find the part before (but including) the : for the map name
553 //
554 ASSERT((MapName == NULL && Size == 0) || (MapName != NULL));
555 MapName = StrnCatGrow(&MapName, &Size, Path, (StrStr(Path, L":")-Path+1));
556 if (MapName == NULL || MapName[StrLen(MapName)-1] != L':') {
557 return (NULL);
558 }
559
560 //
561 // look up the device path in the map
562 //
563 DevicePath = EfiShellGetDevicePathFromMap(MapName);
564 if (DevicePath == NULL) {
565 //
566 // Must have been a bad Mapname
567 //
568 return (NULL);
569 }
570
571 //
572 // make a copy for LocateDevicePath to modify (also save a pointer to call FreePool with)
573 //
574 DevicePathCopyForFree = DevicePathCopy = DuplicateDevicePath(DevicePath);
575 if (DevicePathCopy == NULL) {
576 FreePool(MapName);
577 return (NULL);
578 }
579
580 //
581 // get the handle
582 //
583 ///@todo BlockIo?
584 Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid, &DevicePathCopy, &Handle);
585 if (EFI_ERROR(Status)) {
586 if (DevicePathCopyForFree != NULL) {
587 FreePool(DevicePathCopyForFree);
588 }
589 FreePool(MapName);
590 return (NULL);
591 }
592
593 //
594 // build the full device path
595 //
596 if (*(Path+StrLen(MapName)+1) == CHAR_NULL) {
597 DevicePathForReturn = FileDevicePath(Handle, L"\\");
598 } else {
599 DevicePathForReturn = FileDevicePath(Handle, Path+StrLen(MapName));
600 }
601
602 FreePool(MapName);
603 if (DevicePathCopyForFree != NULL) {
604 FreePool(DevicePathCopyForFree);
605 }
606
607 return (DevicePathForReturn);
608 }
609
610 /**
611 Gets the name of the device specified by the device handle.
612
613 This function gets the user-readable name of the device specified by the device
614 handle. If no user-readable name could be generated, then *BestDeviceName will be
615 NULL and EFI_NOT_FOUND will be returned.
616
617 If EFI_DEVICE_NAME_USE_COMPONENT_NAME is set, then the function will return the
618 device's name using the EFI_COMPONENT_NAME2_PROTOCOL, if present on
619 DeviceHandle.
620
621 If EFI_DEVICE_NAME_USE_DEVICE_PATH is set, then the function will return the
622 device's name using the EFI_DEVICE_PATH_PROTOCOL, if present on DeviceHandle.
623 If both EFI_DEVICE_NAME_USE_COMPONENT_NAME and
624 EFI_DEVICE_NAME_USE_DEVICE_PATH are set, then
625 EFI_DEVICE_NAME_USE_COMPONENT_NAME will have higher priority.
626
627 @param DeviceHandle The handle of the device.
628 @param Flags Determines the possible sources of component names.
629 Valid bits are:
630 EFI_DEVICE_NAME_USE_COMPONENT_NAME
631 EFI_DEVICE_NAME_USE_DEVICE_PATH
632 @param Language A pointer to the language specified for the device
633 name, in the same format as described in the UEFI
634 specification, Appendix M
635 @param BestDeviceName On return, points to the callee-allocated NULL-
636 terminated name of the device. If no device name
637 could be found, points to NULL. The name must be
638 freed by the caller...
639
640 @retval EFI_SUCCESS Get the name successfully.
641 @retval EFI_NOT_FOUND Fail to get the device name.
642 @retval EFI_INVALID_PARAMETER Flags did not have a valid bit set.
643 @retval EFI_INVALID_PARAMETER BestDeviceName was NULL
644 @retval EFI_INVALID_PARAMETER DeviceHandle was NULL
645 **/
646 EFI_STATUS
647 EFIAPI
648 EfiShellGetDeviceName(
649 IN EFI_HANDLE DeviceHandle,
650 IN EFI_SHELL_DEVICE_NAME_FLAGS Flags,
651 IN CHAR8 *Language,
652 OUT CHAR16 **BestDeviceName
653 )
654 {
655 EFI_STATUS Status;
656 EFI_COMPONENT_NAME2_PROTOCOL *CompName2;
657 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
658 EFI_HANDLE *HandleList;
659 UINTN HandleCount;
660 UINTN LoopVar;
661 CHAR16 *DeviceNameToReturn;
662 CHAR8 *Lang;
663 UINTN ParentControllerCount;
664 EFI_HANDLE *ParentControllerBuffer;
665 UINTN ParentDriverCount;
666 EFI_HANDLE *ParentDriverBuffer;
667
668 if (BestDeviceName == NULL ||
669 DeviceHandle == NULL
670 ){
671 return (EFI_INVALID_PARAMETER);
672 }
673
674 //
675 // make sure one of the 2 supported bits is on
676 //
677 if (((Flags & EFI_DEVICE_NAME_USE_COMPONENT_NAME) == 0) &&
678 ((Flags & EFI_DEVICE_NAME_USE_DEVICE_PATH) == 0)) {
679 return (EFI_INVALID_PARAMETER);
680 }
681
682 DeviceNameToReturn = NULL;
683 *BestDeviceName = NULL;
684 HandleList = NULL;
685 HandleCount = 0;
686 Lang = NULL;
687
688 if ((Flags & EFI_DEVICE_NAME_USE_COMPONENT_NAME) != 0) {
689 Status = ParseHandleDatabaseByRelationship(
690 NULL,
691 DeviceHandle,
692 HR_DRIVER_BINDING_HANDLE|HR_DEVICE_DRIVER,
693 &HandleCount,
694 &HandleList);
695 for (LoopVar = 0; LoopVar < HandleCount ; LoopVar++){
696 //
697 // Go through those handles until we get one that passes for GetComponentName
698 //
699 Status = gBS->OpenProtocol(
700 HandleList[LoopVar],
701 &gEfiComponentName2ProtocolGuid,
702 (VOID**)&CompName2,
703 gImageHandle,
704 NULL,
705 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
706 if (EFI_ERROR(Status)) {
707 Status = gBS->OpenProtocol(
708 HandleList[LoopVar],
709 &gEfiComponentNameProtocolGuid,
710 (VOID**)&CompName2,
711 gImageHandle,
712 NULL,
713 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
714 }
715
716 if (EFI_ERROR(Status)) {
717 continue;
718 }
719 Lang = GetBestLanguageForDriver(CompName2->SupportedLanguages, Language, FALSE);
720 Status = CompName2->GetControllerName(CompName2, DeviceHandle, NULL, Lang, &DeviceNameToReturn);
721 FreePool(Lang);
722 Lang = NULL;
723 if (!EFI_ERROR(Status) && DeviceNameToReturn != NULL) {
724 break;
725 }
726 }
727 if (HandleList != NULL) {
728 FreePool(HandleList);
729 }
730
731 //
732 // Now check the parent controller using this as the child.
733 //
734 if (DeviceNameToReturn == NULL){
735 PARSE_HANDLE_DATABASE_PARENTS(DeviceHandle, &ParentControllerCount, &ParentControllerBuffer);
736 for (LoopVar = 0 ; LoopVar < ParentControllerCount ; LoopVar++) {
737 PARSE_HANDLE_DATABASE_UEFI_DRIVERS(ParentControllerBuffer[LoopVar], &ParentDriverCount, &ParentDriverBuffer);
738 for (HandleCount = 0 ; HandleCount < ParentDriverCount ; HandleCount++) {
739 //
740 // try using that driver's component name with controller and our driver as the child.
741 //
742 Status = gBS->OpenProtocol(
743 ParentDriverBuffer[HandleCount],
744 &gEfiComponentName2ProtocolGuid,
745 (VOID**)&CompName2,
746 gImageHandle,
747 NULL,
748 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
749 if (EFI_ERROR(Status)) {
750 Status = gBS->OpenProtocol(
751 ParentDriverBuffer[HandleCount],
752 &gEfiComponentNameProtocolGuid,
753 (VOID**)&CompName2,
754 gImageHandle,
755 NULL,
756 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
757 }
758
759 if (EFI_ERROR(Status)) {
760 continue;
761 }
762 Lang = GetBestLanguageForDriver(CompName2->SupportedLanguages, Language, FALSE);
763 Status = CompName2->GetControllerName(CompName2, ParentControllerBuffer[LoopVar], DeviceHandle, Lang, &DeviceNameToReturn);
764 FreePool(Lang);
765 Lang = NULL;
766 if (!EFI_ERROR(Status) && DeviceNameToReturn != NULL) {
767 break;
768 }
769
770
771
772 }
773 SHELL_FREE_NON_NULL(ParentDriverBuffer);
774 if (!EFI_ERROR(Status) && DeviceNameToReturn != NULL) {
775 break;
776 }
777 }
778 SHELL_FREE_NON_NULL(ParentControllerBuffer);
779 }
780 //
781 // dont return on fail since we will try device path if that bit is on
782 //
783 if (DeviceNameToReturn != NULL){
784 ASSERT(BestDeviceName != NULL);
785 StrnCatGrow(BestDeviceName, NULL, DeviceNameToReturn, 0);
786 return (EFI_SUCCESS);
787 }
788 }
789 if ((Flags & EFI_DEVICE_NAME_USE_DEVICE_PATH) != 0) {
790 Status = gBS->OpenProtocol(
791 DeviceHandle,
792 &gEfiDevicePathProtocolGuid,
793 (VOID**)&DevicePath,
794 gImageHandle,
795 NULL,
796 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
797 if (!EFI_ERROR(Status)) {
798 //
799 // use device path to text on the device path
800 //
801 *BestDeviceName = ConvertDevicePathToText(DevicePath, TRUE, TRUE);
802 return (EFI_SUCCESS);
803 }
804 }
805 //
806 // none of the selected bits worked.
807 //
808 return (EFI_NOT_FOUND);
809 }
810
811 /**
812 Opens the root directory of a device on a handle
813
814 This function opens the root directory of a device and returns a file handle to it.
815
816 @param DeviceHandle The handle of the device that contains the volume.
817 @param FileHandle On exit, points to the file handle corresponding to the root directory on the
818 device.
819
820 @retval EFI_SUCCESS Root opened successfully.
821 @retval EFI_NOT_FOUND EFI_SIMPLE_FILE_SYSTEM could not be found or the root directory
822 could not be opened.
823 @retval EFI_VOLUME_CORRUPTED The data structures in the volume were corrupted.
824 @retval EFI_DEVICE_ERROR The device had an error
825 **/
826 EFI_STATUS
827 EFIAPI
828 EfiShellOpenRootByHandle(
829 IN EFI_HANDLE DeviceHandle,
830 OUT SHELL_FILE_HANDLE *FileHandle
831 )
832 {
833 EFI_STATUS Status;
834 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *SimpleFileSystem;
835 EFI_FILE_PROTOCOL *RealFileHandle;
836 EFI_DEVICE_PATH_PROTOCOL *DevPath;
837
838 //
839 // get the simple file system interface
840 //
841 Status = gBS->OpenProtocol(DeviceHandle,
842 &gEfiSimpleFileSystemProtocolGuid,
843 (VOID**)&SimpleFileSystem,
844 gImageHandle,
845 NULL,
846 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
847 if (EFI_ERROR(Status)) {
848 return (EFI_NOT_FOUND);
849 }
850
851 Status = gBS->OpenProtocol(DeviceHandle,
852 &gEfiDevicePathProtocolGuid,
853 (VOID**)&DevPath,
854 gImageHandle,
855 NULL,
856 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
857 if (EFI_ERROR(Status)) {
858 return (EFI_NOT_FOUND);
859 }
860 //
861 // Open the root volume now...
862 //
863 Status = SimpleFileSystem->OpenVolume(SimpleFileSystem, &RealFileHandle);
864 *FileHandle = ConvertEfiFileProtocolToShellHandle(RealFileHandle, EfiShellGetMapFromDevicePath(&DevPath));
865 return (Status);
866 }
867
868 /**
869 Opens the root directory of a device.
870
871 This function opens the root directory of a device and returns a file handle to it.
872
873 @param DevicePath Points to the device path corresponding to the device where the
874 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL is installed.
875 @param FileHandle On exit, points to the file handle corresponding to the root directory on the
876 device.
877
878 @retval EFI_SUCCESS Root opened successfully.
879 @retval EFI_NOT_FOUND EFI_SIMPLE_FILE_SYSTEM could not be found or the root directory
880 could not be opened.
881 @retval EFI_VOLUME_CORRUPTED The data structures in the volume were corrupted.
882 @retval EFI_DEVICE_ERROR The device had an error
883 @retval EFI_INVALID_PARAMETER FileHandle is NULL.
884 **/
885 EFI_STATUS
886 EFIAPI
887 EfiShellOpenRoot(
888 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
889 OUT SHELL_FILE_HANDLE *FileHandle
890 )
891 {
892 EFI_STATUS Status;
893 EFI_HANDLE Handle;
894
895 if (FileHandle == NULL) {
896 return (EFI_INVALID_PARAMETER);
897 }
898
899 //
900 // find the handle of the device with that device handle and the file system
901 //
902 ///@todo BlockIo?
903 Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid,
904 &DevicePath,
905 &Handle);
906 if (EFI_ERROR(Status)) {
907 return (EFI_NOT_FOUND);
908 }
909
910 return (EfiShellOpenRootByHandle(Handle, FileHandle));
911 }
912
913 /**
914 Returns whether any script files are currently being processed.
915
916 @retval TRUE There is at least one script file active.
917 @retval FALSE No script files are active now.
918
919 **/
920 BOOLEAN
921 EFIAPI
922 EfiShellBatchIsActive (
923 VOID
924 )
925 {
926 if (ShellCommandGetCurrentScriptFile() == NULL) {
927 return (FALSE);
928 }
929 return (TRUE);
930 }
931
932 /**
933 Worker function to open a file based on a device path. this will open the root
934 of the volume and then traverse down to the file itself.
935
936 @param DevicePath Device Path of the file.
937 @param FileHandle Pointer to the file upon a successful return.
938 @param OpenMode mode to open file in.
939 @param Attributes the File Attributes to use when creating a new file.
940
941 @retval EFI_SUCCESS the file is open and FileHandle is valid
942 @retval EFI_UNSUPPORTED the device path cotained non-path elements
943 @retval other an error ocurred.
944 **/
945 EFI_STATUS
946 EFIAPI
947 InternalOpenFileDevicePath(
948 IN OUT EFI_DEVICE_PATH_PROTOCOL *DevicePath,
949 OUT SHELL_FILE_HANDLE *FileHandle,
950 IN UINT64 OpenMode,
951 IN UINT64 Attributes OPTIONAL
952 )
953 {
954 EFI_STATUS Status;
955 FILEPATH_DEVICE_PATH *FilePathNode;
956 EFI_HANDLE Handle;
957 SHELL_FILE_HANDLE ShellHandle;
958 EFI_FILE_PROTOCOL *Handle1;
959 EFI_FILE_PROTOCOL *Handle2;
960 FILEPATH_DEVICE_PATH *AlignedNode;
961
962 if (FileHandle == NULL) {
963 return (EFI_INVALID_PARAMETER);
964 }
965 *FileHandle = NULL;
966 Handle1 = NULL;
967 Handle2 = NULL;
968 Handle = NULL;
969 ShellHandle = NULL;
970 FilePathNode = NULL;
971 AlignedNode = NULL;
972
973 Status = EfiShellOpenRoot(DevicePath, &ShellHandle);
974
975 if (!EFI_ERROR(Status)) {
976 Handle1 = ConvertShellHandleToEfiFileProtocol(ShellHandle);
977 if (Handle1 != NULL) {
978 //
979 // chop off the begining part before the file system part...
980 //
981 ///@todo BlockIo?
982 Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid,
983 &DevicePath,
984 &Handle);
985 if (!EFI_ERROR(Status)) {
986 //
987 // To access as a file system, the file path should only
988 // contain file path components. Follow the file path nodes
989 // and find the target file
990 //
991 for ( FilePathNode = (FILEPATH_DEVICE_PATH *)DevicePath
992 ; !IsDevicePathEnd (&FilePathNode->Header)
993 ; FilePathNode = (FILEPATH_DEVICE_PATH *) NextDevicePathNode (&FilePathNode->Header)
994 ){
995 SHELL_FREE_NON_NULL(AlignedNode);
996 AlignedNode = AllocateCopyPool (DevicePathNodeLength(FilePathNode), FilePathNode);
997 //
998 // For file system access each node should be a file path component
999 //
1000 if (DevicePathType (&FilePathNode->Header) != MEDIA_DEVICE_PATH ||
1001 DevicePathSubType (&FilePathNode->Header) != MEDIA_FILEPATH_DP
1002 ) {
1003 Status = EFI_UNSUPPORTED;
1004 break;
1005 }
1006
1007 //
1008 // Open this file path node
1009 //
1010 Handle2 = Handle1;
1011 Handle1 = NULL;
1012
1013 //
1014 // if this is the last node in the DevicePath always create (if that was requested).
1015 //
1016 if (IsDevicePathEnd ((NextDevicePathNode (&FilePathNode->Header)))) {
1017 Status = Handle2->Open (
1018 Handle2,
1019 &Handle1,
1020 AlignedNode->PathName,
1021 OpenMode,
1022 Attributes
1023 );
1024 } else {
1025
1026 //
1027 // This is not the last node and we dont want to 'create' existing
1028 // directory entries...
1029 //
1030
1031 //
1032 // open without letting it create
1033 // prevents error on existing files/directories
1034 //
1035 Status = Handle2->Open (
1036 Handle2,
1037 &Handle1,
1038 AlignedNode->PathName,
1039 OpenMode &~EFI_FILE_MODE_CREATE,
1040 Attributes
1041 );
1042 //
1043 // if above failed now open and create the 'item'
1044 // if OpenMode EFI_FILE_MODE_CREATE bit was on (but disabled above)
1045 //
1046 if ((EFI_ERROR (Status)) && ((OpenMode & EFI_FILE_MODE_CREATE) != 0)) {
1047 Status = Handle2->Open (
1048 Handle2,
1049 &Handle1,
1050 AlignedNode->PathName,
1051 OpenMode,
1052 Attributes
1053 );
1054 }
1055 }
1056 //
1057 // Close the last node
1058 //
1059 ShellInfoObject.NewEfiShellProtocol->CloseFile (Handle2);
1060
1061 //
1062 // If there's been an error, stop
1063 //
1064 if (EFI_ERROR (Status)) {
1065 break;
1066 }
1067 } // for loop
1068 }
1069 }
1070 }
1071 SHELL_FREE_NON_NULL(AlignedNode);
1072 if (EFI_ERROR(Status)) {
1073 if (Handle1 != NULL) {
1074 ShellInfoObject.NewEfiShellProtocol->CloseFile(Handle1);
1075 }
1076 } else {
1077 *FileHandle = ConvertEfiFileProtocolToShellHandle(Handle1, ShellFileHandleGetPath(ShellHandle));
1078 }
1079 return (Status);
1080 }
1081
1082 /**
1083 Creates a file or directory by name.
1084
1085 This function creates an empty new file or directory with the specified attributes and
1086 returns the new file's handle. If the file already exists and is read-only, then
1087 EFI_INVALID_PARAMETER will be returned.
1088
1089 If the file already existed, it is truncated and its attributes updated. If the file is
1090 created successfully, the FileHandle is the file's handle, else, the FileHandle is NULL.
1091
1092 If the file name begins with >v, then the file handle which is returned refers to the
1093 shell environment variable with the specified name. If the shell environment variable
1094 already exists and is non-volatile then EFI_INVALID_PARAMETER is returned.
1095
1096 @param FileName Pointer to NULL-terminated file path
1097 @param FileAttribs The new file's attrbiutes. the different attributes are
1098 described in EFI_FILE_PROTOCOL.Open().
1099 @param FileHandle On return, points to the created file handle or directory's handle
1100
1101 @retval EFI_SUCCESS The file was opened. FileHandle points to the new file's handle.
1102 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
1103 @retval EFI_UNSUPPORTED could not open the file path
1104 @retval EFI_NOT_FOUND the specified file could not be found on the devide, or could not
1105 file the file system on the device.
1106 @retval EFI_NO_MEDIA the device has no medium.
1107 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the medium is no
1108 longer supported.
1109 @retval EFI_DEVICE_ERROR The device reported an error or can't get the file path according
1110 the DirName.
1111 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
1112 @retval EFI_WRITE_PROTECTED An attempt was made to create a file, or open a file for write
1113 when the media is write-protected.
1114 @retval EFI_ACCESS_DENIED The service denied access to the file.
1115 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the file.
1116 @retval EFI_VOLUME_FULL The volume is full.
1117 **/
1118 EFI_STATUS
1119 EFIAPI
1120 EfiShellCreateFile(
1121 IN CONST CHAR16 *FileName,
1122 IN UINT64 FileAttribs,
1123 OUT SHELL_FILE_HANDLE *FileHandle
1124 )
1125 {
1126 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
1127 EFI_STATUS Status;
1128
1129 //
1130 // Is this for an environment variable
1131 // do we start with >v
1132 //
1133 if (StrStr(FileName, L">v") == FileName) {
1134 if (!IsVolatileEnv(FileName+2)) {
1135 return (EFI_INVALID_PARAMETER);
1136 }
1137 *FileHandle = CreateFileInterfaceEnv(FileName+2);
1138 return (EFI_SUCCESS);
1139 }
1140
1141 //
1142 // We are opening a regular file.
1143 //
1144 DevicePath = EfiShellGetDevicePathFromFilePath(FileName);
1145 if (DevicePath == NULL) {
1146 return (EFI_NOT_FOUND);
1147 }
1148
1149 Status = InternalOpenFileDevicePath(DevicePath, FileHandle, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE|EFI_FILE_MODE_CREATE, FileAttribs);
1150 FreePool(DevicePath);
1151
1152 return(Status);
1153 }
1154
1155 /**
1156 Register a GUID and a localized human readable name for it.
1157
1158 If Guid is not assigned a name, then assign GuidName to Guid. This list of GUID
1159 names must be used whenever a shell command outputs GUID information.
1160
1161 This function is only available when the major and minor versions in the
1162 EfiShellProtocol are greater than or equal to 2 and 1, respectively.
1163
1164 @param[in] Guid A pointer to the GUID being registered.
1165 @param[in] GuidName A pointer to the localized name for the GUID being registered.
1166
1167 @retval EFI_SUCCESS The operation was successful.
1168 @retval EFI_INVALID_PARAMETER Guid was NULL.
1169 @retval EFI_INVALID_PARAMETER GuidName was NULL.
1170 @retval EFI_ACCESS_DENIED Guid already is assigned a name.
1171 **/
1172 EFI_STATUS
1173 EFIAPI
1174 EfiShellRegisterGuidName(
1175 IN CONST EFI_GUID *Guid,
1176 IN CONST CHAR16 *GuidName
1177 )
1178 {
1179 return (AddNewGuidNameMapping(Guid, GuidName, NULL));
1180 }
1181
1182 /**
1183 Opens a file or a directory by file name.
1184
1185 This function opens the specified file in the specified OpenMode and returns a file
1186 handle.
1187 If the file name begins with >v, then the file handle which is returned refers to the
1188 shell environment variable with the specified name. If the shell environment variable
1189 exists, is non-volatile and the OpenMode indicates EFI_FILE_MODE_WRITE, then
1190 EFI_INVALID_PARAMETER is returned.
1191
1192 If the file name is >i, then the file handle which is returned refers to the standard
1193 input. If the OpenMode indicates EFI_FILE_MODE_WRITE, then EFI_INVALID_PARAMETER
1194 is returned.
1195
1196 If the file name is >o, then the file handle which is returned refers to the standard
1197 output. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER
1198 is returned.
1199
1200 If the file name is >e, then the file handle which is returned refers to the standard
1201 error. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER
1202 is returned.
1203
1204 If the file name is NUL, then the file handle that is returned refers to the standard NUL
1205 file. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER is
1206 returned.
1207
1208 If return EFI_SUCCESS, the FileHandle is the opened file's handle, else, the
1209 FileHandle is NULL.
1210
1211 @param FileName Points to the NULL-terminated UCS-2 encoded file name.
1212 @param FileHandle On return, points to the file handle.
1213 @param OpenMode File open mode. Either EFI_FILE_MODE_READ or
1214 EFI_FILE_MODE_WRITE from section 12.4 of the UEFI
1215 Specification.
1216 @retval EFI_SUCCESS The file was opened. FileHandle has the opened file's handle.
1217 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value. FileHandle is NULL.
1218 @retval EFI_UNSUPPORTED Could not open the file path. FileHandle is NULL.
1219 @retval EFI_NOT_FOUND The specified file could not be found on the device or the file
1220 system could not be found on the device. FileHandle is NULL.
1221 @retval EFI_NO_MEDIA The device has no medium. FileHandle is NULL.
1222 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the medium is no
1223 longer supported. FileHandle is NULL.
1224 @retval EFI_DEVICE_ERROR The device reported an error or can't get the file path according
1225 the FileName. FileHandle is NULL.
1226 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted. FileHandle is NULL.
1227 @retval EFI_WRITE_PROTECTED An attempt was made to create a file, or open a file for write
1228 when the media is write-protected. FileHandle is NULL.
1229 @retval EFI_ACCESS_DENIED The service denied access to the file. FileHandle is NULL.
1230 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the file. FileHandle
1231 is NULL.
1232 @retval EFI_VOLUME_FULL The volume is full. FileHandle is NULL.
1233 **/
1234 EFI_STATUS
1235 EFIAPI
1236 EfiShellOpenFileByName(
1237 IN CONST CHAR16 *FileName,
1238 OUT SHELL_FILE_HANDLE *FileHandle,
1239 IN UINT64 OpenMode
1240 )
1241 {
1242 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
1243 EFI_STATUS Status;
1244
1245 *FileHandle = NULL;
1246
1247 //
1248 // Is this for StdIn
1249 //
1250 if (StrCmp(FileName, L">i") == 0) {
1251 //
1252 // make sure not writing to StdIn
1253 //
1254 if ((OpenMode & EFI_FILE_MODE_WRITE) != 0) {
1255 return (EFI_INVALID_PARAMETER);
1256 }
1257 *FileHandle = ShellInfoObject.NewShellParametersProtocol->StdIn;
1258 ASSERT(*FileHandle != NULL);
1259 return (EFI_SUCCESS);
1260 }
1261
1262 //
1263 // Is this for StdOut
1264 //
1265 if (StrCmp(FileName, L">o") == 0) {
1266 //
1267 // make sure not writing to StdIn
1268 //
1269 if ((OpenMode & EFI_FILE_MODE_READ) != 0) {
1270 return (EFI_INVALID_PARAMETER);
1271 }
1272 *FileHandle = &FileInterfaceStdOut;
1273 return (EFI_SUCCESS);
1274 }
1275
1276 //
1277 // Is this for NUL file
1278 //
1279 if (StrCmp(FileName, L"NUL") == 0) {
1280 *FileHandle = &FileInterfaceNulFile;
1281 return (EFI_SUCCESS);
1282 }
1283
1284 //
1285 // Is this for StdErr
1286 //
1287 if (StrCmp(FileName, L">e") == 0) {
1288 //
1289 // make sure not writing to StdIn
1290 //
1291 if ((OpenMode & EFI_FILE_MODE_READ) != 0) {
1292 return (EFI_INVALID_PARAMETER);
1293 }
1294 *FileHandle = &FileInterfaceStdErr;
1295 return (EFI_SUCCESS);
1296 }
1297
1298 //
1299 // Is this for an environment variable
1300 // do we start with >v
1301 //
1302 if (StrStr(FileName, L">v") == FileName) {
1303 if (!IsVolatileEnv(FileName+2) &&
1304 ((OpenMode & EFI_FILE_MODE_WRITE) != 0)) {
1305 return (EFI_INVALID_PARAMETER);
1306 }
1307 *FileHandle = CreateFileInterfaceEnv(FileName+2);
1308 return (EFI_SUCCESS);
1309 }
1310
1311 //
1312 // We are opening a regular file.
1313 //
1314 DevicePath = EfiShellGetDevicePathFromFilePath(FileName);
1315 // DEBUG_CODE(InternalShellProtocolDebugPrintMessage (NULL, DevicePath););
1316 if (DevicePath == NULL) {
1317 return (EFI_NOT_FOUND);
1318 }
1319
1320 //
1321 // Copy the device path, open the file, then free the memory
1322 //
1323 Status = InternalOpenFileDevicePath(DevicePath, FileHandle, OpenMode, 0); // 0 = no specific file attributes
1324 FreePool(DevicePath);
1325
1326 return(Status);
1327 }
1328
1329 /**
1330 Deletes the file specified by the file name.
1331
1332 This function deletes a file.
1333
1334 @param FileName Points to the NULL-terminated file name.
1335
1336 @retval EFI_SUCCESS The file was closed and deleted, and the handle was closed.
1337 @retval EFI_WARN_DELETE_FAILURE The handle was closed but the file was not deleted.
1338 @sa EfiShellCreateFile
1339 **/
1340 EFI_STATUS
1341 EFIAPI
1342 EfiShellDeleteFileByName(
1343 IN CONST CHAR16 *FileName
1344 )
1345 {
1346 SHELL_FILE_HANDLE FileHandle;
1347 EFI_STATUS Status;
1348
1349 FileHandle = NULL;
1350
1351 //
1352 // get a handle to the file
1353 //
1354 Status = EfiShellCreateFile(FileName,
1355 0,
1356 &FileHandle);
1357 if (EFI_ERROR(Status)) {
1358 return (Status);
1359 }
1360 //
1361 // now delete the file
1362 //
1363 return (ShellInfoObject.NewEfiShellProtocol->DeleteFile(FileHandle));
1364 }
1365
1366 /**
1367 Disables the page break output mode.
1368 **/
1369 VOID
1370 EFIAPI
1371 EfiShellDisablePageBreak (
1372 VOID
1373 )
1374 {
1375 ShellInfoObject.PageBreakEnabled = FALSE;
1376 }
1377
1378 /**
1379 Enables the page break output mode.
1380 **/
1381 VOID
1382 EFIAPI
1383 EfiShellEnablePageBreak (
1384 VOID
1385 )
1386 {
1387 ShellInfoObject.PageBreakEnabled = TRUE;
1388 }
1389
1390 /**
1391 internal worker function to load and run an image via device path.
1392
1393 @param ParentImageHandle A handle of the image that is executing the specified
1394 command line.
1395 @param DevicePath device path of the file to execute
1396 @param CommandLine Points to the NULL-terminated UCS-2 encoded string
1397 containing the command line. If NULL then the command-
1398 line will be empty.
1399 @param Environment Points to a NULL-terminated array of environment
1400 variables with the format 'x=y', where x is the
1401 environment variable name and y is the value. If this
1402 is NULL, then the current shell environment is used.
1403
1404 @param[out] StartImageStatus Returned status from gBS->StartImage.
1405 @param[out] ExitDataSize ExitDataSize as returned from gBS->StartImage
1406 @param[out] ExitData ExitData as returned from gBS->StartImage
1407
1408 @retval EFI_SUCCESS The command executed successfully. The status code
1409 returned by the command is pointed to by StatusCode.
1410 @retval EFI_INVALID_PARAMETER The parameters are invalid.
1411 @retval EFI_OUT_OF_RESOURCES Out of resources.
1412 @retval EFI_UNSUPPORTED Nested shell invocations are not allowed.
1413 **/
1414 EFI_STATUS
1415 EFIAPI
1416 InternalShellExecuteDevicePath(
1417 IN CONST EFI_HANDLE *ParentImageHandle,
1418 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath,
1419 IN CONST CHAR16 *CommandLine OPTIONAL,
1420 IN CONST CHAR16 **Environment OPTIONAL,
1421 OUT EFI_STATUS *StartImageStatus OPTIONAL,
1422 OUT UINTN *ExitDataSize OPTIONAL,
1423 OUT CHAR16 **ExitData OPTIONAL
1424 )
1425 {
1426 EFI_STATUS Status;
1427 EFI_STATUS StartStatus;
1428 EFI_STATUS CleanupStatus;
1429 EFI_HANDLE NewHandle;
1430 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage;
1431 LIST_ENTRY OrigEnvs;
1432 EFI_SHELL_PARAMETERS_PROTOCOL ShellParamsProtocol;
1433 UINTN InternalExitDataSize;
1434 UINTN *ExitDataSizePtr;
1435 CHAR16 *ImagePath;
1436 UINTN Index;
1437
1438 // ExitDataSize is not OPTIONAL for gBS->BootServices, provide somewhere for
1439 // it to be dumped if the caller doesn't want it.
1440 if (ExitData == NULL) {
1441 ExitDataSizePtr = &InternalExitDataSize;
1442 } else {
1443 ExitDataSizePtr = ExitDataSize;
1444 }
1445
1446 if (ParentImageHandle == NULL) {
1447 return (EFI_INVALID_PARAMETER);
1448 }
1449
1450 InitializeListHead(&OrigEnvs);
1451
1452 NewHandle = NULL;
1453
1454 //
1455 // Load the image with:
1456 // FALSE - not from boot manager and NULL, 0 being not already in memory
1457 //
1458 Status = gBS->LoadImage(
1459 FALSE,
1460 *ParentImageHandle,
1461 (EFI_DEVICE_PATH_PROTOCOL*)DevicePath,
1462 NULL,
1463 0,
1464 &NewHandle);
1465
1466 if (EFI_ERROR(Status)) {
1467 if (NewHandle != NULL) {
1468 gBS->UnloadImage(NewHandle);
1469 }
1470 return (Status);
1471 }
1472 Status = gBS->OpenProtocol(
1473 NewHandle,
1474 &gEfiLoadedImageProtocolGuid,
1475 (VOID**)&LoadedImage,
1476 gImageHandle,
1477 NULL,
1478 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
1479
1480 if (!EFI_ERROR(Status)) {
1481 ASSERT(LoadedImage->LoadOptionsSize == 0);
1482 if (CommandLine != NULL) {
1483 LoadedImage->LoadOptionsSize = (UINT32)StrSize(CommandLine);
1484 LoadedImage->LoadOptions = (VOID*)CommandLine;
1485 }
1486
1487 //
1488 // Save our current environment settings for later restoration if necessary
1489 //
1490 if (Environment != NULL) {
1491 Status = GetEnvironmentVariableList(&OrigEnvs);
1492 if (!EFI_ERROR(Status)) {
1493 Status = SetEnvironmentVariables(Environment);
1494 }
1495 }
1496
1497 //
1498 // Initialize and install a shell parameters protocol on the image.
1499 //
1500 ShellParamsProtocol.StdIn = ShellInfoObject.NewShellParametersProtocol->StdIn;
1501 ShellParamsProtocol.StdOut = ShellInfoObject.NewShellParametersProtocol->StdOut;
1502 ShellParamsProtocol.StdErr = ShellInfoObject.NewShellParametersProtocol->StdErr;
1503 Status = UpdateArgcArgv(&ShellParamsProtocol, CommandLine, NULL, NULL);
1504 ASSERT_EFI_ERROR(Status);
1505 //
1506 // Replace Argv[0] with the full path of the binary we're executing:
1507 // If the command line was "foo", the binary might be called "foo.efi".
1508 // "The first entry in [Argv] is always the full file path of the
1509 // executable" - UEFI Shell Spec section 2.3
1510 //
1511 ImagePath = EfiShellGetFilePathFromDevicePath (DevicePath);
1512 // The image we're executing isn't necessarily in a filesystem - it might
1513 // be memory mapped. In this case EfiShellGetFilePathFromDevicePath will
1514 // return NULL, and we'll leave Argv[0] as UpdateArgcArgv set it.
1515 if (ImagePath != NULL) {
1516 if (ShellParamsProtocol.Argv == NULL) {
1517 // Command line was empty or null.
1518 // (UpdateArgcArgv sets Argv to NULL when CommandLine is "" or NULL)
1519 ShellParamsProtocol.Argv = AllocatePool (sizeof (CHAR16 *));
1520 if (ShellParamsProtocol.Argv == NULL) {
1521 Status = EFI_OUT_OF_RESOURCES;
1522 goto UnloadImage;
1523 }
1524 ShellParamsProtocol.Argc = 1;
1525 } else {
1526 // Free the string UpdateArgcArgv put in Argv[0];
1527 FreePool (ShellParamsProtocol.Argv[0]);
1528 }
1529 ShellParamsProtocol.Argv[0] = ImagePath;
1530 }
1531
1532 Status = gBS->InstallProtocolInterface(&NewHandle, &gEfiShellParametersProtocolGuid, EFI_NATIVE_INTERFACE, &ShellParamsProtocol);
1533 ASSERT_EFI_ERROR(Status);
1534
1535 ///@todo initialize and install ShellInterface protocol on the new image for compatibility if - PcdGetBool(PcdShellSupportOldProtocols)
1536
1537 //
1538 // now start the image, passing up exit data if the caller requested it
1539 //
1540 if (!EFI_ERROR(Status)) {
1541 StartStatus = gBS->StartImage(
1542 NewHandle,
1543 ExitDataSizePtr,
1544 ExitData
1545 );
1546 if (StartImageStatus != NULL) {
1547 *StartImageStatus = StartStatus;
1548 }
1549
1550 CleanupStatus = gBS->UninstallProtocolInterface(
1551 NewHandle,
1552 &gEfiShellParametersProtocolGuid,
1553 &ShellParamsProtocol
1554 );
1555 ASSERT_EFI_ERROR(CleanupStatus);
1556
1557 goto FreeAlloc;
1558 }
1559
1560 UnloadImage:
1561 // Unload image - We should only get here if we didn't call StartImage
1562 gBS->UnloadImage (NewHandle);
1563
1564 FreeAlloc:
1565 // Free Argv (Allocated in UpdateArgcArgv)
1566 if (ShellParamsProtocol.Argv != NULL) {
1567 for (Index = 0; Index < ShellParamsProtocol.Argc; Index++) {
1568 if (ShellParamsProtocol.Argv[Index] != NULL) {
1569 FreePool (ShellParamsProtocol.Argv[Index]);
1570 }
1571 }
1572 FreePool (ShellParamsProtocol.Argv);
1573 }
1574 }
1575
1576 // Restore environment variables
1577 if (!IsListEmpty(&OrigEnvs)) {
1578 CleanupStatus = SetEnvironmentVariableList(&OrigEnvs);
1579 ASSERT_EFI_ERROR (CleanupStatus);
1580 }
1581
1582 return(Status);
1583 }
1584 /**
1585 Execute the command line.
1586
1587 This function creates a nested instance of the shell and executes the specified
1588 command (CommandLine) with the specified environment (Environment). Upon return,
1589 the status code returned by the specified command is placed in StatusCode.
1590
1591 If Environment is NULL, then the current environment is used and all changes made
1592 by the commands executed will be reflected in the current environment. If the
1593 Environment is non-NULL, then the changes made will be discarded.
1594
1595 The CommandLine is executed from the current working directory on the current
1596 device.
1597
1598 @param ParentImageHandle A handle of the image that is executing the specified
1599 command line.
1600 @param CommandLine Points to the NULL-terminated UCS-2 encoded string
1601 containing the command line. If NULL then the command-
1602 line will be empty.
1603 @param Environment Points to a NULL-terminated array of environment
1604 variables with the format 'x=y', where x is the
1605 environment variable name and y is the value. If this
1606 is NULL, then the current shell environment is used.
1607 @param StatusCode Points to the status code returned by the command.
1608
1609 @retval EFI_SUCCESS The command executed successfully. The status code
1610 returned by the command is pointed to by StatusCode.
1611 @retval EFI_INVALID_PARAMETER The parameters are invalid.
1612 @retval EFI_OUT_OF_RESOURCES Out of resources.
1613 @retval EFI_UNSUPPORTED Nested shell invocations are not allowed.
1614 @retval EFI_UNSUPPORTED The support level required for this function is not present.
1615
1616 @sa InternalShellExecuteDevicePath
1617 **/
1618 EFI_STATUS
1619 EFIAPI
1620 EfiShellExecute(
1621 IN EFI_HANDLE *ParentImageHandle,
1622 IN CHAR16 *CommandLine OPTIONAL,
1623 IN CHAR16 **Environment OPTIONAL,
1624 OUT EFI_STATUS *StatusCode OPTIONAL
1625 )
1626 {
1627 EFI_STATUS Status;
1628 CHAR16 *Temp;
1629 EFI_DEVICE_PATH_PROTOCOL *DevPath;
1630 UINTN Size;
1631 UINTN ExitDataSize;
1632 CHAR16 *ExitData;
1633
1634 if ((PcdGet8(PcdShellSupportLevel) < 1)) {
1635 return (EFI_UNSUPPORTED);
1636 }
1637
1638 DevPath = AppendDevicePath (ShellInfoObject.ImageDevPath, ShellInfoObject.FileDevPath);
1639
1640 DEBUG_CODE_BEGIN();
1641 Temp = ConvertDevicePathToText(ShellInfoObject.FileDevPath, TRUE, TRUE);
1642 FreePool(Temp);
1643 Temp = ConvertDevicePathToText(ShellInfoObject.ImageDevPath, TRUE, TRUE);
1644 FreePool(Temp);
1645 Temp = ConvertDevicePathToText(DevPath, TRUE, TRUE);
1646 FreePool(Temp);
1647 DEBUG_CODE_END();
1648
1649 Temp = NULL;
1650 Size = 0;
1651 ASSERT((Temp == NULL && Size == 0) || (Temp != NULL));
1652 StrnCatGrow(&Temp, &Size, L"Shell.efi -_exit ", 0);
1653 StrnCatGrow(&Temp, &Size, CommandLine, 0);
1654
1655 Status = InternalShellExecuteDevicePath(
1656 ParentImageHandle,
1657 DevPath,
1658 Temp,
1659 (CONST CHAR16**)Environment,
1660 StatusCode,
1661 &ExitDataSize,
1662 &ExitData);
1663
1664 if (Status == EFI_ABORTED) {
1665 // If the command exited with an error, the shell should put the exit
1666 // status in ExitData, preceded by a null-terminated string.
1667 ASSERT (ExitDataSize == StrSize (ExitData) + sizeof (SHELL_STATUS));
1668
1669 if (StatusCode != NULL) {
1670 // Skip the null-terminated string
1671 ExitData += StrLen (ExitData) + 1;
1672
1673 // Use CopyMem to avoid alignment faults
1674 CopyMem (StatusCode, ExitData, sizeof (SHELL_STATUS));
1675
1676 // Convert from SHELL_STATUS to EFI_STATUS
1677 // EFI_STATUSes have top bit set when they are errors.
1678 // (See UEFI Spec Appendix D)
1679 if (*StatusCode != SHELL_SUCCESS) {
1680 *StatusCode = (EFI_STATUS) *StatusCode | MAX_BIT;
1681 }
1682 }
1683 FreePool (ExitData);
1684 Status = EFI_SUCCESS;
1685 }
1686
1687 //
1688 // de-allocate and return
1689 //
1690 FreePool(DevPath);
1691 FreePool(Temp);
1692 return(Status);
1693 }
1694
1695 /**
1696 Utility cleanup function for EFI_SHELL_FILE_INFO objects.
1697
1698 1) frees all pointers (non-NULL)
1699 2) Closes the SHELL_FILE_HANDLE
1700
1701 @param FileListNode pointer to the list node to free
1702 **/
1703 VOID
1704 EFIAPI
1705 InternalFreeShellFileInfoNode(
1706 IN EFI_SHELL_FILE_INFO *FileListNode
1707 )
1708 {
1709 if (FileListNode->Info != NULL) {
1710 FreePool((VOID*)FileListNode->Info);
1711 }
1712 if (FileListNode->FileName != NULL) {
1713 FreePool((VOID*)FileListNode->FileName);
1714 }
1715 if (FileListNode->FullName != NULL) {
1716 FreePool((VOID*)FileListNode->FullName);
1717 }
1718 if (FileListNode->Handle != NULL) {
1719 ShellInfoObject.NewEfiShellProtocol->CloseFile(FileListNode->Handle);
1720 }
1721 FreePool(FileListNode);
1722 }
1723 /**
1724 Frees the file list.
1725
1726 This function cleans up the file list and any related data structures. It has no
1727 impact on the files themselves.
1728
1729 @param FileList The file list to free. Type EFI_SHELL_FILE_INFO is
1730 defined in OpenFileList()
1731
1732 @retval EFI_SUCCESS Free the file list successfully.
1733 @retval EFI_INVALID_PARAMETER FileList was NULL or *FileList was NULL;
1734 **/
1735 EFI_STATUS
1736 EFIAPI
1737 EfiShellFreeFileList(
1738 IN EFI_SHELL_FILE_INFO **FileList
1739 )
1740 {
1741 EFI_SHELL_FILE_INFO *ShellFileListItem;
1742
1743 if (FileList == NULL || *FileList == NULL) {
1744 return (EFI_INVALID_PARAMETER);
1745 }
1746
1747 for ( ShellFileListItem = (EFI_SHELL_FILE_INFO*)GetFirstNode(&(*FileList)->Link)
1748 ; !IsListEmpty(&(*FileList)->Link)
1749 ; ShellFileListItem = (EFI_SHELL_FILE_INFO*)GetFirstNode(&(*FileList)->Link)
1750 ){
1751 RemoveEntryList(&ShellFileListItem->Link);
1752 InternalFreeShellFileInfoNode(ShellFileListItem);
1753 }
1754 InternalFreeShellFileInfoNode(*FileList);
1755 *FileList = NULL;
1756 return(EFI_SUCCESS);
1757 }
1758
1759 /**
1760 Deletes the duplicate file names files in the given file list.
1761
1762 This function deletes the reduplicate files in the given file list.
1763
1764 @param FileList A pointer to the first entry in the file list.
1765
1766 @retval EFI_SUCCESS Always success.
1767 @retval EFI_INVALID_PARAMETER FileList was NULL or *FileList was NULL;
1768 **/
1769 EFI_STATUS
1770 EFIAPI
1771 EfiShellRemoveDupInFileList(
1772 IN EFI_SHELL_FILE_INFO **FileList
1773 )
1774 {
1775 EFI_SHELL_FILE_INFO *ShellFileListItem;
1776 EFI_SHELL_FILE_INFO *ShellFileListItem2;
1777 EFI_SHELL_FILE_INFO *TempNode;
1778
1779 if (FileList == NULL || *FileList == NULL) {
1780 return (EFI_INVALID_PARAMETER);
1781 }
1782 for ( ShellFileListItem = (EFI_SHELL_FILE_INFO*)GetFirstNode(&(*FileList)->Link)
1783 ; !IsNull(&(*FileList)->Link, &ShellFileListItem->Link)
1784 ; ShellFileListItem = (EFI_SHELL_FILE_INFO*)GetNextNode(&(*FileList)->Link, &ShellFileListItem->Link)
1785 ){
1786 for ( ShellFileListItem2 = (EFI_SHELL_FILE_INFO*)GetNextNode(&(*FileList)->Link, &ShellFileListItem->Link)
1787 ; !IsNull(&(*FileList)->Link, &ShellFileListItem2->Link)
1788 ; ShellFileListItem2 = (EFI_SHELL_FILE_INFO*)GetNextNode(&(*FileList)->Link, &ShellFileListItem2->Link)
1789 ){
1790 if (gUnicodeCollation->StriColl(
1791 gUnicodeCollation,
1792 (CHAR16*)ShellFileListItem->FullName,
1793 (CHAR16*)ShellFileListItem2->FullName) == 0
1794 ){
1795 TempNode = (EFI_SHELL_FILE_INFO *)GetPreviousNode(
1796 &(*FileList)->Link,
1797 &ShellFileListItem2->Link
1798 );
1799 RemoveEntryList(&ShellFileListItem2->Link);
1800 InternalFreeShellFileInfoNode(ShellFileListItem2);
1801 // Set ShellFileListItem2 to PreviousNode so we don't access Freed
1802 // memory in GetNextNode in the loop expression above.
1803 ShellFileListItem2 = TempNode;
1804 }
1805 }
1806 }
1807 return (EFI_SUCCESS);
1808 }
1809
1810 //
1811 // This is the same structure as the external version, but it has no CONST qualifiers.
1812 //
1813 typedef struct {
1814 LIST_ENTRY Link; ///< Linked list members.
1815 EFI_STATUS Status; ///< Status of opening the file. Valid only if Handle != NULL.
1816 CHAR16 *FullName; ///< Fully qualified filename.
1817 CHAR16 *FileName; ///< name of this file.
1818 SHELL_FILE_HANDLE Handle; ///< Handle for interacting with the opened file or NULL if closed.
1819 EFI_FILE_INFO *Info; ///< Pointer to the FileInfo struct for this file or NULL.
1820 } EFI_SHELL_FILE_INFO_NO_CONST;
1821
1822 /**
1823 Allocates and duplicates a EFI_SHELL_FILE_INFO node.
1824
1825 @param[in] Node The node to copy from.
1826 @param[in] Save TRUE to set Node->Handle to NULL, FALSE otherwise.
1827
1828 @retval NULL a memory allocation error ocurred
1829 @return != NULL a pointer to the new node
1830 **/
1831 EFI_SHELL_FILE_INFO*
1832 EFIAPI
1833 InternalDuplicateShellFileInfo(
1834 IN EFI_SHELL_FILE_INFO *Node,
1835 IN BOOLEAN Save
1836 )
1837 {
1838 EFI_SHELL_FILE_INFO_NO_CONST *NewNode;
1839
1840 //
1841 // try to confirm that the objects are in sync
1842 //
1843 ASSERT(sizeof(EFI_SHELL_FILE_INFO_NO_CONST) == sizeof(EFI_SHELL_FILE_INFO));
1844
1845 NewNode = AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
1846 if (NewNode == NULL) {
1847 return (NULL);
1848 }
1849 NewNode->FullName = AllocateZeroPool(StrSize(Node->FullName));
1850
1851 NewNode->FileName = AllocateZeroPool(StrSize(Node->FileName));
1852 NewNode->Info = AllocateZeroPool((UINTN)Node->Info->Size);
1853 if ( NewNode->FullName == NULL
1854 || NewNode->FileName == NULL
1855 || NewNode->Info == NULL
1856 ){
1857 SHELL_FREE_NON_NULL(NewNode->FullName);
1858 SHELL_FREE_NON_NULL(NewNode->FileName);
1859 SHELL_FREE_NON_NULL(NewNode->Info);
1860 SHELL_FREE_NON_NULL(NewNode);
1861 return(NULL);
1862 }
1863 NewNode->Status = Node->Status;
1864 NewNode->Handle = Node->Handle;
1865 if (!Save) {
1866 Node->Handle = NULL;
1867 }
1868 StrCpy((CHAR16*)NewNode->FullName, Node->FullName);
1869 StrCpy((CHAR16*)NewNode->FileName, Node->FileName);
1870 CopyMem(NewNode->Info, Node->Info, (UINTN)Node->Info->Size);
1871
1872 return((EFI_SHELL_FILE_INFO*)NewNode);
1873 }
1874
1875 /**
1876 Allocates and populates a EFI_SHELL_FILE_INFO structure. if any memory operation
1877 failed it will return NULL.
1878
1879 @param[in] BasePath the Path to prepend onto filename for FullPath
1880 @param[in] Status Status member initial value.
1881 @param[in] FileName FileName member initial value.
1882 @param[in] Handle Handle member initial value.
1883 @param[in] Info Info struct to copy.
1884
1885 @retval NULL An error ocurred.
1886 @return a pointer to the newly allocated structure.
1887 **/
1888 EFI_SHELL_FILE_INFO *
1889 EFIAPI
1890 CreateAndPopulateShellFileInfo(
1891 IN CONST CHAR16 *BasePath,
1892 IN CONST EFI_STATUS Status,
1893 IN CONST CHAR16 *FileName,
1894 IN CONST SHELL_FILE_HANDLE Handle,
1895 IN CONST EFI_FILE_INFO *Info
1896 )
1897 {
1898 EFI_SHELL_FILE_INFO *ShellFileListItem;
1899 CHAR16 *TempString;
1900 UINTN Size;
1901
1902 TempString = NULL;
1903 Size = 0;
1904
1905 ShellFileListItem = AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
1906 if (ShellFileListItem == NULL) {
1907 return (NULL);
1908 }
1909 if (Info != NULL && Info->Size != 0) {
1910 ShellFileListItem->Info = AllocateZeroPool((UINTN)Info->Size);
1911 if (ShellFileListItem->Info == NULL) {
1912 FreePool(ShellFileListItem);
1913 return (NULL);
1914 }
1915 CopyMem(ShellFileListItem->Info, Info, (UINTN)Info->Size);
1916 } else {
1917 ShellFileListItem->Info = NULL;
1918 }
1919 if (FileName != NULL) {
1920 ASSERT(TempString == NULL);
1921 ShellFileListItem->FileName = StrnCatGrow(&TempString, 0, FileName, 0);
1922 if (ShellFileListItem->FileName == NULL) {
1923 FreePool(ShellFileListItem->Info);
1924 FreePool(ShellFileListItem);
1925 return (NULL);
1926 }
1927 } else {
1928 ShellFileListItem->FileName = NULL;
1929 }
1930 Size = 0;
1931 TempString = NULL;
1932 if (BasePath != NULL) {
1933 ASSERT((TempString == NULL && Size == 0) || (TempString != NULL));
1934 TempString = StrnCatGrow(&TempString, &Size, BasePath, 0);
1935 if (TempString == NULL) {
1936 FreePool((VOID*)ShellFileListItem->FileName);
1937 SHELL_FREE_NON_NULL(ShellFileListItem->Info);
1938 FreePool(ShellFileListItem);
1939 return (NULL);
1940 }
1941 }
1942 if (ShellFileListItem->FileName != NULL) {
1943 ASSERT((TempString == NULL && Size == 0) || (TempString != NULL));
1944 TempString = StrnCatGrow(&TempString, &Size, ShellFileListItem->FileName, 0);
1945 if (TempString == NULL) {
1946 FreePool((VOID*)ShellFileListItem->FileName);
1947 FreePool(ShellFileListItem->Info);
1948 FreePool(ShellFileListItem);
1949 return (NULL);
1950 }
1951 }
1952
1953 TempString = PathCleanUpDirectories(TempString);
1954
1955 ShellFileListItem->FullName = TempString;
1956 ShellFileListItem->Status = Status;
1957 ShellFileListItem->Handle = Handle;
1958
1959 return (ShellFileListItem);
1960 }
1961
1962 /**
1963 Find all files in a specified directory.
1964
1965 @param FileDirHandle Handle of the directory to search.
1966 @param FileList On return, points to the list of files in the directory
1967 or NULL if there are no files in the directory.
1968
1969 @retval EFI_SUCCESS File information was returned successfully.
1970 @retval EFI_VOLUME_CORRUPTED The file system structures have been corrupted.
1971 @retval EFI_DEVICE_ERROR The device reported an error.
1972 @retval EFI_NO_MEDIA The device media is not present.
1973 @retval EFI_INVALID_PARAMETER The FileDirHandle was not a directory.
1974 @return An error from FileHandleGetFileName().
1975 **/
1976 EFI_STATUS
1977 EFIAPI
1978 EfiShellFindFilesInDir(
1979 IN SHELL_FILE_HANDLE FileDirHandle,
1980 OUT EFI_SHELL_FILE_INFO **FileList
1981 )
1982 {
1983 EFI_SHELL_FILE_INFO *ShellFileList;
1984 EFI_SHELL_FILE_INFO *ShellFileListItem;
1985 EFI_FILE_INFO *FileInfo;
1986 EFI_STATUS Status;
1987 BOOLEAN NoFile;
1988 CHAR16 *TempString;
1989 CHAR16 *BasePath;
1990 UINTN Size;
1991 CHAR16 *TempSpot;
1992
1993 BasePath = NULL;
1994 Status = FileHandleGetFileName(FileDirHandle, &BasePath);
1995 if (EFI_ERROR(Status)) {
1996 return (Status);
1997 }
1998
1999 if (ShellFileHandleGetPath(FileDirHandle) != NULL) {
2000 TempString = NULL;
2001 Size = 0;
2002 TempString = StrnCatGrow(&TempString, &Size, ShellFileHandleGetPath(FileDirHandle), 0);
2003 if (TempString == NULL) {
2004 SHELL_FREE_NON_NULL(BasePath);
2005 return (EFI_OUT_OF_RESOURCES);
2006 }
2007 TempSpot = StrStr(TempString, L";");
2008
2009 if (TempSpot != NULL) {
2010 *TempSpot = CHAR_NULL;
2011 }
2012
2013 TempString = StrnCatGrow(&TempString, &Size, BasePath, 0);
2014 if (TempString == NULL) {
2015 SHELL_FREE_NON_NULL(BasePath);
2016 return (EFI_OUT_OF_RESOURCES);
2017 }
2018 SHELL_FREE_NON_NULL(BasePath);
2019 BasePath = TempString;
2020 }
2021
2022 NoFile = FALSE;
2023 ShellFileList = NULL;
2024 ShellFileListItem = NULL;
2025 FileInfo = NULL;
2026 Status = EFI_SUCCESS;
2027
2028
2029 for ( Status = FileHandleFindFirstFile(FileDirHandle, &FileInfo)
2030 ; !EFI_ERROR(Status) && !NoFile
2031 ; Status = FileHandleFindNextFile(FileDirHandle, FileInfo, &NoFile)
2032 ){
2033 //
2034 // allocate a new EFI_SHELL_FILE_INFO and populate it...
2035 //
2036 ShellFileListItem = CreateAndPopulateShellFileInfo(
2037 BasePath,
2038 EFI_SUCCESS, // success since we didnt fail to open it...
2039 FileInfo->FileName,
2040 NULL, // no handle since not open
2041 FileInfo);
2042
2043 if (ShellFileList == NULL) {
2044 ShellFileList = (EFI_SHELL_FILE_INFO*)AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
2045 ASSERT(ShellFileList != NULL);
2046 InitializeListHead(&ShellFileList->Link);
2047 }
2048 InsertTailList(&ShellFileList->Link, &ShellFileListItem->Link);
2049 }
2050 if (EFI_ERROR(Status)) {
2051 EfiShellFreeFileList(&ShellFileList);
2052 *FileList = NULL;
2053 } else {
2054 *FileList = ShellFileList;
2055 }
2056 SHELL_FREE_NON_NULL(BasePath);
2057 return(Status);
2058 }
2059
2060 /**
2061 Get the GUID value from a human readable name.
2062
2063 If GuidName is a known GUID name, then update Guid to have the correct value for
2064 that GUID.
2065
2066 This function is only available when the major and minor versions in the
2067 EfiShellProtocol are greater than or equal to 2 and 1, respectively.
2068
2069 @param[in] GuidName A pointer to the localized name for the GUID being queried.
2070 @param[out] Guid A pointer to the GUID structure to be filled in.
2071
2072 @retval EFI_SUCCESS The operation was successful.
2073 @retval EFI_INVALID_PARAMETER Guid was NULL.
2074 @retval EFI_INVALID_PARAMETER GuidName was NULL.
2075 @retval EFI_NOT_FOUND GuidName is not a known GUID Name.
2076 **/
2077 EFI_STATUS
2078 EFIAPI
2079 EfiShellGetGuidFromName(
2080 IN CONST CHAR16 *GuidName,
2081 OUT EFI_GUID *Guid
2082 )
2083 {
2084 EFI_GUID *NewGuid;
2085 EFI_STATUS Status;
2086
2087 if (Guid == NULL || GuidName == NULL) {
2088 return (EFI_INVALID_PARAMETER);
2089 }
2090
2091 Status = GetGuidFromStringName(GuidName, NULL, &NewGuid);
2092
2093 if (!EFI_ERROR(Status)) {
2094 CopyGuid(NewGuid, Guid);
2095 }
2096
2097 return (Status);
2098 }
2099
2100 /**
2101 Get the human readable name for a GUID from the value.
2102
2103 If Guid is assigned a name, then update *GuidName to point to the name. The callee
2104 should not modify the value.
2105
2106 This function is only available when the major and minor versions in the
2107 EfiShellProtocol are greater than or equal to 2 and 1, respectively.
2108
2109 @param[in] Guid A pointer to the GUID being queried.
2110 @param[out] GuidName A pointer to a pointer the localized to name for the GUID being requested
2111
2112 @retval EFI_SUCCESS The operation was successful.
2113 @retval EFI_INVALID_PARAMETER Guid was NULL.
2114 @retval EFI_INVALID_PARAMETER GuidName was NULL.
2115 @retval EFI_NOT_FOUND Guid is not assigned a name.
2116 **/
2117 EFI_STATUS
2118 EFIAPI
2119 EfiShellGetGuidName(
2120 IN CONST EFI_GUID *Guid,
2121 OUT CONST CHAR16 **GuidName
2122 )
2123 {
2124 CHAR16 *Name;
2125
2126 if (Guid == NULL || GuidName == NULL) {
2127 return (EFI_INVALID_PARAMETER);
2128 }
2129
2130 Name = GetStringNameFromGuid(Guid, NULL);
2131 if (Name == NULL || StrLen(Name) == 0) {
2132 SHELL_FREE_NON_NULL(Name);
2133 return (EFI_NOT_FOUND);
2134 }
2135
2136 *GuidName = AddBufferToFreeList(Name);
2137
2138 return (EFI_SUCCESS);
2139 }
2140
2141 /**
2142 Updates a file name to be preceeded by the mapped drive name
2143
2144 @param[in] BasePath the Mapped drive name to prepend
2145 @param[in, out] Path pointer to pointer to the file name to update.
2146
2147 @retval EFI_SUCCESS
2148 @retval EFI_OUT_OF_RESOURCES
2149 **/
2150 EFI_STATUS
2151 EFIAPI
2152 UpdateFileName(
2153 IN CONST CHAR16 *BasePath,
2154 IN OUT CHAR16 **Path
2155 )
2156 {
2157 CHAR16 *Path2;
2158 UINTN Path2Size;
2159
2160 Path2Size = 0;
2161 Path2 = NULL;
2162
2163 ASSERT(Path != NULL);
2164 ASSERT(*Path != NULL);
2165 ASSERT(BasePath != NULL);
2166
2167 //
2168 // convert a local path to an absolute path
2169 //
2170 if (StrStr(*Path, L":") == NULL) {
2171 ASSERT((Path2 == NULL && Path2Size == 0) || (Path2 != NULL));
2172 StrnCatGrow(&Path2, &Path2Size, BasePath, 0);
2173 if (Path2 == NULL) {
2174 return (EFI_OUT_OF_RESOURCES);
2175 }
2176 ASSERT((Path2 == NULL && Path2Size == 0) || (Path2 != NULL));
2177 StrnCatGrow(&Path2, &Path2Size, (*Path)[0] == L'\\'?(*Path) + 1 :*Path, 0);
2178 if (Path2 == NULL) {
2179 return (EFI_OUT_OF_RESOURCES);
2180 }
2181 }
2182
2183 FreePool(*Path);
2184 (*Path) = Path2;
2185
2186 return (EFI_SUCCESS);
2187 }
2188
2189 /**
2190 If FileHandle is a directory then the function reads from FileHandle and reads in
2191 each of the FileInfo structures. If one of them matches the Pattern's first
2192 "level" then it opens that handle and calls itself on that handle.
2193
2194 If FileHandle is a file and matches all of the remaining Pattern (which would be
2195 on its last node), then add a EFI_SHELL_FILE_INFO object for this file to fileList.
2196
2197 Upon a EFI_SUCCESS return fromt he function any the caller is responsible to call
2198 FreeFileList with FileList.
2199
2200 @param[in] FilePattern The FilePattern to check against.
2201 @param[in] UnicodeCollation The pointer to EFI_UNICODE_COLLATION_PROTOCOL structure
2202 @param[in] FileHandle The FileHandle to start with
2203 @param[in, out] FileList pointer to pointer to list of found files.
2204 @param[in] ParentNode The node for the parent. Same file as identified by HANDLE.
2205 @param[in] MapName The file system name this file is on.
2206
2207 @retval EFI_SUCCESS all files were found and the FileList contains a list.
2208 @retval EFI_NOT_FOUND no files were found
2209 @retval EFI_OUT_OF_RESOURCES a memory allocation failed
2210 **/
2211 EFI_STATUS
2212 EFIAPI
2213 ShellSearchHandle(
2214 IN CONST CHAR16 *FilePattern,
2215 IN EFI_UNICODE_COLLATION_PROTOCOL *UnicodeCollation,
2216 IN SHELL_FILE_HANDLE FileHandle,
2217 IN OUT EFI_SHELL_FILE_INFO **FileList,
2218 IN CONST EFI_SHELL_FILE_INFO *ParentNode OPTIONAL,
2219 IN CONST CHAR16 *MapName
2220 )
2221 {
2222 EFI_STATUS Status;
2223 CONST CHAR16 *NextFilePatternStart;
2224 CHAR16 *CurrentFilePattern;
2225 EFI_SHELL_FILE_INFO *ShellInfo;
2226 EFI_SHELL_FILE_INFO *ShellInfoNode;
2227 EFI_SHELL_FILE_INFO *NewShellNode;
2228 EFI_FILE_INFO *FileInfo;
2229 BOOLEAN Directory;
2230 CHAR16 *NewFullName;
2231 UINTN Size;
2232
2233 if ( FilePattern == NULL
2234 || UnicodeCollation == NULL
2235 || FileList == NULL
2236 ){
2237 return (EFI_INVALID_PARAMETER);
2238 }
2239 ShellInfo = NULL;
2240 CurrentFilePattern = NULL;
2241
2242 if (*FilePattern == L'\\') {
2243 FilePattern++;
2244 }
2245
2246 for( NextFilePatternStart = FilePattern
2247 ; *NextFilePatternStart != CHAR_NULL && *NextFilePatternStart != L'\\'
2248 ; NextFilePatternStart++);
2249
2250 CurrentFilePattern = AllocateZeroPool((NextFilePatternStart-FilePattern+1)*sizeof(CHAR16));
2251 ASSERT(CurrentFilePattern != NULL);
2252 StrnCpy(CurrentFilePattern, FilePattern, NextFilePatternStart-FilePattern);
2253
2254 if (CurrentFilePattern[0] == CHAR_NULL
2255 &&NextFilePatternStart[0] == CHAR_NULL
2256 ){
2257 //
2258 // we want the parent or root node (if no parent)
2259 //
2260 if (ParentNode == NULL) {
2261 //
2262 // We want the root node. create the node.
2263 //
2264 FileInfo = FileHandleGetInfo(FileHandle);
2265 NewShellNode = CreateAndPopulateShellFileInfo(
2266 MapName,
2267 EFI_SUCCESS,
2268 L"\\",
2269 FileHandle,
2270 FileInfo
2271 );
2272 SHELL_FREE_NON_NULL(FileInfo);
2273 } else {
2274 //
2275 // Add the current parameter FileHandle to the list, then end...
2276 //
2277 NewShellNode = InternalDuplicateShellFileInfo((EFI_SHELL_FILE_INFO*)ParentNode, TRUE);
2278 }
2279 if (NewShellNode == NULL) {
2280 Status = EFI_OUT_OF_RESOURCES;
2281 } else {
2282 NewShellNode->Handle = NULL;
2283 if (*FileList == NULL) {
2284 *FileList = AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
2285 InitializeListHead(&((*FileList)->Link));
2286 }
2287
2288 //
2289 // Add to the returning to use list
2290 //
2291 InsertTailList(&(*FileList)->Link, &NewShellNode->Link);
2292
2293 Status = EFI_SUCCESS;
2294 }
2295 } else {
2296 Status = EfiShellFindFilesInDir(FileHandle, &ShellInfo);
2297
2298 if (!EFI_ERROR(Status)){
2299 if (StrStr(NextFilePatternStart, L"\\") != NULL){
2300 Directory = TRUE;
2301 } else {
2302 Directory = FALSE;
2303 }
2304 for ( ShellInfoNode = (EFI_SHELL_FILE_INFO*)GetFirstNode(&ShellInfo->Link)
2305 ; !IsNull (&ShellInfo->Link, &ShellInfoNode->Link)
2306 ; ShellInfoNode = (EFI_SHELL_FILE_INFO*)GetNextNode(&ShellInfo->Link, &ShellInfoNode->Link)
2307 ){
2308 if (UnicodeCollation->MetaiMatch(UnicodeCollation, (CHAR16*)ShellInfoNode->FileName, CurrentFilePattern)){
2309 if (ShellInfoNode->FullName != NULL && StrStr(ShellInfoNode->FullName, L":") == NULL) {
2310 Size = StrSize(ShellInfoNode->FullName);
2311 Size += StrSize(MapName) + sizeof(CHAR16);
2312 NewFullName = AllocateZeroPool(Size);
2313 if (NewFullName == NULL) {
2314 Status = EFI_OUT_OF_RESOURCES;
2315 } else {
2316 StrCpy(NewFullName, MapName);
2317 StrCat(NewFullName, ShellInfoNode->FullName+1);
2318 FreePool((VOID*)ShellInfoNode->FullName);
2319 ShellInfoNode->FullName = NewFullName;
2320 }
2321 }
2322 if (Directory && !EFI_ERROR(Status) && ShellInfoNode->FullName != NULL && ShellInfoNode->FileName != NULL){
2323 //
2324 // should be a directory
2325 //
2326
2327 //
2328 // don't open the . and .. directories
2329 //
2330 if ( (StrCmp(ShellInfoNode->FileName, L".") != 0)
2331 && (StrCmp(ShellInfoNode->FileName, L"..") != 0)
2332 ){
2333 //
2334 //
2335 //
2336 if (EFI_ERROR(Status)) {
2337 break;
2338 }
2339 //
2340 // Open the directory since we need that handle in the next recursion.
2341 //
2342 ShellInfoNode->Status = EfiShellOpenFileByName (ShellInfoNode->FullName, &ShellInfoNode->Handle, EFI_FILE_MODE_READ);
2343
2344 //
2345 // recurse with the next part of the pattern
2346 //
2347 Status = ShellSearchHandle(NextFilePatternStart, UnicodeCollation, ShellInfoNode->Handle, FileList, ShellInfoNode, MapName);
2348 }
2349 } else if (!EFI_ERROR(Status)) {
2350 //
2351 // should be a file
2352 //
2353
2354 //
2355 // copy the information we need into a new Node
2356 //
2357 NewShellNode = InternalDuplicateShellFileInfo(ShellInfoNode, FALSE);
2358 ASSERT(NewShellNode != NULL);
2359 if (NewShellNode == NULL) {
2360 Status = EFI_OUT_OF_RESOURCES;
2361 }
2362 if (*FileList == NULL) {
2363 *FileList = AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
2364 InitializeListHead(&((*FileList)->Link));
2365 }
2366
2367 //
2368 // Add to the returning to use list
2369 //
2370 InsertTailList(&(*FileList)->Link, &NewShellNode->Link);
2371 }
2372 }
2373 if (EFI_ERROR(Status)) {
2374 break;
2375 }
2376 }
2377 if (EFI_ERROR(Status)) {
2378 EfiShellFreeFileList(&ShellInfo);
2379 } else {
2380 Status = EfiShellFreeFileList(&ShellInfo);
2381 }
2382 }
2383 }
2384
2385 FreePool(CurrentFilePattern);
2386 return (Status);
2387 }
2388
2389 /**
2390 Find files that match a specified pattern.
2391
2392 This function searches for all files and directories that match the specified
2393 FilePattern. The FilePattern can contain wild-card characters. The resulting file
2394 information is placed in the file list FileList.
2395
2396 Wildcards are processed
2397 according to the rules specified in UEFI Shell 2.0 spec section 3.7.1.
2398
2399 The files in the file list are not opened. The OpenMode field is set to 0 and the FileInfo
2400 field is set to NULL.
2401
2402 if *FileList is not NULL then it must be a pre-existing and properly initialized list.
2403
2404 @param FilePattern Points to a NULL-terminated shell file path, including wildcards.
2405 @param FileList On return, points to the start of a file list containing the names
2406 of all matching files or else points to NULL if no matching files
2407 were found. only on a EFI_SUCCESS return will; this be non-NULL.
2408
2409 @retval EFI_SUCCESS Files found. FileList is a valid list.
2410 @retval EFI_NOT_FOUND No files found.
2411 @retval EFI_NO_MEDIA The device has no media
2412 @retval EFI_DEVICE_ERROR The device reported an error
2413 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted
2414 **/
2415 EFI_STATUS
2416 EFIAPI
2417 EfiShellFindFiles(
2418 IN CONST CHAR16 *FilePattern,
2419 OUT EFI_SHELL_FILE_INFO **FileList
2420 )
2421 {
2422 EFI_STATUS Status;
2423 CHAR16 *PatternCopy;
2424 CHAR16 *PatternCurrentLocation;
2425 EFI_DEVICE_PATH_PROTOCOL *RootDevicePath;
2426 SHELL_FILE_HANDLE RootFileHandle;
2427 CHAR16 *MapName;
2428 UINTN Count;
2429
2430 if ( FilePattern == NULL
2431 || FileList == NULL
2432 || StrStr(FilePattern, L":") == NULL
2433 ){
2434 return (EFI_INVALID_PARAMETER);
2435 }
2436 Status = EFI_SUCCESS;
2437 RootDevicePath = NULL;
2438 RootFileHandle = NULL;
2439 MapName = NULL;
2440 PatternCopy = AllocateZeroPool(StrSize(FilePattern));
2441 if (PatternCopy == NULL) {
2442 return (EFI_OUT_OF_RESOURCES);
2443 }
2444 StrCpy(PatternCopy, FilePattern);
2445
2446 PatternCopy = PathCleanUpDirectories(PatternCopy);
2447
2448 Count = StrStr(PatternCopy, L":") - PatternCopy;
2449 Count += 2;
2450
2451 ASSERT(MapName == NULL);
2452 MapName = StrnCatGrow(&MapName, NULL, PatternCopy, Count);
2453 if (MapName == NULL) {
2454 Status = EFI_OUT_OF_RESOURCES;
2455 } else {
2456 RootDevicePath = EfiShellGetDevicePathFromFilePath(PatternCopy);
2457 if (RootDevicePath == NULL) {
2458 Status = EFI_INVALID_PARAMETER;
2459 } else {
2460 Status = EfiShellOpenRoot(RootDevicePath, &RootFileHandle);
2461 if (!EFI_ERROR(Status)) {
2462 for ( PatternCurrentLocation = PatternCopy
2463 ; *PatternCurrentLocation != ':'
2464 ; PatternCurrentLocation++);
2465 PatternCurrentLocation++;
2466 Status = ShellSearchHandle(PatternCurrentLocation, gUnicodeCollation, RootFileHandle, FileList, NULL, MapName);
2467 }
2468 FreePool(RootDevicePath);
2469 }
2470 }
2471
2472 SHELL_FREE_NON_NULL(PatternCopy);
2473 SHELL_FREE_NON_NULL(MapName);
2474
2475 return(Status);
2476 }
2477
2478 /**
2479 Opens the files that match the path specified.
2480
2481 This function opens all of the files specified by Path. Wildcards are processed
2482 according to the rules specified in UEFI Shell 2.0 spec section 3.7.1. Each
2483 matching file has an EFI_SHELL_FILE_INFO structure created in a linked list.
2484
2485 @param Path A pointer to the path string.
2486 @param OpenMode Specifies the mode used to open each file, EFI_FILE_MODE_READ or
2487 EFI_FILE_MODE_WRITE.
2488 @param FileList Points to the start of a list of files opened.
2489
2490 @retval EFI_SUCCESS Create the file list successfully.
2491 @return Others Can't create the file list.
2492 **/
2493 EFI_STATUS
2494 EFIAPI
2495 EfiShellOpenFileList(
2496 IN CHAR16 *Path,
2497 IN UINT64 OpenMode,
2498 IN OUT EFI_SHELL_FILE_INFO **FileList
2499 )
2500 {
2501 EFI_STATUS Status;
2502 EFI_SHELL_FILE_INFO *ShellFileListItem;
2503 CHAR16 *Path2;
2504 UINTN Path2Size;
2505 CONST CHAR16 *CurDir;
2506 BOOLEAN Found;
2507
2508 PathCleanUpDirectories(Path);
2509
2510 Path2Size = 0;
2511 Path2 = NULL;
2512
2513 if (FileList == NULL || *FileList == NULL) {
2514 return (EFI_INVALID_PARAMETER);
2515 }
2516
2517 if (*Path == L'.' && *(Path+1) == L'\\') {
2518 Path+=2;
2519 }
2520
2521 //
2522 // convert a local path to an absolute path
2523 //
2524 if (StrStr(Path, L":") == NULL) {
2525 CurDir = EfiShellGetCurDir(NULL);
2526 ASSERT((Path2 == NULL && Path2Size == 0) || (Path2 != NULL));
2527 StrnCatGrow(&Path2, &Path2Size, CurDir, 0);
2528 if (*Path == L'\\') {
2529 Path++;
2530 while (PathRemoveLastItem(Path2)) ;
2531 }
2532 ASSERT((Path2 == NULL && Path2Size == 0) || (Path2 != NULL));
2533 StrnCatGrow(&Path2, &Path2Size, Path, 0);
2534 } else {
2535 ASSERT(Path2 == NULL);
2536 StrnCatGrow(&Path2, NULL, Path, 0);
2537 }
2538
2539 PathCleanUpDirectories (Path2);
2540
2541 //
2542 // do the search
2543 //
2544 Status = EfiShellFindFiles(Path2, FileList);
2545
2546 FreePool(Path2);
2547
2548 if (EFI_ERROR(Status)) {
2549 return (Status);
2550 }
2551
2552 Found = FALSE;
2553 //
2554 // We had no errors so open all the files (that are not already opened...)
2555 //
2556 for ( ShellFileListItem = (EFI_SHELL_FILE_INFO*)GetFirstNode(&(*FileList)->Link)
2557 ; !IsNull(&(*FileList)->Link, &ShellFileListItem->Link)
2558 ; ShellFileListItem = (EFI_SHELL_FILE_INFO*)GetNextNode(&(*FileList)->Link, &ShellFileListItem->Link)
2559 ){
2560 if (ShellFileListItem->Status == 0 && ShellFileListItem->Handle == NULL) {
2561 ShellFileListItem->Status = EfiShellOpenFileByName (ShellFileListItem->FullName, &ShellFileListItem->Handle, OpenMode);
2562 Found = TRUE;
2563 }
2564 }
2565
2566 if (!Found) {
2567 return (EFI_NOT_FOUND);
2568 }
2569 return(EFI_SUCCESS);
2570 }
2571
2572 /**
2573 Gets the environment variable and Attributes, or list of environment variables. Can be
2574 used instead of GetEnv().
2575
2576 This function returns the current value of the specified environment variable and
2577 the Attributes. If no variable name was specified, then all of the known
2578 variables will be returned.
2579
2580 @param[in] Name A pointer to the environment variable name. If Name is NULL,
2581 then the function will return all of the defined shell
2582 environment variables. In the case where multiple environment
2583 variables are being returned, each variable will be terminated
2584 by a NULL, and the list will be terminated by a double NULL.
2585 @param[out] Attributes If not NULL, a pointer to the returned attributes bitmask for
2586 the environment variable. In the case where Name is NULL, and
2587 multiple environment variables are being returned, Attributes
2588 is undefined.
2589
2590 @retval NULL The environment variable doesn't exist.
2591 @return A non-NULL value points to the variable's value. The returned
2592 pointer does not need to be freed by the caller.
2593 **/
2594 CONST CHAR16 *
2595 EFIAPI
2596 EfiShellGetEnvEx(
2597 IN CONST CHAR16 *Name,
2598 OUT UINT32 *Attributes OPTIONAL
2599 )
2600 {
2601 EFI_STATUS Status;
2602 VOID *Buffer;
2603 UINTN Size;
2604 LIST_ENTRY List;
2605 ENV_VAR_LIST *Node;
2606 CHAR16 *CurrentWriteLocation;
2607
2608 Size = 0;
2609 Buffer = NULL;
2610
2611 if (Name == NULL) {
2612 //
2613 // Get all our environment variables
2614 //
2615 InitializeListHead(&List);
2616 Status = GetEnvironmentVariableList(&List);
2617 if (EFI_ERROR(Status)){
2618 return (NULL);
2619 }
2620
2621 //
2622 // Build the semi-colon delimited list. (2 passes)
2623 //
2624 for ( Node = (ENV_VAR_LIST*)GetFirstNode(&List)
2625 ; !IsNull(&List, &Node->Link)
2626 ; Node = (ENV_VAR_LIST*)GetNextNode(&List, &Node->Link)
2627 ){
2628 ASSERT(Node->Key != NULL);
2629 Size += StrSize(Node->Key);
2630 }
2631
2632 Size += 2*sizeof(CHAR16);
2633
2634 Buffer = AllocateZeroPool(Size);
2635 if (Buffer == NULL) {
2636 if (!IsListEmpty (&List)) {
2637 FreeEnvironmentVariableList(&List);
2638 }
2639 return (NULL);
2640 }
2641 CurrentWriteLocation = (CHAR16*)Buffer;
2642
2643 for ( Node = (ENV_VAR_LIST*)GetFirstNode(&List)
2644 ; !IsNull(&List, &Node->Link)
2645 ; Node = (ENV_VAR_LIST*)GetNextNode(&List, &Node->Link)
2646 ){
2647 ASSERT(Node->Key != NULL);
2648 StrCpy(CurrentWriteLocation, Node->Key);
2649 CurrentWriteLocation += StrLen(CurrentWriteLocation) + 1;
2650 }
2651
2652 //
2653 // Free the list...
2654 //
2655 if (!IsListEmpty (&List)) {
2656 FreeEnvironmentVariableList(&List);
2657 }
2658 } else {
2659 //
2660 // We are doing a specific environment variable
2661 //
2662
2663 //
2664 // get the size we need for this EnvVariable
2665 //
2666 Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(Name, Attributes, &Size, Buffer);
2667 if (Status == EFI_BUFFER_TOO_SMALL) {
2668 //
2669 // Allocate the space and recall the get function
2670 //
2671 Buffer = AllocateZeroPool(Size);
2672 ASSERT(Buffer != NULL);
2673 Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(Name, Attributes, &Size, Buffer);
2674 }
2675 //
2676 // we didnt get it (might not exist)
2677 // free the memory if we allocated any and return NULL
2678 //
2679 if (EFI_ERROR(Status)) {
2680 if (Buffer != NULL) {
2681 FreePool(Buffer);
2682 }
2683 return (NULL);
2684 }
2685 }
2686
2687 //
2688 // return the buffer
2689 //
2690 return (AddBufferToFreeList(Buffer));
2691 }
2692
2693 /**
2694 Gets either a single or list of environment variables.
2695
2696 If name is not NULL then this function returns the current value of the specified
2697 environment variable.
2698
2699 If Name is NULL, then a list of all environment variable names is returned. Each is a
2700 NULL terminated string with a double NULL terminating the list.
2701
2702 @param Name A pointer to the environment variable name. If
2703 Name is NULL, then the function will return all
2704 of the defined shell environment variables. In
2705 the case where multiple environment variables are
2706 being returned, each variable will be terminated by
2707 a NULL, and the list will be terminated by a double
2708 NULL.
2709
2710 @retval !=NULL A pointer to the returned string.
2711 The returned pointer does not need to be freed by the caller.
2712
2713 @retval NULL The environment variable doesn't exist or there are
2714 no environment variables.
2715 **/
2716 CONST CHAR16 *
2717 EFIAPI
2718 EfiShellGetEnv(
2719 IN CONST CHAR16 *Name
2720 )
2721 {
2722 return (EfiShellGetEnvEx(Name, NULL));
2723 }
2724
2725 /**
2726 Internal variable setting function. Allows for setting of the read only variables.
2727
2728 @param Name Points to the NULL-terminated environment variable name.
2729 @param Value Points to the NULL-terminated environment variable value. If the value is an
2730 empty string then the environment variable is deleted.
2731 @param Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).
2732
2733 @retval EFI_SUCCESS The environment variable was successfully updated.
2734 **/
2735 EFI_STATUS
2736 EFIAPI
2737 InternalEfiShellSetEnv(
2738 IN CONST CHAR16 *Name,
2739 IN CONST CHAR16 *Value,
2740 IN BOOLEAN Volatile
2741 )
2742 {
2743 if (Value == NULL || StrLen(Value) == 0) {
2744 return (SHELL_DELETE_ENVIRONMENT_VARIABLE(Name));
2745 } else {
2746 SHELL_DELETE_ENVIRONMENT_VARIABLE(Name);
2747 if (Volatile) {
2748 return (SHELL_SET_ENVIRONMENT_VARIABLE_V(Name, StrSize(Value), Value));
2749 } else {
2750 return (SHELL_SET_ENVIRONMENT_VARIABLE_NV(Name, StrSize(Value), Value));
2751 }
2752 }
2753 }
2754
2755 /**
2756 Sets the environment variable.
2757
2758 This function changes the current value of the specified environment variable. If the
2759 environment variable exists and the Value is an empty string, then the environment
2760 variable is deleted. If the environment variable exists and the Value is not an empty
2761 string, then the value of the environment variable is changed. If the environment
2762 variable does not exist and the Value is an empty string, there is no action. If the
2763 environment variable does not exist and the Value is a non-empty string, then the
2764 environment variable is created and assigned the specified value.
2765
2766 For a description of volatile and non-volatile environment variables, see UEFI Shell
2767 2.0 specification section 3.6.1.
2768
2769 @param Name Points to the NULL-terminated environment variable name.
2770 @param Value Points to the NULL-terminated environment variable value. If the value is an
2771 empty string then the environment variable is deleted.
2772 @param Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).
2773
2774 @retval EFI_SUCCESS The environment variable was successfully updated.
2775 **/
2776 EFI_STATUS
2777 EFIAPI
2778 EfiShellSetEnv(
2779 IN CONST CHAR16 *Name,
2780 IN CONST CHAR16 *Value,
2781 IN BOOLEAN Volatile
2782 )
2783 {
2784 if (Name == NULL || *Name == CHAR_NULL) {
2785 return (EFI_INVALID_PARAMETER);
2786 }
2787 //
2788 // Make sure we dont 'set' a predefined read only variable
2789 //
2790 if (gUnicodeCollation->StriColl(
2791 gUnicodeCollation,
2792 (CHAR16*)Name,
2793 L"cwd") == 0
2794 ||gUnicodeCollation->StriColl(
2795 gUnicodeCollation,
2796 (CHAR16*)Name,
2797 L"Lasterror") == 0
2798 ||gUnicodeCollation->StriColl(
2799 gUnicodeCollation,
2800 (CHAR16*)Name,
2801 L"profiles") == 0
2802 ||gUnicodeCollation->StriColl(
2803 gUnicodeCollation,
2804 (CHAR16*)Name,
2805 L"uefishellsupport") == 0
2806 ||gUnicodeCollation->StriColl(
2807 gUnicodeCollation,
2808 (CHAR16*)Name,
2809 L"uefishellversion") == 0
2810 ||gUnicodeCollation->StriColl(
2811 gUnicodeCollation,
2812 (CHAR16*)Name,
2813 L"uefiversion") == 0
2814 ){
2815 return (EFI_INVALID_PARAMETER);
2816 }
2817 return (InternalEfiShellSetEnv(Name, Value, Volatile));
2818 }
2819
2820 /**
2821 Returns the current directory on the specified device.
2822
2823 If FileSystemMapping is NULL, it returns the current working directory. If the
2824 FileSystemMapping is not NULL, it returns the current directory associated with the
2825 FileSystemMapping. In both cases, the returned name includes the file system
2826 mapping (i.e. fs0:\current-dir).
2827
2828 @param FileSystemMapping A pointer to the file system mapping. If NULL,
2829 then the current working directory is returned.
2830
2831 @retval !=NULL The current directory.
2832 @retval NULL Current directory does not exist.
2833 **/
2834 CONST CHAR16 *
2835 EFIAPI
2836 EfiShellGetCurDir(
2837 IN CONST CHAR16 *FileSystemMapping OPTIONAL
2838 )
2839 {
2840 CHAR16 *PathToReturn;
2841 UINTN Size;
2842 SHELL_MAP_LIST *MapListItem;
2843 if (!IsListEmpty(&gShellMapList.Link)) {
2844 //
2845 // if parameter is NULL, use current
2846 //
2847 if (FileSystemMapping == NULL) {
2848 return (EfiShellGetEnv(L"cwd"));
2849 } else {
2850 Size = 0;
2851 PathToReturn = NULL;
2852 MapListItem = ShellCommandFindMapItem(FileSystemMapping);
2853 if (MapListItem != NULL) {
2854 ASSERT((PathToReturn == NULL && Size == 0) || (PathToReturn != NULL));
2855 PathToReturn = StrnCatGrow(&PathToReturn, &Size, MapListItem->MapName, 0);
2856 PathToReturn = StrnCatGrow(&PathToReturn, &Size, MapListItem->CurrentDirectoryPath, 0);
2857 }
2858 }
2859 return (AddBufferToFreeList(PathToReturn));
2860 } else {
2861 return (NULL);
2862 }
2863 }
2864
2865 /**
2866 Changes the current directory on the specified device.
2867
2868 If the FileSystem is NULL, and the directory Dir does not contain a file system's
2869 mapped name, this function changes the current working directory.
2870
2871 If the FileSystem is NULL and the directory Dir contains a mapped name, then the
2872 current file system and the current directory on that file system are changed.
2873
2874 If FileSystem is NULL, and Dir is not NULL, then this changes the current working file
2875 system.
2876
2877 If FileSystem is not NULL and Dir is not NULL, then this function changes the current
2878 directory on the specified file system.
2879
2880 If the current working directory or the current working file system is changed then the
2881 %cwd% environment variable will be updated
2882
2883 @param FileSystem A pointer to the file system's mapped name. If NULL, then the current working
2884 directory is changed.
2885 @param Dir Points to the NULL-terminated directory on the device specified by FileSystem.
2886
2887 @retval EFI_SUCCESS The operation was sucessful
2888 @retval EFI_NOT_FOUND The file system could not be found
2889 **/
2890 EFI_STATUS
2891 EFIAPI
2892 EfiShellSetCurDir(
2893 IN CONST CHAR16 *FileSystem OPTIONAL,
2894 IN CONST CHAR16 *Dir
2895 )
2896 {
2897 CHAR16 *MapName;
2898 SHELL_MAP_LIST *MapListItem;
2899 UINTN Size;
2900 EFI_STATUS Status;
2901 CHAR16 *TempString;
2902 CHAR16 *DirectoryName;
2903 UINTN TempLen;
2904
2905 Size = 0;
2906 MapName = NULL;
2907 MapListItem = NULL;
2908 TempString = NULL;
2909 DirectoryName = NULL;
2910
2911 if ((FileSystem == NULL && Dir == NULL) || Dir == NULL) {
2912 return (EFI_INVALID_PARAMETER);
2913 }
2914
2915 if (IsListEmpty(&gShellMapList.Link)){
2916 return (EFI_NOT_FOUND);
2917 }
2918
2919 DirectoryName = StrnCatGrow(&DirectoryName, NULL, Dir, 0);
2920 ASSERT(DirectoryName != NULL);
2921
2922 PathCleanUpDirectories(DirectoryName);
2923
2924 if (FileSystem == NULL) {
2925 //
2926 // determine the file system mapping to use
2927 //
2928 if (StrStr(DirectoryName, L":") != NULL) {
2929 ASSERT(MapName == NULL);
2930 MapName = StrnCatGrow(&MapName, NULL, DirectoryName, (StrStr(DirectoryName, L":")-DirectoryName+1));
2931 }
2932 //
2933 // find the file system mapping's entry in the list
2934 // or use current
2935 //
2936 if (MapName != NULL) {
2937 MapListItem = ShellCommandFindMapItem(MapName);
2938
2939 //
2940 // make that the current file system mapping
2941 //
2942 if (MapListItem != NULL) {
2943 gShellCurDir = MapListItem;
2944 }
2945 } else {
2946 MapListItem = gShellCurDir;
2947 }
2948
2949 if (MapListItem == NULL) {
2950 return (EFI_NOT_FOUND);
2951 }
2952
2953 //
2954 // now update the MapListItem's current directory
2955 //
2956 if (MapListItem->CurrentDirectoryPath != NULL && DirectoryName[StrLen(DirectoryName) - 1] != L':') {
2957 FreePool(MapListItem->CurrentDirectoryPath);
2958 MapListItem->CurrentDirectoryPath = NULL;
2959 }
2960 if (MapName != NULL) {
2961 TempLen = StrLen(MapName);
2962 if (TempLen != StrLen(DirectoryName)) {
2963 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2964 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, DirectoryName+StrLen(MapName), 0);
2965 }
2966 } else {
2967 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2968 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, DirectoryName, 0);
2969 }
2970 if ((MapListItem->CurrentDirectoryPath != NULL && MapListItem->CurrentDirectoryPath[StrLen(MapListItem->CurrentDirectoryPath)-1] != L'\\') || (MapListItem->CurrentDirectoryPath == NULL)) {
2971 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2972 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, L"\\", 0);
2973 }
2974 } else {
2975 //
2976 // cant have a mapping in the directory...
2977 //
2978 if (StrStr(DirectoryName, L":") != NULL) {
2979 return (EFI_INVALID_PARAMETER);
2980 }
2981 //
2982 // FileSystem != NULL
2983 //
2984 MapListItem = ShellCommandFindMapItem(FileSystem);
2985 if (MapListItem == NULL) {
2986 return (EFI_INVALID_PARAMETER);
2987 }
2988 // gShellCurDir = MapListItem;
2989 if (DirectoryName != NULL) {
2990 //
2991 // change current dir on that file system
2992 //
2993
2994 if (MapListItem->CurrentDirectoryPath != NULL) {
2995 FreePool(MapListItem->CurrentDirectoryPath);
2996 DEBUG_CODE(MapListItem->CurrentDirectoryPath = NULL;);
2997 }
2998 // ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2999 // MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, FileSystem, 0);
3000 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
3001 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, L"\\", 0);
3002 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
3003 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, DirectoryName, 0);
3004 if (MapListItem->CurrentDirectoryPath != NULL && MapListItem->CurrentDirectoryPath[StrLen(MapListItem->CurrentDirectoryPath)-1] != L'\\') {
3005 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
3006 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, L"\\", 0);
3007 }
3008 }
3009 }
3010 //
3011 // if updated the current directory then update the environment variable
3012 //
3013 if (MapListItem == gShellCurDir) {
3014 Size = 0;
3015 ASSERT((TempString == NULL && Size == 0) || (TempString != NULL));
3016 StrnCatGrow(&TempString, &Size, MapListItem->MapName, 0);
3017 ASSERT((TempString == NULL && Size == 0) || (TempString != NULL));
3018 StrnCatGrow(&TempString, &Size, MapListItem->CurrentDirectoryPath, 0);
3019 Status = InternalEfiShellSetEnv(L"cwd", TempString, TRUE);
3020 FreePool(TempString);
3021 return (Status);
3022 }
3023 return(EFI_SUCCESS);
3024 }
3025
3026 /**
3027 Return help information about a specific command.
3028
3029 This function returns the help information for the specified command. The help text
3030 can be internal to the shell or can be from a UEFI Shell manual page.
3031
3032 If Sections is specified, then each section name listed will be compared in a casesensitive
3033 manner, to the section names described in Appendix B. If the section exists,
3034 it will be appended to the returned help text. If the section does not exist, no
3035 information will be returned. If Sections is NULL, then all help text information
3036 available will be returned.
3037
3038 @param Command Points to the NULL-terminated UEFI Shell command name.
3039 @param Sections Points to the NULL-terminated comma-delimited
3040 section names to return. If NULL, then all
3041 sections will be returned.
3042 @param HelpText On return, points to a callee-allocated buffer
3043 containing all specified help text.
3044
3045 @retval EFI_SUCCESS The help text was returned.
3046 @retval EFI_OUT_OF_RESOURCES The necessary buffer could not be allocated to hold the
3047 returned help text.
3048 @retval EFI_INVALID_PARAMETER HelpText is NULL
3049 @retval EFI_NOT_FOUND There is no help text available for Command.
3050 **/
3051 EFI_STATUS
3052 EFIAPI
3053 EfiShellGetHelpText(
3054 IN CONST CHAR16 *Command,
3055 IN CONST CHAR16 *Sections OPTIONAL,
3056 OUT CHAR16 **HelpText
3057 )
3058 {
3059 CONST CHAR16 *ManFileName;
3060 CHAR16 *FixCommand;
3061 EFI_STATUS Status;
3062
3063 ASSERT(HelpText != NULL);
3064 FixCommand = NULL;
3065
3066 ManFileName = ShellCommandGetManFileNameHandler(Command);
3067
3068 if (ManFileName != NULL) {
3069 return (ProcessManFile(ManFileName, Command, Sections, NULL, HelpText));
3070 } else {
3071 if ((StrLen(Command)> 4)
3072 && (Command[StrLen(Command)-1] == L'i' || Command[StrLen(Command)-1] == L'I')
3073 && (Command[StrLen(Command)-2] == L'f' || Command[StrLen(Command)-2] == L'F')
3074 && (Command[StrLen(Command)-3] == L'e' || Command[StrLen(Command)-3] == L'E')
3075 && (Command[StrLen(Command)-4] == L'.')
3076 ) {
3077 FixCommand = AllocateZeroPool(StrSize(Command) - 4 * sizeof (CHAR16));
3078 ASSERT(FixCommand != NULL);
3079
3080 StrnCpy(FixCommand, Command, StrLen(Command)-4);
3081 Status = ProcessManFile(FixCommand, FixCommand, Sections, NULL, HelpText);
3082 FreePool(FixCommand);
3083 return Status;
3084 } else {
3085 return (ProcessManFile(Command, Command, Sections, NULL, HelpText));
3086 }
3087 }
3088 }
3089
3090 /**
3091 Gets the enable status of the page break output mode.
3092
3093 User can use this function to determine current page break mode.
3094
3095 @retval TRUE The page break output mode is enabled.
3096 @retval FALSE The page break output mode is disabled.
3097 **/
3098 BOOLEAN
3099 EFIAPI
3100 EfiShellGetPageBreak(
3101 VOID
3102 )
3103 {
3104 return(ShellInfoObject.PageBreakEnabled);
3105 }
3106
3107 /**
3108 Judges whether the active shell is the root shell.
3109
3110 This function makes the user to know that whether the active Shell is the root shell.
3111
3112 @retval TRUE The active Shell is the root Shell.
3113 @retval FALSE The active Shell is NOT the root Shell.
3114 **/
3115 BOOLEAN
3116 EFIAPI
3117 EfiShellIsRootShell(
3118 VOID
3119 )
3120 {
3121 return(ShellInfoObject.RootShellInstance);
3122 }
3123
3124 /**
3125 function to return a semi-colon delimeted list of all alias' in the current shell
3126
3127 up to caller to free the memory.
3128
3129 @retval NULL No alias' were found
3130 @retval NULL An error ocurred getting alias'
3131 @return !NULL a list of all alias'
3132 **/
3133 CHAR16 *
3134 EFIAPI
3135 InternalEfiShellGetListAlias(
3136 )
3137 {
3138 UINT64 MaxStorSize;
3139 UINT64 RemStorSize;
3140 UINT64 MaxVarSize;
3141 EFI_STATUS Status;
3142 EFI_GUID Guid;
3143 CHAR16 *VariableName;
3144 UINTN NameSize;
3145 CHAR16 *RetVal;
3146 UINTN RetSize;
3147
3148 Status = gRT->QueryVariableInfo(EFI_VARIABLE_NON_VOLATILE|EFI_VARIABLE_BOOTSERVICE_ACCESS, &MaxStorSize, &RemStorSize, &MaxVarSize);
3149 ASSERT_EFI_ERROR(Status);
3150
3151 VariableName = AllocateZeroPool((UINTN)MaxVarSize);
3152 RetSize = 0;
3153 RetVal = NULL;
3154
3155 if (VariableName == NULL) {
3156 return (NULL);
3157 }
3158
3159 VariableName[0] = CHAR_NULL;
3160
3161 while (TRUE) {
3162 NameSize = (UINTN)MaxVarSize;
3163 Status = gRT->GetNextVariableName(&NameSize, VariableName, &Guid);
3164 if (Status == EFI_NOT_FOUND){
3165 break;
3166 }
3167 ASSERT_EFI_ERROR(Status);
3168 if (EFI_ERROR(Status)) {
3169 break;
3170 }
3171 if (CompareGuid(&Guid, &gShellAliasGuid)){
3172 ASSERT((RetVal == NULL && RetSize == 0) || (RetVal != NULL));
3173 RetVal = StrnCatGrow(&RetVal, &RetSize, VariableName, 0);
3174 RetVal = StrnCatGrow(&RetVal, &RetSize, L";", 0);
3175 } // compare guid
3176 } // while
3177 FreePool(VariableName);
3178
3179 return (RetVal);
3180 }
3181
3182 /**
3183 Convert a null-terminated unicode string, in-place, to all lowercase.
3184 Then return it.
3185
3186 @param Str The null-terminated string to be converted to all lowercase.
3187
3188 @return The null-terminated string converted into all lowercase.
3189 **/
3190 CHAR16 *
3191 ToLower (
3192 CHAR16 *Str
3193 )
3194 {
3195 UINTN Index;
3196
3197 for (Index = 0; Str[Index] != L'\0'; Index++) {
3198 if (Str[Index] >= L'A' && Str[Index] <= L'Z') {
3199 Str[Index] -= (CHAR16)(L'A' - L'a');
3200 }
3201 }
3202 return Str;
3203 }
3204
3205 /**
3206 This function returns the command associated with a alias or a list of all
3207 alias'.
3208
3209 @param[in] Alias Points to the NULL-terminated shell alias.
3210 If this parameter is NULL, then all
3211 aliases will be returned in ReturnedData.
3212 @param[out] Volatile upon return of a single command if TRUE indicates
3213 this is stored in a volatile fashion. FALSE otherwise.
3214
3215 @return If Alias is not NULL, it will return a pointer to
3216 the NULL-terminated command for that alias.
3217 If Alias is NULL, ReturnedData points to a ';'
3218 delimited list of alias (e.g.
3219 ReturnedData = "dir;del;copy;mfp") that is NULL-terminated.
3220 @retval NULL an error ocurred
3221 @retval NULL Alias was not a valid Alias
3222 **/
3223 CONST CHAR16 *
3224 EFIAPI
3225 EfiShellGetAlias(
3226 IN CONST CHAR16 *Alias,
3227 OUT BOOLEAN *Volatile OPTIONAL
3228 )
3229 {
3230 CHAR16 *RetVal;
3231 UINTN RetSize;
3232 UINT32 Attribs;
3233 EFI_STATUS Status;
3234 CHAR16 *AliasLower;
3235
3236 // Convert to lowercase to make aliases case-insensitive
3237 if (Alias != NULL) {
3238 AliasLower = AllocateCopyPool (StrSize (Alias), Alias);
3239 ASSERT (AliasLower != NULL);
3240 ToLower (AliasLower);
3241
3242 if (Volatile == NULL) {
3243 return (AddBufferToFreeList(GetVariable(AliasLower, &gShellAliasGuid)));
3244 }
3245 RetSize = 0;
3246 RetVal = NULL;
3247 Status = gRT->GetVariable(AliasLower, &gShellAliasGuid, &Attribs, &RetSize, RetVal);
3248 if (Status == EFI_BUFFER_TOO_SMALL) {
3249 RetVal = AllocateZeroPool(RetSize);
3250 Status = gRT->GetVariable(AliasLower, &gShellAliasGuid, &Attribs, &RetSize, RetVal);
3251 }
3252 if (EFI_ERROR(Status)) {
3253 if (RetVal != NULL) {
3254 FreePool(RetVal);
3255 }
3256 return (NULL);
3257 }
3258 if ((EFI_VARIABLE_NON_VOLATILE & Attribs) == EFI_VARIABLE_NON_VOLATILE) {
3259 *Volatile = FALSE;
3260 } else {
3261 *Volatile = TRUE;
3262 }
3263
3264 FreePool (AliasLower);
3265 return (AddBufferToFreeList(RetVal));
3266 }
3267 return (AddBufferToFreeList(InternalEfiShellGetListAlias()));
3268 }
3269
3270 /**
3271 Changes a shell command alias.
3272
3273 This function creates an alias for a shell command or if Alias is NULL it will delete an existing alias.
3274
3275 this function does not check for built in alias'.
3276
3277 @param[in] Command Points to the NULL-terminated shell command or existing alias.
3278 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and
3279 Command refers to an alias, that alias will be deleted.
3280 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the
3281 Alias being set will be stored in a non-volatile fashion.
3282
3283 @retval EFI_SUCCESS Alias created or deleted successfully.
3284 @retval EFI_NOT_FOUND the Alias intended to be deleted was not found
3285 **/
3286 EFI_STATUS
3287 EFIAPI
3288 InternalSetAlias(
3289 IN CONST CHAR16 *Command,
3290 IN CONST CHAR16 *Alias,
3291 IN BOOLEAN Volatile
3292 )
3293 {
3294 EFI_STATUS Status;
3295 CHAR16 *AliasLower;
3296
3297 // Convert to lowercase to make aliases case-insensitive
3298 if (Alias != NULL) {
3299 AliasLower = AllocateCopyPool (StrSize (Alias), Alias);
3300 ASSERT (AliasLower != NULL);
3301 ToLower (AliasLower);
3302 } else {
3303 AliasLower = NULL;
3304 }
3305
3306 //
3307 // We must be trying to remove one if Alias is NULL
3308 //
3309 if (Alias == NULL) {
3310 //
3311 // remove an alias (but passed in COMMAND parameter)
3312 //
3313 Status = (gRT->SetVariable((CHAR16*)Command, &gShellAliasGuid, 0, 0, NULL));
3314 } else {
3315 //
3316 // Add and replace are the same
3317 //
3318
3319 // We dont check the error return on purpose since the variable may not exist.
3320 gRT->SetVariable((CHAR16*)Command, &gShellAliasGuid, 0, 0, NULL);
3321
3322 Status = (gRT->SetVariable((CHAR16*)Alias, &gShellAliasGuid, EFI_VARIABLE_BOOTSERVICE_ACCESS|(Volatile?0:EFI_VARIABLE_NON_VOLATILE), StrSize(Command), (VOID*)Command));
3323 }
3324
3325 if (Alias != NULL) {
3326 FreePool (AliasLower);
3327 }
3328 return Status;
3329 }
3330
3331 /**
3332 Changes a shell command alias.
3333
3334 This function creates an alias for a shell command or if Alias is NULL it will delete an existing alias.
3335
3336
3337 @param[in] Command Points to the NULL-terminated shell command or existing alias.
3338 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and
3339 Command refers to an alias, that alias will be deleted.
3340 @param[in] Replace If TRUE and the alias already exists, then the existing alias will be replaced. If
3341 FALSE and the alias already exists, then the existing alias is unchanged and
3342 EFI_ACCESS_DENIED is returned.
3343 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the
3344 Alias being set will be stored in a non-volatile fashion.
3345
3346 @retval EFI_SUCCESS Alias created or deleted successfully.
3347 @retval EFI_NOT_FOUND the Alias intended to be deleted was not found
3348 @retval EFI_ACCESS_DENIED The alias is a built-in alias or already existed and Replace was set to
3349 FALSE.
3350 @retval EFI_INVALID_PARAMETER Command is null or the empty string.
3351 **/
3352 EFI_STATUS
3353 EFIAPI
3354 EfiShellSetAlias(
3355 IN CONST CHAR16 *Command,
3356 IN CONST CHAR16 *Alias,
3357 IN BOOLEAN Replace,
3358 IN BOOLEAN Volatile
3359 )
3360 {
3361 if (ShellCommandIsOnAliasList(Alias==NULL?Command:Alias)) {
3362 //
3363 // cant set over a built in alias
3364 //
3365 return (EFI_ACCESS_DENIED);
3366 } else if (Command == NULL || *Command == CHAR_NULL || StrLen(Command) == 0) {
3367 //
3368 // Command is null or empty
3369 //
3370 return (EFI_INVALID_PARAMETER);
3371 } else if (EfiShellGetAlias(Command, NULL) != NULL && !Replace) {
3372 //
3373 // Alias already exists, Replace not set
3374 //
3375 return (EFI_ACCESS_DENIED);
3376 } else {
3377 return (InternalSetAlias(Command, Alias, Volatile));
3378 }
3379 }
3380
3381 // Pure FILE_HANDLE operations are passed to FileHandleLib
3382 // these functions are indicated by the *
3383 EFI_SHELL_PROTOCOL mShellProtocol = {
3384 EfiShellExecute,
3385 EfiShellGetEnv,
3386 EfiShellSetEnv,
3387 EfiShellGetAlias,
3388 EfiShellSetAlias,
3389 EfiShellGetHelpText,
3390 EfiShellGetDevicePathFromMap,
3391 EfiShellGetMapFromDevicePath,
3392 EfiShellGetDevicePathFromFilePath,
3393 EfiShellGetFilePathFromDevicePath,
3394 EfiShellSetMap,
3395 EfiShellGetCurDir,
3396 EfiShellSetCurDir,
3397 EfiShellOpenFileList,
3398 EfiShellFreeFileList,
3399 EfiShellRemoveDupInFileList,
3400 EfiShellBatchIsActive,
3401 EfiShellIsRootShell,
3402 EfiShellEnablePageBreak,
3403 EfiShellDisablePageBreak,
3404 EfiShellGetPageBreak,
3405 EfiShellGetDeviceName,
3406 (EFI_SHELL_GET_FILE_INFO)FileHandleGetInfo, //*
3407 (EFI_SHELL_SET_FILE_INFO)FileHandleSetInfo, //*
3408 EfiShellOpenFileByName,
3409 EfiShellClose,
3410 EfiShellCreateFile,
3411 (EFI_SHELL_READ_FILE)FileHandleRead, //*
3412 (EFI_SHELL_WRITE_FILE)FileHandleWrite, //*
3413 (EFI_SHELL_DELETE_FILE)FileHandleDelete, //*
3414 EfiShellDeleteFileByName,
3415 (EFI_SHELL_GET_FILE_POSITION)FileHandleGetPosition, //*
3416 (EFI_SHELL_SET_FILE_POSITION)FileHandleSetPosition, //*
3417 (EFI_SHELL_FLUSH_FILE)FileHandleFlush, //*
3418 EfiShellFindFiles,
3419 EfiShellFindFilesInDir,
3420 (EFI_SHELL_GET_FILE_SIZE)FileHandleGetSize, //*
3421 EfiShellOpenRoot,
3422 EfiShellOpenRootByHandle,
3423 NULL,
3424 SHELL_MAJOR_VERSION,
3425 SHELL_MINOR_VERSION,
3426
3427 // New for UEFI Shell 2.1
3428 EfiShellRegisterGuidName,
3429 EfiShellGetGuidName,
3430 EfiShellGetGuidFromName,
3431 EfiShellGetEnvEx
3432 };
3433
3434 /**
3435 Function to create and install on the current handle.
3436
3437 Will overwrite any existing ShellProtocols in the system to be sure that
3438 the current shell is in control.
3439
3440 This must be removed via calling CleanUpShellProtocol().
3441
3442 @param[in, out] NewShell The pointer to the pointer to the structure
3443 to install.
3444
3445 @retval EFI_SUCCESS The operation was successful.
3446 @return An error from LocateHandle, CreateEvent, or other core function.
3447 **/
3448 EFI_STATUS
3449 EFIAPI
3450 CreatePopulateInstallShellProtocol (
3451 IN OUT EFI_SHELL_PROTOCOL **NewShell
3452 )
3453 {
3454 EFI_STATUS Status;
3455 UINTN BufferSize;
3456 EFI_HANDLE *Buffer;
3457 UINTN HandleCounter;
3458 SHELL_PROTOCOL_HANDLE_LIST *OldProtocolNode;
3459
3460 if (NewShell == NULL) {
3461 return (EFI_INVALID_PARAMETER);
3462 }
3463
3464 BufferSize = 0;
3465 Buffer = NULL;
3466 OldProtocolNode = NULL;
3467 InitializeListHead(&ShellInfoObject.OldShellList.Link);
3468
3469 //
3470 // Initialize EfiShellProtocol object...
3471 //
3472 Status = gBS->CreateEvent(0,
3473 0,
3474 NULL,
3475 NULL,
3476 &mShellProtocol.ExecutionBreak);
3477 if (EFI_ERROR(Status)) {
3478 return (Status);
3479 }
3480
3481 //
3482 // Get the size of the buffer we need.
3483 //
3484 Status = gBS->LocateHandle(ByProtocol,
3485 &gEfiShellProtocolGuid,
3486 NULL,
3487 &BufferSize,
3488 Buffer);
3489 if (Status == EFI_BUFFER_TOO_SMALL) {
3490 //
3491 // Allocate and recall with buffer of correct size
3492 //
3493 Buffer = AllocateZeroPool(BufferSize);
3494 if (Buffer == NULL) {
3495 return (EFI_OUT_OF_RESOURCES);
3496 }
3497 Status = gBS->LocateHandle(ByProtocol,
3498 &gEfiShellProtocolGuid,
3499 NULL,
3500 &BufferSize,
3501 Buffer);
3502 if (EFI_ERROR(Status)) {
3503 FreePool(Buffer);
3504 return (Status);
3505 }
3506 //
3507 // now overwrite each of them, but save the info to restore when we end.
3508 //
3509 for (HandleCounter = 0 ; HandleCounter < (BufferSize/sizeof(EFI_HANDLE)) ; HandleCounter++) {
3510 OldProtocolNode = AllocateZeroPool(sizeof(SHELL_PROTOCOL_HANDLE_LIST));
3511 ASSERT(OldProtocolNode != NULL);
3512 Status = gBS->OpenProtocol(Buffer[HandleCounter],
3513 &gEfiShellProtocolGuid,
3514 (VOID **) &(OldProtocolNode->Interface),
3515 gImageHandle,
3516 NULL,
3517 EFI_OPEN_PROTOCOL_GET_PROTOCOL
3518 );
3519 if (!EFI_ERROR(Status)) {
3520 //
3521 // reinstall over the old one...
3522 //
3523 OldProtocolNode->Handle = Buffer[HandleCounter];
3524 Status = gBS->ReinstallProtocolInterface(
3525 OldProtocolNode->Handle,
3526 &gEfiShellProtocolGuid,
3527 OldProtocolNode->Interface,
3528 (VOID*)(&mShellProtocol));
3529 if (!EFI_ERROR(Status)) {
3530 //
3531 // we reinstalled sucessfully. log this so we can reverse it later.
3532 //
3533
3534 //
3535 // add to the list for subsequent...
3536 //
3537 InsertTailList(&ShellInfoObject.OldShellList.Link, &OldProtocolNode->Link);
3538 }
3539 }
3540 }
3541 FreePool(Buffer);
3542 } else if (Status == EFI_NOT_FOUND) {
3543 ASSERT(IsListEmpty(&ShellInfoObject.OldShellList.Link));
3544 //
3545 // no one else published yet. just publish it ourselves.
3546 //
3547 Status = gBS->InstallProtocolInterface (
3548 &gImageHandle,
3549 &gEfiShellProtocolGuid,
3550 EFI_NATIVE_INTERFACE,
3551 (VOID*)(&mShellProtocol));
3552 }
3553
3554 if (PcdGetBool(PcdShellSupportOldProtocols)){
3555 ///@todo support ShellEnvironment2
3556 ///@todo do we need to support ShellEnvironment (not ShellEnvironment2) also?
3557 }
3558
3559 if (!EFI_ERROR(Status)) {
3560 *NewShell = &mShellProtocol;
3561 }
3562 return (Status);
3563 }
3564
3565 /**
3566 Opposite of CreatePopulateInstallShellProtocol.
3567
3568 Free all memory and restore the system to the state it was in before calling
3569 CreatePopulateInstallShellProtocol.
3570
3571 @param[in, out] NewShell The pointer to the new shell protocol structure.
3572
3573 @retval EFI_SUCCESS The operation was successful.
3574 **/
3575 EFI_STATUS
3576 EFIAPI
3577 CleanUpShellProtocol (
3578 IN OUT EFI_SHELL_PROTOCOL *NewShell
3579 )
3580 {
3581 EFI_STATUS Status;
3582 SHELL_PROTOCOL_HANDLE_LIST *Node2;
3583 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *SimpleEx;
3584
3585 //
3586 // if we need to restore old protocols...
3587 //
3588 if (!IsListEmpty(&ShellInfoObject.OldShellList.Link)) {
3589 for (Node2 = (SHELL_PROTOCOL_HANDLE_LIST *)GetFirstNode(&ShellInfoObject.OldShellList.Link)
3590 ; !IsListEmpty (&ShellInfoObject.OldShellList.Link)
3591 ; Node2 = (SHELL_PROTOCOL_HANDLE_LIST *)GetFirstNode(&ShellInfoObject.OldShellList.Link)
3592 ){
3593 RemoveEntryList(&Node2->Link);
3594 Status = gBS->ReinstallProtocolInterface(Node2->Handle,
3595 &gEfiShellProtocolGuid,
3596 NewShell,
3597 Node2->Interface);
3598 FreePool(Node2);
3599 }
3600 } else {
3601 //
3602 // no need to restore
3603 //
3604 Status = gBS->UninstallProtocolInterface(gImageHandle,
3605 &gEfiShellProtocolGuid,
3606 NewShell);
3607 }
3608 Status = gBS->CloseEvent(NewShell->ExecutionBreak);
3609 NewShell->ExecutionBreak = NULL;
3610
3611 Status = gBS->OpenProtocol(
3612 gST->ConsoleInHandle,
3613 &gEfiSimpleTextInputExProtocolGuid,
3614 (VOID**)&SimpleEx,
3615 gImageHandle,
3616 NULL,
3617 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
3618
3619 if (!EFI_ERROR (Status)) {
3620 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlCNotifyHandle1);
3621 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlCNotifyHandle2);
3622 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlCNotifyHandle3);
3623 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlCNotifyHandle4);
3624 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlSNotifyHandle1);
3625 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlSNotifyHandle2);
3626 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlSNotifyHandle3);
3627 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlSNotifyHandle4);
3628 }
3629 return (Status);
3630 }
3631
3632 /**
3633 Notification function for keystrokes.
3634
3635 @param[in] KeyData The key that was pressed.
3636
3637 @retval EFI_SUCCESS The operation was successful.
3638 **/
3639 EFI_STATUS
3640 EFIAPI
3641 NotificationFunction(
3642 IN EFI_KEY_DATA *KeyData
3643 )
3644 {
3645 if ( ((KeyData->Key.UnicodeChar == L'c') &&
3646 (KeyData->KeyState.KeyShiftState == (EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED) || KeyData->KeyState.KeyShiftState == (EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED))) ||
3647 (KeyData->Key.UnicodeChar == 3)
3648 ){
3649 if (ShellInfoObject.NewEfiShellProtocol->ExecutionBreak == NULL) {
3650 return (EFI_UNSUPPORTED);
3651 }
3652 return (gBS->SignalEvent(ShellInfoObject.NewEfiShellProtocol->ExecutionBreak));
3653 } else if ((KeyData->Key.UnicodeChar == L's') &&
3654 (KeyData->KeyState.KeyShiftState == (EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED) || KeyData->KeyState.KeyShiftState == (EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED))
3655 ){
3656 ShellInfoObject.HaltOutput = TRUE;
3657 }
3658 return (EFI_SUCCESS);
3659 }
3660
3661 /**
3662 Function to start monitoring for CTRL-C using SimpleTextInputEx. This
3663 feature's enabled state was not known when the shell initially launched.
3664
3665 @retval EFI_SUCCESS The feature is enabled.
3666 @retval EFI_OUT_OF_RESOURCES There is not enough mnemory available.
3667 **/
3668 EFI_STATUS
3669 EFIAPI
3670 InernalEfiShellStartMonitor(
3671 VOID
3672 )
3673 {
3674 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *SimpleEx;
3675 EFI_KEY_DATA KeyData;
3676 EFI_STATUS Status;
3677
3678 Status = gBS->OpenProtocol(
3679 gST->ConsoleInHandle,
3680 &gEfiSimpleTextInputExProtocolGuid,
3681 (VOID**)&SimpleEx,
3682 gImageHandle,
3683 NULL,
3684 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
3685 if (EFI_ERROR(Status)) {
3686 ShellPrintHiiEx(
3687 -1,
3688 -1,
3689 NULL,
3690 STRING_TOKEN (STR_SHELL_NO_IN_EX),
3691 ShellInfoObject.HiiHandle);
3692 return (EFI_SUCCESS);
3693 }
3694
3695 if (ShellInfoObject.NewEfiShellProtocol->ExecutionBreak == NULL) {
3696 return (EFI_UNSUPPORTED);
3697 }
3698
3699 KeyData.KeyState.KeyToggleState = 0;
3700 KeyData.Key.ScanCode = 0;
3701 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED;
3702 KeyData.Key.UnicodeChar = L'c';
3703
3704 Status = SimpleEx->RegisterKeyNotify(
3705 SimpleEx,
3706 &KeyData,
3707 NotificationFunction,
3708 &ShellInfoObject.CtrlCNotifyHandle1);
3709
3710 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED;
3711 if (!EFI_ERROR(Status)) {
3712 Status = SimpleEx->RegisterKeyNotify(
3713 SimpleEx,
3714 &KeyData,
3715 NotificationFunction,
3716 &ShellInfoObject.CtrlCNotifyHandle2);
3717 }
3718 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED;
3719 KeyData.Key.UnicodeChar = 3;
3720 if (!EFI_ERROR(Status)) {
3721 Status = SimpleEx->RegisterKeyNotify(
3722 SimpleEx,
3723 &KeyData,
3724 NotificationFunction,
3725 &ShellInfoObject.CtrlCNotifyHandle3);
3726 }
3727 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED;
3728 if (!EFI_ERROR(Status)) {
3729 Status = SimpleEx->RegisterKeyNotify(
3730 SimpleEx,
3731 &KeyData,
3732 NotificationFunction,
3733 &ShellInfoObject.CtrlCNotifyHandle4);
3734 }
3735 return (Status);
3736 }
3737