]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Library/UefiShellLevel2CommandsLib/Map.c
266145c08d2706233fa20a5fb4460b9d161667c0
[mirror_edk2.git] / ShellPkg / Library / UefiShellLevel2CommandsLib / Map.c
1 /** @file
2 Main file for map shell level 2 command.
3
4 Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "UefiShellLevel2CommandsLib.h"
16 #include <Protocol/SimpleFileSystem.h>
17 #include <Protocol/BlockIo.h>
18 #include <Library/DevicePathLib.h>
19 #include <Library/HandleParsingLib.h>
20 #include <Library/SortLib.h>
21
22 /**
23 Determine if a string has only numbers and letters.
24
25 This is useful for such things as Map names which can only be letters and numbers.
26
27 @param[in] String pointer to the string to analyze,
28 @param[in] Len Number of characters to analyze.
29
30 @retval TRUE String has only numbers and letters
31 @retval FALSE String has at least one other character.
32 **/
33 BOOLEAN
34 EFIAPI
35 IsNumberLetterOnly(
36 IN CONST CHAR16 *String,
37 IN CONST UINTN Len
38 )
39 {
40 UINTN Count;
41 for (Count = 0 ; Count < Len && String != NULL && *String != CHAR_NULL ; String++,Count++) {
42 if (! ((*String >= L'a' && *String <= L'z') ||
43 (*String >= L'A' && *String <= L'Z') ||
44 (*String >= L'0' && *String <= L'9'))
45 ){
46 return (FALSE);
47 }
48 }
49 return (TRUE);
50 }
51
52 /**
53 Do a search in the Target delimited list.
54
55 @param[in] List The list to seatch in.
56 @param[in] MetaTarget The item to search for. MetaMatching supported.
57 @param[out] FullName Optional pointer to an allocated buffer containing
58 the match.
59 @param[in] Meta TRUE to use MetaMatching.
60 @param[in] SkipTrailingNumbers TRUE to allow for numbers after the MetaTarget.
61 @param[in] Target The single character that delimits list
62 items (";" normally).
63 **/
64 BOOLEAN
65 EFIAPI
66 SearchList(
67 IN CONST CHAR16 *List,
68 IN CONST CHAR16 *MetaTarget,
69 OUT CHAR16 **FullName OPTIONAL,
70 IN CONST BOOLEAN Meta,
71 IN CONST BOOLEAN SkipTrailingNumbers,
72 IN CONST CHAR16 *Target
73
74 )
75 {
76 CHAR16 *TempList;
77 CONST CHAR16 *ListWalker;
78 BOOLEAN Result;
79 CHAR16 *TempSpot;
80
81 for (ListWalker = List , TempList = NULL
82 ; ListWalker != NULL && *ListWalker != CHAR_NULL
83 ;
84 ) {
85 TempList = StrnCatGrow(&TempList, NULL, ListWalker, 0);
86 ASSERT(TempList != NULL);
87 TempSpot = StrStr(TempList, Target);
88 if (TempSpot != NULL) {
89 *TempSpot = CHAR_NULL;
90 }
91
92 while (SkipTrailingNumbers && (ShellIsDecimalDigitCharacter(TempList[StrLen(TempList)-1]) || TempList[StrLen(TempList)-1] == L':')) {
93 TempList[StrLen(TempList)-1] = CHAR_NULL;
94 }
95
96 ListWalker = StrStr(ListWalker, Target);
97 while(ListWalker != NULL && *ListWalker == *Target) {
98 ListWalker++;
99 }
100 if (Meta) {
101 Result = gUnicodeCollation->MetaiMatch(gUnicodeCollation, (CHAR16*)TempList, (CHAR16*)MetaTarget);
102 } else {
103 Result = (BOOLEAN)(StrCmp(TempList, MetaTarget)==0);
104 }
105 if (Result) {
106 if (FullName != NULL) {
107 *FullName = TempList;
108 } else {
109 FreePool(TempList);
110 }
111 return (TRUE);
112 }
113 FreePool(TempList);
114 TempList = NULL;
115 }
116
117 return (FALSE);
118 }
119
120 /**
121 Add mappings for any devices without one. Do not change any existing maps.
122
123 @retval EFI_SUCCESS The operation was successful.
124 **/
125 EFI_STATUS
126 EFIAPI
127 UpdateMapping (
128 VOID
129 )
130 {
131 EFI_STATUS Status;
132 EFI_HANDLE *HandleList;
133 UINTN Count;
134 EFI_DEVICE_PATH_PROTOCOL **DevicePathList;
135 CHAR16 *NewDefaultName;
136 CHAR16 *NewConsistName;
137 EFI_DEVICE_PATH_PROTOCOL **ConsistMappingTable;
138
139 HandleList = NULL;
140 Status = EFI_SUCCESS;
141
142 //
143 // remove mappings that represent removed devices.
144 //
145
146 //
147 // Find each handle with Simple File System
148 //
149 HandleList = GetHandleListByProtocol(&gEfiSimpleFileSystemProtocolGuid);
150 if (HandleList != NULL) {
151 //
152 // Do a count of the handles
153 //
154 for (Count = 0 ; HandleList[Count] != NULL ; Count++);
155
156 //
157 // Get all Device Paths
158 //
159 DevicePathList = AllocateZeroPool(sizeof(EFI_DEVICE_PATH_PROTOCOL*) * Count);
160 ASSERT(DevicePathList != NULL);
161
162 for (Count = 0 ; HandleList[Count] != NULL ; Count++) {
163 DevicePathList[Count] = DevicePathFromHandle(HandleList[Count]);
164 }
165
166 //
167 // Sort all DevicePaths
168 //
169 PerformQuickSort(DevicePathList, Count, sizeof(EFI_DEVICE_PATH_PROTOCOL*), DevicePathCompare);
170
171 ShellCommandConsistMappingInitialize(&ConsistMappingTable);
172
173 //
174 // Assign new Mappings to remainders
175 //
176 for (Count = 0 ; HandleList[Count] != NULL && !EFI_ERROR(Status); Count++) {
177 //
178 // Skip ones that already have
179 //
180 if (gEfiShellProtocol->GetMapFromDevicePath(&DevicePathList[Count]) != NULL) {
181 continue;
182 }
183 //
184 // Get default name
185 //
186 NewDefaultName = ShellCommandCreateNewMappingName(MappingTypeFileSystem);
187 ASSERT(NewDefaultName != NULL);
188
189 //
190 // Call shell protocol SetMap function now...
191 //
192 Status = gEfiShellProtocol->SetMap(DevicePathList[Count], NewDefaultName);
193
194 if (!EFI_ERROR(Status)) {
195 //
196 // Now do consistent name
197 //
198 NewConsistName = ShellCommandConsistMappingGenMappingName(DevicePathList[Count], ConsistMappingTable);
199 if (NewConsistName != NULL) {
200 Status = gEfiShellProtocol->SetMap(DevicePathList[Count], NewConsistName);
201 FreePool(NewConsistName);
202 }
203 }
204
205 FreePool(NewDefaultName);
206 }
207 ShellCommandConsistMappingUnInitialize(ConsistMappingTable);
208 SHELL_FREE_NON_NULL(HandleList);
209 SHELL_FREE_NON_NULL(DevicePathList);
210
211 HandleList = NULL;
212 } else {
213 Count = (UINTN)-1;
214 }
215 //
216 // Do it all over again for gEfiBlockIoProtocolGuid
217 //
218
219 return (Status);
220 }
221
222 /**
223 Determine what type of device is represented and return it's string. The
224 string is in allocated memory and must be callee freed. The HII is is listed below.
225 The actual string cannot be determined.
226
227 @param[in] DevicePath The device to analyze.
228
229 @retval STR_MAP_MEDIA_UNKNOWN The media type is unknown.
230 @retval STR_MAP_MEDIA_HARDDISK The media is a hard drive.
231 @retval STR_MAP_MEDIA_CDROM The media is a CD ROM.
232 @retval STR_MAP_MEDIA_FLOPPY The media is a floppy drive.
233 **/
234 CHAR16*
235 EFIAPI
236 GetDeviceMediaType (
237 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
238 )
239 {
240 ACPI_HID_DEVICE_PATH *Acpi;
241
242 //
243 // Parse the device path:
244 // Devicepath sub type mediatype
245 // MEDIA_HANRDDRIVE_DP -> Hard Disk
246 // MEDIA_CDROM_DP -> CD Rom
247 // Acpi.HID = 0X0604 -> Floppy
248 //
249 if (NULL == DevicePath) {
250 return HiiGetString(gShellLevel2HiiHandle, STRING_TOKEN(STR_MAP_MEDIA_UNKNOWN), NULL);
251 }
252
253 for (;!IsDevicePathEndType (DevicePath) ;DevicePath = NextDevicePathNode (DevicePath)) {
254 if (DevicePathType (DevicePath) == MEDIA_DEVICE_PATH) {
255 switch (DevicePathSubType (DevicePath)) {
256 case MEDIA_HARDDRIVE_DP:
257 return HiiGetString(gShellLevel2HiiHandle, STRING_TOKEN(STR_MAP_MEDIA_HARDDISK), NULL);
258 case MEDIA_CDROM_DP:
259 return HiiGetString(gShellLevel2HiiHandle, STRING_TOKEN(STR_MAP_MEDIA_CDROM), NULL);
260 }
261 } else if (DevicePathType (DevicePath) == ACPI_DEVICE_PATH) {
262 Acpi = (ACPI_HID_DEVICE_PATH *) DevicePath;
263 if (EISA_ID_TO_NUM (Acpi->HID) == 0x0604) {
264 return HiiGetString(gShellLevel2HiiHandle, STRING_TOKEN(STR_MAP_MEDIA_FLOPPY), NULL);
265 }
266 }
267 }
268
269 return HiiGetString(gShellLevel2HiiHandle, STRING_TOKEN(STR_MAP_MEDIA_UNKNOWN), NULL);
270 }
271
272 /**
273 Function to detemine if a handle has removable storage.
274
275 @param[in] DevicePath DevicePath to test.
276
277 @retval TRUE The handle has removable storage.
278 @retval FALSE The handle does not have removable storage.
279 **/
280 BOOLEAN
281 EFIAPI
282 IsRemoveableDevice (
283 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
284 )
285 {
286 if (NULL == DevicePath) {
287 return FALSE;
288 }
289
290 while (!IsDevicePathEndType (DevicePath)) {
291 if (DevicePathType (DevicePath) == MESSAGING_DEVICE_PATH) {
292 switch (DevicePathSubType (DevicePath)) {
293 case MSG_USB_DP:
294 case MSG_SCSI_DP:
295 return TRUE;
296 default:
297 return FALSE;
298 }
299 }
300 DevicePath = NextDevicePathNode (DevicePath);
301 }
302 return FALSE;
303 }
304
305 /**
306 Function to detemine if a something on the map list matches.
307
308 @param[in] MapList The pointer to the list to test.
309 @param[in] Specific The pointer to a specific name to test for.
310 @param[in] TypeString The pointer to the list of types.
311 @param[in] Normal Always show normal mappings.
312 @param[in] Consist Always show consistent mappings.
313
314 @retval TRUE The map should be displayed.
315 @retval FALSE The map should not be displayed.
316 **/
317 BOOLEAN
318 EFIAPI
319 MappingListHasType(
320 IN CONST CHAR16 *MapList,
321 IN CONST CHAR16 *Specific,
322 IN CONST CHAR16 *TypeString,
323 IN CONST BOOLEAN Normal,
324 IN CONST BOOLEAN Consist
325 )
326 {
327 CHAR16 *NewSpecific;
328 //
329 // specific has priority
330 //
331 if (Specific != NULL) {
332 NewSpecific = AllocateZeroPool(StrSize(Specific) + sizeof(CHAR16));
333 if (NewSpecific == NULL){
334 return FALSE;
335 }
336 StrCpy(NewSpecific, Specific);
337 if (NewSpecific[StrLen(NewSpecific)-1] != L':') {
338 StrCat(NewSpecific, L":");
339 }
340
341 if (SearchList(MapList, NewSpecific, NULL, TRUE, FALSE, L";")) {
342 FreePool(NewSpecific);
343 return (TRUE);
344 }
345 FreePool(NewSpecific);
346 }
347 if ( Consist
348 && (SearchList(MapList, L"HD*", NULL, TRUE, TRUE, L";")
349 ||SearchList(MapList, L"CD*", NULL, TRUE, TRUE, L";")
350 ||SearchList(MapList, L"AnyF*", NULL, TRUE, TRUE, L";")
351 ||SearchList(MapList, L"FP*", NULL, TRUE, TRUE, L";"))){
352 return (TRUE);
353 }
354
355 if ( Normal
356 && (SearchList(MapList, L"FS", NULL, FALSE, TRUE, L";")
357 ||SearchList(MapList, L"BLK", NULL, FALSE, TRUE, L";"))){
358 return (TRUE);
359 }
360
361 if (TypeString != NULL && SearchList(MapList, TypeString, NULL, TRUE, TRUE, L";")) {
362 return (TRUE);
363 }
364 return (FALSE);
365 }
366
367
368 /**
369 Display a single map line for device Handle if conditions are met.
370
371 @param[in] Verbose TRUE to display (extra) verbose information.
372 @param[in] Consist TRUE to display consistent mappings.
373 @param[in] Normal TRUE to display normal (not consist) mappings.
374 @param[in] TypeString pointer to string of filter types.
375 @param[in] SFO TRUE to display output in Standard Output Format.
376 @param[in] Specific pointer to string for specific map to display.
377 @param[in] Handle The handle to display from.
378
379 @retval EFI_SUCCESS The mapping was displayed.
380 **/
381 EFI_STATUS
382 EFIAPI
383 PerformSingleMappingDisplay(
384 IN CONST BOOLEAN Verbose,
385 IN CONST BOOLEAN Consist,
386 IN CONST BOOLEAN Normal,
387 IN CONST CHAR16 *TypeString,
388 IN CONST BOOLEAN SFO,
389 IN CONST CHAR16 *Specific OPTIONAL,
390 IN CONST EFI_HANDLE Handle
391 )
392 {
393 EFI_DEVICE_PATH_PROTOCOL *DevPath;
394 EFI_DEVICE_PATH_PROTOCOL *DevPathCopy;
395 CONST CHAR16 *MapList;
396 CHAR16 *CurrentName;
397 CHAR16 *MediaType;
398 CHAR16 *DevPathString;
399 CHAR16 *TempSpot;
400 UINTN TempLen;
401 BOOLEAN Removable;
402 CONST CHAR16 *TempSpot2;
403
404 DevPath = DevicePathFromHandle(Handle);
405 DevPathCopy = DevPath;
406 MapList = gEfiShellProtocol->GetMapFromDevicePath(&DevPathCopy);
407 if (MapList == NULL) {
408 return EFI_NOT_FOUND;
409 }
410
411 if (!MappingListHasType(MapList, Specific, TypeString, Normal, Consist)){
412 return EFI_NOT_FOUND;
413 }
414
415 CurrentName = NULL;
416 CurrentName = StrnCatGrow(&CurrentName, 0, MapList, 0);
417 TempSpot = StrStr(CurrentName, L";");
418 if (TempSpot != NULL) {
419 *TempSpot = CHAR_NULL;
420 }
421 DevPathString = gDevPathToText->ConvertDevicePathToText(DevPath, TRUE, FALSE);
422 if (!SFO) {
423 TempLen = StrLen(CurrentName);
424 ShellPrintHiiEx (
425 -1,
426 -1,
427 NULL,
428 STRING_TOKEN (STR_MAP_ENTRY),
429 gShellLevel2HiiHandle,
430 CurrentName,
431 TempLen < StrLen(MapList)?MapList + TempLen+1:L"",
432 DevPathString
433 );
434 if (Verbose) {
435 //
436 // also print handle, media type, removable (y/n), and current directory
437 //
438 MediaType = GetDeviceMediaType(DevPath);
439 if ((TypeString != NULL &&MediaType != NULL && StrStr(TypeString, MediaType) != NULL) || TypeString == NULL) {
440 Removable = IsRemoveableDevice(DevPath);
441 TempSpot2 = ShellGetCurrentDir(CurrentName);
442 ShellPrintHiiEx (
443 -1,
444 -1,
445 NULL,
446 STRING_TOKEN (STR_MAP_ENTRY_VERBOSE),
447 gShellLevel2HiiHandle,
448 ConvertHandleToHandleIndex(Handle),
449 MediaType,
450 Removable?L"Yes":L"No",
451 TempSpot2
452 );
453 }
454 FreePool(MediaType);
455 }
456 } else {
457 TempLen = StrLen(CurrentName);
458 ShellPrintHiiEx (
459 -1,
460 -1,
461 NULL,
462 STRING_TOKEN (STR_MAP_SFO_MAPPINGS),
463 gShellLevel2HiiHandle,
464 CurrentName,
465 DevPathString,
466 TempLen < StrLen(MapList)?MapList + TempLen+1:L""
467 );
468 }
469 FreePool(DevPathString);
470 FreePool(CurrentName);
471 return EFI_SUCCESS;
472 }
473
474 /**
475 Delete Specific from the list of maps for device Handle.
476
477 @param[in] Specific The name to delete.
478 @param[in] Handle The device to look on.
479
480 @retval EFI_SUCCESS The delete was successful.
481 @retval EFI_NOT_FOUND Name was not a map on Handle.
482 **/
483 EFI_STATUS
484 EFIAPI
485 PerformSingleMappingDelete(
486 IN CONST CHAR16 *Specific,
487 IN CONST EFI_HANDLE Handle
488 )
489 {
490 EFI_DEVICE_PATH_PROTOCOL *DevPath;
491 EFI_DEVICE_PATH_PROTOCOL *DevPathCopy;
492 CONST CHAR16 *MapList;
493 CHAR16 *CurrentName;
494
495 DevPath = DevicePathFromHandle(Handle);
496 DevPathCopy = DevPath;
497 MapList = gEfiShellProtocol->GetMapFromDevicePath(&DevPathCopy);
498 CurrentName = NULL;
499
500 if (MapList == NULL) {
501 return (EFI_NOT_FOUND);
502 }
503 //
504 // if there is a specific and its not on the list...
505 //
506 if (!SearchList(MapList, Specific, &CurrentName, TRUE, FALSE, L";")) {
507 return (EFI_NOT_FOUND);
508 }
509 return (gEfiShellProtocol->SetMap(NULL, CurrentName));
510 }
511
512 CONST CHAR16 Cd[] = L"cd*";
513 CONST CHAR16 Hd[] = L"hd*";
514 CONST CHAR16 Fp[] = L"fp*";
515 CONST CHAR16 AnyF[] = L"F*";
516 /**
517 Function to display mapping information to the user.
518
519 If Specific is specified then Consist and Normal will be ignored since information will
520 be printed for the specific item only.
521
522 @param[in] Verbose TRUE to display (extra) verbose information.
523 @param[in] Consist TRUE to display consistent mappings.
524 @param[in] Normal TRUE to display normal (not consist) mappings.
525 @param[in] TypeString Pointer to string of filter types.
526 @param[in] SFO TRUE to display output in Standard Output Format.
527 @param[in] Specific Pointer to string for specific map to display.
528 @param[in] Header TRUE to print the header block.
529
530 @retval SHELL_SUCCESS The display was printed.
531 @retval SHELL_INVALID_PARAMETER One of Consist or Normal must be TRUE if no Specific.
532
533 **/
534 SHELL_STATUS
535 EFIAPI
536 PerformMappingDisplay(
537 IN CONST BOOLEAN Verbose,
538 IN CONST BOOLEAN Consist,
539 IN CONST BOOLEAN Normal,
540 IN CONST CHAR16 *TypeString,
541 IN CONST BOOLEAN SFO,
542 IN CONST CHAR16 *Specific OPTIONAL,
543 IN CONST BOOLEAN Header
544 )
545 {
546 EFI_STATUS Status;
547 EFI_HANDLE *HandleBuffer;
548 UINTN BufferSize;
549 UINTN LoopVar;
550 CHAR16 *Test;
551 BOOLEAN Found;
552
553 if (!Consist && !Normal && Specific == NULL && TypeString == NULL) {
554 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_TOO_FEW), gShellLevel2HiiHandle);
555 return (SHELL_INVALID_PARAMETER);
556 }
557
558 if (TypeString != NULL) {
559 Test = (CHAR16*)Cd;
560 if (StrnCmp(TypeString, Test, StrLen(Test)-1) != 0) {
561 Test = (CHAR16*)Hd;
562 if (StrnCmp(TypeString, Test, StrLen(Test)-1) != 0) {
563 Test = (CHAR16*)Fp;
564 if (StrnCmp(TypeString, Test, StrLen(Test)-1) != 0) {
565 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PROBLEM), gShellLevel2HiiHandle, TypeString);
566 return (SHELL_INVALID_PARAMETER);
567 }
568 } else if (Test == NULL) {
569 Test = (CHAR16*)AnyF;
570 }
571 }
572 } else {
573 Test = NULL;
574 }
575
576 if (Header) {
577 //
578 // Print the header
579 //
580 if (!SFO) {
581 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_MAP_HEADER), gShellLevel2HiiHandle);
582 } else {
583 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_SFO_HEADER), gShellLevel2HiiHandle, L"map");
584 }
585 }
586
587 BufferSize = 0;
588 HandleBuffer = NULL;
589
590 //
591 // Look up all SimpleFileSystems in the platform
592 //
593 Status = gBS->LocateHandle(
594 ByProtocol,
595 &gEfiSimpleFileSystemProtocolGuid,
596 NULL,
597 &BufferSize,
598 HandleBuffer);
599 if (Status == EFI_BUFFER_TOO_SMALL) {
600 HandleBuffer = AllocateZeroPool(BufferSize);
601 if (HandleBuffer == NULL) {
602 return (SHELL_OUT_OF_RESOURCES);
603 }
604 Status = gBS->LocateHandle(
605 ByProtocol,
606 &gEfiSimpleFileSystemProtocolGuid,
607 NULL,
608 &BufferSize,
609 HandleBuffer);
610 }
611
612 //
613 // Get the map name(s) for each one.
614 //
615 for ( LoopVar = 0, Found = FALSE
616 ; LoopVar < (BufferSize / sizeof(EFI_HANDLE)) && HandleBuffer != NULL
617 ; LoopVar ++
618 ){
619 Status = PerformSingleMappingDisplay(
620 Verbose,
621 Consist,
622 Normal,
623 Test,
624 SFO,
625 Specific,
626 HandleBuffer[LoopVar]);
627 if (!EFI_ERROR(Status)) {
628 Found = TRUE;
629 }
630 }
631
632 //
633 // Look up all BlockIo in the platform
634 //
635 Status = gBS->LocateHandle(
636 ByProtocol,
637 &gEfiBlockIoProtocolGuid,
638 NULL,
639 &BufferSize,
640 HandleBuffer);
641 if (Status == EFI_BUFFER_TOO_SMALL) {
642 SHELL_FREE_NON_NULL(HandleBuffer);
643 HandleBuffer = AllocateZeroPool(BufferSize);
644 if (HandleBuffer == NULL) {
645 return (SHELL_OUT_OF_RESOURCES);
646 }
647 Status = gBS->LocateHandle(
648 ByProtocol,
649 &gEfiBlockIoProtocolGuid,
650 NULL,
651 &BufferSize,
652 HandleBuffer);
653 }
654 if (!EFI_ERROR(Status) && HandleBuffer != NULL) {
655 //
656 // Get the map name(s) for each one.
657 //
658 for ( LoopVar = 0
659 ; LoopVar < BufferSize / sizeof(EFI_HANDLE)
660 ; LoopVar ++
661 ){
662 //
663 // Skip any that were already done...
664 //
665 if (gBS->OpenProtocol(
666 HandleBuffer[LoopVar],
667 &gEfiSimpleFileSystemProtocolGuid,
668 NULL,
669 gImageHandle,
670 NULL,
671 EFI_OPEN_PROTOCOL_TEST_PROTOCOL) == EFI_SUCCESS) {
672 continue;
673 }
674 Status = PerformSingleMappingDisplay(
675 Verbose,
676 Consist,
677 Normal,
678 Test,
679 SFO,
680 Specific,
681 HandleBuffer[LoopVar]);
682 if (!EFI_ERROR(Status)) {
683 Found = TRUE;
684 }
685 }
686 FreePool(HandleBuffer);
687 }
688 if (!Found) {
689 ShellPrintHiiEx(gST->ConOut->Mode->CursorColumn, gST->ConOut->Mode->CursorRow-1, NULL, STRING_TOKEN (STR_MAP_NF), gShellLevel2HiiHandle, Specific);
690 }
691 return (SHELL_SUCCESS);
692 }
693
694 /**
695 Perform a mapping display and parse for multiple types in the TypeString.
696
697 @param[in] Verbose TRUE to use verbose output.
698 @param[in] Consist TRUE to display consistent names.
699 @param[in] Normal TRUE to display normal names.
700 @param[in] TypeString An optional comma-delimited list of types.
701 @param[in] SFO TRUE to display in SFO format. See Spec.
702 @param[in] Specific An optional specific map name to display alone.
703
704 @retval SHELL_INVALID_PARAMETER A parameter was invalid.
705 @retval SHELL_SUCCESS The display was successful.
706 @sa PerformMappingDisplay
707 **/
708 SHELL_STATUS
709 EFIAPI
710 PerformMappingDisplay2(
711 IN CONST BOOLEAN Verbose,
712 IN CONST BOOLEAN Consist,
713 IN CONST BOOLEAN Normal,
714 IN CONST CHAR16 *TypeString,
715 IN CONST BOOLEAN SFO,
716 IN CONST CHAR16 *Specific OPTIONAL
717 )
718 {
719 CONST CHAR16 *TypeWalker;
720 SHELL_STATUS ShellStatus;
721 CHAR16 *Comma;
722
723
724 if (TypeString == NULL) {
725 return (PerformMappingDisplay(Verbose, Consist, Normal, NULL, SFO, Specific, TRUE));
726 }
727 ShellStatus = SHELL_SUCCESS;
728 for (TypeWalker = TypeString ; TypeWalker != NULL && *TypeWalker != CHAR_NULL ;) {
729 Comma = StrStr(TypeWalker, L",");
730 if (Comma == NULL) {
731 if (ShellStatus == SHELL_SUCCESS) {
732 ShellStatus = PerformMappingDisplay(Verbose, Consist, Normal, TypeWalker, SFO, Specific, (BOOLEAN)(TypeWalker == TypeString));
733 } else {
734 PerformMappingDisplay(Verbose, Consist, Normal, TypeWalker, SFO, Specific, (BOOLEAN)(TypeWalker == TypeString));
735 }
736 break;
737 } else {
738 *Comma = CHAR_NULL;
739 if (ShellStatus == SHELL_SUCCESS) {
740 ShellStatus = PerformMappingDisplay(Verbose, Consist, Normal, TypeWalker, SFO, Specific, (BOOLEAN)(TypeWalker == TypeString));
741 } else {
742 PerformMappingDisplay(Verbose, Consist, Normal, TypeWalker, SFO, Specific, (BOOLEAN)(TypeWalker == TypeString));
743 }
744 *Comma = L',';
745 TypeWalker = Comma + 1;
746 }
747 }
748
749 return (ShellStatus);
750 }
751
752 /**
753 Delete a specific map.
754
755 @param[in] Specific The pointer to the name of the map to delete.
756
757 @retval EFI_INVALID_PARAMETER Specific was NULL.
758 @retval EFI_SUCCESS The operation was successful.
759 @retval EFI_NOT_FOUND Specific could not be found.
760 **/
761 EFI_STATUS
762 EFIAPI
763 PerformMappingDelete(
764 IN CONST CHAR16 *Specific
765 )
766 {
767 EFI_STATUS Status;
768 EFI_HANDLE *HandleBuffer;
769 UINTN BufferSize;
770 UINTN LoopVar;
771 BOOLEAN Deleted;
772
773 if (Specific == NULL) {
774 return (EFI_INVALID_PARAMETER);
775 }
776
777 BufferSize = 0;
778 HandleBuffer = NULL;
779 Deleted = FALSE;
780
781 //
782 // Look up all SimpleFileSystems in the platform
783 //
784 Status = gBS->LocateHandle(
785 ByProtocol,
786 &gEfiDevicePathProtocolGuid,
787 NULL,
788 &BufferSize,
789 HandleBuffer);
790 if (Status == EFI_BUFFER_TOO_SMALL) {
791 HandleBuffer = AllocateZeroPool(BufferSize);
792 if (HandleBuffer == NULL) {
793 return (EFI_OUT_OF_RESOURCES);
794 }
795 Status = gBS->LocateHandle(
796 ByProtocol,
797 &gEfiDevicePathProtocolGuid,
798 NULL,
799 &BufferSize,
800 HandleBuffer);
801 }
802 if (EFI_ERROR(Status)) {
803 SHELL_FREE_NON_NULL(HandleBuffer);
804 return (Status);
805 }
806
807 if (HandleBuffer != NULL) {
808 //
809 // Get the map name(s) for each one.
810 //
811 for ( LoopVar = 0
812 ; LoopVar < BufferSize / sizeof(EFI_HANDLE)
813 ; LoopVar ++
814 ){
815 if (PerformSingleMappingDelete(Specific,HandleBuffer[LoopVar]) == SHELL_SUCCESS) {
816 Deleted = TRUE;
817 }
818 }
819 }
820 //
821 // Look up all BlockIo in the platform
822 //
823 Status = gBS->LocateHandle(
824 ByProtocol,
825 &gEfiBlockIoProtocolGuid,
826 NULL,
827 &BufferSize,
828 HandleBuffer);
829 if (Status == EFI_BUFFER_TOO_SMALL) {
830 FreePool(HandleBuffer);
831 HandleBuffer = AllocateZeroPool(BufferSize);
832 if (HandleBuffer == NULL) {
833 return (EFI_OUT_OF_RESOURCES);
834 }
835 Status = gBS->LocateHandle(
836 ByProtocol,
837 &gEfiBlockIoProtocolGuid,
838 NULL,
839 &BufferSize,
840 HandleBuffer);
841 }
842 if (EFI_ERROR(Status)) {
843 SHELL_FREE_NON_NULL(HandleBuffer);
844 return (Status);
845 }
846
847 if (HandleBuffer != NULL) {
848 //
849 // Get the map name(s) for each one.
850 //
851 for ( LoopVar = 0
852 ; LoopVar < BufferSize / sizeof(EFI_HANDLE)
853 ; LoopVar ++
854 ){
855 //
856 // Skip any that were already done...
857 //
858 if (gBS->OpenProtocol(
859 HandleBuffer[LoopVar],
860 &gEfiDevicePathProtocolGuid,
861 NULL,
862 gImageHandle,
863 NULL,
864 EFI_OPEN_PROTOCOL_TEST_PROTOCOL) == EFI_SUCCESS) {
865 continue;
866 }
867 if (PerformSingleMappingDelete(Specific,HandleBuffer[LoopVar]) == SHELL_SUCCESS) {
868 Deleted = TRUE;
869 }
870 }
871 }
872 SHELL_FREE_NON_NULL(HandleBuffer);
873 if (!Deleted) {
874 return (EFI_NOT_FOUND);
875 }
876 return (EFI_SUCCESS);
877 }
878
879 /**
880 function to add a mapping from mapping.
881
882 This function will get the device path associated with the mapping and call SetMap.
883
884 @param[in] Map The Map to add a mapping for
885 @param[in] SName The name of the new mapping
886
887 @retval SHELL_SUCCESS the mapping was added
888 @retval SHELL_INVALID_PARAMETER the device path for Map could not be retrieved.
889 @return Shell version of a return value from EfiShellProtocol->SetMap
890
891 **/
892 SHELL_STATUS
893 EFIAPI
894 AddMappingFromMapping(
895 IN CONST CHAR16 *Map,
896 IN CONST CHAR16 *SName
897 )
898 {
899 CONST EFI_DEVICE_PATH_PROTOCOL *DevPath;
900 EFI_STATUS Status;
901 CHAR16 *NewSName;
902
903 NewSName = AllocateZeroPool(StrSize(SName) + sizeof(CHAR16));
904 if (NewSName == NULL) {
905 return (SHELL_OUT_OF_RESOURCES);
906 }
907 StrCpy(NewSName, SName);
908 if (NewSName[StrLen(NewSName)-1] != L':') {
909 StrCat(NewSName, L":");
910 }
911
912 if (!IsNumberLetterOnly(NewSName, StrLen(NewSName)-1)) {
913 FreePool(NewSName);
914 return (SHELL_INVALID_PARAMETER);
915 }
916
917 DevPath = gEfiShellProtocol->GetDevicePathFromMap(Map);
918 if (DevPath == NULL) {
919 FreePool(NewSName);
920 return (SHELL_INVALID_PARAMETER);
921 }
922
923 Status = gEfiShellProtocol->SetMap(DevPath, NewSName);
924 FreePool(NewSName);
925 if (EFI_ERROR(Status)) {
926 return (SHELL_DEVICE_ERROR);
927 }
928 return (SHELL_SUCCESS);
929 }
930
931 /**
932 function to add a mapping from an EFI_HANDLE.
933
934 This function will get the device path associated with the Handle and call SetMap.
935
936 @param[in] Handle The handle to add a mapping for
937 @param[in] SName The name of the new mapping
938
939 @retval SHELL_SUCCESS the mapping was added
940 @retval SHELL_INVALID_PARAMETER SName was not valid for a map name.
941 @return Shell version of a return value from either
942 gBS->OpenProtocol or EfiShellProtocol->SetMap
943
944 **/
945 SHELL_STATUS
946 EFIAPI
947 AddMappingFromHandle(
948 IN CONST EFI_HANDLE Handle,
949 IN CONST CHAR16 *SName
950 )
951 {
952 EFI_DEVICE_PATH_PROTOCOL *DevPath;
953 EFI_STATUS Status;
954 CHAR16 *NewSName;
955
956 NewSName = AllocateZeroPool(StrSize(SName) + sizeof(CHAR16));
957 if (NewSName == NULL) {
958 return (SHELL_OUT_OF_RESOURCES);
959 }
960 StrCpy(NewSName, SName);
961 if (NewSName[StrLen(NewSName)-1] != L':') {
962 StrCat(NewSName, L":");
963 }
964
965 if (!IsNumberLetterOnly(NewSName, StrLen(NewSName)-1)) {
966 FreePool(NewSName);
967 return (SHELL_INVALID_PARAMETER);
968 }
969
970 Status = gBS->OpenProtocol(
971 Handle,
972 &gEfiDevicePathProtocolGuid,
973 (VOID**)&DevPath,
974 gImageHandle,
975 NULL,
976 EFI_OPEN_PROTOCOL_GET_PROTOCOL
977 );
978 if (EFI_ERROR(Status)) {
979 FreePool(NewSName);
980 return (SHELL_DEVICE_ERROR);
981 }
982 Status = gEfiShellProtocol->SetMap(DevPath, NewSName);
983 FreePool(NewSName);
984 if (EFI_ERROR(Status)) {
985 return (SHELL_DEVICE_ERROR);
986 }
987 return (SHELL_SUCCESS);
988 }
989
990 STATIC CONST SHELL_PARAM_ITEM MapParamList[] = {
991 {L"-d", TypeValue},
992 {L"-r", TypeFlag},
993 {L"-v", TypeFlag},
994 {L"-c", TypeFlag},
995 {L"-f", TypeFlag},
996 {L"-u", TypeFlag},
997 {L"-t", TypeValue},
998 {L"-sfo", TypeValue},
999 {NULL, TypeMax}
1000 };
1001
1002 /**
1003 Function for 'map' command.
1004
1005 @param[in] ImageHandle Handle to the Image (NULL if Internal).
1006 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
1007 **/
1008 SHELL_STATUS
1009 EFIAPI
1010 ShellCommandRunMap (
1011 IN EFI_HANDLE ImageHandle,
1012 IN EFI_SYSTEM_TABLE *SystemTable
1013 )
1014 {
1015 EFI_STATUS Status;
1016 LIST_ENTRY *Package;
1017 CHAR16 *ProblemParam;
1018 CONST CHAR16 *SName;
1019 CONST CHAR16 *Mapping;
1020 EFI_HANDLE MapAsHandle;
1021 CONST EFI_DEVICE_PATH_PROTOCOL *DevPath;
1022 SHELL_STATUS ShellStatus;
1023 BOOLEAN SfoMode;
1024 BOOLEAN ConstMode;
1025 BOOLEAN NormlMode;
1026 CONST CHAR16 *Param1;
1027 CONST CHAR16 *TypeString;
1028 UINTN TempStringLength;
1029
1030 ProblemParam = NULL;
1031 Mapping = NULL;
1032 SName = NULL;
1033 DevPath = NULL;
1034 ShellStatus = SHELL_SUCCESS;
1035 MapAsHandle = NULL;
1036
1037 //
1038 // initialize the shell lib (we must be in non-auto-init...)
1039 //
1040 Status = ShellInitialize();
1041 ASSERT_EFI_ERROR(Status);
1042
1043 Status = CommandInit();
1044 ASSERT_EFI_ERROR(Status);
1045
1046 //
1047 // parse the command line
1048 //
1049 Status = ShellCommandLineParse (MapParamList, &Package, &ProblemParam, TRUE);
1050 if (EFI_ERROR(Status)) {
1051 if (Status == EFI_VOLUME_CORRUPTED && ProblemParam != NULL) {
1052 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PROBLEM), gShellLevel2HiiHandle, ProblemParam);
1053 FreePool(ProblemParam);
1054 ShellStatus = SHELL_INVALID_PARAMETER;
1055 } else {
1056 ASSERT(FALSE);
1057 }
1058 } else {
1059 //
1060 // check for "-?"
1061 //
1062 SfoMode = ShellCommandLineGetFlag(Package, L"-sfo");
1063 ConstMode = ShellCommandLineGetFlag(Package, L"-c");
1064 NormlMode = ShellCommandLineGetFlag(Package, L"-f");
1065 if (ShellCommandLineGetFlag(Package, L"-?")) {
1066 ASSERT(FALSE);
1067 } else if (ShellCommandLineGetRawValue(Package, 3) != NULL) {
1068 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_TOO_MANY), gShellLevel2HiiHandle);
1069 ShellStatus = SHELL_INVALID_PARAMETER;
1070 } else {
1071 //
1072 // Deleting a map name...
1073 //
1074 if (ShellCommandLineGetFlag(Package, L"-d")) {
1075 if ( ShellCommandLineGetFlag(Package, L"-r")
1076 || ShellCommandLineGetFlag(Package, L"-v")
1077 || ConstMode
1078 || NormlMode
1079 || ShellCommandLineGetFlag(Package, L"-u")
1080 || ShellCommandLineGetFlag(Package, L"-t")
1081 ){
1082 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_CON), gShellLevel2HiiHandle);
1083 ShellStatus = SHELL_INVALID_PARAMETER;
1084 } else {
1085 SName = ShellCommandLineGetValue(Package, L"-d");
1086 if (SName != NULL) {
1087 Status = PerformMappingDelete(SName);
1088 if (EFI_ERROR(Status)) {
1089 switch (Status) {
1090 case EFI_ACCESS_DENIED:
1091 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_ERR_AD), gShellLevel2HiiHandle);
1092 ShellStatus = SHELL_ACCESS_DENIED;
1093 break;
1094 case EFI_NOT_FOUND:
1095 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_MAP_NF), gShellLevel2HiiHandle, SName);
1096 ShellStatus = SHELL_INVALID_PARAMETER;
1097 break;
1098 default:
1099 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_ERR_UK), gShellLevel2HiiHandle, Status);
1100 ShellStatus = SHELL_UNSUPPORTED;
1101 }
1102 }
1103 } else {
1104 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_TOO_FEW), gShellLevel2HiiHandle);
1105 ShellStatus = SHELL_INVALID_PARAMETER;
1106 }
1107 }
1108 } else if ( ShellCommandLineGetFlag(Package, L"-r")
1109 // || ShellCommandLineGetFlag(Package, L"-v")
1110 || ConstMode
1111 || NormlMode
1112 || ShellCommandLineGetFlag(Package, L"-u")
1113 || ShellCommandLineGetFlag(Package, L"-t")
1114 ){
1115 if ( ShellCommandLineGetFlag(Package, L"-r")) {
1116 //
1117 // Do the reset
1118 //
1119 Status = ShellCommandCreateInitialMappingsAndPaths();
1120 if (EFI_ERROR(Status)) {
1121 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_ERR_UK), gShellLevel2HiiHandle, Status);
1122 ShellStatus = SHELL_UNSUPPORTED;
1123 }
1124 }
1125 if ( ShellStatus == SHELL_SUCCESS && ShellCommandLineGetFlag(Package, L"-u")) {
1126 //
1127 // Do the Update
1128 //
1129 Status = UpdateMapping();
1130 if (EFI_ERROR(Status)) {
1131 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_ERR_UK), gShellLevel2HiiHandle, Status);
1132 ShellStatus = SHELL_UNSUPPORTED;
1133 }
1134 }
1135 if (ShellStatus == SHELL_SUCCESS) {
1136 Param1 = ShellCommandLineGetRawValue(Package, 1);
1137 TypeString = ShellCommandLineGetValue(Package, L"-t");
1138 if (!ConstMode
1139 &&!NormlMode
1140 &&TypeString == NULL
1141 ) {
1142 //
1143 // now do the display...
1144 //
1145 ShellStatus = PerformMappingDisplay(
1146 ShellCommandLineGetFlag(Package, L"-v"),
1147 TRUE,
1148 TRUE,
1149 NULL,
1150 SfoMode,
1151 Param1,
1152 TRUE
1153 );
1154 } else {
1155 //
1156 // now do the display...
1157 //
1158 ShellStatus = PerformMappingDisplay2(
1159 ShellCommandLineGetFlag(Package, L"-v"),
1160 ConstMode,
1161 NormlMode,
1162 TypeString,
1163 SfoMode,
1164 Param1
1165 );
1166 }
1167 }
1168 } else {
1169 //
1170 // adding or displaying (there were no flags)
1171 //
1172 SName = ShellCommandLineGetRawValue(Package, 1);
1173 Mapping = ShellCommandLineGetRawValue(Package, 2);
1174 if ( SName == NULL
1175 && Mapping == NULL
1176 ){
1177 //
1178 // display only since no flags
1179 //
1180 ShellStatus = PerformMappingDisplay(
1181 ShellCommandLineGetFlag(Package, L"-v"),
1182 TRUE,
1183 TRUE,
1184 NULL,
1185 SfoMode,
1186 NULL,
1187 TRUE
1188 );
1189 } else if ( SName == NULL
1190 || Mapping == NULL
1191 ){
1192 //
1193 // Display only the one specified
1194 //
1195 ShellStatus = PerformMappingDisplay(
1196 FALSE,
1197 FALSE,
1198 FALSE,
1199 NULL,
1200 SfoMode,
1201 SName, // note the variable here...
1202 TRUE
1203 );
1204 } else {
1205 if (ShellIsHexOrDecimalNumber(Mapping, TRUE, FALSE)) {
1206 MapAsHandle = ConvertHandleIndexToHandle(ShellStrToUintn(Mapping));
1207 } else {
1208 MapAsHandle = NULL;
1209 }
1210 if (MapAsHandle == NULL && Mapping[StrLen(Mapping)-1] != L':') {
1211 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PROBLEM), gShellLevel2HiiHandle, Mapping);
1212 ShellStatus = SHELL_INVALID_PARAMETER;
1213 } else {
1214 if (MapAsHandle != NULL) {
1215 TempStringLength = StrLen(SName);
1216 if (!IsNumberLetterOnly(SName, TempStringLength-(SName[TempStringLength-1]==L':'?1:0))) {
1217 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PROBLEM), gShellLevel2HiiHandle, SName);
1218 ShellStatus = SHELL_INVALID_PARAMETER;
1219 } else {
1220 ShellStatus = AddMappingFromHandle(MapAsHandle, SName);
1221 }
1222 } else {
1223 TempStringLength = StrLen(SName);
1224 if (!IsNumberLetterOnly(SName, TempStringLength-(SName[TempStringLength-1]==L':'?1:0))) {
1225 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PROBLEM), gShellLevel2HiiHandle, SName);
1226 ShellStatus = SHELL_INVALID_PARAMETER;
1227 } else {
1228 ShellStatus = AddMappingFromMapping(Mapping, SName);
1229 }
1230 }
1231 if (ShellStatus != SHELL_SUCCESS) {
1232 switch (ShellStatus) {
1233 case SHELL_ACCESS_DENIED:
1234 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_ERR_AD), gShellLevel2HiiHandle);
1235 break;
1236 case SHELL_INVALID_PARAMETER:
1237 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_INV), gShellLevel2HiiHandle);
1238 break;
1239 case SHELL_DEVICE_ERROR:
1240 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_MAP_NOF), gShellLevel2HiiHandle, Mapping);
1241 break;
1242 default:
1243 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_ERR_UK), gShellLevel2HiiHandle, ShellStatus|MAX_BIT);
1244 }
1245 } else {
1246 //
1247 // now do the display...
1248 //
1249 ShellStatus = PerformMappingDisplay(
1250 FALSE,
1251 FALSE,
1252 FALSE,
1253 NULL,
1254 SfoMode,
1255 SName,
1256 TRUE
1257 );
1258 } // we were sucessful so do an output
1259 } // got a valid map target
1260 } // got 2 variables
1261 } // we are adding a mapping
1262 } // got valid parameters
1263 }
1264
1265 //
1266 // free the command line package
1267 //
1268 ShellCommandLineFreeVarList (Package);
1269
1270 return (ShellStatus);
1271 }
1272