summaryrefslogtreecommitdiff
path: root/Core/EM/EfiOsBootOptionNames/EfiOsBootOptionNames.c
blob: 8aea54589128b737d58f24e627285ae4b4f77658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
//#**********************************************************************
//#**********************************************************************
//#**                                                                  **
//#**        (C)Copyright 1985-2014, American Megatrends, Inc.         **
//#**                                                                  **
//#**                       All Rights Reserved.                       **
//#**                                                                  **
//#**              5555 Oak brook Pkwy, Norcorss, GA 30093             **
//#**                                                                  **
//#**                       Phone: (770)-246-8600                      **
//#**                                                                  **
//#**********************************************************************
//***********************************************************************

//**********************************************************************
// $Header: /Alaska/BIN/Modules/BootOptionPolicies/EfiOsBootOptionNames/EfiOsBootOptionNames.c 5     8/13/14 11:14p Walonli $
//
// $Revision: 5 $
//
// $Date: 8/13/14 11:14p $
//***********************************************************************
// Revision History
// ----------------
// $Log: /Alaska/BIN/Modules/BootOptionPolicies/EfiOsBootOptionNames/EfiOsBootOptionNames.c $
// 
// 5     8/13/14 11:14p Walonli
// [TAG]  		EIP180632
// [Category]  	New Feature
// [Description]  	Support FixedBootOrder to display Uefi OS full name
// "Windows Boot Manager(Px: DeviceName)".
// [Files]  		EfiOsBootOptionNames.c
// EfiOsBootOrder.c
// EfiOsBootOptionNames.cif
// 
// 4     5/23/14 5:08a Dukeyeh
// [TAG]  		EIP167957 
// [Category]  	Bug Fix
// [RootCause]  	EIP147262 - The "EFI OS BootOptionNames" module can't
// support the "FixedBootOrder" module Boot option strings. 
// EIP159984 - Linux UEFI OS boot issue. 
// EIP168792 - Possible heap corruption - EFI OS BootOptionNames 
// [Solution]  	EIP147262 =>A new token
// "DISPLAY_FULL_OPTION_NAME_WITH_FBO" is added to control this.
// EIP159984 =>Should NOT kill the UEFI OS boot option that created by OS.
// EIP168792 =>NEW_STRING_BUFFER_LENGTH is replaced with the actual size
// of the allocated memory, NewStringLength. 
// 
// [Files]  		EfiOsBootOptionNames.sdl
// EfiOsBootOptionNames.mak
// EfiOsBootOptionNames.chm
// EfiOsBootOptionNames.c
// EfiOsBootOrder.c
// EfiOsBootOptionNames.cif
//
//***********************************************************************
//***********************************************************************
//<AMI_FHDR_START>
//
// Name: EfiOsBootOptionNames.c
//
// Description:	Change the Name of boot Option in Setup into format of
//              "OS Name(Px:HDD name)" or "OS Name(HDD name)" if there
//              is no port or "OS Name" if can't find controller name.
//
//<AMI_FHDR_END>
//***********************************************************************

#include <AmiDxeLib.h>
#include <Protocol\BlockIo.h>
#include <Protocol\DevicePath.h>
#include <Protocol\SimpleFileSystem.h>
#include <Protocol\PDiskinfo.h>
#include "boot.h" // Part of TSE Binary
#include <Token.h>

//
//  External variables (part of AMITSEBin)
// 
extern UINTN gBootOptionCount;
extern BOOT_DATA* gBootData;

//
//  External functions
// 

/*
    This function locates the handle with BlockIo installed that provides block
    access to the partition containing the Windows boot loader.  The load option
    (BootXXXX variable) created by Windows starts with a HD node instead of a 
    complete device path.  The partition signature is used to find the complete
    device path.

    @param  DevicePath  

    @retval  EFI_DEVICE_PATH_PROTOCOL*  
*/
EFI_DEVICE_PATH_PROTOCOL* _DiscoverPartition( 
    EFI_DEVICE_PATH_PROTOCOL *DevicePath
);

