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