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