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