]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/Sec/SecMain.c
Removed IntelFrameworkPkg references from SEC
[mirror_edk2.git] / Nt32Pkg / Sec / SecMain.c
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 SecMain.c
15
16 Abstract:
17 WinNt emulator of SEC phase. It's really a Win32 application, but this is
18 Ok since all the other modules for NT32 are NOT Win32 applications.
19
20 This program processes Windows environment variables and figures out
21 what the memory layout will be, how may FD's will be loaded and also
22 what the boot mode is.
23
24 The SEC registers a set of services with the SEC core. gPrivateDispatchTable
25 is a list of PPI's produced by the SEC that are availble for usage in PEI.
26
27 This code produces 128 K of temporary memory for the PEI stack by opening a
28 Windows file and mapping it directly to memory addresses.
29
30 The system.cmd script is used to set windows environment variables that drive
31 the configuration opitons of the SEC.
32
33 --*/
34
35 #include "SecMain.h"
36
37
38 //
39 // Globals
40 //
41 EFI_PEI_PE_COFF_LOADER_PROTOCOL_INSTANCE mPeiEfiPeiPeCoffLoaderInstance = {
42 {
43 SecNt32PeCoffGetImageInfo,
44 SecNt32PeCoffLoadImage,
45 SecNt32PeCoffRelocateImage,
46 SecNt32PeCoffUnloadimage
47 },
48 NULL
49 };
50
51
52
53 EFI_PEI_PE_COFF_LOADER_PROTOCOL *gPeiEfiPeiPeCoffLoader = &mPeiEfiPeiPeCoffLoaderInstance.PeCoff;
54
55 NT_PEI_LOAD_FILE_PPI mSecNtLoadFilePpi = { SecWinNtPeiLoadFile };
56
57 PEI_NT_AUTOSCAN_PPI mSecNtAutoScanPpi = { SecWinNtPeiAutoScan };
58
59 PEI_NT_THUNK_PPI mSecWinNtThunkPpi = { SecWinNtWinNtThunkAddress };
60
61 EFI_PEI_PROGRESS_CODE_PPI mSecStatusCodePpi = { SecPeiReportStatusCode };
62
63 NT_FWH_PPI mSecFwhInformationPpi = { SecWinNtFdAddress };
64
65
66 EFI_PEI_PPI_DESCRIPTOR gPrivateDispatchTable[] = {
67 {
68 EFI_PEI_PPI_DESCRIPTOR_PPI,
69 &gEfiPeiPeCoffLoaderGuid,
70 NULL
71 },
72 {
73 EFI_PEI_PPI_DESCRIPTOR_PPI,
74 &gNtPeiLoadFilePpiGuid,
75 &mSecNtLoadFilePpi
76 },
77 {
78 EFI_PEI_PPI_DESCRIPTOR_PPI,
79 &gPeiNtAutoScanPpiGuid,
80 &mSecNtAutoScanPpi
81 },
82 {
83 EFI_PEI_PPI_DESCRIPTOR_PPI,
84 &gPeiNtThunkPpiGuid,
85 &mSecWinNtThunkPpi
86 },
87 {
88 EFI_PEI_PPI_DESCRIPTOR_PPI,
89 &gEfiPeiStatusCodePpiGuid,
90 &mSecStatusCodePpi
91 },
92 {
93 EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST,
94 &gNtFwhPpiGuid,
95 &mSecFwhInformationPpi
96 }
97 };
98
99
100 //
101 // Default information about where the FD is located.
102 // This array gets filled in with information from EFI_FIRMWARE_VOLUMES
103 // EFI_FIRMWARE_VOLUMES is a Windows environment variable set by system.cmd.
104 // The number of array elements is allocated base on parsing
105 // EFI_FIRMWARE_VOLUMES and the memory is never freed.
106 //
107 UINTN gFdInfoCount = 0;
108 NT_FD_INFO *gFdInfo;
109
110 //
111 // Array that supports seperate memory rantes.
112 // The memory ranges are set in system.cmd via the EFI_MEMORY_SIZE variable.
113 // The number of array elements is allocated base on parsing
114 // EFI_MEMORY_SIZE and the memory is never freed.
115 //
116 UINTN gSystemMemoryCount = 0;
117 NT_SYSTEM_MEMORY *gSystemMemory;
118
119
120 UINTN mPdbNameModHandleArraySize = 0;
121 PDB_NAME_TO_MOD_HANDLE *mPdbNameModHandleArray = NULL;
122
123
124
125
126 INTN
127 EFIAPI
128 main (
129 IN INTN Argc,
130 IN CHAR8 **Argv,
131 IN CHAR8 **Envp
132 )
133 /*++
134
135 Routine Description:
136 Main entry point to SEC for WinNt. This is a Windows program
137
138 Arguments:
139 Argc - Number of command line arguments
140 Argv - Array of command line argument strings
141 Envp - Array of environmemt variable strings
142
143 Returns:
144 0 - Normal exit
145 1 - Abnormal exit
146
147 --*/
148 {
149 EFI_STATUS Status;
150 EFI_PHYSICAL_ADDRESS InitialStackMemory;
151 UINT64 InitialStackMemorySize;
152 UINTN Index;
153 UINTN Index1;
154 UINTN Index2;
155 UINTN PeiIndex;
156 CHAR16 *FileName;
157 CHAR16 *FileNamePtr;
158 BOOLEAN Done;
159 VOID *PeiCoreFile;
160 CHAR16 *MemorySizeStr;
161 CHAR16 *FirmwareVolumesStr;
162
163 MemorySizeStr = (CHAR16 *)L"64!64";
164 FirmwareVolumesStr = (CHAR16 *)L"..\\Fv\\Fv_Recovery.fd";
165
166 printf ("\nEDK SEC Main NT Emulation Environment from www.TianoCore.org\n");
167
168 //
169 // Make some Windows calls to Set the process to the highest priority in the
170 // idle class. We need this to have good performance.
171 //
172 SetPriorityClass (GetCurrentProcess (), IDLE_PRIORITY_CLASS);
173 SetThreadPriority (GetCurrentThread (), THREAD_PRIORITY_HIGHEST);
174
175 //
176 // Allocate space for gSystemMemory Array
177 //
178 gSystemMemoryCount = CountSeperatorsInString (MemorySizeStr, '!') + 1;
179 gSystemMemory = calloc (gSystemMemoryCount, sizeof (NT_SYSTEM_MEMORY));
180 if (gSystemMemory == NULL) {
181 printf ("ERROR : Can not allocate memory for %s. Exiting.\n", MemorySizeStr);
182 exit (1);
183 }
184 //
185 // Allocate space for gSystemMemory Array
186 //
187 gFdInfoCount = CountSeperatorsInString (FirmwareVolumesStr, '!') + 1;
188 gFdInfo = calloc (gFdInfoCount, sizeof (NT_FD_INFO));
189 if (gFdInfo == NULL) {
190 printf ("ERROR : Can not allocate memory for %s. Exiting.\n", FirmwareVolumesStr);
191 exit (1);
192 }
193 //
194 // Setup Boot Mode. If BootModeStr == "" then BootMode = 0 (BOOT_WITH_FULL_CONFIGURATION)
195 //
196 printf (" BootMode 0x%02x\n", FixedPcdGet32 (PcdWinNtBootMode));
197
198 //
199 // Open up a 128K file to emulate temp memory for PEI.
200 // on a real platform this would be SRAM, or using the cache as RAM.
201 // Set InitialStackMemory to zero so WinNtOpenFile will allocate a new mapping
202 //
203 InitialStackMemory = 0;
204 InitialStackMemorySize = 0x20000;
205 Status = WinNtOpenFile (
206 L"SecStack",
207 (UINT32) InitialStackMemorySize,
208 OPEN_ALWAYS,
209 &InitialStackMemory,
210 &InitialStackMemorySize
211 );
212 if (EFI_ERROR (Status)) {
213 printf ("ERROR : Can not open SecStack Exiting\n");
214 exit (1);
215 }
216
217 printf (" SEC passing in %d bytes of temp RAM to PEI\n", InitialStackMemorySize);
218
219 //
220 // Open All the firmware volumes and remember the info in the gFdInfo global
221 //
222 FileNamePtr = (CHAR16 *)malloc (StrLen ((CHAR16 *)FirmwareVolumesStr) * sizeof(CHAR16));
223 if (FileNamePtr == NULL) {
224 printf ("ERROR : Can not allocate memory for firmware volume string\n");
225 exit (1);
226 }
227
228 StrCpy (FileNamePtr, (CHAR16*)FirmwareVolumesStr);
229
230 for (Done = FALSE, Index = 0, PeiIndex = 0, PeiCoreFile = NULL; !Done; Index++) {
231 FileName = FileNamePtr;
232 for (Index1 = 0; (FileNamePtr[Index1] != '!') && (FileNamePtr[Index1] != 0); Index1++)
233 ;
234 if (FileNamePtr[Index1] == 0) {
235 Done = TRUE;
236 } else {
237 FileNamePtr[Index1] = '\0';
238 FileNamePtr = FileNamePtr + Index1 + 1;
239 }
240
241 //
242 // Open the FD and remmeber where it got mapped into our processes address space
243 //
244 Status = WinNtOpenFile (
245 FileName,
246 0,
247 OPEN_EXISTING,
248 &gFdInfo[Index].Address,
249 &gFdInfo[Index].Size
250 );
251 if (EFI_ERROR (Status)) {
252 printf ("ERROR : Can not open Firmware Device File %S (%r). Exiting.\n", FileName, Status);
253 exit (1);
254 }
255
256 printf (" FD loaded from");
257 //
258 // printf can't print filenames directly as the \ gets interperted as an
259 // escape character.
260 //
261 for (Index2 = 0; FileName[Index2] != '\0'; Index2++) {
262 printf ("%c", FileName[Index2]);
263 }
264
265 if (PeiCoreFile == NULL) {
266 //
267 // Assume the beginning of the FD is an FV and look for the PEI Core.
268 // Load the first one we find.
269 //
270 Status = SecFfsFindPeiCore ((EFI_FIRMWARE_VOLUME_HEADER *) (UINTN) gFdInfo[Index].Address, &PeiCoreFile);
271 if (!EFI_ERROR (Status)) {
272 PeiIndex = Index;
273 printf (" contains SEC Core");
274 }
275 }
276
277 printf ("\n");
278 }
279 //
280 // Calculate memory regions and store the information in the gSystemMemory
281 // global for later use. The autosizing code will use this data to
282 // map this memory into the SEC process memory space.
283 //
284 for (Index = 0, Done = FALSE; !Done; Index++) {
285 //
286 // Save the size of the memory and make a Unicode filename SystemMemory00, ...
287 //
288 gSystemMemory[Index].Size = _wtoi (MemorySizeStr) * 0x100000;
289 _snwprintf (gSystemMemory[Index].FileName, NT_SYSTEM_MEMORY_FILENAME_SIZE, L"SystemMemory%02d", Index);
290
291 //
292 // Find the next region
293 //
294 for (Index1 = 0; MemorySizeStr[Index1] != '!' && MemorySizeStr[Index1] != 0; Index1++)
295 ;
296 if (MemorySizeStr[Index1] == 0) {
297 Done = TRUE;
298 }
299
300 MemorySizeStr = MemorySizeStr + Index1 + 1;
301 }
302
303 printf ("\n");
304
305 //
306 // Hand off to PEI Core
307 //
308 SecLoadFromCore ((UINTN) InitialStackMemory, (UINTN) InitialStackMemorySize, (UINTN) gFdInfo[0].Address, PeiCoreFile);
309
310 //
311 // If we get here, then the PEI Core returned. This is an error as PEI should
312 // always hand off to DXE.
313 //
314 printf ("ERROR : PEI Core returned\n");
315 exit (1);
316 }
317
318 EFI_STATUS
319 WinNtOpenFile (
320 IN CHAR16 *FileName,
321 IN UINT32 MapSize,
322 IN DWORD CreationDisposition,
323 IN OUT EFI_PHYSICAL_ADDRESS *BaseAddress,
324 OUT UINT64 *Length
325 )
326 /*++
327
328 Routine Description:
329 Opens and memory maps a file using WinNt services. If BaseAddress is non zero
330 the process will try and allocate the memory starting at BaseAddress.
331
332 Arguments:
333 FileName - The name of the file to open and map
334 MapSize - The amount of the file to map in bytes
335 CreationDisposition - The flags to pass to CreateFile(). Use to create new files for
336 memory emulation, and exiting files for firmware volume emulation
337 BaseAddress - The base address of the mapped file in the user address space.
338 If passed in as NULL the a new memory region is used.
339 If passed in as non NULL the request memory region is used for
340 the mapping of the file into the process space.
341 Length - The size of the mapped region in bytes
342
343 Returns:
344 EFI_SUCCESS - The file was opened and mapped.
345 EFI_NOT_FOUND - FileName was not found in the current directory
346 EFI_DEVICE_ERROR - An error occured attempting to map the opened file
347
348 --*/
349 {
350 HANDLE NtFileHandle;
351 HANDLE NtMapHandle;
352 VOID *VirtualAddress;
353 UINTN FileSize;
354
355 //
356 // Use Win API to open/create a file
357 //
358 NtFileHandle = CreateFile (
359 FileName,
360 GENERIC_READ | GENERIC_WRITE,
361 FILE_SHARE_READ,
362 NULL,
363 CreationDisposition,
364 FILE_ATTRIBUTE_NORMAL,
365 NULL
366 );
367 if (NtFileHandle == INVALID_HANDLE_VALUE) {
368 return EFI_NOT_FOUND;
369 }
370 //
371 // Map the open file into a memory range
372 //
373 NtMapHandle = CreateFileMapping (
374 NtFileHandle,
375 NULL,
376 PAGE_READWRITE,
377 0,
378 MapSize,
379 NULL
380 );
381 if (NtMapHandle == NULL) {
382 return EFI_DEVICE_ERROR;
383 }
384 //
385 // Get the virtual address (address in the emulator) of the mapped file
386 //
387 VirtualAddress = MapViewOfFileEx (
388 NtMapHandle,
389 FILE_MAP_ALL_ACCESS,
390 0,
391 0,
392 MapSize,
393 (LPVOID) (UINTN) *BaseAddress
394 );
395 if (VirtualAddress == NULL) {
396 return EFI_DEVICE_ERROR;
397 }
398
399 if (MapSize == 0) {
400 //
401 // Seek to the end of the file to figure out the true file size.
402 //
403 FileSize = SetFilePointer (
404 NtFileHandle,
405 0,
406 NULL,
407 FILE_END
408 );
409 if (FileSize == -1) {
410 return EFI_DEVICE_ERROR;
411 }
412
413 *Length = (UINT64) FileSize;
414 } else {
415 *Length = (UINT64) MapSize;
416 }
417
418 *BaseAddress = (EFI_PHYSICAL_ADDRESS) (UINTN) VirtualAddress;
419
420 return EFI_SUCCESS;
421 }
422
423
424 #define BYTES_PER_RECORD 512
425
426 EFI_STATUS
427 EFIAPI
428 SecPeiReportStatusCode (
429 IN EFI_PEI_SERVICES **PeiServices,
430 IN EFI_STATUS_CODE_TYPE CodeType,
431 IN EFI_STATUS_CODE_VALUE Value,
432 IN UINT32 Instance,
433 IN EFI_GUID *CallerId,
434 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
435 )
436 /*++
437
438 Routine Description:
439
440 This routine produces the ReportStatusCode PEI service. It's passed
441 up to the PEI Core via a PPI. T
442
443 This code currently uses the NT clib printf. This does not work the same way
444 as the EFI Print (), as %t, %g, %s as Unicode are not supported.
445
446 Arguments:
447 (see EFI_PEI_REPORT_STATUS_CODE)
448
449 Returns:
450 EFI_SUCCESS - Always return success
451
452 --*/
453 // TODO: PeiServices - add argument and description to function comment
454 // TODO: CodeType - add argument and description to function comment
455 // TODO: Value - add argument and description to function comment
456 // TODO: Instance - add argument and description to function comment
457 // TODO: CallerId - add argument and description to function comment
458 // TODO: Data - add argument and description to function comment
459 {
460 CHAR8 *Format;
461 VA_LIST Marker;
462 CHAR8 PrintBuffer[BYTES_PER_RECORD * 2];
463 CHAR8 *Filename;
464 CHAR8 *Description;
465 UINT32 LineNumber;
466 UINT32 ErrorLevel;
467
468
469 if (Data == NULL) {
470 } else if (ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
471 //
472 // Processes ASSERT ()
473 //
474 printf ("ASSERT %s(%d): %s\n", Filename, LineNumber, Description);
475
476 } else if (ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
477 //
478 // Process DEBUG () macro
479 //
480 AsciiVSPrint (PrintBuffer, BYTES_PER_RECORD, Format, Marker);
481 printf (PrintBuffer);
482 }
483
484 return EFI_SUCCESS;
485 }
486
487
488 VOID
489 SecLoadFromCore (
490 IN UINTN LargestRegion,
491 IN UINTN LargestRegionSize,
492 IN UINTN BootFirmwareVolumeBase,
493 IN VOID *PeiCorePe32File
494 )
495 /*++
496
497 Routine Description:
498 This is the service to load the PEI Core from the Firmware Volume
499
500 Arguments:
501 LargestRegion - Memory to use for PEI.
502 LargestRegionSize - Size of Memory to use for PEI
503 BootFirmwareVolumeBase - Start of the Boot FV
504 PeiCorePe32File - PEI Core PE32
505
506 Returns:
507 Success means control is transfered and thus we should never return
508
509 --*/
510 {
511 EFI_STATUS Status;
512 EFI_PHYSICAL_ADDRESS TopOfMemory;
513 VOID *TopOfStack;
514 UINT64 PeiCoreSize;
515 EFI_PHYSICAL_ADDRESS PeiCoreEntryPoint;
516 EFI_PHYSICAL_ADDRESS PeiImageAddress;
517 EFI_PEI_STARTUP_DESCRIPTOR *PeiStartup;
518
519 //
520 // Compute Top Of Memory for Stack and PEI Core Allocations
521 //
522 TopOfMemory = LargestRegion + LargestRegionSize;
523
524 //
525 // Allocate 128KB for the Stack
526 //
527 TopOfStack = (VOID *)((UINTN)TopOfMemory - sizeof (EFI_PEI_STARTUP_DESCRIPTOR) - CPU_STACK_ALIGNMENT);
528 TopOfStack = ALIGN_POINTER (TopOfStack, CPU_STACK_ALIGNMENT);
529 TopOfMemory = TopOfMemory - STACK_SIZE;
530
531 //
532 // Patch value in dispatch table values
533 //
534 gPrivateDispatchTable[0].Ppi = gPeiEfiPeiPeCoffLoader;
535
536 //
537 // Bind this information into the SEC hand-off state
538 //
539 PeiStartup = (EFI_PEI_STARTUP_DESCRIPTOR *) (UINTN) TopOfStack;
540 PeiStartup->DispatchTable = (EFI_PEI_PPI_DESCRIPTOR *) &gPrivateDispatchTable;
541 PeiStartup->SizeOfCacheAsRam = STACK_SIZE;
542 PeiStartup->BootFirmwareVolume = BootFirmwareVolumeBase;
543
544 //
545 // Load the PEI Core from a Firmware Volume
546 //
547 Status = SecWinNtPeiLoadFile (
548 PeiCorePe32File,
549 &PeiImageAddress,
550 &PeiCoreSize,
551 &PeiCoreEntryPoint
552 );
553 if (EFI_ERROR (Status)) {
554 return ;
555 }
556 //
557 // Transfer control to the PEI Core
558 //
559 SwitchStack (
560 (SWITCH_STACK_ENTRY_POINT) (UINTN) PeiCoreEntryPoint,
561 PeiStartup,
562 NULL,
563 TopOfStack
564 );
565 //
566 // If we get here, then the PEI Core returned. This is an error
567 //
568 return ;
569 }
570
571 EFI_STATUS
572 EFIAPI
573 SecWinNtPeiAutoScan (
574 IN UINTN Index,
575 OUT EFI_PHYSICAL_ADDRESS *MemoryBase,
576 OUT UINT64 *MemorySize
577 )
578 /*++
579
580 Routine Description:
581 This service is called from Index == 0 until it returns EFI_UNSUPPORTED.
582 It allows discontiguous memory regions to be supported by the emulator.
583 It uses gSystemMemory[] and gSystemMemoryCount that were created by
584 parsing the Windows environment variable EFI_MEMORY_SIZE.
585 The size comes from the varaible and the address comes from the call to
586 WinNtOpenFile.
587
588 Arguments:
589 Index - Which memory region to use
590 MemoryBase - Return Base address of memory region
591 MemorySize - Return size in bytes of the memory region
592
593 Returns:
594 EFI_SUCCESS - If memory region was mapped
595 EFI_UNSUPPORTED - If Index is not supported
596
597 --*/
598 {
599 EFI_STATUS Status;
600
601 if (Index >= gSystemMemoryCount) {
602 return EFI_UNSUPPORTED;
603 }
604
605 *MemoryBase = 0;
606 Status = WinNtOpenFile (
607 gSystemMemory[Index].FileName,
608 (UINT32) gSystemMemory[Index].Size,
609 OPEN_ALWAYS,
610 MemoryBase,
611 MemorySize
612 );
613
614 gSystemMemory[Index].Memory = *MemoryBase;
615
616 return Status;
617 }
618
619 VOID *
620 EFIAPI
621 SecWinNtWinNtThunkAddress (
622 VOID
623 )
624 /*++
625
626 Routine Description:
627 Since the SEC is the only Windows program in stack it must export
628 an interface to do Win API calls. That's what the WinNtThunk address
629 is for. gWinNt is initailized in WinNtThunk.c.
630
631 Arguments:
632 InterfaceSize - sizeof (EFI_WIN_NT_THUNK_PROTOCOL);
633 InterfaceBase - Address of the gWinNt global
634
635 Returns:
636 EFI_SUCCESS - Data returned
637
638 --*/
639 {
640 return gWinNt;
641 }
642
643
644 EFI_STATUS
645 EFIAPI
646 SecWinNtPeiLoadFile (
647 IN VOID *Pe32Data,
648 IN EFI_PHYSICAL_ADDRESS *ImageAddress,
649 IN UINT64 *ImageSize,
650 IN EFI_PHYSICAL_ADDRESS *EntryPoint
651 )
652 /*++
653
654 Routine Description:
655 Loads and relocates a PE/COFF image into memory.
656
657 Arguments:
658 Pe32Data - The base address of the PE/COFF file that is to be loaded and relocated
659 ImageAddress - The base address of the relocated PE/COFF image
660 ImageSize - The size of the relocated PE/COFF image
661 EntryPoint - The entry point of the relocated PE/COFF image
662
663 Returns:
664 EFI_SUCCESS - The file was loaded and relocated
665 EFI_OUT_OF_RESOURCES - There was not enough memory to load and relocate the PE/COFF file
666
667 --*/
668 {
669 EFI_STATUS Status;
670 PE_COFF_LOADER_IMAGE_CONTEXT ImageContext;
671
672 ZeroMem (&ImageContext, sizeof (ImageContext));
673 ImageContext.Handle = Pe32Data;
674
675 ImageContext.ImageRead = (PE_COFF_LOADER_READ_FILE) SecImageRead;
676
677 Status = gPeiEfiPeiPeCoffLoader->GetImageInfo (gPeiEfiPeiPeCoffLoader, &ImageContext);
678 if (EFI_ERROR (Status)) {
679 return Status;
680 }
681 //
682 // Allocate space in NT (not emulator) memory. Extra space is for alignment
683 //
684 ImageContext.ImageAddress = (EFI_PHYSICAL_ADDRESS) (UINTN) malloc ((UINTN) (ImageContext.ImageSize + (ImageContext.SectionAlignment * 2)));
685 if (ImageContext.ImageAddress == 0) {
686 return EFI_OUT_OF_RESOURCES;
687 }
688 //
689 // Align buffer on section boundry
690 //
691 ImageContext.ImageAddress += ImageContext.SectionAlignment;
692 ImageContext.ImageAddress &= ~(ImageContext.SectionAlignment - 1);
693
694 Status = gPeiEfiPeiPeCoffLoader->LoadImage (gPeiEfiPeiPeCoffLoader, &ImageContext);
695 if (EFI_ERROR (Status)) {
696 return Status;
697 }
698
699 Status = gPeiEfiPeiPeCoffLoader->RelocateImage (gPeiEfiPeiPeCoffLoader, &ImageContext);
700 if (EFI_ERROR (Status)) {
701 return Status;
702 }
703
704 //
705 // BugBug: Flush Instruction Cache Here when CPU Lib is ready
706 //
707
708 *ImageAddress = ImageContext.ImageAddress;
709 *ImageSize = ImageContext.ImageSize;
710 *EntryPoint = ImageContext.EntryPoint;
711
712 return EFI_SUCCESS;
713 }
714
715 EFI_STATUS
716 EFIAPI
717 SecWinNtFdAddress (
718 IN UINTN Index,
719 IN OUT EFI_PHYSICAL_ADDRESS *FdBase,
720 IN OUT UINT64 *FdSize
721 )
722 /*++
723
724 Routine Description:
725 Return the FD Size and base address. Since the FD is loaded from a
726 file into Windows memory only the SEC will know it's address.
727
728 Arguments:
729 Index - Which FD, starts at zero.
730 FdSize - Size of the FD in bytes
731 FdBase - Start address of the FD. Assume it points to an FV Header
732
733 Returns:
734 EFI_SUCCESS - Return the Base address and size of the FV
735 EFI_UNSUPPORTED - Index does nto map to an FD in the system
736
737 --*/
738 {
739 if (Index >= gFdInfoCount) {
740 return EFI_UNSUPPORTED;
741 }
742
743 *FdBase = gFdInfo[Index].Address;
744 *FdSize = gFdInfo[Index].Size;
745
746 if (*FdBase == 0 && *FdSize == 0) {
747 return EFI_UNSUPPORTED;
748 }
749
750 return EFI_SUCCESS;
751 }
752
753 EFI_STATUS
754 EFIAPI
755 SecImageRead (
756 IN VOID *FileHandle,
757 IN UINTN FileOffset,
758 IN OUT UINTN *ReadSize,
759 OUT VOID *Buffer
760 )
761 /*++
762
763 Routine Description:
764 Support routine for the PE/COFF Loader that reads a buffer from a PE/COFF file
765
766 Arguments:
767 FileHandle - The handle to the PE/COFF file
768 FileOffset - The offset, in bytes, into the file to read
769 ReadSize - The number of bytes to read from the file starting at FileOffset
770 Buffer - A pointer to the buffer to read the data into.
771
772 Returns:
773 EFI_SUCCESS - ReadSize bytes of data were read into Buffer from the PE/COFF file starting at FileOffset
774
775 --*/
776 {
777 CHAR8 *Destination8;
778 CHAR8 *Source8;
779 UINTN Length;
780
781 Destination8 = Buffer;
782 Source8 = (CHAR8 *) ((UINTN) FileHandle + FileOffset);
783 Length = *ReadSize;
784 while (Length--) {
785 *(Destination8++) = *(Source8++);
786 }
787
788 return EFI_SUCCESS;
789 }
790
791 CHAR16 *
792 AsciiToUnicode (
793 IN CHAR8 *Ascii,
794 IN UINTN *StrLen OPTIONAL
795 )
796 /*++
797
798 Routine Description:
799 Convert the passed in Ascii string to Unicode.
800 Optionally return the length of the strings.
801
802 Arguments:
803 Ascii - Ascii string to convert
804 StrLen - Length of string
805
806 Returns:
807 Pointer to malloc'ed Unicode version of Ascii
808
809 --*/
810 {
811 UINTN Index;
812 CHAR16 *Unicode;
813
814 //
815 // Allocate a buffer for unicode string
816 //
817 for (Index = 0; Ascii[Index] != '\0'; Index++)
818 ;
819 Unicode = malloc ((Index + 1) * sizeof (CHAR16));
820 if (Unicode == NULL) {
821 return NULL;
822 }
823
824 for (Index = 0; Ascii[Index] != '\0'; Index++) {
825 Unicode[Index] = (CHAR16) Ascii[Index];
826 }
827
828 Unicode[Index] = '\0';
829
830 if (StrLen != NULL) {
831 *StrLen = Index;
832 }
833
834 return Unicode;
835 }
836
837 UINTN
838 CountSeperatorsInString (
839 IN const CHAR16 *String,
840 IN CHAR16 Seperator
841 )
842 /*++
843
844 Routine Description:
845 Count the number of seperators in String
846
847 Arguments:
848 String - String to process
849 Seperator - Item to count
850
851 Returns:
852 Number of Seperator in String
853
854 --*/
855 {
856 UINTN Count;
857
858 for (Count = 0; *String != '\0'; String++) {
859 if (*String == Seperator) {
860 Count++;
861 }
862 }
863
864 return Count;
865 }
866
867
868 EFI_STATUS
869 AddModHandle (
870 IN PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext,
871 IN VOID *ModHandle
872 )
873 /*++
874
875 Routine Description:
876 Store the ModHandle in an array indexed by the Pdb File name.
877 The ModHandle is needed to unload the image.
878
879 Arguments:
880 ImageContext - Input data returned from PE Laoder Library. Used to find the
881 .PDB file name of the PE Image.
882 ModHandle - Returned from LoadLibraryEx() and stored for call to
883 FreeLibrary().
884
885 Returns:
886 EFI_SUCCESS - ModHandle was stored.
887
888 --*/
889 {
890 UINTN Index;
891 PDB_NAME_TO_MOD_HANDLE *Array;
892 UINTN PreviousSize;
893
894
895 Array = mPdbNameModHandleArray;
896 for (Index = 0; Index < mPdbNameModHandleArraySize; Index++, Array++) {
897 if (Array->PdbPointer == NULL) {
898 //
899 // Make a copy of the stirng and store the ModHandle
900 //
901 Array->PdbPointer = malloc (strlen (ImageContext->PdbPointer) + 1);
902 ASSERT (Array->PdbPointer != NULL);
903
904 strcpy (Array->PdbPointer, ImageContext->PdbPointer);
905 Array->ModHandle = ModHandle;
906 return EFI_SUCCESS;
907 }
908 }
909
910 //
911 // No free space in mPdbNameModHandleArray so grow it by
912 // MAX_PDB_NAME_TO_MOD_HANDLE_ARRAY_SIZE entires. realloc will
913 // copy the old values to the new locaiton. But it does
914 // not zero the new memory area.
915 //
916 PreviousSize = mPdbNameModHandleArraySize * sizeof (PDB_NAME_TO_MOD_HANDLE);
917 mPdbNameModHandleArraySize += MAX_PDB_NAME_TO_MOD_HANDLE_ARRAY_SIZE;
918
919 mPdbNameModHandleArray = realloc (mPdbNameModHandleArray, mPdbNameModHandleArraySize * sizeof (PDB_NAME_TO_MOD_HANDLE));
920 if (mPdbNameModHandleArray == NULL) {
921 ASSERT (FALSE);
922 return EFI_OUT_OF_RESOURCES;
923 }
924
925 memset (mPdbNameModHandleArray + PreviousSize, 0, MAX_PDB_NAME_TO_MOD_HANDLE_ARRAY_SIZE * sizeof (PDB_NAME_TO_MOD_HANDLE));
926
927 return AddModHandle (ImageContext, ModHandle);
928 }
929
930
931 VOID *
932 RemoveModeHandle (
933 IN PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
934 )
935 /*++
936
937 Routine Description:
938 Return the ModHandle and delete the entry in the array.
939
940 Arguments:
941 ImageContext - Input data returned from PE Laoder Library. Used to find the
942 .PDB file name of the PE Image.
943
944 Returns:
945 ModHandle - ModHandle assoicated with ImageContext is returned
946 NULL - No ModHandle associated with ImageContext
947
948 --*/
949 {
950 UINTN Index;
951 PDB_NAME_TO_MOD_HANDLE *Array;
952
953 if (ImageContext->PdbPointer == NULL) {
954 //
955 // If no PDB pointer there is no ModHandle so return NULL
956 //
957 return NULL;
958 }
959
960 Array = mPdbNameModHandleArray;
961 for (Index = 0; Index < mPdbNameModHandleArraySize; Index++, Array++) {
962 if ((Array->PdbPointer != NULL) && (strcmp(Array->PdbPointer, ImageContext->PdbPointer) == 0)) {
963 //
964 // If you find a match return it and delete the entry
965 //
966 free (Array->PdbPointer);
967 Array->PdbPointer = NULL;
968 return Array->ModHandle;
969 }
970 }
971
972 return NULL;
973 }
974
975
976
977 EFI_STATUS
978 EFIAPI
979 SecNt32PeCoffGetImageInfo (
980 IN EFI_PEI_PE_COFF_LOADER_PROTOCOL *This,
981 IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
982 )
983 {
984 EFI_STATUS Status;
985
986 Status = PeCoffLoaderGetImageInfo (ImageContext);
987 if (EFI_ERROR (Status)) {
988 return Status;
989 }
990
991 switch (ImageContext->ImageType) {
992
993 case EFI_IMAGE_SUBSYSTEM_EFI_APPLICATION:
994 ImageContext->ImageCodeMemoryType = EfiLoaderCode;
995 ImageContext->ImageDataMemoryType = EfiLoaderData;
996 break;
997
998 case EFI_IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER:
999 ImageContext->ImageCodeMemoryType = EfiBootServicesCode;
1000 ImageContext->ImageDataMemoryType = EfiBootServicesData;
1001 break;
1002
1003 case EFI_IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER:
1004 case EFI_IMAGE_SUBSYSTEM_SAL_RUNTIME_DRIVER:
1005 ImageContext->ImageCodeMemoryType = EfiRuntimeServicesCode;
1006 ImageContext->ImageDataMemoryType = EfiRuntimeServicesData;
1007 break;
1008
1009 default:
1010 ImageContext->ImageError = IMAGE_ERROR_INVALID_SUBSYSTEM;
1011 return RETURN_UNSUPPORTED;
1012 }
1013
1014 return Status;
1015 }
1016
1017 EFI_STATUS
1018 EFIAPI
1019 SecNt32PeCoffLoadImage (
1020 IN EFI_PEI_PE_COFF_LOADER_PROTOCOL *This,
1021 IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
1022 )
1023 {
1024 EFI_STATUS Status;
1025
1026 Status = PeCoffLoaderLoadImage (ImageContext);
1027 return Status;
1028 }
1029
1030 EFI_STATUS
1031 EFIAPI
1032 SecNt32PeCoffRelocateImage (
1033 IN EFI_PEI_PE_COFF_LOADER_PROTOCOL *This,
1034 IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
1035 )
1036 {
1037 EFI_STATUS Status;
1038 VOID *DllEntryPoint;
1039 CHAR16 *DllFileName;
1040 HMODULE Library;
1041 UINTN Index;
1042
1043
1044 Status = PeCoffLoaderRelocateImage (ImageContext);
1045 if (EFI_ERROR (Status)) {
1046 //
1047 // We could not relocated the image in memory properly
1048 //
1049 return Status;
1050 }
1051
1052 //
1053 // If we load our own PE COFF images the Windows debugger can not source
1054 // level debug our code. If a valid PDB pointer exists usw it to load
1055 // the *.dll file as a library using Windows* APIs. This allows
1056 // source level debug. The image is still loaded and reloaced
1057 // in the Framework memory space like on a real system (by the code above),
1058 // but the entry point points into the DLL loaded by the code bellow.
1059 //
1060
1061 DllEntryPoint = NULL;
1062
1063 //
1064 // Load the DLL if it's not an EBC image.
1065 //
1066 if ((ImageContext->PdbPointer != NULL) &&
1067 (ImageContext->Machine != EFI_IMAGE_MACHINE_EBC)) {
1068 //
1069 // Convert filename from ASCII to Unicode
1070 //
1071 DllFileName = AsciiToUnicode (ImageContext->PdbPointer, &Index);
1072
1073 //
1074 // Check that we have a valid filename
1075 //
1076 if (Index < 5 || DllFileName[Index - 4] != '.') {
1077 free (DllFileName);
1078
1079 //
1080 // Never return an error if PeCoffLoaderRelocateImage() succeeded.
1081 // The image will run, but we just can't source level debug. If we
1082 // return an error the image will not run.
1083 //
1084 return EFI_SUCCESS;
1085 }
1086 //
1087 // Replace .PDB with .DLL on the filename
1088 //
1089 DllFileName[Index - 3] = 'D';
1090 DllFileName[Index - 2] = 'L';
1091 DllFileName[Index - 1] = 'L';
1092
1093 //
1094 // Load the .DLL file into the user process's address space for source
1095 // level debug
1096 //
1097 Library = LoadLibraryEx (DllFileName, NULL, DONT_RESOLVE_DLL_REFERENCES);
1098 if (Library != NULL) {
1099 //
1100 // InitializeDriver is the entry point we put in all our EFI DLL's. The
1101 // DONT_RESOLVE_DLL_REFERENCES argument to LoadLIbraryEx() supresses the
1102 // normal DLL entry point of DllMain, and prevents other modules that are
1103 // referenced in side the DllFileName from being loaded. There is no error
1104 // checking as the we can point to the PE32 image loaded by Tiano. This
1105 // step is only needed for source level debuging
1106 //
1107 DllEntryPoint = (VOID *) (UINTN) GetProcAddress (Library, "InitializeDriver");
1108
1109 }
1110
1111 if ((Library != NULL) && (DllEntryPoint != NULL)) {
1112 AddModHandle (ImageContext, Library);
1113 ImageContext->EntryPoint = (EFI_PHYSICAL_ADDRESS) (UINTN) DllEntryPoint;
1114 wprintf (L"LoadLibraryEx (%s,\n NULL, DONT_RESOLVE_DLL_REFERENCES)\n", DllFileName);
1115 } else {
1116 wprintf (L"WARNING: No source level debug %s. \n", DllFileName);
1117 }
1118
1119 free (DllFileName);
1120 }
1121
1122 //
1123 // Never return an error if PeCoffLoaderRelocateImage() succeeded.
1124 // The image will run, but we just can't source level debug. If we
1125 // return an error the image will not run.
1126 //
1127 return EFI_SUCCESS;
1128 }
1129
1130
1131 EFI_STATUS
1132 EFIAPI
1133 SecNt32PeCoffUnloadimage (
1134 IN EFI_PEI_PE_COFF_LOADER_PROTOCOL *This,
1135 IN PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
1136 )
1137 {
1138 VOID *ModHandle;
1139
1140 ModHandle = RemoveModeHandle (ImageContext);
1141 if (ModHandle != NULL) {
1142 FreeLibrary (ModHandle);
1143 }
1144 return EFI_SUCCESS;
1145 }
1146
1147 VOID
1148 _ModuleEntryPoint (
1149 VOID
1150 )
1151 {
1152 }
1153