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