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