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