//
//  DEFINE
// 
#define CONTROLLER_NAME_BUFFER_LENGTH 100


//*************************************************************************
//<AMI_PHDR_START>
//
// Name: GetPhysicalBlockIoHandle
//
// Description:	
//  Takes a handle with BlockIo providing partition access and returns
//  the handle with the BlockIo providing raw access to the drive that
//  contains the partition.
//
// Input:
//  IN EFI_HANDLE BlockIoHandle - Image handle with BlockIo partition access.
//
// Output:
//  None.
//
// Returns: 
//  EFI_HANDLE - Handle with BlockIo that provides raw access to drive
//  containing partition.
//
// Modified:
//  None.
//
// Referrals:
//  HandleProtocol()
//  DPCut()
//  LocateDevicePath()
//  FreePool()
// 
// Notes:	
//  None.
//
//<AMI_PHDR_END>
//*************************************************************************
EFI_HANDLE GetPhysicalBlockIoHandle (
    IN EFI_HANDLE BlockIoHandle
)
{
    	EFI_BLOCK_IO_PROTOCOL *BlkIo;
    	EFI_DEVICE_PATH_PROTOCOL *DevicePath, *Dp;
    	EFI_STATUS Status;
    	EFI_HANDLE Handle = BlockIoHandle;

    	Status=pBS->HandleProtocol(
        	Handle, &gEfiBlockIoProtocolGuid, &BlkIo
    	);
    	if (EFI_ERROR(Status)) return Handle;
    	if (!BlkIo->Media->LogicalPartition) return Handle;
    	Status=pBS->HandleProtocol(
        	Handle, &gEfiDevicePathProtocolGuid, &DevicePath
    	);
    	if (EFI_ERROR(Status)) return Handle;
    	Dp=DevicePath;
    	while(BlkIo->Media->LogicalPartition){
        	EFI_DEVICE_PATH_PROTOCOL *PrevDp=Dp;
        	//We need to cut Devicepath node to get Phisycal Partition
        	Dp=DPCut(PrevDp);
        	if (PrevDp!=DevicePath) pBS->FreePool(PrevDp);
        	if (Dp == NULL) break;
        	PrevDp=Dp;
        	Status=pBS->LocateDevicePath(
            	&gEfiBlockIoProtocolGuid,&PrevDp,&Handle
        	);
        	if(EFI_ERROR(Status)) break;
        	Status=pBS->HandleProtocol(
            	Handle, &gEfiBlockIoProtocolGuid, &BlkIo
       	 	);
        	if(EFI_ERROR(Status)) break;
    	}
    	if (Dp!=NULL && Dp!=DevicePath) pBS->FreePool(Dp);
    	//if physical Block I/O handle is not found, return original handle
    	return (BlkIo->Media->LogicalPartition) ? BlockIoHandle : Handle;
}

//*************************************************************************
//<AMI_PHDR_START>
//
// Name: RemoveTrailingSpaces
//
// Description:	
//  Removes trailing spaces from *Name.
//
// Input:
//  IN CHAR16 *Name - String from which trailing spaces should be removed.
//  IN UINTN NumberOfCharacters - Length of string at *Name.
//
// Output:
//  None.
//
// Returns: 
//  UINTN - Length of string after spaces have been removed.
//
// Modified:
//  String pointed to by *Name.
//
// Referrals:
//  None.
// 
// Notes:	
//  None.
//
//<AMI_PHDR_END>
//*************************************************************************
UINTN RemoveTrailingSpaces (
    IN CHAR16 *Name, 
    IN UINTN NumberOfCharacters
)
{
    	//remove trailing spaces
    	while(NumberOfCharacters>0 && Name[NumberOfCharacters-1]==L' ') 
        	NumberOfCharacters--;
    	Name[NumberOfCharacters]=0;
    	return NumberOfCharacters;
}

