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