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