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