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