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