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