]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Application/Shell/ShellProtocol.c
Convert the value from 'int' to 'CHAR16' to match the type of variable in ShellProtoc...
[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 Allocates and duplicates a EFI_SHELL_FILE_INFO node.
1775
1776 @param[in] Node The node to copy from.
1777 @param[in] Save TRUE to set Node->Handle to NULL, FALSE otherwise.
1778
1779 @retval NULL a memory allocation error ocurred
1780 @return != NULL a pointer to the new node
1781 **/
1782 EFI_SHELL_FILE_INFO*
1783 EFIAPI
1784 InternalDuplicateShellFileInfo(
1785 IN EFI_SHELL_FILE_INFO *Node,
1786 IN BOOLEAN Save
1787 )
1788 {
1789 EFI_SHELL_FILE_INFO *NewNode;
1790
1791 NewNode = AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
1792 if (NewNode == NULL) {
1793 return (NULL);
1794 }
1795 NewNode->FullName = AllocateZeroPool(StrSize(Node->FullName));
1796
1797 NewNode->FileName = AllocateZeroPool(StrSize(Node->FileName));
1798 NewNode->Info = AllocateZeroPool((UINTN)Node->Info->Size);
1799 if ( NewNode->FullName == NULL
1800 || NewNode->FileName == NULL
1801 || NewNode->Info == NULL
1802 ){
1803 return(NULL);
1804 }
1805 NewNode->Status = Node->Status;
1806 NewNode->Handle = Node->Handle;
1807 if (!Save) {
1808 Node->Handle = NULL;
1809 }
1810 StrCpy((CHAR16*)NewNode->FullName, Node->FullName);
1811 StrCpy((CHAR16*)NewNode->FileName, Node->FileName);
1812 CopyMem(NewNode->Info, Node->Info, (UINTN)Node->Info->Size);
1813
1814 return(NewNode);
1815 }
1816
1817 /**
1818 Allocates and populates a EFI_SHELL_FILE_INFO structure. if any memory operation
1819 failed it will return NULL.
1820
1821 @param[in] BasePath the Path to prepend onto filename for FullPath
1822 @param[in] Status Status member initial value.
1823 @param[in] FileName FileName member initial value.
1824 @param[in] Handle Handle member initial value.
1825 @param[in] Info Info struct to copy.
1826
1827 @retval NULL An error ocurred.
1828 @return a pointer to the newly allocated structure.
1829 **/
1830 EFI_SHELL_FILE_INFO *
1831 EFIAPI
1832 CreateAndPopulateShellFileInfo(
1833 IN CONST CHAR16 *BasePath,
1834 IN CONST EFI_STATUS Status,
1835 IN CONST CHAR16 *FileName,
1836 IN CONST SHELL_FILE_HANDLE Handle,
1837 IN CONST EFI_FILE_INFO *Info
1838 )
1839 {
1840 EFI_SHELL_FILE_INFO *ShellFileListItem;
1841 CHAR16 *TempString;
1842 UINTN Size;
1843
1844 TempString = NULL;
1845 Size = 0;
1846
1847 ShellFileListItem = AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
1848 if (ShellFileListItem == NULL) {
1849 return (NULL);
1850 }
1851 if (Info != NULL && Info->Size != 0) {
1852 ShellFileListItem->Info = AllocateZeroPool((UINTN)Info->Size);
1853 if (ShellFileListItem->Info == NULL) {
1854 FreePool(ShellFileListItem);
1855 return (NULL);
1856 }
1857 CopyMem(ShellFileListItem->Info, Info, (UINTN)Info->Size);
1858 } else {
1859 ShellFileListItem->Info = NULL;
1860 }
1861 if (FileName != NULL) {
1862 ASSERT(TempString == NULL);
1863 ShellFileListItem->FileName = StrnCatGrow(&TempString, 0, FileName, 0);
1864 if (ShellFileListItem->FileName == NULL) {
1865 FreePool(ShellFileListItem->Info);
1866 FreePool(ShellFileListItem);
1867 return (NULL);
1868 }
1869 } else {
1870 ShellFileListItem->FileName = NULL;
1871 }
1872 Size = 0;
1873 TempString = NULL;
1874 if (BasePath != NULL) {
1875 ASSERT((TempString == NULL && Size == 0) || (TempString != NULL));
1876 TempString = StrnCatGrow(&TempString, &Size, BasePath, 0);
1877 if (TempString == NULL) {
1878 FreePool((VOID*)ShellFileListItem->FileName);
1879 FreePool(ShellFileListItem->Info);
1880 FreePool(ShellFileListItem);
1881 return (NULL);
1882 }
1883 }
1884 if (ShellFileListItem->FileName != NULL) {
1885 ASSERT((TempString == NULL && Size == 0) || (TempString != NULL));
1886 TempString = StrnCatGrow(&TempString, &Size, ShellFileListItem->FileName, 0);
1887 if (TempString == NULL) {
1888 FreePool((VOID*)ShellFileListItem->FileName);
1889 FreePool(ShellFileListItem->Info);
1890 FreePool(ShellFileListItem);
1891 return (NULL);
1892 }
1893 }
1894
1895 ShellFileListItem->FullName = TempString;
1896 ShellFileListItem->Status = Status;
1897 ShellFileListItem->Handle = Handle;
1898
1899 return (ShellFileListItem);
1900 }
1901
1902 /**
1903 Find all files in a specified directory.
1904
1905 @param FileDirHandle Handle of the directory to search.
1906 @param FileList On return, points to the list of files in the directory
1907 or NULL if there are no files in the directory.
1908
1909 @retval EFI_SUCCESS File information was returned successfully.
1910 @retval EFI_VOLUME_CORRUPTED The file system structures have been corrupted.
1911 @retval EFI_DEVICE_ERROR The device reported an error.
1912 @retval EFI_NO_MEDIA The device media is not present.
1913 @retval EFI_INVALID_PARAMETER The FileDirHandle was not a directory.
1914 @return An error from FileHandleGetFileName().
1915 **/
1916 EFI_STATUS
1917 EFIAPI
1918 EfiShellFindFilesInDir(
1919 IN SHELL_FILE_HANDLE FileDirHandle,
1920 OUT EFI_SHELL_FILE_INFO **FileList
1921 )
1922 {
1923 EFI_SHELL_FILE_INFO *ShellFileList;
1924 EFI_SHELL_FILE_INFO *ShellFileListItem;
1925 EFI_FILE_INFO *FileInfo;
1926 EFI_STATUS Status;
1927 BOOLEAN NoFile;
1928 CHAR16 *TempString;
1929 CHAR16 *BasePath;
1930 UINTN Size;
1931 CHAR16 *TempSpot;
1932
1933 Status = FileHandleGetFileName(FileDirHandle, &BasePath);
1934 if (EFI_ERROR(Status)) {
1935 return (Status);
1936 }
1937
1938 if (ShellFileHandleGetPath(FileDirHandle) != NULL) {
1939 TempString = NULL;
1940 Size = 0;
1941 TempString = StrnCatGrow(&TempString, &Size, ShellFileHandleGetPath(FileDirHandle), 0);
1942 if (TempString == NULL) {
1943 SHELL_FREE_NON_NULL(BasePath);
1944 return (EFI_OUT_OF_RESOURCES);
1945 }
1946 TempSpot = StrStr(TempString, L";");
1947
1948 if (TempSpot != NULL) {
1949 *TempSpot = CHAR_NULL;
1950 }
1951
1952 TempString = StrnCatGrow(&TempString, &Size, BasePath, 0);
1953 if (TempString == NULL) {
1954 SHELL_FREE_NON_NULL(BasePath);
1955 return (EFI_OUT_OF_RESOURCES);
1956 }
1957 SHELL_FREE_NON_NULL(BasePath);
1958 BasePath = TempString;
1959 }
1960
1961 NoFile = FALSE;
1962 ShellFileList = NULL;
1963 ShellFileListItem = NULL;
1964 FileInfo = NULL;
1965 Status = EFI_SUCCESS;
1966
1967
1968 for ( Status = FileHandleFindFirstFile(FileDirHandle, &FileInfo)
1969 ; !EFI_ERROR(Status) && !NoFile
1970 ; Status = FileHandleFindNextFile(FileDirHandle, FileInfo, &NoFile)
1971 ){
1972 //
1973 // allocate a new EFI_SHELL_FILE_INFO and populate it...
1974 //
1975 ShellFileListItem = CreateAndPopulateShellFileInfo(
1976 BasePath,
1977 EFI_SUCCESS, // success since we didnt fail to open it...
1978 FileInfo->FileName,
1979 NULL, // no handle since not open
1980 FileInfo);
1981
1982 if (ShellFileList == NULL) {
1983 ShellFileList = (EFI_SHELL_FILE_INFO*)AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
1984 ASSERT(ShellFileList != NULL);
1985 InitializeListHead(&ShellFileList->Link);
1986 }
1987 InsertTailList(&ShellFileList->Link, &ShellFileListItem->Link);
1988 }
1989 if (EFI_ERROR(Status)) {
1990 EfiShellFreeFileList(&ShellFileList);
1991 *FileList = NULL;
1992 } else {
1993 *FileList = ShellFileList;
1994 }
1995 SHELL_FREE_NON_NULL(BasePath);
1996 return(Status);
1997 }
1998
1999 /**
2000 Updates a file name to be preceeded by the mapped drive name
2001
2002 @param[in] BasePath the Mapped drive name to prepend
2003 @param[in, out] Path pointer to pointer to the file name to update.
2004
2005 @retval EFI_SUCCESS
2006 @retval EFI_OUT_OF_RESOURCES
2007 **/
2008 EFI_STATUS
2009 EFIAPI
2010 UpdateFileName(
2011 IN CONST CHAR16 *BasePath,
2012 IN OUT CHAR16 **Path
2013 )
2014 {
2015 CHAR16 *Path2;
2016 UINTN Path2Size;
2017
2018 Path2Size = 0;
2019 Path2 = NULL;
2020
2021 ASSERT(Path != NULL);
2022 ASSERT(*Path != NULL);
2023 ASSERT(BasePath != NULL);
2024
2025 //
2026 // convert a local path to an absolute path
2027 //
2028 if (StrStr(*Path, L":") == NULL) {
2029 ASSERT((Path2 == NULL && Path2Size == 0) || (Path2 != NULL));
2030 StrnCatGrow(&Path2, &Path2Size, BasePath, 0);
2031 if (Path2 == NULL) {
2032 return (EFI_OUT_OF_RESOURCES);
2033 }
2034 ASSERT((Path2 == NULL && Path2Size == 0) || (Path2 != NULL));
2035 StrnCatGrow(&Path2, &Path2Size, (*Path)[0] == L'\\'?(*Path) + 1 :*Path, 0);
2036 if (Path2 == NULL) {
2037 return (EFI_OUT_OF_RESOURCES);
2038 }
2039 }
2040
2041 FreePool(*Path);
2042 (*Path) = Path2;
2043
2044 return (EFI_SUCCESS);
2045 }
2046
2047 /**
2048 If FileHandle is a directory then the function reads from FileHandle and reads in
2049 each of the FileInfo structures. If one of them matches the Pattern's first
2050 "level" then it opens that handle and calls itself on that handle.
2051
2052 If FileHandle is a file and matches all of the remaining Pattern (which would be
2053 on its last node), then add a EFI_SHELL_FILE_INFO object for this file to fileList.
2054
2055 Upon a EFI_SUCCESS return fromt he function any the caller is responsible to call
2056 FreeFileList with FileList.
2057
2058 @param[in] FilePattern The FilePattern to check against.
2059 @param[in] UnicodeCollation The pointer to EFI_UNICODE_COLLATION_PROTOCOL structure
2060 @param[in] FileHandle The FileHandle to start with
2061 @param[in, out] FileList pointer to pointer to list of found files.
2062 @param[in] ParentNode The node for the parent. Same file as identified by HANDLE.
2063 @param[in] MapName The file system name this file is on.
2064
2065 @retval EFI_SUCCESS all files were found and the FileList contains a list.
2066 @retval EFI_NOT_FOUND no files were found
2067 @retval EFI_OUT_OF_RESOURCES a memory allocation failed
2068 **/
2069 EFI_STATUS
2070 EFIAPI
2071 ShellSearchHandle(
2072 IN CONST CHAR16 *FilePattern,
2073 IN EFI_UNICODE_COLLATION_PROTOCOL *UnicodeCollation,
2074 IN SHELL_FILE_HANDLE FileHandle,
2075 IN OUT EFI_SHELL_FILE_INFO **FileList,
2076 IN CONST EFI_SHELL_FILE_INFO *ParentNode OPTIONAL,
2077 IN CONST CHAR16 *MapName
2078 )
2079 {
2080 EFI_STATUS Status;
2081 CONST CHAR16 *NextFilePatternStart;
2082 CHAR16 *CurrentFilePattern;
2083 EFI_SHELL_FILE_INFO *ShellInfo;
2084 EFI_SHELL_FILE_INFO *ShellInfoNode;
2085 EFI_SHELL_FILE_INFO *NewShellNode;
2086 BOOLEAN Directory;
2087 CHAR16 *NewFullName;
2088 UINTN Size;
2089
2090 if ( FilePattern == NULL
2091 || UnicodeCollation == NULL
2092 || FileList == NULL
2093 ){
2094 return (EFI_INVALID_PARAMETER);
2095 }
2096 ShellInfo = NULL;
2097 CurrentFilePattern = NULL;
2098
2099 if (*FilePattern == L'\\') {
2100 FilePattern++;
2101 }
2102
2103 for( NextFilePatternStart = FilePattern
2104 ; *NextFilePatternStart != CHAR_NULL && *NextFilePatternStart != L'\\'
2105 ; NextFilePatternStart++);
2106
2107 CurrentFilePattern = AllocateZeroPool((NextFilePatternStart-FilePattern+1)*sizeof(CHAR16));
2108 ASSERT(CurrentFilePattern != NULL);
2109 StrnCpy(CurrentFilePattern, FilePattern, NextFilePatternStart-FilePattern);
2110
2111 if (CurrentFilePattern[0] == CHAR_NULL
2112 &&NextFilePatternStart[0] == CHAR_NULL
2113 ){
2114 //
2115 // Add the current parameter FileHandle to the list, then end...
2116 //
2117 if (ParentNode == NULL) {
2118 Status = EFI_INVALID_PARAMETER;
2119 } else {
2120 NewShellNode = InternalDuplicateShellFileInfo((EFI_SHELL_FILE_INFO*)ParentNode, TRUE);
2121 if (NewShellNode == NULL) {
2122 Status = EFI_OUT_OF_RESOURCES;
2123 } else {
2124 NewShellNode->Handle = NULL;
2125 if (*FileList == NULL) {
2126 *FileList = AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
2127 InitializeListHead(&((*FileList)->Link));
2128 }
2129
2130 //
2131 // Add to the returning to use list
2132 //
2133 InsertTailList(&(*FileList)->Link, &NewShellNode->Link);
2134
2135 Status = EFI_SUCCESS;
2136 }
2137 }
2138 } else {
2139 Status = EfiShellFindFilesInDir(FileHandle, &ShellInfo);
2140
2141 if (!EFI_ERROR(Status)){
2142 if (StrStr(NextFilePatternStart, L"\\") != NULL){
2143 Directory = TRUE;
2144 } else {
2145 Directory = FALSE;
2146 }
2147 for ( ShellInfoNode = (EFI_SHELL_FILE_INFO*)GetFirstNode(&ShellInfo->Link)
2148 ; !IsNull (&ShellInfo->Link, &ShellInfoNode->Link)
2149 ; ShellInfoNode = (EFI_SHELL_FILE_INFO*)GetNextNode(&ShellInfo->Link, &ShellInfoNode->Link)
2150 ){
2151 if (UnicodeCollation->MetaiMatch(UnicodeCollation, (CHAR16*)ShellInfoNode->FileName, CurrentFilePattern)){
2152 if (ShellInfoNode->FullName != NULL && StrStr(ShellInfoNode->FullName, L":") == NULL) {
2153 Size = StrSize(ShellInfoNode->FullName);
2154 Size += StrSize(MapName) + sizeof(CHAR16);
2155 NewFullName = AllocateZeroPool(Size);
2156 if (NewFullName == NULL) {
2157 Status = EFI_OUT_OF_RESOURCES;
2158 } else {
2159 StrCpy(NewFullName, MapName);
2160 StrCat(NewFullName, ShellInfoNode->FullName+1);
2161 FreePool((VOID*)ShellInfoNode->FullName);
2162 ShellInfoNode->FullName = NewFullName;
2163 }
2164 }
2165 if (Directory && !EFI_ERROR(Status) && ShellInfoNode->FullName != NULL && ShellInfoNode->FileName != NULL){
2166 //
2167 // should be a directory
2168 //
2169
2170 //
2171 // don't open the . and .. directories
2172 //
2173 if ( (StrCmp(ShellInfoNode->FileName, L".") != 0)
2174 && (StrCmp(ShellInfoNode->FileName, L"..") != 0)
2175 ){
2176 //
2177 //
2178 //
2179 if (EFI_ERROR(Status)) {
2180 break;
2181 }
2182 //
2183 // Open the directory since we need that handle in the next recursion.
2184 //
2185 ShellInfoNode->Status = EfiShellOpenFileByName (ShellInfoNode->FullName, &ShellInfoNode->Handle, EFI_FILE_MODE_READ);
2186
2187 //
2188 // recurse with the next part of the pattern
2189 //
2190 Status = ShellSearchHandle(NextFilePatternStart, UnicodeCollation, ShellInfoNode->Handle, FileList, ShellInfoNode, MapName);
2191 }
2192 } else if (!EFI_ERROR(Status)) {
2193 //
2194 // should be a file
2195 //
2196
2197 //
2198 // copy the information we need into a new Node
2199 //
2200 NewShellNode = InternalDuplicateShellFileInfo(ShellInfoNode, FALSE);
2201 ASSERT(NewShellNode != NULL);
2202 if (NewShellNode == NULL) {
2203 Status = EFI_OUT_OF_RESOURCES;
2204 }
2205 if (*FileList == NULL) {
2206 *FileList = AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
2207 InitializeListHead(&((*FileList)->Link));
2208 }
2209
2210 //
2211 // Add to the returning to use list
2212 //
2213 InsertTailList(&(*FileList)->Link, &NewShellNode->Link);
2214 }
2215 }
2216 if (EFI_ERROR(Status)) {
2217 break;
2218 }
2219 }
2220 if (EFI_ERROR(Status)) {
2221 EfiShellFreeFileList(&ShellInfo);
2222 } else {
2223 Status = EfiShellFreeFileList(&ShellInfo);
2224 }
2225 }
2226 }
2227
2228 FreePool(CurrentFilePattern);
2229 return (Status);
2230 }
2231
2232 /**
2233 Find files that match a specified pattern.
2234
2235 This function searches for all files and directories that match the specified
2236 FilePattern. The FilePattern can contain wild-card characters. The resulting file
2237 information is placed in the file list FileList.
2238
2239 Wildcards are processed
2240 according to the rules specified in UEFI Shell 2.0 spec section 3.7.1.
2241
2242 The files in the file list are not opened. The OpenMode field is set to 0 and the FileInfo
2243 field is set to NULL.
2244
2245 if *FileList is not NULL then it must be a pre-existing and properly initialized list.
2246
2247 @param FilePattern Points to a NULL-terminated shell file path, including wildcards.
2248 @param FileList On return, points to the start of a file list containing the names
2249 of all matching files or else points to NULL if no matching files
2250 were found. only on a EFI_SUCCESS return will; this be non-NULL.
2251
2252 @retval EFI_SUCCESS Files found. FileList is a valid list.
2253 @retval EFI_NOT_FOUND No files found.
2254 @retval EFI_NO_MEDIA The device has no media
2255 @retval EFI_DEVICE_ERROR The device reported an error
2256 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted
2257 **/
2258 EFI_STATUS
2259 EFIAPI
2260 EfiShellFindFiles(
2261 IN CONST CHAR16 *FilePattern,
2262 OUT EFI_SHELL_FILE_INFO **FileList
2263 )
2264 {
2265 EFI_STATUS Status;
2266 CHAR16 *PatternCopy;
2267 CHAR16 *PatternCurrentLocation;
2268 EFI_DEVICE_PATH_PROTOCOL *RootDevicePath;
2269 SHELL_FILE_HANDLE RootFileHandle;
2270 CHAR16 *MapName;
2271 UINTN Count;
2272
2273 if ( FilePattern == NULL
2274 || FileList == NULL
2275 || StrStr(FilePattern, L":") == NULL
2276 ){
2277 return (EFI_INVALID_PARAMETER);
2278 }
2279 Status = EFI_SUCCESS;
2280 RootDevicePath = NULL;
2281 RootFileHandle = NULL;
2282 MapName = NULL;
2283 PatternCopy = AllocateZeroPool(StrSize(FilePattern));
2284 if (PatternCopy == NULL) {
2285 return (EFI_OUT_OF_RESOURCES);
2286 }
2287 StrCpy(PatternCopy, FilePattern);
2288
2289 PatternCopy = PathCleanUpDirectories(PatternCopy);
2290
2291 Count = StrStr(PatternCopy, L":") - PatternCopy;
2292 Count += 2;
2293
2294 ASSERT(MapName == NULL);
2295 MapName = StrnCatGrow(&MapName, NULL, PatternCopy, Count);
2296 if (MapName == NULL) {
2297 Status = EFI_OUT_OF_RESOURCES;
2298 } else {
2299 RootDevicePath = EfiShellGetDevicePathFromFilePath(PatternCopy);
2300 if (RootDevicePath == NULL) {
2301 Status = EFI_INVALID_PARAMETER;
2302 } else {
2303 Status = EfiShellOpenRoot(RootDevicePath, &RootFileHandle);
2304 if (!EFI_ERROR(Status)) {
2305 for ( PatternCurrentLocation = PatternCopy
2306 ; *PatternCurrentLocation != ':'
2307 ; PatternCurrentLocation++);
2308 PatternCurrentLocation++;
2309 Status = ShellSearchHandle(PatternCurrentLocation, gUnicodeCollation, RootFileHandle, FileList, NULL, MapName);
2310 }
2311 FreePool(RootDevicePath);
2312 }
2313 }
2314
2315 SHELL_FREE_NON_NULL(PatternCopy);
2316 SHELL_FREE_NON_NULL(MapName);
2317
2318 return(Status);
2319 }
2320
2321 /**
2322 Opens the files that match the path specified.
2323
2324 This function opens all of the files specified by Path. Wildcards are processed
2325 according to the rules specified in UEFI Shell 2.0 spec section 3.7.1. Each
2326 matching file has an EFI_SHELL_FILE_INFO structure created in a linked list.
2327
2328 @param Path A pointer to the path string.
2329 @param OpenMode Specifies the mode used to open each file, EFI_FILE_MODE_READ or
2330 EFI_FILE_MODE_WRITE.
2331 @param FileList Points to the start of a list of files opened.
2332
2333 @retval EFI_SUCCESS Create the file list successfully.
2334 @return Others Can't create the file list.
2335 **/
2336 EFI_STATUS
2337 EFIAPI
2338 EfiShellOpenFileList(
2339 IN CHAR16 *Path,
2340 IN UINT64 OpenMode,
2341 IN OUT EFI_SHELL_FILE_INFO **FileList
2342 )
2343 {
2344 EFI_STATUS Status;
2345 EFI_SHELL_FILE_INFO *ShellFileListItem;
2346 CHAR16 *Path2;
2347 UINTN Path2Size;
2348 CONST CHAR16 *CurDir;
2349 BOOLEAN Found;
2350
2351 PathCleanUpDirectories(Path);
2352
2353 Path2Size = 0;
2354 Path2 = NULL;
2355
2356 if (FileList == NULL || *FileList == NULL) {
2357 return (EFI_INVALID_PARAMETER);
2358 }
2359
2360 if (*Path == L'.' && *(Path+1) == L'\\') {
2361 Path+=2;
2362 }
2363
2364 //
2365 // convert a local path to an absolute path
2366 //
2367 if (StrStr(Path, L":") == NULL) {
2368 CurDir = EfiShellGetCurDir(NULL);
2369 ASSERT((Path2 == NULL && Path2Size == 0) || (Path2 != NULL));
2370 StrnCatGrow(&Path2, &Path2Size, CurDir, 0);
2371 if (*Path == L'\\') {
2372 Path++;
2373 while (PathRemoveLastItem(Path2)) ;
2374 }
2375 ASSERT((Path2 == NULL && Path2Size == 0) || (Path2 != NULL));
2376 StrnCatGrow(&Path2, &Path2Size, Path, 0);
2377 } else {
2378 ASSERT(Path2 == NULL);
2379 StrnCatGrow(&Path2, NULL, Path, 0);
2380 }
2381
2382 PathCleanUpDirectories (Path2);
2383
2384 //
2385 // do the search
2386 //
2387 Status = EfiShellFindFiles(Path2, FileList);
2388
2389 FreePool(Path2);
2390
2391 if (EFI_ERROR(Status)) {
2392 return (Status);
2393 }
2394
2395 Found = FALSE;
2396 //
2397 // We had no errors so open all the files (that are not already opened...)
2398 //
2399 for ( ShellFileListItem = (EFI_SHELL_FILE_INFO*)GetFirstNode(&(*FileList)->Link)
2400 ; !IsNull(&(*FileList)->Link, &ShellFileListItem->Link)
2401 ; ShellFileListItem = (EFI_SHELL_FILE_INFO*)GetNextNode(&(*FileList)->Link, &ShellFileListItem->Link)
2402 ){
2403 if (ShellFileListItem->Status == 0 && ShellFileListItem->Handle == NULL) {
2404 ShellFileListItem->Status = EfiShellOpenFileByName (ShellFileListItem->FullName, &ShellFileListItem->Handle, OpenMode);
2405 Found = TRUE;
2406 }
2407 }
2408
2409 if (!Found) {
2410 return (EFI_NOT_FOUND);
2411 }
2412 return(EFI_SUCCESS);
2413 }
2414
2415 /**
2416 This function updated with errata.
2417
2418 Gets either a single or list of environment variables.
2419
2420 If name is not NULL then this function returns the current value of the specified
2421 environment variable.
2422
2423 If Name is NULL, then a list of all environment variable names is returned. Each is a
2424 NULL terminated string with a double NULL terminating the list.
2425
2426 @param Name A pointer to the environment variable name. If
2427 Name is NULL, then the function will return all
2428 of the defined shell environment variables. In
2429 the case where multiple environment variables are
2430 being returned, each variable will be terminated by
2431 a NULL, and the list will be terminated by a double
2432 NULL.
2433
2434 @return !=NULL A pointer to the returned string.
2435 The returned pointer does not need to be freed by the caller.
2436
2437 @retval NULL The environment variable doesn't exist or there are
2438 no environment variables.
2439 **/
2440 CONST CHAR16 *
2441 EFIAPI
2442 EfiShellGetEnv(
2443 IN CONST CHAR16 *Name
2444 )
2445 {
2446 EFI_STATUS Status;
2447 VOID *Buffer;
2448 UINTN Size;
2449 LIST_ENTRY List;
2450 ENV_VAR_LIST *Node;
2451 CHAR16 *CurrentWriteLocation;
2452
2453 Size = 0;
2454 Buffer = NULL;
2455
2456 if (Name == NULL) {
2457 //
2458 // Get all our environment variables
2459 //
2460 InitializeListHead(&List);
2461 Status = GetEnvironmentVariableList(&List);
2462 if (EFI_ERROR(Status)){
2463 return (NULL);
2464 }
2465
2466 //
2467 // Build the semi-colon delimited list. (2 passes)
2468 //
2469 for ( Node = (ENV_VAR_LIST*)GetFirstNode(&List)
2470 ; !IsNull(&List, &Node->Link)
2471 ; Node = (ENV_VAR_LIST*)GetNextNode(&List, &Node->Link)
2472 ){
2473 ASSERT(Node->Key != NULL);
2474 Size += StrSize(Node->Key);
2475 }
2476
2477 Size += 2*sizeof(CHAR16);
2478
2479 Buffer = AllocateZeroPool(Size);
2480 if (Buffer == NULL) {
2481 if (!IsListEmpty (&List)) {
2482 FreeEnvironmentVariableList(&List);
2483 }
2484 return (NULL);
2485 }
2486 CurrentWriteLocation = (CHAR16*)Buffer;
2487
2488 for ( Node = (ENV_VAR_LIST*)GetFirstNode(&List)
2489 ; !IsNull(&List, &Node->Link)
2490 ; Node = (ENV_VAR_LIST*)GetNextNode(&List, &Node->Link)
2491 ){
2492 ASSERT(Node->Key != NULL);
2493 StrCpy(CurrentWriteLocation, Node->Key);
2494 CurrentWriteLocation += StrLen(CurrentWriteLocation) + 1;
2495 }
2496
2497 //
2498 // Free the list...
2499 //
2500 if (!IsListEmpty (&List)) {
2501 FreeEnvironmentVariableList(&List);
2502 }
2503 } else {
2504 //
2505 // We are doing a specific environment variable
2506 //
2507
2508 //
2509 // get the size we need for this EnvVariable
2510 //
2511 Status = SHELL_GET_ENVIRONMENT_VARIABLE(Name, &Size, Buffer);
2512 if (Status == EFI_BUFFER_TOO_SMALL) {
2513 //
2514 // Allocate the space and recall the get function
2515 //
2516 Buffer = AllocateZeroPool(Size);
2517 ASSERT(Buffer != NULL);
2518 Status = SHELL_GET_ENVIRONMENT_VARIABLE(Name, &Size, Buffer);
2519 }
2520 //
2521 // we didnt get it (might not exist)
2522 // free the memory if we allocated any and return NULL
2523 //
2524 if (EFI_ERROR(Status)) {
2525 if (Buffer != NULL) {
2526 FreePool(Buffer);
2527 }
2528 return (NULL);
2529 }
2530 }
2531
2532 //
2533 // return the buffer
2534 //
2535 return (AddBufferToFreeList(Buffer));
2536 }
2537
2538 /**
2539 Internal variable setting function. Allows for setting of the read only variables.
2540
2541 @param Name Points to the NULL-terminated environment variable name.
2542 @param Value Points to the NULL-terminated environment variable value. If the value is an
2543 empty string then the environment variable is deleted.
2544 @param Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).
2545
2546 @retval EFI_SUCCESS The environment variable was successfully updated.
2547 **/
2548 EFI_STATUS
2549 EFIAPI
2550 InternalEfiShellSetEnv(
2551 IN CONST CHAR16 *Name,
2552 IN CONST CHAR16 *Value,
2553 IN BOOLEAN Volatile
2554 )
2555 {
2556 if (Value == NULL || StrLen(Value) == 0) {
2557 return (SHELL_DELETE_ENVIRONMENT_VARIABLE(Name));
2558 } else {
2559 SHELL_DELETE_ENVIRONMENT_VARIABLE(Name);
2560 if (Volatile) {
2561 return (SHELL_SET_ENVIRONMENT_VARIABLE_V(Name, StrSize(Value), Value));
2562 } else {
2563 return (SHELL_SET_ENVIRONMENT_VARIABLE_NV(Name, StrSize(Value), Value));
2564 }
2565 }
2566 }
2567
2568 /**
2569 Sets the environment variable.
2570
2571 This function changes the current value of the specified environment variable. If the
2572 environment variable exists and the Value is an empty string, then the environment
2573 variable is deleted. If the environment variable exists and the Value is not an empty
2574 string, then the value of the environment variable is changed. If the environment
2575 variable does not exist and the Value is an empty string, there is no action. If the
2576 environment variable does not exist and the Value is a non-empty string, then the
2577 environment variable is created and assigned the specified value.
2578
2579 For a description of volatile and non-volatile environment variables, see UEFI Shell
2580 2.0 specification section 3.6.1.
2581
2582 @param Name Points to the NULL-terminated environment variable name.
2583 @param Value Points to the NULL-terminated environment variable value. If the value is an
2584 empty string then the environment variable is deleted.
2585 @param Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).
2586
2587 @retval EFI_SUCCESS The environment variable was successfully updated.
2588 **/
2589 EFI_STATUS
2590 EFIAPI
2591 EfiShellSetEnv(
2592 IN CONST CHAR16 *Name,
2593 IN CONST CHAR16 *Value,
2594 IN BOOLEAN Volatile
2595 )
2596 {
2597 if (Name == NULL || *Name == CHAR_NULL) {
2598 return (EFI_INVALID_PARAMETER);
2599 }
2600 //
2601 // Make sure we dont 'set' a predefined read only variable
2602 //
2603 if (gUnicodeCollation->StriColl(
2604 gUnicodeCollation,
2605 (CHAR16*)Name,
2606 L"cwd") == 0
2607 ||gUnicodeCollation->StriColl(
2608 gUnicodeCollation,
2609 (CHAR16*)Name,
2610 L"Lasterror") == 0
2611 ||gUnicodeCollation->StriColl(
2612 gUnicodeCollation,
2613 (CHAR16*)Name,
2614 L"profiles") == 0
2615 ||gUnicodeCollation->StriColl(
2616 gUnicodeCollation,
2617 (CHAR16*)Name,
2618 L"uefishellsupport") == 0
2619 ||gUnicodeCollation->StriColl(
2620 gUnicodeCollation,
2621 (CHAR16*)Name,
2622 L"uefishellversion") == 0
2623 ||gUnicodeCollation->StriColl(
2624 gUnicodeCollation,
2625 (CHAR16*)Name,
2626 L"uefiversion") == 0
2627 ){
2628 return (EFI_INVALID_PARAMETER);
2629 }
2630 return (InternalEfiShellSetEnv(Name, Value, Volatile));
2631 }
2632
2633 /**
2634 Returns the current directory on the specified device.
2635
2636 If FileSystemMapping is NULL, it returns the current working directory. If the
2637 FileSystemMapping is not NULL, it returns the current directory associated with the
2638 FileSystemMapping. In both cases, the returned name includes the file system
2639 mapping (i.e. fs0:\current-dir).
2640
2641 @param FileSystemMapping A pointer to the file system mapping. If NULL,
2642 then the current working directory is returned.
2643
2644 @retval !=NULL The current directory.
2645 @retval NULL Current directory does not exist.
2646 **/
2647 CONST CHAR16 *
2648 EFIAPI
2649 EfiShellGetCurDir(
2650 IN CONST CHAR16 *FileSystemMapping OPTIONAL
2651 )
2652 {
2653 CHAR16 *PathToReturn;
2654 UINTN Size;
2655 SHELL_MAP_LIST *MapListItem;
2656 if (!IsListEmpty(&gShellMapList.Link)) {
2657 //
2658 // if parameter is NULL, use current
2659 //
2660 if (FileSystemMapping == NULL) {
2661 return (EfiShellGetEnv(L"cwd"));
2662 } else {
2663 Size = 0;
2664 PathToReturn = NULL;
2665 MapListItem = ShellCommandFindMapItem(FileSystemMapping);
2666 if (MapListItem != NULL) {
2667 ASSERT((PathToReturn == NULL && Size == 0) || (PathToReturn != NULL));
2668 PathToReturn = StrnCatGrow(&PathToReturn, &Size, MapListItem->MapName, 0);
2669 PathToReturn = StrnCatGrow(&PathToReturn, &Size, MapListItem->CurrentDirectoryPath, 0);
2670 }
2671 }
2672 return (AddBufferToFreeList(PathToReturn));
2673 } else {
2674 return (NULL);
2675 }
2676 }
2677
2678 /**
2679 Changes the current directory on the specified device.
2680
2681 If the FileSystem is NULL, and the directory Dir does not contain a file system's
2682 mapped name, this function changes the current working directory.
2683
2684 If the FileSystem is NULL and the directory Dir contains a mapped name, then the
2685 current file system and the current directory on that file system are changed.
2686
2687 If FileSystem is NULL, and Dir is not NULL, then this changes the current working file
2688 system.
2689
2690 If FileSystem is not NULL and Dir is not NULL, then this function changes the current
2691 directory on the specified file system.
2692
2693 If the current working directory or the current working file system is changed then the
2694 %cwd% environment variable will be updated
2695
2696 @param FileSystem A pointer to the file system's mapped name. If NULL, then the current working
2697 directory is changed.
2698 @param Dir Points to the NULL-terminated directory on the device specified by FileSystem.
2699
2700 @retval EFI_SUCCESS The operation was sucessful
2701 @retval EFI_NOT_FOUND The file system could not be found
2702 **/
2703 EFI_STATUS
2704 EFIAPI
2705 EfiShellSetCurDir(
2706 IN CONST CHAR16 *FileSystem OPTIONAL,
2707 IN CONST CHAR16 *Dir
2708 )
2709 {
2710 CHAR16 *MapName;
2711 SHELL_MAP_LIST *MapListItem;
2712 UINTN Size;
2713 EFI_STATUS Status;
2714 CHAR16 *TempString;
2715 CHAR16 *DirectoryName;
2716 UINTN TempLen;
2717
2718 Size = 0;
2719 MapName = NULL;
2720 MapListItem = NULL;
2721 TempString = NULL;
2722 DirectoryName = NULL;
2723
2724 if ((FileSystem == NULL && Dir == NULL) || Dir == NULL) {
2725 return (EFI_INVALID_PARAMETER);
2726 }
2727
2728 if (IsListEmpty(&gShellMapList.Link)){
2729 return (EFI_NOT_FOUND);
2730 }
2731
2732 DirectoryName = StrnCatGrow(&DirectoryName, NULL, Dir, 0);
2733 ASSERT(DirectoryName != NULL);
2734
2735 PathCleanUpDirectories(DirectoryName);
2736
2737 if (FileSystem == NULL) {
2738 //
2739 // determine the file system mapping to use
2740 //
2741 if (StrStr(DirectoryName, L":") != NULL) {
2742 ASSERT(MapName == NULL);
2743 MapName = StrnCatGrow(&MapName, NULL, DirectoryName, (StrStr(DirectoryName, L":")-DirectoryName+1));
2744 }
2745 //
2746 // find the file system mapping's entry in the list
2747 // or use current
2748 //
2749 if (MapName != NULL) {
2750 MapListItem = ShellCommandFindMapItem(MapName);
2751
2752 //
2753 // make that the current file system mapping
2754 //
2755 if (MapListItem != NULL) {
2756 gShellCurDir = MapListItem;
2757 }
2758 } else {
2759 MapListItem = gShellCurDir;
2760 }
2761
2762 if (MapListItem == NULL) {
2763 return (EFI_NOT_FOUND);
2764 }
2765
2766 //
2767 // now update the MapListItem's current directory
2768 //
2769 if (MapListItem->CurrentDirectoryPath != NULL && DirectoryName[StrLen(DirectoryName) - 1] != L':') {
2770 FreePool(MapListItem->CurrentDirectoryPath);
2771 MapListItem->CurrentDirectoryPath = NULL;
2772 }
2773 if (MapName != NULL) {
2774 TempLen = StrLen(MapName);
2775 if (TempLen != StrLen(DirectoryName)) {
2776 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2777 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, DirectoryName+StrLen(MapName), 0);
2778 }
2779 } else {
2780 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2781 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, DirectoryName, 0);
2782 }
2783 if ((MapListItem->CurrentDirectoryPath != NULL && MapListItem->CurrentDirectoryPath[StrLen(MapListItem->CurrentDirectoryPath)-1] != L'\\') || (MapListItem->CurrentDirectoryPath == NULL)) {
2784 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2785 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, L"\\", 0);
2786 }
2787 } else {
2788 //
2789 // cant have a mapping in the directory...
2790 //
2791 if (StrStr(DirectoryName, L":") != NULL) {
2792 return (EFI_INVALID_PARAMETER);
2793 }
2794 //
2795 // FileSystem != NULL
2796 //
2797 MapListItem = ShellCommandFindMapItem(FileSystem);
2798 if (MapListItem == NULL) {
2799 return (EFI_INVALID_PARAMETER);
2800 }
2801 // gShellCurDir = MapListItem;
2802 if (DirectoryName != NULL) {
2803 //
2804 // change current dir on that file system
2805 //
2806
2807 if (MapListItem->CurrentDirectoryPath != NULL) {
2808 FreePool(MapListItem->CurrentDirectoryPath);
2809 DEBUG_CODE(MapListItem->CurrentDirectoryPath = NULL;);
2810 }
2811 // ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2812 // MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, FileSystem, 0);
2813 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2814 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, L"\\", 0);
2815 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2816 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, DirectoryName, 0);
2817 if (MapListItem->CurrentDirectoryPath != NULL && MapListItem->CurrentDirectoryPath[StrLen(MapListItem->CurrentDirectoryPath)-1] != L'\\') {
2818 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2819 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, L"\\", 0);
2820 }
2821 }
2822 }
2823 //
2824 // if updated the current directory then update the environment variable
2825 //
2826 if (MapListItem == gShellCurDir) {
2827 Size = 0;
2828 ASSERT((TempString == NULL && Size == 0) || (TempString != NULL));
2829 StrnCatGrow(&TempString, &Size, MapListItem->MapName, 0);
2830 ASSERT((TempString == NULL && Size == 0) || (TempString != NULL));
2831 StrnCatGrow(&TempString, &Size, MapListItem->CurrentDirectoryPath, 0);
2832 Status = InternalEfiShellSetEnv(L"cwd", TempString, TRUE);
2833 FreePool(TempString);
2834 return (Status);
2835 }
2836 return(EFI_SUCCESS);
2837 }
2838
2839 /**
2840 Return help information about a specific command.
2841
2842 This function returns the help information for the specified command. The help text
2843 can be internal to the shell or can be from a UEFI Shell manual page.
2844
2845 If Sections is specified, then each section name listed will be compared in a casesensitive
2846 manner, to the section names described in Appendix B. If the section exists,
2847 it will be appended to the returned help text. If the section does not exist, no
2848 information will be returned. If Sections is NULL, then all help text information
2849 available will be returned.
2850
2851 @param Command Points to the NULL-terminated UEFI Shell command name.
2852 @param Sections Points to the NULL-terminated comma-delimited
2853 section names to return. If NULL, then all
2854 sections will be returned.
2855 @param HelpText On return, points to a callee-allocated buffer
2856 containing all specified help text.
2857
2858 @retval EFI_SUCCESS The help text was returned.
2859 @retval EFI_OUT_OF_RESOURCES The necessary buffer could not be allocated to hold the
2860 returned help text.
2861 @retval EFI_INVALID_PARAMETER HelpText is NULL
2862 @retval EFI_NOT_FOUND There is no help text available for Command.
2863 **/
2864 EFI_STATUS
2865 EFIAPI
2866 EfiShellGetHelpText(
2867 IN CONST CHAR16 *Command,
2868 IN CONST CHAR16 *Sections OPTIONAL,
2869 OUT CHAR16 **HelpText
2870 )
2871 {
2872 CONST CHAR16 *ManFileName;
2873 CHAR16 *FixCommand;
2874 EFI_STATUS Status;
2875
2876 ASSERT(HelpText != NULL);
2877 FixCommand = NULL;
2878
2879 ManFileName = ShellCommandGetManFileNameHandler(Command);
2880
2881 if (ManFileName != NULL) {
2882 return (ProcessManFile(ManFileName, Command, Sections, NULL, HelpText));
2883 } else {
2884 if ((StrLen(Command)> 4)
2885 && (Command[StrLen(Command)-1] == L'i' || Command[StrLen(Command)-1] == L'I')
2886 && (Command[StrLen(Command)-2] == L'f' || Command[StrLen(Command)-2] == L'F')
2887 && (Command[StrLen(Command)-3] == L'e' || Command[StrLen(Command)-3] == L'E')
2888 && (Command[StrLen(Command)-4] == L'.')
2889 ) {
2890 FixCommand = AllocateZeroPool(StrSize(Command) - 4 * sizeof (CHAR16));
2891 ASSERT(FixCommand != NULL);
2892
2893 StrnCpy(FixCommand, Command, StrLen(Command)-4);
2894 Status = ProcessManFile(FixCommand, FixCommand, Sections, NULL, HelpText);
2895 FreePool(FixCommand);
2896 return Status;
2897 } else {
2898 return (ProcessManFile(Command, Command, Sections, NULL, HelpText));
2899 }
2900 }
2901 }
2902
2903 /**
2904 Gets the enable status of the page break output mode.
2905
2906 User can use this function to determine current page break mode.
2907
2908 @retval TRUE The page break output mode is enabled.
2909 @retval FALSE The page break output mode is disabled.
2910 **/
2911 BOOLEAN
2912 EFIAPI
2913 EfiShellGetPageBreak(
2914 VOID
2915 )
2916 {
2917 return(ShellInfoObject.PageBreakEnabled);
2918 }
2919
2920 /**
2921 Judges whether the active shell is the root shell.
2922
2923 This function makes the user to know that whether the active Shell is the root shell.
2924
2925 @retval TRUE The active Shell is the root Shell.
2926 @retval FALSE The active Shell is NOT the root Shell.
2927 **/
2928 BOOLEAN
2929 EFIAPI
2930 EfiShellIsRootShell(
2931 VOID
2932 )
2933 {
2934 return(ShellInfoObject.RootShellInstance);
2935 }
2936
2937 /**
2938 function to return a semi-colon delimeted list of all alias' in the current shell
2939
2940 up to caller to free the memory.
2941
2942 @retval NULL No alias' were found
2943 @retval NULL An error ocurred getting alias'
2944 @return !NULL a list of all alias'
2945 **/
2946 CHAR16 *
2947 EFIAPI
2948 InternalEfiShellGetListAlias(
2949 )
2950 {
2951 UINT64 MaxStorSize;
2952 UINT64 RemStorSize;
2953 UINT64 MaxVarSize;
2954 EFI_STATUS Status;
2955 EFI_GUID Guid;
2956 CHAR16 *VariableName;
2957 UINTN NameSize;
2958 CHAR16 *RetVal;
2959 UINTN RetSize;
2960
2961 Status = gRT->QueryVariableInfo(EFI_VARIABLE_NON_VOLATILE|EFI_VARIABLE_BOOTSERVICE_ACCESS, &MaxStorSize, &RemStorSize, &MaxVarSize);
2962 ASSERT_EFI_ERROR(Status);
2963
2964 VariableName = AllocateZeroPool((UINTN)MaxVarSize);
2965 RetSize = 0;
2966 RetVal = NULL;
2967
2968 if (VariableName == NULL) {
2969 return (NULL);
2970 }
2971
2972 VariableName[0] = CHAR_NULL;
2973
2974 while (TRUE) {
2975 NameSize = (UINTN)MaxVarSize;
2976 Status = gRT->GetNextVariableName(&NameSize, VariableName, &Guid);
2977 if (Status == EFI_NOT_FOUND){
2978 break;
2979 }
2980 ASSERT_EFI_ERROR(Status);
2981 if (EFI_ERROR(Status)) {
2982 break;
2983 }
2984 if (CompareGuid(&Guid, &gShellAliasGuid)){
2985 ASSERT((RetVal == NULL && RetSize == 0) || (RetVal != NULL));
2986 RetVal = StrnCatGrow(&RetVal, &RetSize, VariableName, 0);
2987 RetVal = StrnCatGrow(&RetVal, &RetSize, L";", 0);
2988 } // compare guid
2989 } // while
2990 FreePool(VariableName);
2991
2992 return (RetVal);
2993 }
2994
2995 /**
2996 Convert a null-terminated unicode string, in-place, to all lowercase.
2997 Then return it.
2998 **/
2999 STATIC
3000 CHAR16 *
3001 ToLower (
3002 CHAR16 *Str
3003 )
3004 {
3005 UINTN Index;
3006
3007 for (Index = 0; Str[Index] != L'\0'; Index++) {
3008 if (Str[Index] >= L'A' && Str[Index] <= L'Z') {
3009 Str[Index] -= (CHAR16)(L'A' - L'a');
3010 }
3011 }
3012 return Str;
3013 }
3014
3015 /**
3016 This function returns the command associated with a alias or a list of all
3017 alias'.
3018
3019 @param[in] Alias Points to the NULL-terminated shell alias.
3020 If this parameter is NULL, then all
3021 aliases will be returned in ReturnedData.
3022 @param[out] Volatile upon return of a single command if TRUE indicates
3023 this is stored in a volatile fashion. FALSE otherwise.
3024
3025 @return If Alias is not NULL, it will return a pointer to
3026 the NULL-terminated command for that alias.
3027 If Alias is NULL, ReturnedData points to a ';'
3028 delimited list of alias (e.g.
3029 ReturnedData = "dir;del;copy;mfp") that is NULL-terminated.
3030 @retval NULL an error ocurred
3031 @retval NULL Alias was not a valid Alias
3032 **/
3033 CONST CHAR16 *
3034 EFIAPI
3035 EfiShellGetAlias(
3036 IN CONST CHAR16 *Alias,
3037 OUT BOOLEAN *Volatile OPTIONAL
3038 )
3039 {
3040 CHAR16 *RetVal;
3041 UINTN RetSize;
3042 UINT32 Attribs;
3043 EFI_STATUS Status;
3044 CHAR16 *AliasLower;
3045
3046 // Convert to lowercase to make aliases case-insensitive
3047 if (Alias != NULL) {
3048 AliasLower = AllocateCopyPool (StrSize (Alias), Alias);
3049 ASSERT (AliasLower != NULL);
3050 ToLower (AliasLower);
3051
3052 if (Volatile == NULL) {
3053 return (AddBufferToFreeList(GetVariable(AliasLower, &gShellAliasGuid)));
3054 }
3055 RetSize = 0;
3056 RetVal = NULL;
3057 Status = gRT->GetVariable(AliasLower, &gShellAliasGuid, &Attribs, &RetSize, RetVal);
3058 if (Status == EFI_BUFFER_TOO_SMALL) {
3059 RetVal = AllocateZeroPool(RetSize);
3060 Status = gRT->GetVariable(AliasLower, &gShellAliasGuid, &Attribs, &RetSize, RetVal);
3061 }
3062 if (EFI_ERROR(Status)) {
3063 if (RetVal != NULL) {
3064 FreePool(RetVal);
3065 }
3066 return (NULL);
3067 }
3068 if ((EFI_VARIABLE_NON_VOLATILE & Attribs) == EFI_VARIABLE_NON_VOLATILE) {
3069 *Volatile = FALSE;
3070 } else {
3071 *Volatile = TRUE;
3072 }
3073
3074 FreePool (AliasLower);
3075 return (AddBufferToFreeList(RetVal));
3076 }
3077 return (AddBufferToFreeList(InternalEfiShellGetListAlias()));
3078 }
3079
3080 /**
3081 Changes a shell command alias.
3082
3083 This function creates an alias for a shell command or if Alias is NULL it will delete an existing alias.
3084
3085 this function does not check for built in alias'.
3086
3087 @param[in] Command Points to the NULL-terminated shell command or existing alias.
3088 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and
3089 Command refers to an alias, that alias will be deleted.
3090 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the
3091 Alias being set will be stored in a non-volatile fashion.
3092
3093 @retval EFI_SUCCESS Alias created or deleted successfully.
3094 @retval EFI_NOT_FOUND the Alias intended to be deleted was not found
3095 **/
3096 EFI_STATUS
3097 EFIAPI
3098 InternalSetAlias(
3099 IN CONST CHAR16 *Command,
3100 IN CONST CHAR16 *Alias,
3101 IN BOOLEAN Volatile
3102 )
3103 {
3104 EFI_STATUS Status;
3105 CHAR16 *AliasLower;
3106
3107 // Convert to lowercase to make aliases case-insensitive
3108 if (Alias != NULL) {
3109 AliasLower = AllocateCopyPool (StrSize (Alias), Alias);
3110 ASSERT (AliasLower != NULL);
3111 ToLower (AliasLower);
3112 } else {
3113 AliasLower = NULL;
3114 }
3115
3116 //
3117 // We must be trying to remove one if Alias is NULL
3118 //
3119 if (Alias == NULL) {
3120 //
3121 // remove an alias (but passed in COMMAND parameter)
3122 //
3123 Status = (gRT->SetVariable((CHAR16*)Command, &gShellAliasGuid, 0, 0, NULL));
3124 } else {
3125 //
3126 // Add and replace are the same
3127 //
3128
3129 // We dont check the error return on purpose since the variable may not exist.
3130 gRT->SetVariable((CHAR16*)Command, &gShellAliasGuid, 0, 0, NULL);
3131
3132 Status = (gRT->SetVariable((CHAR16*)Alias, &gShellAliasGuid, EFI_VARIABLE_BOOTSERVICE_ACCESS|(Volatile?0:EFI_VARIABLE_NON_VOLATILE), StrSize(Command), (VOID*)Command));
3133 }
3134
3135 if (Alias != NULL) {
3136 FreePool (AliasLower);
3137 }
3138 return Status;
3139 }
3140
3141 /**
3142 Changes a shell command alias.
3143
3144 This function creates an alias for a shell command or if Alias is NULL it will delete an existing alias.
3145
3146
3147 @param[in] Command Points to the NULL-terminated shell command or existing alias.
3148 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and
3149 Command refers to an alias, that alias will be deleted.
3150 @param[in] Replace If TRUE and the alias already exists, then the existing alias will be replaced. If
3151 FALSE and the alias already exists, then the existing alias is unchanged and
3152 EFI_ACCESS_DENIED is returned.
3153 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the
3154 Alias being set will be stored in a non-volatile fashion.
3155
3156 @retval EFI_SUCCESS Alias created or deleted successfully.
3157 @retval EFI_NOT_FOUND the Alias intended to be deleted was not found
3158 @retval EFI_ACCESS_DENIED The alias is a built-in alias or already existed and Replace was set to
3159 FALSE.
3160 @retval EFI_INVALID_PARAMETER Command is null or the empty string.
3161 **/
3162 EFI_STATUS
3163 EFIAPI
3164 EfiShellSetAlias(
3165 IN CONST CHAR16 *Command,
3166 IN CONST CHAR16 *Alias,
3167 IN BOOLEAN Replace,
3168 IN BOOLEAN Volatile
3169 )
3170 {
3171 if (ShellCommandIsOnAliasList(Alias==NULL?Command:Alias)) {
3172 //
3173 // cant set over a built in alias
3174 //
3175 return (EFI_ACCESS_DENIED);
3176 } else if (Command == NULL || *Command == CHAR_NULL || StrLen(Command) == 0) {
3177 //
3178 // Command is null or empty
3179 //
3180 return (EFI_INVALID_PARAMETER);
3181 } else if (EfiShellGetAlias(Command, NULL) != NULL && !Replace) {
3182 //
3183 // Alias already exists, Replace not set
3184 //
3185 return (EFI_ACCESS_DENIED);
3186 } else {
3187 return (InternalSetAlias(Command, Alias, Volatile));
3188 }
3189 }
3190
3191 // Pure FILE_HANDLE operations are passed to FileHandleLib
3192 // these functions are indicated by the *
3193 EFI_SHELL_PROTOCOL mShellProtocol = {
3194 EfiShellExecute,
3195 EfiShellGetEnv,
3196 EfiShellSetEnv,
3197 EfiShellGetAlias,
3198 EfiShellSetAlias,
3199 EfiShellGetHelpText,
3200 EfiShellGetDevicePathFromMap,
3201 EfiShellGetMapFromDevicePath,
3202 EfiShellGetDevicePathFromFilePath,
3203 EfiShellGetFilePathFromDevicePath,
3204 EfiShellSetMap,
3205 EfiShellGetCurDir,
3206 EfiShellSetCurDir,
3207 EfiShellOpenFileList,
3208 EfiShellFreeFileList,
3209 EfiShellRemoveDupInFileList,
3210 EfiShellBatchIsActive,
3211 EfiShellIsRootShell,
3212 EfiShellEnablePageBreak,
3213 EfiShellDisablePageBreak,
3214 EfiShellGetPageBreak,
3215 EfiShellGetDeviceName,
3216 (EFI_SHELL_GET_FILE_INFO)FileHandleGetInfo, //*
3217 (EFI_SHELL_SET_FILE_INFO)FileHandleSetInfo, //*
3218 EfiShellOpenFileByName,
3219 EfiShellClose,
3220 EfiShellCreateFile,
3221 (EFI_SHELL_READ_FILE)FileHandleRead, //*
3222 (EFI_SHELL_WRITE_FILE)FileHandleWrite, //*
3223 (EFI_SHELL_DELETE_FILE)FileHandleDelete, //*
3224 EfiShellDeleteFileByName,
3225 (EFI_SHELL_GET_FILE_POSITION)FileHandleGetPosition, //*
3226 (EFI_SHELL_SET_FILE_POSITION)FileHandleSetPosition, //*
3227 (EFI_SHELL_FLUSH_FILE)FileHandleFlush, //*
3228 EfiShellFindFiles,
3229 EfiShellFindFilesInDir,
3230 (EFI_SHELL_GET_FILE_SIZE)FileHandleGetSize, //*
3231 EfiShellOpenRoot,
3232 EfiShellOpenRootByHandle,
3233 NULL,
3234 SHELL_MAJOR_VERSION,
3235 SHELL_MINOR_VERSION
3236 };
3237
3238 /**
3239 Function to create and install on the current handle.
3240
3241 Will overwrite any existing ShellProtocols in the system to be sure that
3242 the current shell is in control.
3243
3244 This must be removed via calling CleanUpShellProtocol().
3245
3246 @param[in, out] NewShell The pointer to the pointer to the structure
3247 to install.
3248
3249 @retval EFI_SUCCESS The operation was successful.
3250 @return An error from LocateHandle, CreateEvent, or other core function.
3251 **/
3252 EFI_STATUS
3253 EFIAPI
3254 CreatePopulateInstallShellProtocol (
3255 IN OUT EFI_SHELL_PROTOCOL **NewShell
3256 )
3257 {
3258 EFI_STATUS Status;
3259 UINTN BufferSize;
3260 EFI_HANDLE *Buffer;
3261 UINTN HandleCounter;
3262 SHELL_PROTOCOL_HANDLE_LIST *OldProtocolNode;
3263
3264 if (NewShell == NULL) {
3265 return (EFI_INVALID_PARAMETER);
3266 }
3267
3268 BufferSize = 0;
3269 Buffer = NULL;
3270 OldProtocolNode = NULL;
3271 InitializeListHead(&ShellInfoObject.OldShellList.Link);
3272
3273 //
3274 // Initialize EfiShellProtocol object...
3275 //
3276 Status = gBS->CreateEvent(0,
3277 0,
3278 NULL,
3279 NULL,
3280 &mShellProtocol.ExecutionBreak);
3281 if (EFI_ERROR(Status)) {
3282 return (Status);
3283 }
3284
3285 //
3286 // Get the size of the buffer we need.
3287 //
3288 Status = gBS->LocateHandle(ByProtocol,
3289 &gEfiShellProtocolGuid,
3290 NULL,
3291 &BufferSize,
3292 Buffer);
3293 if (Status == EFI_BUFFER_TOO_SMALL) {
3294 //
3295 // Allocate and recall with buffer of correct size
3296 //
3297 Buffer = AllocateZeroPool(BufferSize);
3298 if (Buffer == NULL) {
3299 return (EFI_OUT_OF_RESOURCES);
3300 }
3301 Status = gBS->LocateHandle(ByProtocol,
3302 &gEfiShellProtocolGuid,
3303 NULL,
3304 &BufferSize,
3305 Buffer);
3306 if (EFI_ERROR(Status)) {
3307 FreePool(Buffer);
3308 return (Status);
3309 }
3310 //
3311 // now overwrite each of them, but save the info to restore when we end.
3312 //
3313 for (HandleCounter = 0 ; HandleCounter < (BufferSize/sizeof(EFI_HANDLE)) ; HandleCounter++) {
3314 OldProtocolNode = AllocateZeroPool(sizeof(SHELL_PROTOCOL_HANDLE_LIST));
3315 ASSERT(OldProtocolNode != NULL);
3316 Status = gBS->OpenProtocol(Buffer[HandleCounter],
3317 &gEfiShellProtocolGuid,
3318 (VOID **) &(OldProtocolNode->Interface),
3319 gImageHandle,
3320 NULL,
3321 EFI_OPEN_PROTOCOL_GET_PROTOCOL
3322 );
3323 if (!EFI_ERROR(Status)) {
3324 //
3325 // reinstall over the old one...
3326 //
3327 OldProtocolNode->Handle = Buffer[HandleCounter];
3328 Status = gBS->ReinstallProtocolInterface(
3329 OldProtocolNode->Handle,
3330 &gEfiShellProtocolGuid,
3331 OldProtocolNode->Interface,
3332 (VOID*)(&mShellProtocol));
3333 if (!EFI_ERROR(Status)) {
3334 //
3335 // we reinstalled sucessfully. log this so we can reverse it later.
3336 //
3337
3338 //
3339 // add to the list for subsequent...
3340 //
3341 InsertTailList(&ShellInfoObject.OldShellList.Link, &OldProtocolNode->Link);
3342 }
3343 }
3344 }
3345 FreePool(Buffer);
3346 } else if (Status == EFI_NOT_FOUND) {
3347 ASSERT(IsListEmpty(&ShellInfoObject.OldShellList.Link));
3348 //
3349 // no one else published yet. just publish it ourselves.
3350 //
3351 Status = gBS->InstallProtocolInterface (
3352 &gImageHandle,
3353 &gEfiShellProtocolGuid,
3354 EFI_NATIVE_INTERFACE,
3355 (VOID*)(&mShellProtocol));
3356 }
3357
3358 if (PcdGetBool(PcdShellSupportOldProtocols)){
3359 ///@todo support ShellEnvironment2
3360 ///@todo do we need to support ShellEnvironment (not ShellEnvironment2) also?
3361 }
3362
3363 if (!EFI_ERROR(Status)) {
3364 *NewShell = &mShellProtocol;
3365 }
3366 return (Status);
3367 }
3368
3369 /**
3370 Opposite of CreatePopulateInstallShellProtocol.
3371
3372 Free all memory and restore the system to the state it was in before calling
3373 CreatePopulateInstallShellProtocol.
3374
3375 @param[in, out] NewShell The pointer to the new shell protocol structure.
3376
3377 @retval EFI_SUCCESS The operation was successful.
3378 **/
3379 EFI_STATUS
3380 EFIAPI
3381 CleanUpShellProtocol (
3382 IN OUT EFI_SHELL_PROTOCOL *NewShell
3383 )
3384 {
3385 EFI_STATUS Status;
3386 SHELL_PROTOCOL_HANDLE_LIST *Node2;
3387 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *SimpleEx;
3388
3389 //
3390 // if we need to restore old protocols...
3391 //
3392 if (!IsListEmpty(&ShellInfoObject.OldShellList.Link)) {
3393 for (Node2 = (SHELL_PROTOCOL_HANDLE_LIST *)GetFirstNode(&ShellInfoObject.OldShellList.Link)
3394 ; !IsListEmpty (&ShellInfoObject.OldShellList.Link)
3395 ; Node2 = (SHELL_PROTOCOL_HANDLE_LIST *)GetFirstNode(&ShellInfoObject.OldShellList.Link)
3396 ){
3397 RemoveEntryList(&Node2->Link);
3398 Status = gBS->ReinstallProtocolInterface(Node2->Handle,
3399 &gEfiShellProtocolGuid,
3400 NewShell,
3401 Node2->Interface);
3402 FreePool(Node2);
3403 }
3404 } else {
3405 //
3406 // no need to restore
3407 //
3408 Status = gBS->UninstallProtocolInterface(gImageHandle,
3409 &gEfiShellProtocolGuid,
3410 NewShell);
3411 }
3412 Status = gBS->CloseEvent(NewShell->ExecutionBreak);
3413 NewShell->ExecutionBreak = NULL;
3414
3415 Status = gBS->OpenProtocol(
3416 gST->ConsoleInHandle,
3417 &gEfiSimpleTextInputExProtocolGuid,
3418 (VOID**)&SimpleEx,
3419 gImageHandle,
3420 NULL,
3421 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
3422
3423 if (!EFI_ERROR (Status)) {
3424 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlCNotifyHandle1);
3425 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlCNotifyHandle2);
3426 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlCNotifyHandle3);
3427 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlCNotifyHandle4);
3428 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlSNotifyHandle1);
3429 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlSNotifyHandle2);
3430 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlSNotifyHandle3);
3431 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlSNotifyHandle4);
3432 }
3433 return (Status);
3434 }
3435
3436 /**
3437 Notification function for keystrokes.
3438
3439 @param[in] KeyData The key that was pressed.
3440
3441 @retval EFI_SUCCESS The operation was successful.
3442 **/
3443 EFI_STATUS
3444 EFIAPI
3445 NotificationFunction(
3446 IN EFI_KEY_DATA *KeyData
3447 )
3448 {
3449 if ( ((KeyData->Key.UnicodeChar == L'c') &&
3450 (KeyData->KeyState.KeyShiftState == (EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED) || KeyData->KeyState.KeyShiftState == (EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED))) ||
3451 (KeyData->Key.UnicodeChar == 3)
3452 ){
3453 if (ShellInfoObject.NewEfiShellProtocol->ExecutionBreak == NULL) {
3454 return (EFI_UNSUPPORTED);
3455 }
3456 return (gBS->SignalEvent(ShellInfoObject.NewEfiShellProtocol->ExecutionBreak));
3457 } else if ((KeyData->Key.UnicodeChar == L's') &&
3458 (KeyData->KeyState.KeyShiftState == (EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED) || KeyData->KeyState.KeyShiftState == (EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED))
3459 ){
3460 ShellInfoObject.HaltOutput = TRUE;
3461 }
3462 return (EFI_SUCCESS);
3463 }
3464
3465 /**
3466 Function to start monitoring for CTRL-C using SimpleTextInputEx. This
3467 feature's enabled state was not known when the shell initially launched.
3468
3469 @retval EFI_SUCCESS The feature is enabled.
3470 @retval EFI_OUT_OF_RESOURCES There is not enough mnemory available.
3471 **/
3472 EFI_STATUS
3473 EFIAPI
3474 InernalEfiShellStartMonitor(
3475 VOID
3476 )
3477 {
3478 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *SimpleEx;
3479 EFI_KEY_DATA KeyData;
3480 EFI_STATUS Status;
3481
3482 Status = gBS->OpenProtocol(
3483 gST->ConsoleInHandle,
3484 &gEfiSimpleTextInputExProtocolGuid,
3485 (VOID**)&SimpleEx,
3486 gImageHandle,
3487 NULL,
3488 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
3489 if (EFI_ERROR(Status)) {
3490 ShellPrintHiiEx(
3491 -1,
3492 -1,
3493 NULL,
3494 STRING_TOKEN (STR_SHELL_NO_IN_EX),
3495 ShellInfoObject.HiiHandle);
3496 return (EFI_SUCCESS);
3497 }
3498
3499 if (ShellInfoObject.NewEfiShellProtocol->ExecutionBreak == NULL) {
3500 return (EFI_UNSUPPORTED);
3501 }
3502
3503 KeyData.KeyState.KeyToggleState = 0;
3504 KeyData.Key.ScanCode = 0;
3505 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED;
3506 KeyData.Key.UnicodeChar = L'c';
3507
3508 Status = SimpleEx->RegisterKeyNotify(
3509 SimpleEx,
3510 &KeyData,
3511 NotificationFunction,
3512 &ShellInfoObject.CtrlCNotifyHandle1);
3513
3514 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED;
3515 if (!EFI_ERROR(Status)) {
3516 Status = SimpleEx->RegisterKeyNotify(
3517 SimpleEx,
3518 &KeyData,
3519 NotificationFunction,
3520 &ShellInfoObject.CtrlCNotifyHandle2);
3521 }
3522 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED;
3523 KeyData.Key.UnicodeChar = 3;
3524 if (!EFI_ERROR(Status)) {
3525 Status = SimpleEx->RegisterKeyNotify(
3526 SimpleEx,
3527 &KeyData,
3528 NotificationFunction,
3529 &ShellInfoObject.CtrlCNotifyHandle3);
3530 }
3531 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED;
3532 if (!EFI_ERROR(Status)) {
3533 Status = SimpleEx->RegisterKeyNotify(
3534 SimpleEx,
3535 &KeyData,
3536 NotificationFunction,
3537 &ShellInfoObject.CtrlCNotifyHandle4);
3538 }
3539 return (Status);
3540 }