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