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