//*************************************************************************
//<AMI_PHDR_START>
//
// Name: ConstructBootOptionNameByHandle
//
// Description:	
//  Construct controller name from parent Handle.
//
// Input:
//  IN EFI_HANDLE Handle - Handle with partition BlockIo. 
//  IN CHAR16 *Name - Caller allocated string to store name in. 
//  IN UINTN NameSize - Size of string buffer.
//
// Output:
//  None.
//
// Returns: 
//  UINTN - Length of controller name string.
//
// Modified:
//  String pointed to by *Name.
//
// Referrals:
//  GetPhysicalBlockIoHandle()
//  Swprintf_s()
//  RemoveTrailingSpaces()
// 
// Notes:
//  None.
//
//<AMI_PHDR_END>
//*************************************************************************
UINTN ConstructBootOptionNameByHandle (
    IN EFI_HANDLE Handle, 
    IN CHAR16 *Name, 
    IN UINTN NameSize
)
{
    	CHAR16 *ControllerName;
    	UINTN  NumberOfCharacters;

    	if (Handle == NULL) return 0;

    	//Name from Controller Handle
    	Handle = GetPhysicalBlockIoHandle(Handle);
    	if (!GetControllerName(Handle, &ControllerName)) return 0;
    	NumberOfCharacters = Swprintf_s(Name, NameSize, L"%s", ControllerName);
    	return RemoveTrailingSpaces(Name, NumberOfCharacters);
}

/**
    OEM Variable, PLEASE reference SbSetup.c and modify this function to get correct port number.
*/
UINT16 gSATA[3][2] = {
  { 0, 1 },
  { 2, 3 },
  { 4, 5 }
};

//*************************************************************************
//<AMI_PHDR_START>
//
// Name: GetHDDPort
//
// Description:	
//  Use handle and EFI_DISK_INFO_PROTOCOL to get sata hard disk port.
//
// Input:
//  IN EFI_HANDLE - Use in locating EFI_DISK_INFO_PROTOCOL.
//
// Output:
//  None.
//
// Returns: 
//  UINT16 - Sata port number.
//
// Modified:
//  None.
//
// Referrals:
//  None.
// 
// Notes:	
//  None.
//
//<AMI_PHDR_END>
//*************************************************************************
UINT16 GetHDDPort( IN EFI_HANDLE Handle )
{
    	EFI_STATUS Status;
	EFI_GUID gEfiDiskInfoProtocolGuid = EFI_DISK_INFO_PROTOCOL_GUID;
  	EFI_DISK_INFO_PROTOCOL *DiskInfo;
	EFI_DEVICE_PATH_PROTOCOL *DevicePath;
  	UINT32 IdeChannel;
	UINT32 IdeDevice;

      	Status = pBS->HandleProtocol (
                          Handle,
                          &gEfiDevicePathProtocolGuid,
                          (VOID *) &DevicePath );
      
	if( !EFI_ERROR( Status ))
	{
		EFI_DEVICE_PATH_PROTOCOL *DevicePathNode;
		EFI_DEVICE_PATH_PROTOCOL *MessagingDevicePath;
		PCI_DEVICE_PATH *PciDevicePath;

      		DevicePathNode = DevicePath;
      		while (!isEndNode (DevicePathNode)) 
		{
        		if ((DevicePathNode->Type == HARDWARE_DEVICE_PATH) 
			   && (DevicePathNode->SubType == HW_PCI_DP))
         			PciDevicePath = (PCI_DEVICE_PATH *) DevicePathNode;
			else
        		if (DevicePathNode->Type == MESSAGING_DEVICE_PATH) 
				MessagingDevicePath = DevicePathNode;

			DevicePathNode = NEXT_NODE (DevicePathNode);		
		}

        	Status = pBS->HandleProtocol ( Handle, &gEfiDiskInfoProtocolGuid, &DiskInfo );
    		if ( !EFI_ERROR(Status) )
		{
       	 		Status = DiskInfo->WhichIde ( DiskInfo, &IdeChannel, &IdeDevice );
			if( !EFI_ERROR(Status) )
			{
				if( MessagingDevicePath->SubType == MSG_ATAPI_DP ) //IDE mode?
				{
                			if (PciDevicePath->Function == 5)
                    				return gSATA[IdeDevice+2][IdeChannel];
                			else
                    				return gSATA[IdeDevice][IdeChannel];   
				}
				else
					return IdeChannel;	//AHCI Port Number
			}
  		}
  	}
    	return 0xff;
}

