]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Application/Shell/ShellProtocol.c
ShellPkg: Refine code by initializing local variable and adding ASSERT statement.
[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 // all the rest should be file path nodes
453 //
454 if ((DevicePathType(&FilePath->Header) != MEDIA_DEVICE_PATH) ||
455 (DevicePathSubType(&FilePath->Header) != MEDIA_FILEPATH_DP)) {
456 FreePool(PathForReturn);
457 PathForReturn = NULL;
458 ASSERT(FALSE);
459 } else {
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 }
484 } // for loop of remaining nodes
485 }
486 if (PathForReturn != NULL) {
487 break;
488 }
489 } // for loop of paths to check
490 return(PathForReturn);
491 }
492
493 /**
494 Converts a file system style name to a device path.
495
496 This function converts a file system style name to a device path, by replacing any
497 mapping references to the associated device path.
498
499 @param[in] Path The pointer to the path.
500
501 @return The pointer of the file path. The file path is callee
502 allocated and should be freed by the caller.
503 @retval NULL The path could not be found.
504 @retval NULL There was not enough available memory.
505 **/
506 EFI_DEVICE_PATH_PROTOCOL *
507 EFIAPI
508 EfiShellGetDevicePathFromFilePath(
509 IN CONST CHAR16 *Path
510 )
511 {
512 CHAR16 *MapName;
513 CHAR16 *NewPath;
514 CONST CHAR16 *Cwd;
515 UINTN Size;
516 CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath;
517 EFI_DEVICE_PATH_PROTOCOL *DevicePathCopy;
518 EFI_DEVICE_PATH_PROTOCOL *DevicePathCopyForFree;
519 EFI_DEVICE_PATH_PROTOCOL *DevicePathForReturn;
520 EFI_HANDLE Handle;
521 EFI_STATUS Status;
522
523 if (Path == NULL) {
524 return (NULL);
525 }
526
527 MapName = NULL;
528 NewPath = NULL;
529
530 if (StrStr(Path, L":") == NULL) {
531 Cwd = EfiShellGetCurDir(NULL);
532 if (Cwd == NULL) {
533 return (NULL);
534 }
535 Size = StrSize(Cwd) + StrSize(Path);
536 NewPath = AllocateZeroPool(Size);
537 if (NewPath == NULL) {
538 return (NULL);
539 }
540 StrCpyS(NewPath, Size/sizeof(CHAR16), Cwd);
541 StrCatS(NewPath, Size/sizeof(CHAR16), L"\\");
542 if (*Path == L'\\') {
543 Path++;
544 while (PathRemoveLastItem(NewPath)) ;
545 }
546 StrCatS(NewPath, Size/sizeof(CHAR16), Path);
547 DevicePathForReturn = EfiShellGetDevicePathFromFilePath(NewPath);
548 FreePool(NewPath);
549 return (DevicePathForReturn);
550 }
551
552 Size = 0;
553 //
554 // find the part before (but including) the : for the map name
555 //
556 ASSERT((MapName == NULL && Size == 0) || (MapName != NULL));
557 MapName = StrnCatGrow(&MapName, &Size, Path, (StrStr(Path, L":")-Path+1));
558 if (MapName == NULL || MapName[StrLen(MapName)-1] != L':') {
559 return (NULL);
560 }
561
562 //
563 // look up the device path in the map
564 //
565 DevicePath = EfiShellGetDevicePathFromMap(MapName);
566 if (DevicePath == NULL) {
567 //
568 // Must have been a bad Mapname
569 //
570 return (NULL);
571 }
572
573 //
574 // make a copy for LocateDevicePath to modify (also save a pointer to call FreePool with)
575 //
576 DevicePathCopyForFree = DevicePathCopy = DuplicateDevicePath(DevicePath);
577 if (DevicePathCopy == NULL) {
578 FreePool(MapName);
579 return (NULL);
580 }
581
582 //
583 // get the handle
584 //
585 ///@todo BlockIo?
586 Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid, &DevicePathCopy, &Handle);
587 if (EFI_ERROR(Status)) {
588 if (DevicePathCopyForFree != NULL) {
589 FreePool(DevicePathCopyForFree);
590 }
591 FreePool(MapName);
592 return (NULL);
593 }
594
595 //
596 // build the full device path
597 //
598 if (*(Path+StrLen(MapName)+1) == CHAR_NULL) {
599 DevicePathForReturn = FileDevicePath(Handle, L"\\");
600 } else {
601 DevicePathForReturn = FileDevicePath(Handle, Path+StrLen(MapName));
602 }
603
604 FreePool(MapName);
605 if (DevicePathCopyForFree != NULL) {
606 FreePool(DevicePathCopyForFree);
607 }
608
609 return (DevicePathForReturn);
610 }
611
612 /**
613 Gets the name of the device specified by the device handle.
614
615 This function gets the user-readable name of the device specified by the device
616 handle. If no user-readable name could be generated, then *BestDeviceName will be
617 NULL and EFI_NOT_FOUND will be returned.
618
619 If EFI_DEVICE_NAME_USE_COMPONENT_NAME is set, then the function will return the
620 device's name using the EFI_COMPONENT_NAME2_PROTOCOL, if present on
621 DeviceHandle.
622
623 If EFI_DEVICE_NAME_USE_DEVICE_PATH is set, then the function will return the
624 device's name using the EFI_DEVICE_PATH_PROTOCOL, if present on DeviceHandle.
625 If both EFI_DEVICE_NAME_USE_COMPONENT_NAME and
626 EFI_DEVICE_NAME_USE_DEVICE_PATH are set, then
627 EFI_DEVICE_NAME_USE_COMPONENT_NAME will have higher priority.
628
629 @param DeviceHandle The handle of the device.
630 @param Flags Determines the possible sources of component names.
631 Valid bits are:
632 EFI_DEVICE_NAME_USE_COMPONENT_NAME
633 EFI_DEVICE_NAME_USE_DEVICE_PATH
634 @param Language A pointer to the language specified for the device
635 name, in the same format as described in the UEFI
636 specification, Appendix M
637 @param BestDeviceName On return, points to the callee-allocated NULL-
638 terminated name of the device. If no device name
639 could be found, points to NULL. The name must be
640 freed by the caller...
641
642 @retval EFI_SUCCESS Get the name successfully.
643 @retval EFI_NOT_FOUND Fail to get the device name.
644 @retval EFI_INVALID_PARAMETER Flags did not have a valid bit set.
645 @retval EFI_INVALID_PARAMETER BestDeviceName was NULL
646 @retval EFI_INVALID_PARAMETER DeviceHandle was NULL
647 **/
648 EFI_STATUS
649 EFIAPI
650 EfiShellGetDeviceName(
651 IN EFI_HANDLE DeviceHandle,
652 IN EFI_SHELL_DEVICE_NAME_FLAGS Flags,
653 IN CHAR8 *Language,
654 OUT CHAR16 **BestDeviceName
655 )
656 {
657 EFI_STATUS Status;
658 EFI_COMPONENT_NAME2_PROTOCOL *CompName2;
659 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
660 EFI_HANDLE *HandleList;
661 UINTN HandleCount;
662 UINTN LoopVar;
663 CHAR16 *DeviceNameToReturn;
664 CHAR8 *Lang;
665 UINTN ParentControllerCount;
666 EFI_HANDLE *ParentControllerBuffer;
667 UINTN ParentDriverCount;
668 EFI_HANDLE *ParentDriverBuffer;
669
670 if (BestDeviceName == NULL ||
671 DeviceHandle == NULL
672 ){
673 return (EFI_INVALID_PARAMETER);
674 }
675
676 //
677 // make sure one of the 2 supported bits is on
678 //
679 if (((Flags & EFI_DEVICE_NAME_USE_COMPONENT_NAME) == 0) &&
680 ((Flags & EFI_DEVICE_NAME_USE_DEVICE_PATH) == 0)) {
681 return (EFI_INVALID_PARAMETER);
682 }
683
684 DeviceNameToReturn = NULL;
685 *BestDeviceName = NULL;
686 HandleList = NULL;
687 HandleCount = 0;
688 Lang = NULL;
689
690 if ((Flags & EFI_DEVICE_NAME_USE_COMPONENT_NAME) != 0) {
691 Status = ParseHandleDatabaseByRelationship(
692 NULL,
693 DeviceHandle,
694 HR_DRIVER_BINDING_HANDLE|HR_DEVICE_DRIVER,
695 &HandleCount,
696 &HandleList);
697 for (LoopVar = 0; LoopVar < HandleCount ; LoopVar++){
698 //
699 // Go through those handles until we get one that passes for GetComponentName
700 //
701 Status = gBS->OpenProtocol(
702 HandleList[LoopVar],
703 &gEfiComponentName2ProtocolGuid,
704 (VOID**)&CompName2,
705 gImageHandle,
706 NULL,
707 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
708 if (EFI_ERROR(Status)) {
709 Status = gBS->OpenProtocol(
710 HandleList[LoopVar],
711 &gEfiComponentNameProtocolGuid,
712 (VOID**)&CompName2,
713 gImageHandle,
714 NULL,
715 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
716 }
717
718 if (EFI_ERROR(Status)) {
719 continue;
720 }
721 Lang = GetBestLanguageForDriver(CompName2->SupportedLanguages, Language, FALSE);
722 Status = CompName2->GetControllerName(CompName2, DeviceHandle, NULL, Lang, &DeviceNameToReturn);
723 FreePool(Lang);
724 Lang = NULL;
725 if (!EFI_ERROR(Status) && DeviceNameToReturn != NULL) {
726 break;
727 }
728 }
729 if (HandleList != NULL) {
730 FreePool(HandleList);
731 }
732
733 //
734 // Now check the parent controller using this as the child.
735 //
736 if (DeviceNameToReturn == NULL){
737 PARSE_HANDLE_DATABASE_PARENTS(DeviceHandle, &ParentControllerCount, &ParentControllerBuffer);
738 for (LoopVar = 0 ; LoopVar < ParentControllerCount ; LoopVar++) {
739 PARSE_HANDLE_DATABASE_UEFI_DRIVERS(ParentControllerBuffer[LoopVar], &ParentDriverCount, &ParentDriverBuffer);
740 for (HandleCount = 0 ; HandleCount < ParentDriverCount ; HandleCount++) {
741 //
742 // try using that driver's component name with controller and our driver as the child.
743 //
744 Status = gBS->OpenProtocol(
745 ParentDriverBuffer[HandleCount],
746 &gEfiComponentName2ProtocolGuid,
747 (VOID**)&CompName2,
748 gImageHandle,
749 NULL,
750 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
751 if (EFI_ERROR(Status)) {
752 Status = gBS->OpenProtocol(
753 ParentDriverBuffer[HandleCount],
754 &gEfiComponentNameProtocolGuid,
755 (VOID**)&CompName2,
756 gImageHandle,
757 NULL,
758 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
759 }
760
761 if (EFI_ERROR(Status)) {
762 continue;
763 }
764 Lang = GetBestLanguageForDriver(CompName2->SupportedLanguages, Language, FALSE);
765 Status = CompName2->GetControllerName(CompName2, ParentControllerBuffer[LoopVar], DeviceHandle, Lang, &DeviceNameToReturn);
766 FreePool(Lang);
767 Lang = NULL;
768 if (!EFI_ERROR(Status) && DeviceNameToReturn != NULL) {
769 break;
770 }
771
772
773
774 }
775 SHELL_FREE_NON_NULL(ParentDriverBuffer);
776 if (!EFI_ERROR(Status) && DeviceNameToReturn != NULL) {
777 break;
778 }
779 }
780 SHELL_FREE_NON_NULL(ParentControllerBuffer);
781 }
782 //
783 // dont return on fail since we will try device path if that bit is on
784 //
785 if (DeviceNameToReturn != NULL){
786 ASSERT(BestDeviceName != NULL);
787 StrnCatGrow(BestDeviceName, NULL, DeviceNameToReturn, 0);
788 return (EFI_SUCCESS);
789 }
790 }
791 if ((Flags & EFI_DEVICE_NAME_USE_DEVICE_PATH) != 0) {
792 Status = gBS->OpenProtocol(
793 DeviceHandle,
794 &gEfiDevicePathProtocolGuid,
795 (VOID**)&DevicePath,
796 gImageHandle,
797 NULL,
798 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
799 if (!EFI_ERROR(Status)) {
800 //
801 // use device path to text on the device path
802 //
803 *BestDeviceName = ConvertDevicePathToText(DevicePath, TRUE, TRUE);
804 return (EFI_SUCCESS);
805 }
806 }
807 //
808 // none of the selected bits worked.
809 //
810 return (EFI_NOT_FOUND);
811 }
812
813 /**
814 Opens the root directory of a device on a handle
815
816 This function opens the root directory of a device and returns a file handle to it.
817
818 @param DeviceHandle The handle of the device that contains the volume.
819 @param FileHandle On exit, points to the file handle corresponding to the root directory on the
820 device.
821
822 @retval EFI_SUCCESS Root opened successfully.
823 @retval EFI_NOT_FOUND EFI_SIMPLE_FILE_SYSTEM could not be found or the root directory
824 could not be opened.
825 @retval EFI_VOLUME_CORRUPTED The data structures in the volume were corrupted.
826 @retval EFI_DEVICE_ERROR The device had an error
827 **/
828 EFI_STATUS
829 EFIAPI
830 EfiShellOpenRootByHandle(
831 IN EFI_HANDLE DeviceHandle,
832 OUT SHELL_FILE_HANDLE *FileHandle
833 )
834 {
835 EFI_STATUS Status;
836 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *SimpleFileSystem;
837 EFI_FILE_PROTOCOL *RealFileHandle;
838 EFI_DEVICE_PATH_PROTOCOL *DevPath;
839
840 //
841 // get the simple file system interface
842 //
843 Status = gBS->OpenProtocol(DeviceHandle,
844 &gEfiSimpleFileSystemProtocolGuid,
845 (VOID**)&SimpleFileSystem,
846 gImageHandle,
847 NULL,
848 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
849 if (EFI_ERROR(Status)) {
850 return (EFI_NOT_FOUND);
851 }
852
853 Status = gBS->OpenProtocol(DeviceHandle,
854 &gEfiDevicePathProtocolGuid,
855 (VOID**)&DevPath,
856 gImageHandle,
857 NULL,
858 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
859 if (EFI_ERROR(Status)) {
860 return (EFI_NOT_FOUND);
861 }
862 //
863 // Open the root volume now...
864 //
865 Status = SimpleFileSystem->OpenVolume(SimpleFileSystem, &RealFileHandle);
866 *FileHandle = ConvertEfiFileProtocolToShellHandle(RealFileHandle, EfiShellGetMapFromDevicePath(&DevPath));
867 return (Status);
868 }
869
870 /**
871 Opens the root directory of a device.
872
873 This function opens the root directory of a device and returns a file handle to it.
874
875 @param DevicePath Points to the device path corresponding to the device where the
876 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL is installed.
877 @param FileHandle On exit, points to the file handle corresponding to the root directory on the
878 device.
879
880 @retval EFI_SUCCESS Root opened successfully.
881 @retval EFI_NOT_FOUND EFI_SIMPLE_FILE_SYSTEM could not be found or the root directory
882 could not be opened.
883 @retval EFI_VOLUME_CORRUPTED The data structures in the volume were corrupted.
884 @retval EFI_DEVICE_ERROR The device had an error
885 @retval EFI_INVALID_PARAMETER FileHandle is NULL.
886 **/
887 EFI_STATUS
888 EFIAPI
889 EfiShellOpenRoot(
890 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
891 OUT SHELL_FILE_HANDLE *FileHandle
892 )
893 {
894 EFI_STATUS Status;
895 EFI_HANDLE Handle;
896
897 if (FileHandle == NULL) {
898 return (EFI_INVALID_PARAMETER);
899 }
900
901 //
902 // find the handle of the device with that device handle and the file system
903 //
904 ///@todo BlockIo?
905 Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid,
906 &DevicePath,
907 &Handle);
908 if (EFI_ERROR(Status)) {
909 return (EFI_NOT_FOUND);
910 }
911
912 return (EfiShellOpenRootByHandle(Handle, FileHandle));
913 }
914
915 /**
916 Returns whether any script files are currently being processed.
917
918 @retval TRUE There is at least one script file active.
919 @retval FALSE No script files are active now.
920
921 **/
922 BOOLEAN
923 EFIAPI
924 EfiShellBatchIsActive (
925 VOID
926 )
927 {
928 if (ShellCommandGetCurrentScriptFile() == NULL) {
929 return (FALSE);
930 }
931 return (TRUE);
932 }
933
934 /**
935 Worker function to open a file based on a device path. this will open the root
936 of the volume and then traverse down to the file itself.
937
938 @param DevicePath Device Path of the file.
939 @param FileHandle Pointer to the file upon a successful return.
940 @param OpenMode mode to open file in.
941 @param Attributes the File Attributes to use when creating a new file.
942
943 @retval EFI_SUCCESS the file is open and FileHandle is valid
944 @retval EFI_UNSUPPORTED the device path cotained non-path elements
945 @retval other an error ocurred.
946 **/
947 EFI_STATUS
948 EFIAPI
949 InternalOpenFileDevicePath(
950 IN OUT EFI_DEVICE_PATH_PROTOCOL *DevicePath,
951 OUT SHELL_FILE_HANDLE *FileHandle,
952 IN UINT64 OpenMode,
953 IN UINT64 Attributes OPTIONAL
954 )
955 {
956 EFI_STATUS Status;
957 FILEPATH_DEVICE_PATH *FilePathNode;
958 EFI_HANDLE Handle;
959 SHELL_FILE_HANDLE ShellHandle;
960 EFI_FILE_PROTOCOL *Handle1;
961 EFI_FILE_PROTOCOL *Handle2;
962 FILEPATH_DEVICE_PATH *AlignedNode;
963
964 if (FileHandle == NULL) {
965 return (EFI_INVALID_PARAMETER);
966 }
967 *FileHandle = NULL;
968 Handle1 = NULL;
969 Handle2 = NULL;
970 Handle = NULL;
971 ShellHandle = NULL;
972 FilePathNode = NULL;
973 AlignedNode = NULL;
974
975 Status = EfiShellOpenRoot(DevicePath, &ShellHandle);
976
977 if (!EFI_ERROR(Status)) {
978 Handle1 = ConvertShellHandleToEfiFileProtocol(ShellHandle);
979 if (Handle1 != NULL) {
980 //
981 // chop off the begining part before the file system part...
982 //
983 ///@todo BlockIo?
984 Status = gBS->LocateDevicePath(&gEfiSimpleFileSystemProtocolGuid,
985 &DevicePath,
986 &Handle);
987 if (!EFI_ERROR(Status)) {
988 //
989 // To access as a file system, the file path should only
990 // contain file path components. Follow the file path nodes
991 // and find the target file
992 //
993 for ( FilePathNode = (FILEPATH_DEVICE_PATH *)DevicePath
994 ; !IsDevicePathEnd (&FilePathNode->Header)
995 ; FilePathNode = (FILEPATH_DEVICE_PATH *) NextDevicePathNode (&FilePathNode->Header)
996 ){
997 SHELL_FREE_NON_NULL(AlignedNode);
998 AlignedNode = AllocateCopyPool (DevicePathNodeLength(FilePathNode), FilePathNode);
999 //
1000 // For file system access each node should be a file path component
1001 //
1002 if (DevicePathType (&FilePathNode->Header) != MEDIA_DEVICE_PATH ||
1003 DevicePathSubType (&FilePathNode->Header) != MEDIA_FILEPATH_DP
1004 ) {
1005 Status = EFI_UNSUPPORTED;
1006 break;
1007 }
1008
1009 //
1010 // Open this file path node
1011 //
1012 Handle2 = Handle1;
1013 Handle1 = NULL;
1014
1015 //
1016 // if this is the last node in the DevicePath always create (if that was requested).
1017 //
1018 if (IsDevicePathEnd ((NextDevicePathNode (&FilePathNode->Header)))) {
1019 Status = Handle2->Open (
1020 Handle2,
1021 &Handle1,
1022 AlignedNode->PathName,
1023 OpenMode,
1024 Attributes
1025 );
1026 } else {
1027
1028 //
1029 // This is not the last node and we dont want to 'create' existing
1030 // directory entries...
1031 //
1032
1033 //
1034 // open without letting it create
1035 // prevents error on existing files/directories
1036 //
1037 Status = Handle2->Open (
1038 Handle2,
1039 &Handle1,
1040 AlignedNode->PathName,
1041 OpenMode &~EFI_FILE_MODE_CREATE,
1042 Attributes
1043 );
1044 //
1045 // if above failed now open and create the 'item'
1046 // if OpenMode EFI_FILE_MODE_CREATE bit was on (but disabled above)
1047 //
1048 if ((EFI_ERROR (Status)) && ((OpenMode & EFI_FILE_MODE_CREATE) != 0)) {
1049 Status = Handle2->Open (
1050 Handle2,
1051 &Handle1,
1052 AlignedNode->PathName,
1053 OpenMode,
1054 Attributes
1055 );
1056 }
1057 }
1058 //
1059 // Close the last node
1060 //
1061 ShellInfoObject.NewEfiShellProtocol->CloseFile (Handle2);
1062
1063 //
1064 // If there's been an error, stop
1065 //
1066 if (EFI_ERROR (Status)) {
1067 break;
1068 }
1069 } // for loop
1070 }
1071 }
1072 }
1073 SHELL_FREE_NON_NULL(AlignedNode);
1074 if (EFI_ERROR(Status)) {
1075 if (Handle1 != NULL) {
1076 ShellInfoObject.NewEfiShellProtocol->CloseFile(Handle1);
1077 }
1078 } else {
1079 *FileHandle = ConvertEfiFileProtocolToShellHandle(Handle1, ShellFileHandleGetPath(ShellHandle));
1080 }
1081 return (Status);
1082 }
1083
1084 /**
1085 Creates a file or directory by name.
1086
1087 This function creates an empty new file or directory with the specified attributes and
1088 returns the new file's handle. If the file already exists and is read-only, then
1089 EFI_INVALID_PARAMETER will be returned.
1090
1091 If the file already existed, it is truncated and its attributes updated. If the file is
1092 created successfully, the FileHandle is the file's handle, else, the FileHandle is NULL.
1093
1094 If the file name begins with >v, then the file handle which is returned refers to the
1095 shell environment variable with the specified name. If the shell environment variable
1096 already exists and is non-volatile then EFI_INVALID_PARAMETER is returned.
1097
1098 @param FileName Pointer to NULL-terminated file path
1099 @param FileAttribs The new file's attrbiutes. the different attributes are
1100 described in EFI_FILE_PROTOCOL.Open().
1101 @param FileHandle On return, points to the created file handle or directory's handle
1102
1103 @retval EFI_SUCCESS The file was opened. FileHandle points to the new file's handle.
1104 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
1105 @retval EFI_UNSUPPORTED could not open the file path
1106 @retval EFI_NOT_FOUND the specified file could not be found on the devide, or could not
1107 file the file system on the device.
1108 @retval EFI_NO_MEDIA the device has no medium.
1109 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the medium is no
1110 longer supported.
1111 @retval EFI_DEVICE_ERROR The device reported an error or can't get the file path according
1112 the DirName.
1113 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
1114 @retval EFI_WRITE_PROTECTED An attempt was made to create a file, or open a file for write
1115 when the media is write-protected.
1116 @retval EFI_ACCESS_DENIED The service denied access to the file.
1117 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the file.
1118 @retval EFI_VOLUME_FULL The volume is full.
1119 **/
1120 EFI_STATUS
1121 EFIAPI
1122 EfiShellCreateFile(
1123 IN CONST CHAR16 *FileName,
1124 IN UINT64 FileAttribs,
1125 OUT SHELL_FILE_HANDLE *FileHandle
1126 )
1127 {
1128 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
1129 EFI_STATUS Status;
1130
1131 //
1132 // Is this for an environment variable
1133 // do we start with >v
1134 //
1135 if (StrStr(FileName, L">v") == FileName) {
1136 if (!IsVolatileEnv(FileName+2)) {
1137 return (EFI_INVALID_PARAMETER);
1138 }
1139 *FileHandle = CreateFileInterfaceEnv(FileName+2);
1140 return (EFI_SUCCESS);
1141 }
1142
1143 //
1144 // We are opening a regular file.
1145 //
1146 DevicePath = EfiShellGetDevicePathFromFilePath(FileName);
1147 if (DevicePath == NULL) {
1148 return (EFI_NOT_FOUND);
1149 }
1150
1151 Status = InternalOpenFileDevicePath(DevicePath, FileHandle, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE|EFI_FILE_MODE_CREATE, FileAttribs);
1152 FreePool(DevicePath);
1153
1154 return(Status);
1155 }
1156
1157 /**
1158 Register a GUID and a localized human readable name for it.
1159
1160 If Guid is not assigned a name, then assign GuidName to Guid. This list of GUID
1161 names must be used whenever a shell command outputs GUID information.
1162
1163 This function is only available when the major and minor versions in the
1164 EfiShellProtocol are greater than or equal to 2 and 1, respectively.
1165
1166 @param[in] Guid A pointer to the GUID being registered.
1167 @param[in] GuidName A pointer to the localized name for the GUID being registered.
1168
1169 @retval EFI_SUCCESS The operation was successful.
1170 @retval EFI_INVALID_PARAMETER Guid was NULL.
1171 @retval EFI_INVALID_PARAMETER GuidName was NULL.
1172 @retval EFI_ACCESS_DENIED Guid already is assigned a name.
1173 **/
1174 EFI_STATUS
1175 EFIAPI
1176 EfiShellRegisterGuidName(
1177 IN CONST EFI_GUID *Guid,
1178 IN CONST CHAR16 *GuidName
1179 )
1180 {
1181 return (AddNewGuidNameMapping(Guid, GuidName, NULL));
1182 }
1183
1184 /**
1185 Opens a file or a directory by file name.
1186
1187 This function opens the specified file in the specified OpenMode and returns a file
1188 handle.
1189 If the file name begins with >v, then the file handle which is returned refers to the
1190 shell environment variable with the specified name. If the shell environment variable
1191 exists, is non-volatile and the OpenMode indicates EFI_FILE_MODE_WRITE, then
1192 EFI_INVALID_PARAMETER is returned.
1193
1194 If the file name is >i, then the file handle which is returned refers to the standard
1195 input. If the OpenMode indicates EFI_FILE_MODE_WRITE, then EFI_INVALID_PARAMETER
1196 is returned.
1197
1198 If the file name is >o, then the file handle which is returned refers to the standard
1199 output. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER
1200 is returned.
1201
1202 If the file name is >e, then the file handle which is returned refers to the standard
1203 error. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER
1204 is returned.
1205
1206 If the file name is NUL, then the file handle that is returned refers to the standard NUL
1207 file. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER is
1208 returned.
1209
1210 If return EFI_SUCCESS, the FileHandle is the opened file's handle, else, the
1211 FileHandle is NULL.
1212
1213 @param FileName Points to the NULL-terminated UCS-2 encoded file name.
1214 @param FileHandle On return, points to the file handle.
1215 @param OpenMode File open mode. Either EFI_FILE_MODE_READ or
1216 EFI_FILE_MODE_WRITE from section 12.4 of the UEFI
1217 Specification.
1218 @retval EFI_SUCCESS The file was opened. FileHandle has the opened file's handle.
1219 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value. FileHandle is NULL.
1220 @retval EFI_UNSUPPORTED Could not open the file path. FileHandle is NULL.
1221 @retval EFI_NOT_FOUND The specified file could not be found on the device or the file
1222 system could not be found on the device. FileHandle is NULL.
1223 @retval EFI_NO_MEDIA The device has no medium. FileHandle is NULL.
1224 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the medium is no
1225 longer supported. FileHandle is NULL.
1226 @retval EFI_DEVICE_ERROR The device reported an error or can't get the file path according
1227 the FileName. FileHandle is NULL.
1228 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted. FileHandle is NULL.
1229 @retval EFI_WRITE_PROTECTED An attempt was made to create a file, or open a file for write
1230 when the media is write-protected. FileHandle is NULL.
1231 @retval EFI_ACCESS_DENIED The service denied access to the file. FileHandle is NULL.
1232 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the file. FileHandle
1233 is NULL.
1234 @retval EFI_VOLUME_FULL The volume is full. FileHandle is NULL.
1235 **/
1236 EFI_STATUS
1237 EFIAPI
1238 EfiShellOpenFileByName(
1239 IN CONST CHAR16 *FileName,
1240 OUT SHELL_FILE_HANDLE *FileHandle,
1241 IN UINT64 OpenMode
1242 )
1243 {
1244 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
1245 EFI_STATUS Status;
1246
1247 *FileHandle = NULL;
1248
1249 //
1250 // Is this for StdIn
1251 //
1252 if (StrCmp(FileName, L">i") == 0) {
1253 //
1254 // make sure not writing to StdIn
1255 //
1256 if ((OpenMode & EFI_FILE_MODE_WRITE) != 0) {
1257 return (EFI_INVALID_PARAMETER);
1258 }
1259 *FileHandle = ShellInfoObject.NewShellParametersProtocol->StdIn;
1260 ASSERT(*FileHandle != NULL);
1261 return (EFI_SUCCESS);
1262 }
1263
1264 //
1265 // Is this for StdOut
1266 //
1267 if (StrCmp(FileName, L">o") == 0) {
1268 //
1269 // make sure not writing to StdIn
1270 //
1271 if ((OpenMode & EFI_FILE_MODE_READ) != 0) {
1272 return (EFI_INVALID_PARAMETER);
1273 }
1274 *FileHandle = &FileInterfaceStdOut;
1275 return (EFI_SUCCESS);
1276 }
1277
1278 //
1279 // Is this for NUL file
1280 //
1281 if (StrCmp(FileName, L"NUL") == 0) {
1282 *FileHandle = &FileInterfaceNulFile;
1283 return (EFI_SUCCESS);
1284 }
1285
1286 //
1287 // Is this for StdErr
1288 //
1289 if (StrCmp(FileName, L">e") == 0) {
1290 //
1291 // make sure not writing to StdIn
1292 //
1293 if ((OpenMode & EFI_FILE_MODE_READ) != 0) {
1294 return (EFI_INVALID_PARAMETER);
1295 }
1296 *FileHandle = &FileInterfaceStdErr;
1297 return (EFI_SUCCESS);
1298 }
1299
1300 //
1301 // Is this for an environment variable
1302 // do we start with >v
1303 //
1304 if (StrStr(FileName, L">v") == FileName) {
1305 if (!IsVolatileEnv(FileName+2) &&
1306 ((OpenMode & EFI_FILE_MODE_WRITE) != 0)) {
1307 return (EFI_INVALID_PARAMETER);
1308 }
1309 *FileHandle = CreateFileInterfaceEnv(FileName+2);
1310 return (EFI_SUCCESS);
1311 }
1312
1313 //
1314 // We are opening a regular file.
1315 //
1316 DevicePath = EfiShellGetDevicePathFromFilePath(FileName);
1317 // DEBUG_CODE(InternalShellProtocolDebugPrintMessage (NULL, DevicePath););
1318 if (DevicePath == NULL) {
1319 return (EFI_NOT_FOUND);
1320 }
1321
1322 //
1323 // Copy the device path, open the file, then free the memory
1324 //
1325 Status = InternalOpenFileDevicePath(DevicePath, FileHandle, OpenMode, 0); // 0 = no specific file attributes
1326 FreePool(DevicePath);
1327
1328 return(Status);
1329 }
1330
1331 /**
1332 Deletes the file specified by the file name.
1333
1334 This function deletes a file.
1335
1336 @param FileName Points to the NULL-terminated file name.
1337
1338 @retval EFI_SUCCESS The file was closed and deleted, and the handle was closed.
1339 @retval EFI_WARN_DELETE_FAILURE The handle was closed but the file was not deleted.
1340 @sa EfiShellCreateFile
1341 **/
1342 EFI_STATUS
1343 EFIAPI
1344 EfiShellDeleteFileByName(
1345 IN CONST CHAR16 *FileName
1346 )
1347 {
1348 SHELL_FILE_HANDLE FileHandle;
1349 EFI_STATUS Status;
1350
1351 FileHandle = NULL;
1352
1353 //
1354 // get a handle to the file
1355 //
1356 Status = EfiShellCreateFile(FileName,
1357 0,
1358 &FileHandle);
1359 if (EFI_ERROR(Status)) {
1360 return (Status);
1361 }
1362 //
1363 // now delete the file
1364 //
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, 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 }
2343 } else if (!EFI_ERROR(Status)) {
2344 //
2345 // should be a file
2346 //
2347
2348 //
2349 // copy the information we need into a new Node
2350 //
2351 NewShellNode = InternalDuplicateShellFileInfo(ShellInfoNode, FALSE);
2352 ASSERT(NewShellNode != NULL);
2353 if (NewShellNode == NULL) {
2354 Status = EFI_OUT_OF_RESOURCES;
2355 }
2356 if (*FileList == NULL) {
2357 *FileList = AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
2358 InitializeListHead(&((*FileList)->Link));
2359 }
2360
2361 //
2362 // Add to the returning to use list
2363 //
2364 InsertTailList(&(*FileList)->Link, &NewShellNode->Link);
2365 }
2366 }
2367 if (EFI_ERROR(Status)) {
2368 break;
2369 }
2370 }
2371 if (EFI_ERROR(Status)) {
2372 EfiShellFreeFileList(&ShellInfo);
2373 } else {
2374 Status = EfiShellFreeFileList(&ShellInfo);
2375 }
2376 }
2377 }
2378
2379 FreePool(CurrentFilePattern);
2380 return (Status);
2381 }
2382
2383 /**
2384 Find files that match a specified pattern.
2385
2386 This function searches for all files and directories that match the specified
2387 FilePattern. The FilePattern can contain wild-card characters. The resulting file
2388 information is placed in the file list FileList.
2389
2390 Wildcards are processed
2391 according to the rules specified in UEFI Shell 2.0 spec section 3.7.1.
2392
2393 The files in the file list are not opened. The OpenMode field is set to 0 and the FileInfo
2394 field is set to NULL.
2395
2396 if *FileList is not NULL then it must be a pre-existing and properly initialized list.
2397
2398 @param FilePattern Points to a NULL-terminated shell file path, including wildcards.
2399 @param FileList On return, points to the start of a file list containing the names
2400 of all matching files or else points to NULL if no matching files
2401 were found. only on a EFI_SUCCESS return will; this be non-NULL.
2402
2403 @retval EFI_SUCCESS Files found. FileList is a valid list.
2404 @retval EFI_NOT_FOUND No files found.
2405 @retval EFI_NO_MEDIA The device has no media
2406 @retval EFI_DEVICE_ERROR The device reported an error
2407 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted
2408 **/
2409 EFI_STATUS
2410 EFIAPI
2411 EfiShellFindFiles(
2412 IN CONST CHAR16 *FilePattern,
2413 OUT EFI_SHELL_FILE_INFO **FileList
2414 )
2415 {
2416 EFI_STATUS Status;
2417 CHAR16 *PatternCopy;
2418 CHAR16 *PatternCurrentLocation;
2419 EFI_DEVICE_PATH_PROTOCOL *RootDevicePath;
2420 SHELL_FILE_HANDLE RootFileHandle;
2421 CHAR16 *MapName;
2422 UINTN Count;
2423
2424 if ( FilePattern == NULL
2425 || FileList == NULL
2426 || StrStr(FilePattern, L":") == NULL
2427 ){
2428 return (EFI_INVALID_PARAMETER);
2429 }
2430 Status = EFI_SUCCESS;
2431 RootDevicePath = NULL;
2432 RootFileHandle = NULL;
2433 MapName = NULL;
2434 PatternCopy = AllocateCopyPool(StrSize(FilePattern), FilePattern);
2435 if (PatternCopy == NULL) {
2436 return (EFI_OUT_OF_RESOURCES);
2437 }
2438
2439 PatternCopy = PathCleanUpDirectories(PatternCopy);
2440
2441 Count = StrStr(PatternCopy, L":") - PatternCopy;
2442 Count += 2;
2443
2444 ASSERT(MapName == NULL);
2445 MapName = StrnCatGrow(&MapName, NULL, PatternCopy, Count);
2446 if (MapName == NULL) {
2447 Status = EFI_OUT_OF_RESOURCES;
2448 } else {
2449 RootDevicePath = EfiShellGetDevicePathFromFilePath(PatternCopy);
2450 if (RootDevicePath == NULL) {
2451 Status = EFI_INVALID_PARAMETER;
2452 } else {
2453 Status = EfiShellOpenRoot(RootDevicePath, &RootFileHandle);
2454 if (!EFI_ERROR(Status)) {
2455 for ( PatternCurrentLocation = PatternCopy
2456 ; *PatternCurrentLocation != ':'
2457 ; PatternCurrentLocation++);
2458 PatternCurrentLocation++;
2459 Status = ShellSearchHandle(PatternCurrentLocation, gUnicodeCollation, RootFileHandle, FileList, NULL, MapName);
2460 }
2461 FreePool(RootDevicePath);
2462 }
2463 }
2464
2465 SHELL_FREE_NON_NULL(PatternCopy);
2466 SHELL_FREE_NON_NULL(MapName);
2467
2468 return(Status);
2469 }
2470
2471 /**
2472 Opens the files that match the path specified.
2473
2474 This function opens all of the files specified by Path. Wildcards are processed
2475 according to the rules specified in UEFI Shell 2.0 spec section 3.7.1. Each
2476 matching file has an EFI_SHELL_FILE_INFO structure created in a linked list.
2477
2478 @param Path A pointer to the path string.
2479 @param OpenMode Specifies the mode used to open each file, EFI_FILE_MODE_READ or
2480 EFI_FILE_MODE_WRITE.
2481 @param FileList Points to the start of a list of files opened.
2482
2483 @retval EFI_SUCCESS Create the file list successfully.
2484 @return Others Can't create the file list.
2485 **/
2486 EFI_STATUS
2487 EFIAPI
2488 EfiShellOpenFileList(
2489 IN CHAR16 *Path,
2490 IN UINT64 OpenMode,
2491 IN OUT EFI_SHELL_FILE_INFO **FileList
2492 )
2493 {
2494 EFI_STATUS Status;
2495 EFI_SHELL_FILE_INFO *ShellFileListItem;
2496 CHAR16 *Path2;
2497 UINTN Path2Size;
2498 CONST CHAR16 *CurDir;
2499 BOOLEAN Found;
2500
2501 PathCleanUpDirectories(Path);
2502
2503 Path2Size = 0;
2504 Path2 = NULL;
2505
2506 if (FileList == NULL || *FileList == NULL) {
2507 return (EFI_INVALID_PARAMETER);
2508 }
2509
2510 if (*Path == L'.' && *(Path+1) == L'\\') {
2511 Path+=2;
2512 }
2513
2514 //
2515 // convert a local path to an absolute path
2516 //
2517 if (StrStr(Path, L":") == NULL) {
2518 CurDir = EfiShellGetCurDir(NULL);
2519 ASSERT((Path2 == NULL && Path2Size == 0) || (Path2 != NULL));
2520 StrnCatGrow(&Path2, &Path2Size, CurDir, 0);
2521 StrnCatGrow(&Path2, &Path2Size, L"\\", 0);
2522 if (*Path == L'\\') {
2523 Path++;
2524 while (PathRemoveLastItem(Path2)) ;
2525 }
2526 ASSERT((Path2 == NULL && Path2Size == 0) || (Path2 != NULL));
2527 StrnCatGrow(&Path2, &Path2Size, Path, 0);
2528 } else {
2529 ASSERT(Path2 == NULL);
2530 StrnCatGrow(&Path2, NULL, Path, 0);
2531 }
2532
2533 PathCleanUpDirectories (Path2);
2534
2535 //
2536 // do the search
2537 //
2538 Status = EfiShellFindFiles(Path2, FileList);
2539
2540 FreePool(Path2);
2541
2542 if (EFI_ERROR(Status)) {
2543 return (Status);
2544 }
2545
2546 Found = FALSE;
2547 //
2548 // We had no errors so open all the files (that are not already opened...)
2549 //
2550 for ( ShellFileListItem = (EFI_SHELL_FILE_INFO*)GetFirstNode(&(*FileList)->Link)
2551 ; !IsNull(&(*FileList)->Link, &ShellFileListItem->Link)
2552 ; ShellFileListItem = (EFI_SHELL_FILE_INFO*)GetNextNode(&(*FileList)->Link, &ShellFileListItem->Link)
2553 ){
2554 if (ShellFileListItem->Status == 0 && ShellFileListItem->Handle == NULL) {
2555 ShellFileListItem->Status = EfiShellOpenFileByName (ShellFileListItem->FullName, &ShellFileListItem->Handle, OpenMode);
2556 Found = TRUE;
2557 }
2558 }
2559
2560 if (!Found) {
2561 return (EFI_NOT_FOUND);
2562 }
2563 return(EFI_SUCCESS);
2564 }
2565
2566 /**
2567 Gets the environment variable and Attributes, or list of environment variables. Can be
2568 used instead of GetEnv().
2569
2570 This function returns the current value of the specified environment variable and
2571 the Attributes. If no variable name was specified, then all of the known
2572 variables will be returned.
2573
2574 @param[in] Name A pointer to the environment variable name. If Name is NULL,
2575 then the function will return all of the defined shell
2576 environment variables. In the case where multiple environment
2577 variables are being returned, each variable will be terminated
2578 by a NULL, and the list will be terminated by a double NULL.
2579 @param[out] Attributes If not NULL, a pointer to the returned attributes bitmask for
2580 the environment variable. In the case where Name is NULL, and
2581 multiple environment variables are being returned, Attributes
2582 is undefined.
2583
2584 @retval NULL The environment variable doesn't exist.
2585 @return A non-NULL value points to the variable's value. The returned
2586 pointer does not need to be freed by the caller.
2587 **/
2588 CONST CHAR16 *
2589 EFIAPI
2590 EfiShellGetEnvEx(
2591 IN CONST CHAR16 *Name,
2592 OUT UINT32 *Attributes OPTIONAL
2593 )
2594 {
2595 EFI_STATUS Status;
2596 VOID *Buffer;
2597 UINTN Size;
2598 LIST_ENTRY List;
2599 ENV_VAR_LIST *Node;
2600 CHAR16 *CurrentWriteLocation;
2601
2602 Size = 0;
2603 Buffer = NULL;
2604
2605 if (Name == NULL) {
2606 //
2607 // Get all our environment variables
2608 //
2609 InitializeListHead(&List);
2610 Status = GetEnvironmentVariableList(&List);
2611 if (EFI_ERROR(Status)){
2612 return (NULL);
2613 }
2614
2615 //
2616 // Build the semi-colon delimited list. (2 passes)
2617 //
2618 for ( Node = (ENV_VAR_LIST*)GetFirstNode(&List)
2619 ; !IsNull(&List, &Node->Link)
2620 ; Node = (ENV_VAR_LIST*)GetNextNode(&List, &Node->Link)
2621 ){
2622 ASSERT(Node->Key != NULL);
2623 Size += StrSize(Node->Key);
2624 }
2625
2626 Size += 2*sizeof(CHAR16);
2627
2628 Buffer = AllocateZeroPool(Size);
2629 if (Buffer == NULL) {
2630 if (!IsListEmpty (&List)) {
2631 FreeEnvironmentVariableList(&List);
2632 }
2633 return (NULL);
2634 }
2635 CurrentWriteLocation = (CHAR16*)Buffer;
2636
2637 for ( Node = (ENV_VAR_LIST*)GetFirstNode(&List)
2638 ; !IsNull(&List, &Node->Link)
2639 ; Node = (ENV_VAR_LIST*)GetNextNode(&List, &Node->Link)
2640 ){
2641 ASSERT(Node->Key != NULL);
2642 StrCpyS( CurrentWriteLocation,
2643 (Size)/sizeof(CHAR16) - (CurrentWriteLocation - ((CHAR16*)Buffer)),
2644 Node->Key
2645 );
2646 CurrentWriteLocation += StrLen(CurrentWriteLocation) + 1;
2647 }
2648
2649 //
2650 // Free the list...
2651 //
2652 if (!IsListEmpty (&List)) {
2653 FreeEnvironmentVariableList(&List);
2654 }
2655 } else {
2656 //
2657 // We are doing a specific environment variable
2658 //
2659
2660 //
2661 // get the size we need for this EnvVariable
2662 //
2663 Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(Name, Attributes, &Size, Buffer);
2664 if (Status == EFI_BUFFER_TOO_SMALL) {
2665 //
2666 // Allocate the space and recall the get function
2667 //
2668 Buffer = AllocateZeroPool(Size);
2669 Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(Name, Attributes, &Size, Buffer);
2670 }
2671 //
2672 // we didnt get it (might not exist)
2673 // free the memory if we allocated any and return NULL
2674 //
2675 if (EFI_ERROR(Status)) {
2676 if (Buffer != NULL) {
2677 FreePool(Buffer);
2678 }
2679 return (NULL);
2680 }
2681 }
2682
2683 //
2684 // return the buffer
2685 //
2686 return (AddBufferToFreeList(Buffer));
2687 }
2688
2689 /**
2690 Gets either a single or list of environment variables.
2691
2692 If name is not NULL then this function returns the current value of the specified
2693 environment variable.
2694
2695 If Name is NULL, then a list of all environment variable names is returned. Each is a
2696 NULL terminated string with a double NULL terminating the list.
2697
2698 @param Name A pointer to the environment variable name. If
2699 Name is NULL, then the function will return all
2700 of the defined shell environment variables. In
2701 the case where multiple environment variables are
2702 being returned, each variable will be terminated by
2703 a NULL, and the list will be terminated by a double
2704 NULL.
2705
2706 @retval !=NULL A pointer to the returned string.
2707 The returned pointer does not need to be freed by the caller.
2708
2709 @retval NULL The environment variable doesn't exist or there are
2710 no environment variables.
2711 **/
2712 CONST CHAR16 *
2713 EFIAPI
2714 EfiShellGetEnv(
2715 IN CONST CHAR16 *Name
2716 )
2717 {
2718 return (EfiShellGetEnvEx(Name, NULL));
2719 }
2720
2721 /**
2722 Internal variable setting function. Allows for setting of the read only variables.
2723
2724 @param Name Points to the NULL-terminated environment variable name.
2725 @param Value Points to the NULL-terminated environment variable value. If the value is an
2726 empty string then the environment variable is deleted.
2727 @param Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).
2728
2729 @retval EFI_SUCCESS The environment variable was successfully updated.
2730 **/
2731 EFI_STATUS
2732 EFIAPI
2733 InternalEfiShellSetEnv(
2734 IN CONST CHAR16 *Name,
2735 IN CONST CHAR16 *Value,
2736 IN BOOLEAN Volatile
2737 )
2738 {
2739 if (Value == NULL || StrLen(Value) == 0) {
2740 return (SHELL_DELETE_ENVIRONMENT_VARIABLE(Name));
2741 } else {
2742 SHELL_DELETE_ENVIRONMENT_VARIABLE(Name);
2743 if (Volatile) {
2744 return (SHELL_SET_ENVIRONMENT_VARIABLE_V(Name, StrSize(Value), Value));
2745 } else {
2746 return (SHELL_SET_ENVIRONMENT_VARIABLE_NV(Name, StrSize(Value), Value));
2747 }
2748 }
2749 }
2750
2751 /**
2752 Sets the environment variable.
2753
2754 This function changes the current value of the specified environment variable. If the
2755 environment variable exists and the Value is an empty string, then the environment
2756 variable is deleted. If the environment variable exists and the Value is not an empty
2757 string, then the value of the environment variable is changed. If the environment
2758 variable does not exist and the Value is an empty string, there is no action. If the
2759 environment variable does not exist and the Value is a non-empty string, then the
2760 environment variable is created and assigned the specified value.
2761
2762 For a description of volatile and non-volatile environment variables, see UEFI Shell
2763 2.0 specification section 3.6.1.
2764
2765 @param Name Points to the NULL-terminated environment variable name.
2766 @param Value Points to the NULL-terminated environment variable value. If the value is an
2767 empty string then the environment variable is deleted.
2768 @param Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).
2769
2770 @retval EFI_SUCCESS The environment variable was successfully updated.
2771 **/
2772 EFI_STATUS
2773 EFIAPI
2774 EfiShellSetEnv(
2775 IN CONST CHAR16 *Name,
2776 IN CONST CHAR16 *Value,
2777 IN BOOLEAN Volatile
2778 )
2779 {
2780 if (Name == NULL || *Name == CHAR_NULL) {
2781 return (EFI_INVALID_PARAMETER);
2782 }
2783 //
2784 // Make sure we dont 'set' a predefined read only variable
2785 //
2786 if (gUnicodeCollation->StriColl(
2787 gUnicodeCollation,
2788 (CHAR16*)Name,
2789 L"cwd") == 0
2790 ||gUnicodeCollation->StriColl(
2791 gUnicodeCollation,
2792 (CHAR16*)Name,
2793 L"Lasterror") == 0
2794 ||gUnicodeCollation->StriColl(
2795 gUnicodeCollation,
2796 (CHAR16*)Name,
2797 L"profiles") == 0
2798 ||gUnicodeCollation->StriColl(
2799 gUnicodeCollation,
2800 (CHAR16*)Name,
2801 L"uefishellsupport") == 0
2802 ||gUnicodeCollation->StriColl(
2803 gUnicodeCollation,
2804 (CHAR16*)Name,
2805 L"uefishellversion") == 0
2806 ||gUnicodeCollation->StriColl(
2807 gUnicodeCollation,
2808 (CHAR16*)Name,
2809 L"uefiversion") == 0
2810 ){
2811 return (EFI_INVALID_PARAMETER);
2812 }
2813 return (InternalEfiShellSetEnv(Name, Value, Volatile));
2814 }
2815
2816 /**
2817 Returns the current directory on the specified device.
2818
2819 If FileSystemMapping is NULL, it returns the current working directory. If the
2820 FileSystemMapping is not NULL, it returns the current directory associated with the
2821 FileSystemMapping. In both cases, the returned name includes the file system
2822 mapping (i.e. fs0:\current-dir).
2823
2824 Note that the current directory string should exclude the tailing backslash character.
2825
2826 @param FileSystemMapping A pointer to the file system mapping. If NULL,
2827 then the current working directory is returned.
2828
2829 @retval !=NULL The current directory.
2830 @retval NULL Current directory does not exist.
2831 **/
2832 CONST CHAR16 *
2833 EFIAPI
2834 EfiShellGetCurDir(
2835 IN CONST CHAR16 *FileSystemMapping OPTIONAL
2836 )
2837 {
2838 CHAR16 *PathToReturn;
2839 UINTN Size;
2840 SHELL_MAP_LIST *MapListItem;
2841 if (!IsListEmpty(&gShellMapList.Link)) {
2842 //
2843 // if parameter is NULL, use current
2844 //
2845 if (FileSystemMapping == NULL) {
2846 return (EfiShellGetEnv(L"cwd"));
2847 } else {
2848 Size = 0;
2849 PathToReturn = NULL;
2850 MapListItem = ShellCommandFindMapItem(FileSystemMapping);
2851 if (MapListItem != NULL) {
2852 ASSERT((PathToReturn == NULL && Size == 0) || (PathToReturn != NULL));
2853 PathToReturn = StrnCatGrow(&PathToReturn, &Size, MapListItem->MapName, 0);
2854 PathToReturn = StrnCatGrow(&PathToReturn, &Size, MapListItem->CurrentDirectoryPath, 0);
2855 }
2856 }
2857 return (AddBufferToFreeList(PathToReturn));
2858 } else {
2859 return (NULL);
2860 }
2861 }
2862
2863 /**
2864 Changes the current directory on the specified device.
2865
2866 If the FileSystem is NULL, and the directory Dir does not contain a file system's
2867 mapped name, this function changes the current working directory.
2868
2869 If the FileSystem is NULL and the directory Dir contains a mapped name, then the
2870 current file system and the current directory on that file system are changed.
2871
2872 If FileSystem is NULL, and Dir is not NULL, then this changes the current working file
2873 system.
2874
2875 If FileSystem is not NULL and Dir is not NULL, then this function changes the current
2876 directory on the specified file system.
2877
2878 If the current working directory or the current working file system is changed then the
2879 %cwd% environment variable will be updated
2880
2881 Note that the current directory string should exclude the tailing backslash character.
2882
2883 @param FileSystem A pointer to the file system's mapped name. If NULL, then the current working
2884 directory is changed.
2885 @param Dir Points to the NULL-terminated directory on the device specified by FileSystem.
2886
2887 @retval EFI_SUCCESS The operation was sucessful
2888 @retval EFI_NOT_FOUND The file system could not be found
2889 **/
2890 EFI_STATUS
2891 EFIAPI
2892 EfiShellSetCurDir(
2893 IN CONST CHAR16 *FileSystem OPTIONAL,
2894 IN CONST CHAR16 *Dir
2895 )
2896 {
2897 CHAR16 *MapName;
2898 SHELL_MAP_LIST *MapListItem;
2899 UINTN Size;
2900 EFI_STATUS Status;
2901 CHAR16 *TempString;
2902 CHAR16 *DirectoryName;
2903 UINTN TempLen;
2904
2905 Size = 0;
2906 MapName = NULL;
2907 MapListItem = NULL;
2908 TempString = NULL;
2909 DirectoryName = NULL;
2910
2911 if ((FileSystem == NULL && Dir == NULL) || Dir == NULL) {
2912 return (EFI_INVALID_PARAMETER);
2913 }
2914
2915 if (IsListEmpty(&gShellMapList.Link)){
2916 return (EFI_NOT_FOUND);
2917 }
2918
2919 DirectoryName = StrnCatGrow(&DirectoryName, NULL, Dir, 0);
2920 ASSERT(DirectoryName != NULL);
2921
2922 PathCleanUpDirectories(DirectoryName);
2923
2924 if (FileSystem == NULL) {
2925 //
2926 // determine the file system mapping to use
2927 //
2928 if (StrStr(DirectoryName, L":") != NULL) {
2929 ASSERT(MapName == NULL);
2930 MapName = StrnCatGrow(&MapName, NULL, DirectoryName, (StrStr(DirectoryName, L":")-DirectoryName+1));
2931 }
2932 //
2933 // find the file system mapping's entry in the list
2934 // or use current
2935 //
2936 if (MapName != NULL) {
2937 MapListItem = ShellCommandFindMapItem(MapName);
2938
2939 //
2940 // make that the current file system mapping
2941 //
2942 if (MapListItem != NULL) {
2943 gShellCurDir = MapListItem;
2944 }
2945 } else {
2946 MapListItem = gShellCurDir;
2947 }
2948
2949 if (MapListItem == NULL) {
2950 return (EFI_NOT_FOUND);
2951 }
2952
2953 //
2954 // now update the MapListItem's current directory
2955 //
2956 if (MapListItem->CurrentDirectoryPath != NULL && DirectoryName[StrLen(DirectoryName) - 1] != L':') {
2957 FreePool(MapListItem->CurrentDirectoryPath);
2958 MapListItem->CurrentDirectoryPath = NULL;
2959 }
2960 if (MapName != NULL) {
2961 TempLen = StrLen(MapName);
2962 if (TempLen != StrLen(DirectoryName)) {
2963 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2964 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, DirectoryName+StrLen(MapName), 0);
2965 }
2966 } else {
2967 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2968 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, DirectoryName, 0);
2969 }
2970 if ((MapListItem->CurrentDirectoryPath != NULL && MapListItem->CurrentDirectoryPath[StrLen(MapListItem->CurrentDirectoryPath)-1] == L'\\') || (MapListItem->CurrentDirectoryPath == NULL)) {
2971 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
2972 if (MapListItem->CurrentDirectoryPath != NULL) {
2973 MapListItem->CurrentDirectoryPath[StrLen(MapListItem->CurrentDirectoryPath)-1] = CHAR_NULL;
2974 }
2975 }
2976 } else {
2977 //
2978 // cant have a mapping in the directory...
2979 //
2980 if (StrStr(DirectoryName, L":") != NULL) {
2981 return (EFI_INVALID_PARAMETER);
2982 }
2983 //
2984 // FileSystem != NULL
2985 //
2986 MapListItem = ShellCommandFindMapItem(FileSystem);
2987 if (MapListItem == NULL) {
2988 return (EFI_INVALID_PARAMETER);
2989 }
2990 // gShellCurDir = MapListItem;
2991 if (DirectoryName != NULL) {
2992 //
2993 // change current dir on that file system
2994 //
2995
2996 if (MapListItem->CurrentDirectoryPath != NULL) {
2997 FreePool(MapListItem->CurrentDirectoryPath);
2998 DEBUG_CODE(MapListItem->CurrentDirectoryPath = NULL;);
2999 }
3000 // ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
3001 // MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, FileSystem, 0);
3002 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
3003 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, L"\\", 0);
3004 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
3005 MapListItem->CurrentDirectoryPath = StrnCatGrow(&MapListItem->CurrentDirectoryPath, &Size, DirectoryName, 0);
3006 if (MapListItem->CurrentDirectoryPath != NULL && MapListItem->CurrentDirectoryPath[StrLen(MapListItem->CurrentDirectoryPath)-1] == L'\\') {
3007 ASSERT((MapListItem->CurrentDirectoryPath == NULL && Size == 0) || (MapListItem->CurrentDirectoryPath != NULL));
3008 MapListItem->CurrentDirectoryPath[StrLen(MapListItem->CurrentDirectoryPath)-1] = CHAR_NULL;
3009 }
3010 }
3011 }
3012 //
3013 // if updated the current directory then update the environment variable
3014 //
3015 if (MapListItem == gShellCurDir) {
3016 Size = 0;
3017 ASSERT((TempString == NULL && Size == 0) || (TempString != NULL));
3018 StrnCatGrow(&TempString, &Size, MapListItem->MapName, 0);
3019 ASSERT((TempString == NULL && Size == 0) || (TempString != NULL));
3020 StrnCatGrow(&TempString, &Size, MapListItem->CurrentDirectoryPath, 0);
3021 Status = InternalEfiShellSetEnv(L"cwd", TempString, TRUE);
3022 FreePool(TempString);
3023 return (Status);
3024 }
3025 return(EFI_SUCCESS);
3026 }
3027
3028 /**
3029 Return help information about a specific command.
3030
3031 This function returns the help information for the specified command. The help text
3032 can be internal to the shell or can be from a UEFI Shell manual page.
3033
3034 If Sections is specified, then each section name listed will be compared in a casesensitive
3035 manner, to the section names described in Appendix B. If the section exists,
3036 it will be appended to the returned help text. If the section does not exist, no
3037 information will be returned. If Sections is NULL, then all help text information
3038 available will be returned.
3039
3040 @param Command Points to the NULL-terminated UEFI Shell command name.
3041 @param Sections Points to the NULL-terminated comma-delimited
3042 section names to return. If NULL, then all
3043 sections will be returned.
3044 @param HelpText On return, points to a callee-allocated buffer
3045 containing all specified help text.
3046
3047 @retval EFI_SUCCESS The help text was returned.
3048 @retval EFI_OUT_OF_RESOURCES The necessary buffer could not be allocated to hold the
3049 returned help text.
3050 @retval EFI_INVALID_PARAMETER HelpText is NULL
3051 @retval EFI_NOT_FOUND There is no help text available for Command.
3052 **/
3053 EFI_STATUS
3054 EFIAPI
3055 EfiShellGetHelpText(
3056 IN CONST CHAR16 *Command,
3057 IN CONST CHAR16 *Sections OPTIONAL,
3058 OUT CHAR16 **HelpText
3059 )
3060 {
3061 CONST CHAR16 *ManFileName;
3062 CHAR16 *FixCommand;
3063 EFI_STATUS Status;
3064
3065 ASSERT(HelpText != NULL);
3066 FixCommand = NULL;
3067
3068 ManFileName = ShellCommandGetManFileNameHandler(Command);
3069
3070 if (ManFileName != NULL) {
3071 return (ProcessManFile(ManFileName, Command, Sections, NULL, HelpText));
3072 } else {
3073 if ((StrLen(Command)> 4)
3074 && (Command[StrLen(Command)-1] == L'i' || Command[StrLen(Command)-1] == L'I')
3075 && (Command[StrLen(Command)-2] == L'f' || Command[StrLen(Command)-2] == L'F')
3076 && (Command[StrLen(Command)-3] == L'e' || Command[StrLen(Command)-3] == L'E')
3077 && (Command[StrLen(Command)-4] == L'.')
3078 ) {
3079 FixCommand = AllocateZeroPool(StrSize(Command) - 4 * sizeof (CHAR16));
3080 ASSERT(FixCommand != NULL);
3081
3082 StrnCpyS( FixCommand,
3083 (StrSize(Command) - 4 * sizeof (CHAR16))/sizeof(CHAR16),
3084 Command,
3085 StrLen(Command)-4
3086 );
3087 Status = ProcessManFile(FixCommand, FixCommand, Sections, NULL, HelpText);
3088 FreePool(FixCommand);
3089 return Status;
3090 } else {
3091 return (ProcessManFile(Command, Command, Sections, NULL, HelpText));
3092 }
3093 }
3094 }
3095
3096 /**
3097 Gets the enable status of the page break output mode.
3098
3099 User can use this function to determine current page break mode.
3100
3101 @retval TRUE The page break output mode is enabled.
3102 @retval FALSE The page break output mode is disabled.
3103 **/
3104 BOOLEAN
3105 EFIAPI
3106 EfiShellGetPageBreak(
3107 VOID
3108 )
3109 {
3110 return(ShellInfoObject.PageBreakEnabled);
3111 }
3112
3113 /**
3114 Judges whether the active shell is the root shell.
3115
3116 This function makes the user to know that whether the active Shell is the root shell.
3117
3118 @retval TRUE The active Shell is the root Shell.
3119 @retval FALSE The active Shell is NOT the root Shell.
3120 **/
3121 BOOLEAN
3122 EFIAPI
3123 EfiShellIsRootShell(
3124 VOID
3125 )
3126 {
3127 return(ShellInfoObject.RootShellInstance);
3128 }
3129
3130 /**
3131 function to return a semi-colon delimeted list of all alias' in the current shell
3132
3133 up to caller to free the memory.
3134
3135 @retval NULL No alias' were found
3136 @retval NULL An error ocurred getting alias'
3137 @return !NULL a list of all alias'
3138 **/
3139 CHAR16 *
3140 EFIAPI
3141 InternalEfiShellGetListAlias(
3142 )
3143 {
3144
3145 EFI_STATUS Status;
3146 EFI_GUID Guid;
3147 CHAR16 *VariableName;
3148 UINTN NameSize;
3149 UINTN NameBufferSize;
3150 CHAR16 *RetVal;
3151 UINTN RetSize;
3152
3153 NameBufferSize = INIT_NAME_BUFFER_SIZE;
3154 VariableName = AllocateZeroPool(NameBufferSize);
3155 RetSize = 0;
3156 RetVal = NULL;
3157
3158 if (VariableName == NULL) {
3159 return (NULL);
3160 }
3161
3162 VariableName[0] = CHAR_NULL;
3163
3164 while (TRUE) {
3165 NameSize = NameBufferSize;
3166 Status = gRT->GetNextVariableName(&NameSize, VariableName, &Guid);
3167 if (Status == EFI_NOT_FOUND){
3168 break;
3169 } else if (Status == EFI_BUFFER_TOO_SMALL) {
3170 NameBufferSize = NameSize > NameBufferSize * 2 ? NameSize : NameBufferSize * 2;
3171 SHELL_FREE_NON_NULL(VariableName);
3172 VariableName = AllocateZeroPool(NameBufferSize);
3173 if (VariableName == NULL) {
3174 Status = EFI_OUT_OF_RESOURCES;
3175 SHELL_FREE_NON_NULL(RetVal);
3176 RetVal = NULL;
3177 break;
3178 }
3179
3180 NameSize = NameBufferSize;
3181 Status = gRT->GetNextVariableName(&NameSize, VariableName, &Guid);
3182 }
3183
3184 if (EFI_ERROR (Status)) {
3185 SHELL_FREE_NON_NULL(RetVal);
3186 RetVal = NULL;
3187 break;
3188 }
3189
3190 if (CompareGuid(&Guid, &gShellAliasGuid)){
3191 ASSERT((RetVal == NULL && RetSize == 0) || (RetVal != NULL));
3192 RetVal = StrnCatGrow(&RetVal, &RetSize, VariableName, 0);
3193 RetVal = StrnCatGrow(&RetVal, &RetSize, L";", 0);
3194 } // compare guid
3195 } // while
3196 SHELL_FREE_NON_NULL(VariableName);
3197
3198 return (RetVal);
3199 }
3200
3201 /**
3202 Convert a null-terminated unicode string, in-place, to all lowercase.
3203 Then return it.
3204
3205 @param Str The null-terminated string to be converted to all lowercase.
3206
3207 @return The null-terminated string converted into all lowercase.
3208 **/
3209 CHAR16 *
3210 ToLower (
3211 CHAR16 *Str
3212 )
3213 {
3214 UINTN Index;
3215
3216 for (Index = 0; Str[Index] != L'\0'; Index++) {
3217 if (Str[Index] >= L'A' && Str[Index] <= L'Z') {
3218 Str[Index] -= (CHAR16)(L'A' - L'a');
3219 }
3220 }
3221 return Str;
3222 }
3223
3224 /**
3225 This function returns the command associated with a alias or a list of all
3226 alias'.
3227
3228 @param[in] Alias Points to the NULL-terminated shell alias.
3229 If this parameter is NULL, then all
3230 aliases will be returned in ReturnedData.
3231 @param[out] Volatile upon return of a single command if TRUE indicates
3232 this is stored in a volatile fashion. FALSE otherwise.
3233
3234 @return If Alias is not NULL, it will return a pointer to
3235 the NULL-terminated command for that alias.
3236 If Alias is NULL, ReturnedData points to a ';'
3237 delimited list of alias (e.g.
3238 ReturnedData = "dir;del;copy;mfp") that is NULL-terminated.
3239 @retval NULL an error ocurred
3240 @retval NULL Alias was not a valid Alias
3241 **/
3242 CONST CHAR16 *
3243 EFIAPI
3244 EfiShellGetAlias(
3245 IN CONST CHAR16 *Alias,
3246 OUT BOOLEAN *Volatile OPTIONAL
3247 )
3248 {
3249 CHAR16 *RetVal;
3250 UINTN RetSize;
3251 UINT32 Attribs;
3252 EFI_STATUS Status;
3253 CHAR16 *AliasLower;
3254 CHAR16 *AliasVal;
3255
3256 // Convert to lowercase to make aliases case-insensitive
3257 if (Alias != NULL) {
3258 AliasLower = AllocateCopyPool (StrSize (Alias), Alias);
3259 ASSERT (AliasLower != NULL);
3260 ToLower (AliasLower);
3261
3262 if (Volatile == NULL) {
3263 GetVariable2 (AliasLower, &gShellAliasGuid, (VOID **)&AliasVal, NULL);
3264 return (AddBufferToFreeList(AliasVal));
3265 }
3266 RetSize = 0;
3267 RetVal = NULL;
3268 Status = gRT->GetVariable(AliasLower, &gShellAliasGuid, &Attribs, &RetSize, RetVal);
3269 if (Status == EFI_BUFFER_TOO_SMALL) {
3270 RetVal = AllocateZeroPool(RetSize);
3271 Status = gRT->GetVariable(AliasLower, &gShellAliasGuid, &Attribs, &RetSize, RetVal);
3272 }
3273 if (EFI_ERROR(Status)) {
3274 if (RetVal != NULL) {
3275 FreePool(RetVal);
3276 }
3277 return (NULL);
3278 }
3279 if ((EFI_VARIABLE_NON_VOLATILE & Attribs) == EFI_VARIABLE_NON_VOLATILE) {
3280 *Volatile = FALSE;
3281 } else {
3282 *Volatile = TRUE;
3283 }
3284
3285 FreePool (AliasLower);
3286 return (AddBufferToFreeList(RetVal));
3287 }
3288 return (AddBufferToFreeList(InternalEfiShellGetListAlias()));
3289 }
3290
3291 /**
3292 Changes a shell command alias.
3293
3294 This function creates an alias for a shell command or if Alias is NULL it will delete an existing alias.
3295
3296 this function does not check for built in alias'.
3297
3298 @param[in] Command Points to the NULL-terminated shell command or existing alias.
3299 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and
3300 Command refers to an alias, that alias will be deleted.
3301 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the
3302 Alias being set will be stored in a non-volatile fashion.
3303
3304 @retval EFI_SUCCESS Alias created or deleted successfully.
3305 @retval EFI_NOT_FOUND the Alias intended to be deleted was not found
3306 **/
3307 EFI_STATUS
3308 EFIAPI
3309 InternalSetAlias(
3310 IN CONST CHAR16 *Command,
3311 IN CONST CHAR16 *Alias,
3312 IN BOOLEAN Volatile
3313 )
3314 {
3315 EFI_STATUS Status;
3316 CHAR16 *AliasLower;
3317
3318 // Convert to lowercase to make aliases case-insensitive
3319 if (Alias != NULL) {
3320 AliasLower = AllocateCopyPool (StrSize (Alias), Alias);
3321 ASSERT (AliasLower != NULL);
3322 ToLower (AliasLower);
3323 } else {
3324 AliasLower = NULL;
3325 }
3326
3327 //
3328 // We must be trying to remove one if Alias is NULL
3329 //
3330 if (Alias == NULL) {
3331 //
3332 // remove an alias (but passed in COMMAND parameter)
3333 //
3334 Status = (gRT->SetVariable((CHAR16*)Command, &gShellAliasGuid, 0, 0, NULL));
3335 } else {
3336 //
3337 // Add and replace are the same
3338 //
3339
3340 // We dont check the error return on purpose since the variable may not exist.
3341 gRT->SetVariable((CHAR16*)Command, &gShellAliasGuid, 0, 0, NULL);
3342
3343 Status = (gRT->SetVariable((CHAR16*)Alias, &gShellAliasGuid, EFI_VARIABLE_BOOTSERVICE_ACCESS|(Volatile?0:EFI_VARIABLE_NON_VOLATILE), StrSize(Command), (VOID*)Command));
3344 }
3345
3346 if (Alias != NULL) {
3347 FreePool (AliasLower);
3348 }
3349 return Status;
3350 }
3351
3352 /**
3353 Changes a shell command alias.
3354
3355 This function creates an alias for a shell command or if Alias is NULL it will delete an existing alias.
3356
3357
3358 @param[in] Command Points to the NULL-terminated shell command or existing alias.
3359 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and
3360 Command refers to an alias, that alias will be deleted.
3361 @param[in] Replace If TRUE and the alias already exists, then the existing alias will be replaced. If
3362 FALSE and the alias already exists, then the existing alias is unchanged and
3363 EFI_ACCESS_DENIED is returned.
3364 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the
3365 Alias being set will be stored in a non-volatile fashion.
3366
3367 @retval EFI_SUCCESS Alias created or deleted successfully.
3368 @retval EFI_NOT_FOUND the Alias intended to be deleted was not found
3369 @retval EFI_ACCESS_DENIED The alias is a built-in alias or already existed and Replace was set to
3370 FALSE.
3371 @retval EFI_INVALID_PARAMETER Command is null or the empty string.
3372 **/
3373 EFI_STATUS
3374 EFIAPI
3375 EfiShellSetAlias(
3376 IN CONST CHAR16 *Command,
3377 IN CONST CHAR16 *Alias,
3378 IN BOOLEAN Replace,
3379 IN BOOLEAN Volatile
3380 )
3381 {
3382 if (ShellCommandIsOnAliasList(Alias==NULL?Command:Alias)) {
3383 //
3384 // cant set over a built in alias
3385 //
3386 return (EFI_ACCESS_DENIED);
3387 } else if (Command == NULL || *Command == CHAR_NULL || StrLen(Command) == 0) {
3388 //
3389 // Command is null or empty
3390 //
3391 return (EFI_INVALID_PARAMETER);
3392 } else if (EfiShellGetAlias(Command, NULL) != NULL && !Replace) {
3393 //
3394 // Alias already exists, Replace not set
3395 //
3396 return (EFI_ACCESS_DENIED);
3397 } else {
3398 return (InternalSetAlias(Command, Alias, Volatile));
3399 }
3400 }
3401
3402 // Pure FILE_HANDLE operations are passed to FileHandleLib
3403 // these functions are indicated by the *
3404 EFI_SHELL_PROTOCOL mShellProtocol = {
3405 EfiShellExecute,
3406 EfiShellGetEnv,
3407 EfiShellSetEnv,
3408 EfiShellGetAlias,
3409 EfiShellSetAlias,
3410 EfiShellGetHelpText,
3411 EfiShellGetDevicePathFromMap,
3412 EfiShellGetMapFromDevicePath,
3413 EfiShellGetDevicePathFromFilePath,
3414 EfiShellGetFilePathFromDevicePath,
3415 EfiShellSetMap,
3416 EfiShellGetCurDir,
3417 EfiShellSetCurDir,
3418 EfiShellOpenFileList,
3419 EfiShellFreeFileList,
3420 EfiShellRemoveDupInFileList,
3421 EfiShellBatchIsActive,
3422 EfiShellIsRootShell,
3423 EfiShellEnablePageBreak,
3424 EfiShellDisablePageBreak,
3425 EfiShellGetPageBreak,
3426 EfiShellGetDeviceName,
3427 (EFI_SHELL_GET_FILE_INFO)FileHandleGetInfo, //*
3428 (EFI_SHELL_SET_FILE_INFO)FileHandleSetInfo, //*
3429 EfiShellOpenFileByName,
3430 EfiShellClose,
3431 EfiShellCreateFile,
3432 (EFI_SHELL_READ_FILE)FileHandleRead, //*
3433 (EFI_SHELL_WRITE_FILE)FileHandleWrite, //*
3434 (EFI_SHELL_DELETE_FILE)FileHandleDelete, //*
3435 EfiShellDeleteFileByName,
3436 (EFI_SHELL_GET_FILE_POSITION)FileHandleGetPosition, //*
3437 (EFI_SHELL_SET_FILE_POSITION)FileHandleSetPosition, //*
3438 (EFI_SHELL_FLUSH_FILE)FileHandleFlush, //*
3439 EfiShellFindFiles,
3440 EfiShellFindFilesInDir,
3441 (EFI_SHELL_GET_FILE_SIZE)FileHandleGetSize, //*
3442 EfiShellOpenRoot,
3443 EfiShellOpenRootByHandle,
3444 NULL,
3445 SHELL_MAJOR_VERSION,
3446 SHELL_MINOR_VERSION,
3447
3448 // New for UEFI Shell 2.1
3449 EfiShellRegisterGuidName,
3450 EfiShellGetGuidName,
3451 EfiShellGetGuidFromName,
3452 EfiShellGetEnvEx
3453 };
3454
3455 /**
3456 Function to create and install on the current handle.
3457
3458 Will overwrite any existing ShellProtocols in the system to be sure that
3459 the current shell is in control.
3460
3461 This must be removed via calling CleanUpShellProtocol().
3462
3463 @param[in, out] NewShell The pointer to the pointer to the structure
3464 to install.
3465
3466 @retval EFI_SUCCESS The operation was successful.
3467 @return An error from LocateHandle, CreateEvent, or other core function.
3468 **/
3469 EFI_STATUS
3470 EFIAPI
3471 CreatePopulateInstallShellProtocol (
3472 IN OUT EFI_SHELL_PROTOCOL **NewShell
3473 )
3474 {
3475 EFI_STATUS Status;
3476 UINTN BufferSize;
3477 EFI_HANDLE *Buffer;
3478 UINTN HandleCounter;
3479 SHELL_PROTOCOL_HANDLE_LIST *OldProtocolNode;
3480
3481 if (NewShell == NULL) {
3482 return (EFI_INVALID_PARAMETER);
3483 }
3484
3485 BufferSize = 0;
3486 Buffer = NULL;
3487 OldProtocolNode = NULL;
3488 InitializeListHead(&ShellInfoObject.OldShellList.Link);
3489
3490 //
3491 // Initialize EfiShellProtocol object...
3492 //
3493 Status = gBS->CreateEvent(0,
3494 0,
3495 NULL,
3496 NULL,
3497 &mShellProtocol.ExecutionBreak);
3498 if (EFI_ERROR(Status)) {
3499 return (Status);
3500 }
3501
3502 //
3503 // Get the size of the buffer we need.
3504 //
3505 Status = gBS->LocateHandle(ByProtocol,
3506 &gEfiShellProtocolGuid,
3507 NULL,
3508 &BufferSize,
3509 Buffer);
3510 if (Status == EFI_BUFFER_TOO_SMALL) {
3511 //
3512 // Allocate and recall with buffer of correct size
3513 //
3514 Buffer = AllocateZeroPool(BufferSize);
3515 if (Buffer == NULL) {
3516 return (EFI_OUT_OF_RESOURCES);
3517 }
3518 Status = gBS->LocateHandle(ByProtocol,
3519 &gEfiShellProtocolGuid,
3520 NULL,
3521 &BufferSize,
3522 Buffer);
3523 if (EFI_ERROR(Status)) {
3524 FreePool(Buffer);
3525 return (Status);
3526 }
3527 //
3528 // now overwrite each of them, but save the info to restore when we end.
3529 //
3530 for (HandleCounter = 0 ; HandleCounter < (BufferSize/sizeof(EFI_HANDLE)) ; HandleCounter++) {
3531 OldProtocolNode = AllocateZeroPool(sizeof(SHELL_PROTOCOL_HANDLE_LIST));
3532 ASSERT(OldProtocolNode != NULL);
3533 Status = gBS->OpenProtocol(Buffer[HandleCounter],
3534 &gEfiShellProtocolGuid,
3535 (VOID **) &(OldProtocolNode->Interface),
3536 gImageHandle,
3537 NULL,
3538 EFI_OPEN_PROTOCOL_GET_PROTOCOL
3539 );
3540 if (!EFI_ERROR(Status)) {
3541 //
3542 // reinstall over the old one...
3543 //
3544 OldProtocolNode->Handle = Buffer[HandleCounter];
3545 Status = gBS->ReinstallProtocolInterface(
3546 OldProtocolNode->Handle,
3547 &gEfiShellProtocolGuid,
3548 OldProtocolNode->Interface,
3549 (VOID*)(&mShellProtocol));
3550 if (!EFI_ERROR(Status)) {
3551 //
3552 // we reinstalled sucessfully. log this so we can reverse it later.
3553 //
3554
3555 //
3556 // add to the list for subsequent...
3557 //
3558 InsertTailList(&ShellInfoObject.OldShellList.Link, &OldProtocolNode->Link);
3559 }
3560 }
3561 }
3562 FreePool(Buffer);
3563 } else if (Status == EFI_NOT_FOUND) {
3564 ASSERT(IsListEmpty(&ShellInfoObject.OldShellList.Link));
3565 //
3566 // no one else published yet. just publish it ourselves.
3567 //
3568 Status = gBS->InstallProtocolInterface (
3569 &gImageHandle,
3570 &gEfiShellProtocolGuid,
3571 EFI_NATIVE_INTERFACE,
3572 (VOID*)(&mShellProtocol));
3573 }
3574
3575 if (PcdGetBool(PcdShellSupportOldProtocols)){
3576 ///@todo support ShellEnvironment2
3577 ///@todo do we need to support ShellEnvironment (not ShellEnvironment2) also?
3578 }
3579
3580 if (!EFI_ERROR(Status)) {
3581 *NewShell = &mShellProtocol;
3582 }
3583 return (Status);
3584 }
3585
3586 /**
3587 Opposite of CreatePopulateInstallShellProtocol.
3588
3589 Free all memory and restore the system to the state it was in before calling
3590 CreatePopulateInstallShellProtocol.
3591
3592 @param[in, out] NewShell The pointer to the new shell protocol structure.
3593
3594 @retval EFI_SUCCESS The operation was successful.
3595 **/
3596 EFI_STATUS
3597 EFIAPI
3598 CleanUpShellProtocol (
3599 IN OUT EFI_SHELL_PROTOCOL *NewShell
3600 )
3601 {
3602 EFI_STATUS Status;
3603 SHELL_PROTOCOL_HANDLE_LIST *Node2;
3604 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *SimpleEx;
3605
3606 //
3607 // if we need to restore old protocols...
3608 //
3609 if (!IsListEmpty(&ShellInfoObject.OldShellList.Link)) {
3610 for (Node2 = (SHELL_PROTOCOL_HANDLE_LIST *)GetFirstNode(&ShellInfoObject.OldShellList.Link)
3611 ; !IsListEmpty (&ShellInfoObject.OldShellList.Link)
3612 ; Node2 = (SHELL_PROTOCOL_HANDLE_LIST *)GetFirstNode(&ShellInfoObject.OldShellList.Link)
3613 ){
3614 RemoveEntryList(&Node2->Link);
3615 Status = gBS->ReinstallProtocolInterface(Node2->Handle,
3616 &gEfiShellProtocolGuid,
3617 NewShell,
3618 Node2->Interface);
3619 FreePool(Node2);
3620 }
3621 } else {
3622 //
3623 // no need to restore
3624 //
3625 Status = gBS->UninstallProtocolInterface(gImageHandle,
3626 &gEfiShellProtocolGuid,
3627 NewShell);
3628 }
3629 Status = gBS->CloseEvent(NewShell->ExecutionBreak);
3630 NewShell->ExecutionBreak = NULL;
3631
3632 Status = gBS->OpenProtocol(
3633 gST->ConsoleInHandle,
3634 &gEfiSimpleTextInputExProtocolGuid,
3635 (VOID**)&SimpleEx,
3636 gImageHandle,
3637 NULL,
3638 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
3639
3640 if (!EFI_ERROR (Status)) {
3641 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlCNotifyHandle1);
3642 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlCNotifyHandle2);
3643 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlCNotifyHandle3);
3644 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlCNotifyHandle4);
3645 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlSNotifyHandle1);
3646 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlSNotifyHandle2);
3647 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlSNotifyHandle3);
3648 Status = SimpleEx->UnregisterKeyNotify(SimpleEx, ShellInfoObject.CtrlSNotifyHandle4);
3649 }
3650 return (Status);
3651 }
3652
3653 /**
3654 Notification function for keystrokes.
3655
3656 @param[in] KeyData The key that was pressed.
3657
3658 @retval EFI_SUCCESS The operation was successful.
3659 **/
3660 EFI_STATUS
3661 EFIAPI
3662 NotificationFunction(
3663 IN EFI_KEY_DATA *KeyData
3664 )
3665 {
3666 if ( ((KeyData->Key.UnicodeChar == L'c') &&
3667 (KeyData->KeyState.KeyShiftState == (EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED) || KeyData->KeyState.KeyShiftState == (EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED))) ||
3668 (KeyData->Key.UnicodeChar == 3)
3669 ){
3670 if (ShellInfoObject.NewEfiShellProtocol->ExecutionBreak == NULL) {
3671 return (EFI_UNSUPPORTED);
3672 }
3673 return (gBS->SignalEvent(ShellInfoObject.NewEfiShellProtocol->ExecutionBreak));
3674 } else if ((KeyData->Key.UnicodeChar == L's') &&
3675 (KeyData->KeyState.KeyShiftState == (EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED) || KeyData->KeyState.KeyShiftState == (EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED))
3676 ){
3677 ShellInfoObject.HaltOutput = TRUE;
3678 }
3679 return (EFI_SUCCESS);
3680 }
3681
3682 /**
3683 Function to start monitoring for CTRL-C using SimpleTextInputEx. This
3684 feature's enabled state was not known when the shell initially launched.
3685
3686 @retval EFI_SUCCESS The feature is enabled.
3687 @retval EFI_OUT_OF_RESOURCES There is not enough mnemory available.
3688 **/
3689 EFI_STATUS
3690 EFIAPI
3691 InernalEfiShellStartMonitor(
3692 VOID
3693 )
3694 {
3695 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *SimpleEx;
3696 EFI_KEY_DATA KeyData;
3697 EFI_STATUS Status;
3698
3699 Status = gBS->OpenProtocol(
3700 gST->ConsoleInHandle,
3701 &gEfiSimpleTextInputExProtocolGuid,
3702 (VOID**)&SimpleEx,
3703 gImageHandle,
3704 NULL,
3705 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
3706 if (EFI_ERROR(Status)) {
3707 ShellPrintHiiEx(
3708 -1,
3709 -1,
3710 NULL,
3711 STRING_TOKEN (STR_SHELL_NO_IN_EX),
3712 ShellInfoObject.HiiHandle);
3713 return (EFI_SUCCESS);
3714 }
3715
3716 if (ShellInfoObject.NewEfiShellProtocol->ExecutionBreak == NULL) {
3717 return (EFI_UNSUPPORTED);
3718 }
3719
3720 KeyData.KeyState.KeyToggleState = 0;
3721 KeyData.Key.ScanCode = 0;
3722 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED;
3723 KeyData.Key.UnicodeChar = L'c';
3724
3725 Status = SimpleEx->RegisterKeyNotify(
3726 SimpleEx,
3727 &KeyData,
3728 NotificationFunction,
3729 &ShellInfoObject.CtrlCNotifyHandle1);
3730
3731 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED;
3732 if (!EFI_ERROR(Status)) {
3733 Status = SimpleEx->RegisterKeyNotify(
3734 SimpleEx,
3735 &KeyData,
3736 NotificationFunction,
3737 &ShellInfoObject.CtrlCNotifyHandle2);
3738 }
3739 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_LEFT_CONTROL_PRESSED;
3740 KeyData.Key.UnicodeChar = 3;
3741 if (!EFI_ERROR(Status)) {
3742 Status = SimpleEx->RegisterKeyNotify(
3743 SimpleEx,
3744 &KeyData,
3745 NotificationFunction,
3746 &ShellInfoObject.CtrlCNotifyHandle3);
3747 }
3748 KeyData.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID|EFI_RIGHT_CONTROL_PRESSED;
3749 if (!EFI_ERROR(Status)) {
3750 Status = SimpleEx->RegisterKeyNotify(
3751 SimpleEx,
3752 &KeyData,
3753 NotificationFunction,
3754 &ShellInfoObject.CtrlCNotifyHandle4);
3755 }
3756 return (Status);
3757 }
3758