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