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