//*************************************************************************
//<AMI_PHDR_START>
//
// Name: CreateNameWithUefiOS
//
// Description:	
//  Create boot option name into format of "OS NAME(Px:HDD Name) or 
//  "OS NAME(HDD Name) if there is no port or "OS_NAME" if can't find
//  controller name.
//
// Input:
//  IN EFI_DEVICE_PATH_PROTOCOL *DevicePath - Use in getting complete
//                                            device path of partition.
//  IN CHAR16 BootOptionName - Original boot option name.
//
// Output:
//  None.
//
// Returns: 
//  CHAR16* - New boot option name string.
//
// Modified:
//  None.
//
// Referrals:
//  None.
// 
// Notes:	
//  None.
//
//<AMI_PHDR_END>
//*************************************************************************
CHAR16* CreateNameWithUefiOS( IN EFI_DEVICE_PATH_PROTOCOL *DevicePath, IN CHAR16 *BootOptionName )
{
	EFI_STATUS Status;
    CHAR16* NewString = NULL;
    UINTN NewStringLength = 0;
	BOOLEAN SupportsSimpleFileSystem = FALSE;
	EFI_DEVICE_PATH_PROTOCOL* FullDevicePath = NULL;


    FullDevicePath = _DiscoverPartition(DevicePath);
		
    // Make sure that handle associated with full
    // device path supports Simple File System.
    if (FullDevicePath != NULL) 
    {
        EFI_DEVICE_PATH_PROTOCOL* pTempDevicePath = FullDevicePath;
        EFI_HANDLE TempHandle = NULL;

        Status = pBS->LocateDevicePath (
                        	&gEfiSimpleFileSystemProtocolGuid,
                        	&pTempDevicePath,
                        	&TempHandle );

        if (EFI_ERROR(Status)) 
        {
            TRACE((-1, "Does not support Simple File System.\n"));
            SupportsSimpleFileSystem = FALSE;
        }
        else
            SupportsSimpleFileSystem = TRUE;

        if ( SupportsSimpleFileSystem ) 
        {
            EFI_HANDLE BlkIoPartitionHandle = NULL;
            EFI_HANDLE ControllerHandle = NULL;
            CHAR16 ControllerNameBuffer[CONTROLLER_NAME_BUFFER_LENGTH];
            UINTN ControllerNameLength = 0;
            UINT16 PortNumber = 0;

            // Locate handle with above device path..
            Status = pBS->LocateDevicePath (
                        		&gEfiBlockIoProtocolGuid,
                        		&FullDevicePath,
                        		&BlkIoPartitionHandle );

            if (EFI_ERROR(Status)) 
            {
                TRACE((-1, "LocateDevicePath: %r\n", Status));
                return NULL;
            }

            ControllerHandle = GetPhysicalBlockIoHandle(BlkIoPartitionHandle);
            if (EFI_ERROR(Status)) 
            {
                TRACE((-1, "GetPhysicalBlockIoHandle: %r\n", Status));
                return NULL;
            }

            ControllerNameLength = ConstructBootOptionNameByHandle (
                        				ControllerHandle,
                        				ControllerNameBuffer,
                        				CONTROLLER_NAME_BUFFER_LENGTH );
    
            // Allocate proper memory for new string and copy updated string to it.
            NewStringLength = Wcslen(ControllerNameBuffer) + Wcslen(BootOptionName) + 0xf;
                   
            Status = pBS->AllocatePool (
                        		EfiBootServicesData,
                        		NewStringLength * sizeof(CHAR16),
                       	 		&NewString );

            if (EFI_ERROR(Status)) 
            {
                TRACE((-1, "AllocatePool: %r\n", Status));
                return NULL;
            }
    
            // Append OS name and update bootdata pointer
            PortNumber = GetHDDPort( ControllerHandle );
            if (PortNumber != 0xff) 
            {
                Swprintf_s ( NewString, 
                             NewStringLength,
                             L"%s (P%d: %s)",
                             BootOptionName,
                             PortNumber,
                             ControllerNameBuffer );
            }
            else 
            {
				if( ControllerNameLength == 0)
				{
                    Swprintf_s ( NewString, 
                                 NewStringLength,
                                 L"%s",
                                 BootOptionName );
				}
				else
				{
                    Swprintf_s ( NewString, 
                                 NewStringLength,
                                 L"%s (%s)",
                                 BootOptionName,
                                 ControllerNameBuffer );
				}
            }    
    
            return NewString;
        }
        // Could not find drive with matching partition.
        else 
        {	            
            NewStringLength = Wcslen(L" (Drive not present)") + Wcslen(BootOptionName) + 1;
    
            Status = pBS->AllocatePool ( EfiBootServicesData,
                       			     	     NewStringLength * sizeof(CHAR16),                    
                       			     	     &NewString );

            if (EFI_ERROR(Status)) 
            {
                TRACE((-1, "AllocatePool: %r\n", Status));
                return NULL;
            }
        
            Swprintf_s ( NewString, 
                         NewStringLength, 
                         L"%s (Drive not present)",
                         BootOptionName );

            return NewString;
        }
    }// if (FullDevicePath != NULL) 	 	
	return NULL;
}

