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