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