//*************************************************************************
//<AMI_PHDR_START>
//
// Name: ChangeUefiBootNames
//
// Description:	
//    Examines boot options and adds drive information string to them.
//    This function is called at the ProcessEnterSetup hook provided by TSE.
//
// Input:
//  None.
//
// Output:
//  None.
//
// Returns: 
//  None.
//
// Modified:
//  String used by TSE when displaying Windows Boot Manager boot options.
//
// Referrals:
//  _DiscoverPartition()
//  GetSataPortNumber()
//  LocateDevicePath()
//  GetPhysicalBlockIoHandle()
//  ConstructBootOptionNameByHandle()
//  Swprintf_s()
// 
// Notes:	
//  None.
//
//<AMI_PHDR_END>
//*************************************************************************
VOID ChangeUefiBootNames( 
    VOID
)
{
   	UINTN i = 0;

    // Loop through all present boot options
    for( i = 0; i < gBootOptionCount; i++ )
    {
        BOOT_DATA *bootData = NULL;

        bootData = &(gBootData[i]);

        if( bootData->DevicePath->Type == MEDIA_DEVICE_PATH 
          && bootData->DevicePath->SubType == MEDIA_HARDDRIVE_DP ) 
        {
            CHAR16 *NewBootOptionName;
            NewBootOptionName = CreateNameWithUefiOS( bootData->DevicePath, bootData->Name);
            if ( NewBootOptionName )
            {
                bootData->Name = NewBootOptionName;
            }
        }
    }//for( i = 0; i < gBootOptionCount; i++ )
    return;
}

//***********************************************************************
//#**********************************************************************
//#**                                                                  **
//#**        (C)Copyright 1985-2014, American Megatrends, Inc.         **
//#**                                                                  **
//#**                       All Rights Reserved.                       **
//#**                                                                  **
//#**              5555 Oak brook Pkwy, Norcorss, GA 30093             **
//#**                                                                  **
//#**                       Phone: (770)-246-8600                      **
//#**                                                                  **
//#**********************************************************************
//***********************************************************************