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