]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/CapsulePei/Common/CapsuleCoalesce.c
Add capsule > 4GB support. When capsule data is put above 4GB, IA32 PEI transfers...
[mirror_edk2.git] / MdeModulePkg / Universal / CapsulePei / Common / CapsuleCoalesce.c
1 /** @file
2 The logic to process capsule.
3
4 Copyright (c) 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 <Uefi.h>
16 #include <PiPei.h>
17
18 #include <Guid/CapsuleVendor.h>
19
20 #include <Library/BaseMemoryLib.h>
21 #include <Library/DebugLib.h>
22 #include <Library/PrintLib.h>
23 #include <Library/BaseLib.h>
24
25 #define MIN_COALESCE_ADDR (1024 * 1024)
26 #define MAX_SUPPORT_CAPSULE_NUM 50
27
28 #define EFI_CAPSULE_PEIM_PRIVATE_DATA_SIGNATURE SIGNATURE_32 ('C', 'a', 'p', 'D')
29
30 typedef struct {
31 UINT32 Signature;
32 UINT32 CapsuleSize;
33 } EFI_CAPSULE_PEIM_PRIVATE_DATA;
34
35 /**
36 Given a pointer to the capsule block list, info on the available system
37 memory, and the size of a buffer, find a free block of memory where a
38 buffer of the given size can be copied to safely.
39
40 @param BlockList Pointer to head of capsule block descriptors
41 @param MemBase Pointer to the base of memory in which we want to find free space
42 @param MemSize The size of the block of memory pointed to by MemBase
43 @param DataSize How big a free block we want to find
44
45 @return A pointer to a memory block of at least DataSize that lies somewhere
46 between MemBase and (MemBase + MemSize). The memory pointed to does not
47 contain any of the capsule block descriptors or capsule blocks pointed to
48 by the BlockList.
49
50 **/
51 UINT8 *
52 FindFreeMem (
53 EFI_CAPSULE_BLOCK_DESCRIPTOR *BlockList,
54 UINT8 *MemBase,
55 UINTN MemSize,
56 UINTN DataSize
57 );
58
59 /**
60 Check the integrity of the capsule descriptors.
61
62 @param BlockList Pointer to the capsule descriptors
63
64 @retval NULL BlockList is not valid.
65 @retval LastBlockDesc Last one Block in BlockList
66
67 **/
68 EFI_CAPSULE_BLOCK_DESCRIPTOR *
69 ValidateCapsuleIntegrity (
70 IN EFI_CAPSULE_BLOCK_DESCRIPTOR *BlockList
71 );
72
73 /**
74 The capsule block descriptors may be fragmented and spread all over memory.
75 To simplify the coalescing of capsule blocks, first coalesce all the
76 capsule block descriptors low in memory.
77
78 The descriptors passed in can be fragmented throughout memory. Here
79 they are relocated into memory to turn them into a contiguous (null
80 terminated) array.
81
82 @param PeiServices pointer to PEI services table
83 @param BlockList pointer to the capsule block descriptors
84 @param MemBase base of system memory in which we can work
85 @param MemSize size of the system memory pointed to by MemBase
86
87 @retval NULL could not relocate the descriptors
88 @retval Pointer to the base of the successfully-relocated block descriptors.
89
90 **/
91 EFI_CAPSULE_BLOCK_DESCRIPTOR *
92 RelocateBlockDescriptors (
93 IN EFI_PEI_SERVICES **PeiServices,
94 IN EFI_CAPSULE_BLOCK_DESCRIPTOR *BlockList,
95 IN UINT8 *MemBase,
96 IN UINTN MemSize
97 );
98
99 /**
100 Check every capsule header.
101
102 @param CapsuleHeader The pointer to EFI_CAPSULE_HEADER
103
104 @retval FALSE Capsule is OK
105 @retval TRUE Capsule is corrupted
106
107 **/
108 BOOLEAN
109 IsCapsuleCorrupted (
110 IN EFI_CAPSULE_HEADER *CapsuleHeader
111 );
112
113 /**
114 Determine if two buffers overlap in memory.
115
116 @param Buff1 pointer to first buffer
117 @param Size1 size of Buff1
118 @param Buff2 pointer to second buffer
119 @param Size2 size of Buff2
120
121 @retval TRUE Buffers overlap in memory.
122 @retval FALSE Buffer doesn't overlap.
123
124 **/
125 BOOLEAN
126 IsOverlapped (
127 UINT8 *Buff1,
128 UINTN Size1,
129 UINT8 *Buff2,
130 UINTN Size2
131 );
132
133 /**
134 Given a pointer to a capsule block descriptor, traverse the list to figure
135 out how many legitimate descriptors there are, and how big the capsule it
136 refers to is.
137
138 @param Desc Pointer to the capsule block descriptors
139 NumDescriptors - optional pointer to where to return the number of descriptors
140 CapsuleSize - optional pointer to where to return the capsule size
141 @param NumDescriptors Optional pointer to where to return the number of descriptors
142 @param CapsuleSize Optional pointer to where to return the capsule size
143
144 @retval EFI_NOT_FOUND No descriptors containing data in the list
145 @retval EFI_SUCCESS Return data is valid
146
147 **/
148 EFI_STATUS
149 GetCapsuleInfo (
150 IN EFI_CAPSULE_BLOCK_DESCRIPTOR *Desc,
151 IN OUT UINTN *NumDescriptors OPTIONAL,
152 IN OUT UINTN *CapsuleSize OPTIONAL
153 );
154
155 /**
156 Given a pointer to the capsule block list, info on the available system
157 memory, and the size of a buffer, find a free block of memory where a
158 buffer of the given size can be copied to safely.
159
160 @param BlockList Pointer to head of capsule block descriptors
161 @param MemBase Pointer to the base of memory in which we want to find free space
162 @param MemSize The size of the block of memory pointed to by MemBase
163 @param DataSize How big a free block we want to find
164
165 @return A pointer to a memory block of at least DataSize that lies somewhere
166 between MemBase and (MemBase + MemSize). The memory pointed to does not
167 contain any of the capsule block descriptors or capsule blocks pointed to
168 by the BlockList.
169
170 **/
171 UINT8 *
172 FindFreeMem (
173 EFI_CAPSULE_BLOCK_DESCRIPTOR *BlockList,
174 UINT8 *MemBase,
175 UINTN MemSize,
176 UINTN DataSize
177 )
178 {
179 UINTN Size;
180 EFI_CAPSULE_BLOCK_DESCRIPTOR *CurrDesc;
181 EFI_CAPSULE_BLOCK_DESCRIPTOR *TempDesc;
182 UINT8 *MemEnd;
183 BOOLEAN Failed;
184
185 //
186 // Need at least enough to copy the data to at the end of the buffer, so
187 // say the end is less the data size for easy comparisons here.
188 //
189 MemEnd = MemBase + MemSize - DataSize;
190 CurrDesc = BlockList;
191 //
192 // Go through all the descriptor blocks and see if any obstruct the range
193 //
194 while (CurrDesc != NULL) {
195 //
196 // Get the size of this block list and see if it's in the way
197 //
198 Failed = FALSE;
199 TempDesc = CurrDesc;
200 Size = sizeof (EFI_CAPSULE_BLOCK_DESCRIPTOR);
201 while (TempDesc->Length != 0) {
202 Size += sizeof (EFI_CAPSULE_BLOCK_DESCRIPTOR);
203 TempDesc++;
204 }
205
206 if (IsOverlapped (MemBase, DataSize, (UINT8 *) CurrDesc, Size)) {
207 //
208 // Set our new base to the end of this block list and start all over
209 //
210 MemBase = (UINT8 *) CurrDesc + Size;
211 CurrDesc = BlockList;
212 if (MemBase > MemEnd) {
213 return NULL;
214 }
215
216 Failed = TRUE;
217 }
218 //
219 // Now go through all the blocks and make sure none are in the way
220 //
221 while ((CurrDesc->Length != 0) && (!Failed)) {
222 if (IsOverlapped (MemBase, DataSize, (UINT8 *) (UINTN) CurrDesc->Union.DataBlock, (UINTN) CurrDesc->Length)) {
223 //
224 // Set our new base to the end of this block and start all over
225 //
226 Failed = TRUE;
227 MemBase = (UINT8 *) ((UINTN) CurrDesc->Union.DataBlock) + CurrDesc->Length;
228 CurrDesc = BlockList;
229 if (MemBase > MemEnd) {
230 return NULL;
231 }
232 }
233 CurrDesc++;
234 }
235 //
236 // Normal continuation -- jump to next block descriptor list
237 //
238 if (!Failed) {
239 CurrDesc = (EFI_CAPSULE_BLOCK_DESCRIPTOR *) (UINTN) CurrDesc->Union.ContinuationPointer;
240 }
241 }
242 return MemBase;
243 }
244
245 /**
246 Check the integrity of the capsule descriptors.
247
248 @param BlockList Pointer to the capsule descriptors
249
250 @retval NULL BlockList is not valid.
251 @retval LastBlockDesc Last one Block in BlockList
252
253 **/
254 EFI_CAPSULE_BLOCK_DESCRIPTOR *
255 ValidateCapsuleIntegrity (
256 IN EFI_CAPSULE_BLOCK_DESCRIPTOR *BlockList
257 )
258 {
259 EFI_CAPSULE_HEADER *CapsuleHeader;
260 UINT64 CapsuleSize;
261 UINT32 CapsuleCount;
262 EFI_CAPSULE_BLOCK_DESCRIPTOR *Ptr;
263
264 //
265 // Go through the list to look for inconsistencies. Check for:
266 // * misaligned block descriptors.
267 // * The first capsule header guid
268 // * The first capsule header flag
269 // * Data + Length < Data (wrap)
270 CapsuleSize = 0;
271 CapsuleCount = 0;
272 Ptr = BlockList;
273 while ((Ptr->Length != 0) || (Ptr->Union.ContinuationPointer != (EFI_PHYSICAL_ADDRESS) (UINTN) NULL)) {
274 //
275 // Make sure the descriptor is aligned at UINT64 in memory
276 //
277 if ((UINTN) Ptr & 0x07) {
278 DEBUG ((EFI_D_ERROR, "BlockList address failed alignment check\n"));
279 return NULL;
280 }
281
282 if (Ptr->Length == 0) {
283 //
284 // Descriptor points to another list of block descriptors somewhere
285 // else.
286 //
287 Ptr = (EFI_CAPSULE_BLOCK_DESCRIPTOR *) (UINTN) Ptr->Union.ContinuationPointer;
288 } else {
289 //
290 //To enhance the reliability of check-up, the first capsule's header is checked here.
291 //More reliabilities check-up will do later.
292 //
293 if (CapsuleSize == 0) {
294 //
295 //Move to the first capsule to check its header.
296 //
297 CapsuleHeader = (EFI_CAPSULE_HEADER*)((UINTN)Ptr->Union.DataBlock);
298 if (IsCapsuleCorrupted (CapsuleHeader)) {
299 return NULL;
300 }
301 CapsuleCount ++;
302 CapsuleSize = CapsuleHeader->CapsuleImageSize;
303 } else {
304 if (CapsuleSize >= Ptr->Length) {
305 CapsuleSize = CapsuleSize - Ptr->Length;
306 } else {
307 CapsuleSize = 0;
308 }
309 }
310 //
311 // Move to next BLOCK descriptor
312 //
313 Ptr++;
314 }
315 }
316
317 if (CapsuleCount == 0) {
318 //
319 // No any capsule is found in BlockList.
320 //
321 return NULL;
322 }
323
324 return Ptr;
325 }
326
327 /**
328 The capsule block descriptors may be fragmented and spread all over memory.
329 To simplify the coalescing of capsule blocks, first coalesce all the
330 capsule block descriptors low in memory.
331
332 The descriptors passed in can be fragmented throughout memory. Here
333 they are relocated into memory to turn them into a contiguous (null
334 terminated) array.
335
336 @param PeiServices pointer to PEI services table
337 @param BlockList pointer to the capsule block descriptors
338 @param MemBase base of system memory in which we can work
339 @param MemSize size of the system memory pointed to by MemBase
340
341 @retval NULL could not relocate the descriptors
342 @retval Pointer to the base of the successfully-relocated block descriptors.
343
344 **/
345 EFI_CAPSULE_BLOCK_DESCRIPTOR *
346 RelocateBlockDescriptors (
347 IN EFI_PEI_SERVICES **PeiServices,
348 IN EFI_CAPSULE_BLOCK_DESCRIPTOR *BlockList,
349 IN UINT8 *MemBase,
350 IN UINTN MemSize
351 )
352 {
353 EFI_CAPSULE_BLOCK_DESCRIPTOR *NewBlockList;
354 EFI_CAPSULE_BLOCK_DESCRIPTOR *CurrBlockDescHead;
355 EFI_CAPSULE_BLOCK_DESCRIPTOR *TempBlockDesc;
356 EFI_CAPSULE_BLOCK_DESCRIPTOR *PrevBlockDescTail;
357 UINTN NumDescriptors;
358 UINTN BufferSize;
359 UINT8 *RelocBuffer;
360 UINTN BlockListSize;
361 //
362 // Get the info on the blocks and descriptors. Since we're going to move
363 // the descriptors low in memory, adjust the base/size values accordingly here.
364 // GetCapsuleInfo() returns the number of legit descriptors, so add one for
365 // a terminator.
366 //
367 if (GetCapsuleInfo (BlockList, &NumDescriptors, NULL) != EFI_SUCCESS) {
368 return NULL;
369 }
370
371 NumDescriptors++;
372 BufferSize = NumDescriptors * sizeof (EFI_CAPSULE_BLOCK_DESCRIPTOR);
373 NewBlockList = (EFI_CAPSULE_BLOCK_DESCRIPTOR *) MemBase;
374 if (MemSize < BufferSize) {
375 return NULL;
376 }
377
378 MemSize -= BufferSize;
379 MemBase += BufferSize;
380 //
381 // Go through all the blocks and make sure none are in the way
382 //
383 TempBlockDesc = BlockList;
384 while (TempBlockDesc->Union.ContinuationPointer != (EFI_PHYSICAL_ADDRESS) (UINTN) NULL) {
385 if (TempBlockDesc->Length == 0) {
386 //
387 // Next block of descriptors
388 //
389 TempBlockDesc = (EFI_CAPSULE_BLOCK_DESCRIPTOR *) (UINTN) TempBlockDesc->Union.ContinuationPointer;
390 } else {
391 //
392 // If the capsule data pointed to by this descriptor is in the way,
393 // move it.
394 //
395 if (IsOverlapped (
396 (UINT8 *) NewBlockList,
397 BufferSize,
398 (UINT8 *) (UINTN) TempBlockDesc->Union.DataBlock,
399 (UINTN) TempBlockDesc->Length
400 )) {
401 //
402 // Relocate the block
403 //
404 RelocBuffer = FindFreeMem (BlockList, MemBase, MemSize, (UINTN) TempBlockDesc->Length);
405 if (RelocBuffer == NULL) {
406 return NULL;
407 }
408
409 CopyMem ((VOID *) RelocBuffer, (VOID *) (UINTN) TempBlockDesc->Union.DataBlock, (UINTN) TempBlockDesc->Length);
410 TempBlockDesc->Union.DataBlock = (EFI_PHYSICAL_ADDRESS) (UINTN) RelocBuffer;
411
412 DEBUG ((EFI_D_INFO, "Capsule relocate descriptors from/to/size 0x%X 0x%X 0x%X\n", (UINT32)(UINTN)TempBlockDesc->Union.DataBlock, (UINT32)(UINTN)RelocBuffer, (UINT32)(UINTN)TempBlockDesc->Length));
413 }
414 }
415 TempBlockDesc++;
416 }
417 //
418 // Now go through all the block descriptors to make sure that they're not
419 // in the memory region we want to copy them to.
420 //
421 CurrBlockDescHead = BlockList;
422 PrevBlockDescTail = NULL;
423 while ((CurrBlockDescHead != NULL) && (CurrBlockDescHead->Union.ContinuationPointer != (EFI_PHYSICAL_ADDRESS) (UINTN) NULL)) {
424 //
425 // Get the size of this list then see if it overlaps our low region
426 //
427 TempBlockDesc = CurrBlockDescHead;
428 BlockListSize = sizeof (EFI_CAPSULE_BLOCK_DESCRIPTOR);
429 while (TempBlockDesc->Length != 0) {
430 BlockListSize += sizeof (EFI_CAPSULE_BLOCK_DESCRIPTOR);
431 TempBlockDesc++;
432 }
433
434 if (IsOverlapped (
435 (UINT8 *) NewBlockList,
436 BufferSize,
437 (UINT8 *) CurrBlockDescHead,
438 BlockListSize
439 )) {
440 //
441 // Overlaps, so move it out of the way
442 //
443 RelocBuffer = FindFreeMem (BlockList, MemBase, MemSize, BlockListSize);
444 if (RelocBuffer == NULL) {
445 return NULL;
446 }
447 CopyMem ((VOID *) RelocBuffer, (VOID *) CurrBlockDescHead, BlockListSize);
448 DEBUG ((EFI_D_INFO, "Capsule reloc descriptor block #2\n"));
449 //
450 // Point the previous block's next point to this copied version. If
451 // the tail pointer is null, then this is the first descriptor block.
452 //
453 if (PrevBlockDescTail == NULL) {
454 BlockList = (EFI_CAPSULE_BLOCK_DESCRIPTOR *) RelocBuffer;
455 } else {
456 PrevBlockDescTail->Union.DataBlock = (EFI_PHYSICAL_ADDRESS) (UINTN) RelocBuffer;
457 }
458 }
459 //
460 // Save our new tail and jump to the next block list
461 //
462 PrevBlockDescTail = TempBlockDesc;
463 CurrBlockDescHead = (EFI_CAPSULE_BLOCK_DESCRIPTOR *) (UINTN) TempBlockDesc->Union.ContinuationPointer;
464 }
465 //
466 // Cleared out low memory. Now copy the descriptors down there.
467 //
468 TempBlockDesc = BlockList;
469 CurrBlockDescHead = NewBlockList;
470 while ((TempBlockDesc != NULL) && (TempBlockDesc->Union.ContinuationPointer != (EFI_PHYSICAL_ADDRESS) (UINTN) NULL)) {
471 if (TempBlockDesc->Length != 0) {
472 CurrBlockDescHead->Union.DataBlock = TempBlockDesc->Union.DataBlock;
473 CurrBlockDescHead->Length = TempBlockDesc->Length;
474 CurrBlockDescHead++;
475 TempBlockDesc++;
476 } else {
477 TempBlockDesc = (EFI_CAPSULE_BLOCK_DESCRIPTOR *) (UINTN) TempBlockDesc->Union.ContinuationPointer;
478 }
479 }
480 //
481 // Null terminate
482 //
483 CurrBlockDescHead->Union.ContinuationPointer = (EFI_PHYSICAL_ADDRESS) (UINTN) NULL;
484 CurrBlockDescHead->Length = 0;
485 return NewBlockList;
486 }
487
488 /**
489 Determine if two buffers overlap in memory.
490
491 @param Buff1 pointer to first buffer
492 @param Size1 size of Buff1
493 @param Buff2 pointer to second buffer
494 @param Size2 size of Buff2
495
496 @retval TRUE Buffers overlap in memory.
497 @retval FALSE Buffer doesn't overlap.
498
499 **/
500 BOOLEAN
501 IsOverlapped (
502 UINT8 *Buff1,
503 UINTN Size1,
504 UINT8 *Buff2,
505 UINTN Size2
506 )
507 {
508 //
509 // If buff1's end is less than the start of buff2, then it's ok.
510 // Also, if buff1's start is beyond buff2's end, then it's ok.
511 //
512 if (((Buff1 + Size1) <= Buff2) || (Buff1 >= (Buff2 + Size2))) {
513 return FALSE;
514 }
515
516 return TRUE;
517 }
518
519 /**
520 Given a pointer to a capsule block descriptor, traverse the list to figure
521 out how many legitimate descriptors there are, and how big the capsule it
522 refers to is.
523
524 @param Desc Pointer to the capsule block descriptors
525 NumDescriptors - optional pointer to where to return the number of descriptors
526 CapsuleSize - optional pointer to where to return the capsule size
527 @param NumDescriptors Optional pointer to where to return the number of descriptors
528 @param CapsuleSize Optional pointer to where to return the capsule size
529
530 @retval EFI_NOT_FOUND No descriptors containing data in the list
531 @retval EFI_SUCCESS Return data is valid
532
533 **/
534 EFI_STATUS
535 GetCapsuleInfo (
536 IN EFI_CAPSULE_BLOCK_DESCRIPTOR *Desc,
537 IN OUT UINTN *NumDescriptors OPTIONAL,
538 IN OUT UINTN *CapsuleSize OPTIONAL
539 )
540 {
541 UINTN Count;
542 UINTN Size;
543
544 Count = 0;
545 Size = 0;
546
547 while (Desc->Union.ContinuationPointer != (EFI_PHYSICAL_ADDRESS) (UINTN) NULL) {
548 if (Desc->Length == 0) {
549 //
550 // Descriptor points to another list of block descriptors somewhere
551 //
552 Desc = (EFI_CAPSULE_BLOCK_DESCRIPTOR *) (UINTN) Desc->Union.ContinuationPointer;
553 } else {
554 Size += (UINTN) Desc->Length;
555 Count++;
556 Desc++;
557 }
558 }
559 //
560 // If no descriptors, then fail
561 //
562 if (Count == 0) {
563 return EFI_NOT_FOUND;
564 }
565
566 if (NumDescriptors != NULL) {
567 *NumDescriptors = Count;
568 }
569
570 if (CapsuleSize != NULL) {
571 *CapsuleSize = Size;
572 }
573
574 return EFI_SUCCESS;
575 }
576
577 /**
578 Check every capsule header.
579
580 @param CapsuleHeader The pointer to EFI_CAPSULE_HEADER
581
582 @retval FALSE Capsule is OK
583 @retval TRUE Capsule is corrupted
584
585 **/
586 BOOLEAN
587 IsCapsuleCorrupted (
588 IN EFI_CAPSULE_HEADER *CapsuleHeader
589 )
590 {
591 //
592 //A capsule to be updated across a system reset should contain CAPSULE_FLAGS_PERSIST_ACROSS_RESET.
593 //
594 if ((CapsuleHeader->Flags & CAPSULE_FLAGS_PERSIST_ACROSS_RESET) == 0) {
595 return TRUE;
596 }
597 //
598 //Make sure the flags combination is supported by the platform.
599 //
600 if ((CapsuleHeader->Flags & (CAPSULE_FLAGS_PERSIST_ACROSS_RESET | CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE)) == CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE) {
601 return TRUE;
602 }
603 if ((CapsuleHeader->Flags & (CAPSULE_FLAGS_PERSIST_ACROSS_RESET | CAPSULE_FLAGS_INITIATE_RESET)) == CAPSULE_FLAGS_INITIATE_RESET) {
604 return TRUE;
605 }
606
607 return FALSE;
608 }
609
610 /**
611 Try to verify the integrity of a capsule test pattern before the
612 capsule gets coalesced. This can be useful in narrowing down
613 where capsule data corruption occurs.
614
615 The test pattern mode fills in memory with a counting UINT32 value.
616 If the capsule is not divided up in a multiple of 4-byte blocks, then
617 things get messy doing the check. Therefore there are some cases
618 here where we just give up and skip the pre-coalesce check.
619
620 @param PeiServices PEI services table
621 @param Desc Pointer to capsule descriptors
622 **/
623 VOID
624 CapsuleTestPatternPreCoalesce (
625 IN EFI_PEI_SERVICES **PeiServices,
626 IN EFI_CAPSULE_BLOCK_DESCRIPTOR *Desc
627 )
628 {
629 UINT32 *TestPtr;
630 UINT32 TestCounter;
631 UINT32 TestSize;
632 //
633 // Find first data descriptor
634 //
635 while ((Desc->Length == 0) && (Desc->Union.ContinuationPointer != (EFI_PHYSICAL_ADDRESS) (UINTN) NULL)) {
636 Desc = (EFI_CAPSULE_BLOCK_DESCRIPTOR *) (UINTN) Desc->Union.ContinuationPointer;
637 }
638
639 if (Desc->Union.ContinuationPointer == 0) {
640 return ;
641 }
642 //
643 // First one better be long enough to at least hold the test signature
644 //
645 if (Desc->Length < sizeof (UINT32)) {
646 DEBUG ((EFI_D_INFO, "Capsule test pattern pre-coalesce punted #1\n"));
647 return ;
648 }
649
650 TestPtr = (UINT32 *) (UINTN) Desc->Union.DataBlock;
651 //
652 // 0x54534554 "TEST"
653 //
654 if (*TestPtr != 0x54534554) {
655 return ;
656 }
657
658 TestCounter = 0;
659 TestSize = (UINT32) Desc->Length - 2 * sizeof (UINT32);
660 //
661 // Skip over the signature and the size fields in the pattern data header
662 //
663 TestPtr += 2;
664 while (1) {
665 if ((TestSize & 0x03) != 0) {
666 DEBUG ((EFI_D_INFO, "Capsule test pattern pre-coalesce punted #2\n"));
667 return ;
668 }
669
670 while (TestSize > 0) {
671 if (*TestPtr != TestCounter) {
672 DEBUG ((EFI_D_INFO, "Capsule test pattern pre-coalesce failed data corruption check\n"));
673 return ;
674 }
675
676 TestSize -= sizeof (UINT32);
677 TestCounter++;
678 TestPtr++;
679 }
680 Desc++;
681 while ((Desc->Length == 0) && (Desc->Union.ContinuationPointer != (EFI_PHYSICAL_ADDRESS) (UINTN) NULL)) {
682 Desc = (EFI_CAPSULE_BLOCK_DESCRIPTOR *) (UINTN) Desc->Union.ContinuationPointer;
683 }
684
685 if (Desc->Union.ContinuationPointer == (EFI_PHYSICAL_ADDRESS) (UINTN) NULL) {
686 return ;
687 }
688 TestSize = (UINT32) Desc->Length;
689 TestPtr = (UINT32 *) (UINTN) Desc->Union.DataBlock;
690 }
691 }
692
693 /**
694 Checks for the presence of capsule descriptors.
695 Get capsule descriptors from variable CapsuleUpdateData, CapsuleUpdateData1, CapsuleUpdateData2...
696
697 @param BlockListBuffer Pointer to the buffer of capsule descriptors variables
698 @param BlockDescriptorList Pointer to the capsule descriptors list
699
700 @retval EFI_SUCCESS a valid capsule is present
701 @retval EFI_NOT_FOUND if a valid capsule is not present
702 **/
703 EFI_STATUS
704 BuildCapsuleDescriptors (
705 IN EFI_PHYSICAL_ADDRESS *BlockListBuffer,
706 OUT EFI_CAPSULE_BLOCK_DESCRIPTOR **BlockDescriptorList
707 )
708 {
709 UINTN Index;
710 EFI_CAPSULE_BLOCK_DESCRIPTOR *LastBlock;
711 EFI_CAPSULE_BLOCK_DESCRIPTOR *TempBlock;
712 EFI_CAPSULE_BLOCK_DESCRIPTOR *HeadBlock;
713
714 LastBlock = NULL;
715 HeadBlock = NULL;
716 TempBlock = NULL;
717 Index = 0;
718
719 while (BlockListBuffer[Index] != 0) {
720 if (Index == 0) {
721 //
722 // For the first Capsule Image, test integrity of descriptors.
723 //
724 LastBlock = ValidateCapsuleIntegrity ((EFI_CAPSULE_BLOCK_DESCRIPTOR *)(UINTN)BlockListBuffer[Index]);
725 if (LastBlock == NULL) {
726 return EFI_NOT_FOUND;
727 }
728 //
729 // Return the base of the block descriptors
730 //
731 HeadBlock = (EFI_CAPSULE_BLOCK_DESCRIPTOR *)(UINTN)BlockListBuffer[Index];
732 } else {
733 //
734 // Test integrity of descriptors.
735 //
736 TempBlock = ValidateCapsuleIntegrity ((EFI_CAPSULE_BLOCK_DESCRIPTOR *)(UINTN)BlockListBuffer[Index]);
737 if (TempBlock == NULL) {
738 return EFI_NOT_FOUND;
739 }
740 //
741 // Combine the different BlockList into single BlockList.
742 //
743 LastBlock->Union.DataBlock = (EFI_PHYSICAL_ADDRESS)(UINTN)BlockListBuffer[Index];
744 LastBlock->Length = 0;
745 LastBlock = TempBlock;
746 }
747 Index ++;
748 }
749
750 if (HeadBlock != NULL) {
751 *BlockDescriptorList = HeadBlock;
752 return EFI_SUCCESS;
753 }
754 return EFI_NOT_FOUND;
755 }
756
757 /**
758 The function to coalesce a fragmented capsule in memory.
759
760 Memory Map for coalesced capsule:
761 MemBase + ---->+---------------------------+<-----------+
762 MemSize | CapsuleOffset[49] | |
763 +---------------------------+ |
764 | ................ | |
765 +---------------------------+ |
766 | CapsuleOffset[2] | |
767 +---------------------------+ |
768 | CapsuleOffset[1] | |
769 +---------------------------+ |
770 | CapsuleOffset[0] | CapsuleSize
771 +---------------------------+ |
772 | CapsuleNumber | |
773 +---------------------------+ |
774 | | |
775 | | |
776 | Capsule Image | |
777 | | |
778 | | |
779 +---------------------------+ |
780 | PrivateData | |
781 DestPtr ----> +---------------------------+<-----------+
782 | | |
783 | FreeMem | FreeMemSize
784 | | |
785 FreeMemBase --->+---------------------------+<-----------+
786 | Terminator |
787 +---------------------------+
788 | BlockDescriptor n |
789 +---------------------------+
790 | ................. |
791 +---------------------------+
792 | BlockDescriptor 1 |
793 +---------------------------+
794 | BlockDescriptor 0 |
795 +---------------------------+
796 | PrivateDataDesc 0 |
797 MemBase ---->+---------------------------+<----- BlockList
798
799 @param PeiServices General purpose services available to every PEIM.
800 @param BlockListBuffer Point to the buffer of Capsule Descriptor Variables.
801 @param MemoryBase Pointer to the base of a block of memory that we can walk
802 all over while trying to coalesce our buffers.
803 On output, this variable will hold the base address of
804 a coalesced capsule.
805 @param MemorySize Size of the memory region pointed to by MemoryBase.
806 On output, this variable will contain the size of the
807 coalesced capsule.
808
809 @retval EFI_NOT_FOUND If we could not find the capsule descriptors.
810
811 @retval EFI_BUFFER_TOO_SMALL
812 If we could not coalesce the capsule in the memory
813 region provided to us.
814
815 @retval EFI_SUCCESS Processed the capsule successfully.
816 **/
817 EFI_STATUS
818 EFIAPI
819 CapsuleDataCoalesce (
820 IN EFI_PEI_SERVICES **PeiServices,
821 IN EFI_PHYSICAL_ADDRESS *BlockListBuffer,
822 IN OUT VOID **MemoryBase,
823 IN OUT UINTN *MemorySize
824 )
825 {
826 VOID *NewCapsuleBase;
827 VOID *DataPtr;
828 UINT8 CapsuleIndex;
829 UINT8 *FreeMemBase;
830 UINT8 *DestPtr;
831 UINT8 *RelocPtr;
832 UINT32 CapsuleOffset[MAX_SUPPORT_CAPSULE_NUM];
833 UINT32 *AddDataPtr;
834 UINT32 CapsuleTimes;
835 UINT64 SizeLeft;
836 UINT64 CapsuleImageSize;
837 UINTN CapsuleSize;
838 UINTN DescriptorsSize;
839 UINTN FreeMemSize;
840 UINTN NumDescriptors;
841 BOOLEAN IsCorrupted;
842 BOOLEAN CapsuleBeginFlag;
843 EFI_STATUS Status;
844 EFI_CAPSULE_HEADER *CapsuleHeader;
845 EFI_CAPSULE_PEIM_PRIVATE_DATA PrivateData;
846 EFI_CAPSULE_PEIM_PRIVATE_DATA *PrivateDataPtr;
847 EFI_CAPSULE_BLOCK_DESCRIPTOR *BlockList;
848 EFI_CAPSULE_BLOCK_DESCRIPTOR *CurrentBlockDesc;
849 EFI_CAPSULE_BLOCK_DESCRIPTOR *TempBlockDesc;
850 EFI_CAPSULE_BLOCK_DESCRIPTOR PrivateDataDesc[2];
851
852 CapsuleIndex = 0;
853 SizeLeft = 0;
854 CapsuleTimes = 0;
855 CapsuleImageSize = 0;
856 PrivateDataPtr = NULL;
857 AddDataPtr = NULL;
858 CapsuleHeader = NULL;
859 CapsuleBeginFlag = TRUE;
860 IsCorrupted = TRUE;
861 CapsuleSize = 0;
862 NumDescriptors = 0;
863
864 //
865 // Build capsule descriptors list
866 //
867 Status = BuildCapsuleDescriptors (BlockListBuffer, &BlockList);
868 if (EFI_ERROR (Status)) {
869 return Status;
870 }
871
872 DEBUG_CODE (
873 CapsuleTestPatternPreCoalesce (PeiServices, BlockList);
874 );
875
876 //
877 // Get the size of our descriptors and the capsule size. GetCapsuleInfo()
878 // returns the number of descriptors that actually point to data, so add
879 // one for a terminator. Do that below.
880 //
881 GetCapsuleInfo (BlockList, &NumDescriptors, &CapsuleSize);
882 if ((CapsuleSize == 0) || (NumDescriptors == 0)) {
883 return EFI_NOT_FOUND;
884 }
885
886 //
887 // Initialize our local copy of private data. When we're done, we'll create a
888 // descriptor for it as well so that it can be put into free memory without
889 // trashing anything.
890 //
891 PrivateData.Signature = EFI_CAPSULE_PEIM_PRIVATE_DATA_SIGNATURE;
892 PrivateData.CapsuleSize = (UINT32) CapsuleSize;
893 PrivateDataDesc[0].Union.DataBlock = (EFI_PHYSICAL_ADDRESS) (UINTN) &PrivateData;
894 PrivateDataDesc[0].Length = sizeof (EFI_CAPSULE_PEIM_PRIVATE_DATA);
895 PrivateDataDesc[1].Union.DataBlock = (EFI_PHYSICAL_ADDRESS) (UINTN) BlockList;
896 PrivateDataDesc[1].Length = 0;
897 //
898 // In addition to PrivateDataDesc[1:0], one terminator is added
899 // See below RelocateBlockDescriptors()
900 //
901 NumDescriptors += 3;
902 CapsuleSize += sizeof (EFI_CAPSULE_PEIM_PRIVATE_DATA) + sizeof(CapsuleOffset) + sizeof(UINT32);
903 BlockList = PrivateDataDesc;
904 DescriptorsSize = NumDescriptors * sizeof (EFI_CAPSULE_BLOCK_DESCRIPTOR);
905
906 //
907 // Don't go below some min address. If the base is below it,
908 // then move it up and adjust the size accordingly.
909 //
910 DEBUG ((EFI_D_INFO, "Capsule Memory range from 0x%8X to 0x%8X\n", (UINTN) *MemoryBase, (UINTN)*MemoryBase + *MemorySize));
911 if ((UINTN)*MemoryBase < (UINTN) MIN_COALESCE_ADDR) {
912 if (((UINTN)*MemoryBase + *MemorySize) < (UINTN) MIN_COALESCE_ADDR) {
913 return EFI_BUFFER_TOO_SMALL;
914 } else {
915 *MemorySize = *MemorySize - ((UINTN) MIN_COALESCE_ADDR - (UINTN) *MemoryBase);
916 *MemoryBase = (VOID *) (UINTN) MIN_COALESCE_ADDR;
917 }
918 }
919
920 if (*MemorySize <= (CapsuleSize + DescriptorsSize)) {
921 return EFI_BUFFER_TOO_SMALL;
922 }
923
924 FreeMemBase = *MemoryBase;
925 FreeMemSize = *MemorySize;
926 DEBUG ((EFI_D_INFO, "Capsule Free Memory from 0x%8X to 0x%8X\n", (UINTN) FreeMemBase, (UINTN) FreeMemBase + FreeMemSize));
927
928 //
929 // Relocate all the block descriptors to low memory to make further
930 // processing easier.
931 //
932 BlockList = RelocateBlockDescriptors (PeiServices, BlockList, FreeMemBase, FreeMemSize);
933 if (BlockList == NULL) {
934 //
935 // Not enough room to relocate the descriptors
936 //
937 return EFI_BUFFER_TOO_SMALL;
938 }
939
940 //
941 // Take the top of memory for the capsule. Naturally align.
942 //
943 DestPtr = FreeMemBase + FreeMemSize - CapsuleSize;
944 DestPtr = (UINT8 *) ((UINTN) DestPtr &~ (UINTN) (sizeof (UINTN) - 1));
945 FreeMemBase = (UINT8 *) BlockList + DescriptorsSize;
946 FreeMemSize = FreeMemSize - DescriptorsSize - CapsuleSize;
947 NewCapsuleBase = (VOID *) DestPtr;
948
949 //
950 // Move all the blocks to the top (high) of memory.
951 // Relocate all the obstructing blocks. Note that the block descriptors
952 // were coalesced when they were relocated, so we can just ++ the pointer.
953 //
954 CurrentBlockDesc = BlockList;
955 while ((CurrentBlockDesc->Length != 0) || (CurrentBlockDesc->Union.ContinuationPointer != (EFI_PHYSICAL_ADDRESS) (UINTN) NULL)) {
956 //
957 // See if any of the remaining capsule blocks are in the way
958 //
959 TempBlockDesc = CurrentBlockDesc;
960 while (TempBlockDesc->Length != 0) {
961 //
962 // Is this block in the way of where we want to copy the current descriptor to?
963 //
964 if (IsOverlapped (
965 (UINT8 *) DestPtr,
966 (UINTN) CurrentBlockDesc->Length,
967 (UINT8 *) (UINTN) TempBlockDesc->Union.DataBlock,
968 (UINTN) TempBlockDesc->Length
969 )) {
970 //
971 // Relocate the block
972 //
973 RelocPtr = FindFreeMem (BlockList, FreeMemBase, FreeMemSize, (UINTN) TempBlockDesc->Length);
974 if (RelocPtr == NULL) {
975 return EFI_BUFFER_TOO_SMALL;
976 }
977
978 CopyMem ((VOID *) RelocPtr, (VOID *) (UINTN) TempBlockDesc->Union.DataBlock, (UINTN) TempBlockDesc->Length);
979 DEBUG ((EFI_D_INFO, "Capsule reloc data block from 0x%8X to 0x%8X with size 0x%8X\n",
980 (UINTN) TempBlockDesc->Union.DataBlock, (UINTN) RelocPtr, (UINTN) TempBlockDesc->Length));
981
982 TempBlockDesc->Union.DataBlock = (EFI_PHYSICAL_ADDRESS) (UINTN) RelocPtr;
983 }
984 //
985 // Next descriptor
986 //
987 TempBlockDesc++;
988 }
989 //
990 // Ok, we made it through. Copy the block.
991 // we just support greping one capsule from the lists of block descs list.
992 //
993 CapsuleTimes ++;
994 //
995 //Skip the first block descriptor that filled with EFI_CAPSULE_PEIM_PRIVATE_DATA
996 //
997 if (CapsuleTimes > 1) {
998 //
999 //For every capsule entry point, check its header to determine whether to relocate it.
1000 //If it is invalid, skip it and move on to the next capsule. If it is valid, relocate it.
1001 //
1002 if (CapsuleBeginFlag) {
1003 CapsuleBeginFlag = FALSE;
1004 CapsuleHeader = (EFI_CAPSULE_HEADER*)(UINTN)CurrentBlockDesc->Union.DataBlock;
1005 SizeLeft = CapsuleHeader->CapsuleImageSize;
1006 if (!IsCapsuleCorrupted (CapsuleHeader)) {
1007
1008 if (CapsuleIndex > (MAX_SUPPORT_CAPSULE_NUM - 1)) {
1009 DEBUG ((EFI_D_ERROR, "Capsule number exceeds the max number of %d!\n", MAX_SUPPORT_CAPSULE_NUM));
1010 return EFI_BUFFER_TOO_SMALL;
1011 }
1012
1013 //
1014 // Relocate this valid capsule
1015 //
1016 IsCorrupted = FALSE;
1017 CapsuleImageSize += SizeLeft;
1018 CopyMem ((VOID *) DestPtr, (VOID *) (UINTN) CurrentBlockDesc->Union.DataBlock, (UINTN) CurrentBlockDesc->Length);
1019 DEBUG ((EFI_D_INFO, "Capsule coalesce block no.0x%8X from 0x%8lX to 0x%8lX with size 0x%8X\n",CapsuleTimes,
1020 (UINTN)CurrentBlockDesc->Union.DataBlock, (UINTN)DestPtr, (UINTN)CurrentBlockDesc->Length));
1021 //
1022 // Cache the begin offset of this capsule
1023 //
1024 CapsuleOffset[CapsuleIndex++] = (UINT32) (UINTN) DestPtr - (UINT32)(UINTN)NewCapsuleBase - (UINT32)sizeof(EFI_CAPSULE_PEIM_PRIVATE_DATA);
1025 DestPtr += CurrentBlockDesc->Length;
1026 }
1027 //
1028 // If the current block length is greater than or equal to SizeLeft, this is the
1029 // start of the next capsule
1030 //
1031 if (CurrentBlockDesc->Length < SizeLeft) {
1032 SizeLeft -= CurrentBlockDesc->Length;
1033 } else {
1034 //
1035 // Start the next cycle
1036 //
1037 SizeLeft = 0;
1038 IsCorrupted = TRUE;
1039 CapsuleBeginFlag = TRUE;
1040 }
1041 } else {
1042 //
1043 //Go on relocating the current capule image.
1044 //
1045 if (CurrentBlockDesc->Length < SizeLeft) {
1046 if (!IsCorrupted) {
1047 CopyMem ((VOID *) DestPtr, (VOID *) (UINTN) (CurrentBlockDesc->Union.DataBlock), (UINTN)CurrentBlockDesc->Length);
1048 DEBUG ((EFI_D_INFO, "Capsule coalesce block no.0x%8X from 0x%8lX to 0x%8lX with size 0x%8X\n",CapsuleTimes,
1049 (UINTN)CurrentBlockDesc->Union.DataBlock, (UINTN)DestPtr, (UINTN)CurrentBlockDesc->Length));
1050 DestPtr += CurrentBlockDesc->Length;
1051 }
1052 SizeLeft -= CurrentBlockDesc->Length;
1053 } else {
1054 //
1055 //Here is the end of the current capsule image.
1056 //
1057 if (!IsCorrupted) {
1058 CopyMem ((VOID *) DestPtr, (VOID *)(UINTN)(CurrentBlockDesc->Union.DataBlock), (UINTN)CurrentBlockDesc->Length);
1059 DEBUG ((EFI_D_INFO, "Capsule coalesce block no.0x%8X from 0x%8lX to 0x%8lX with size 0x%8X\n",CapsuleTimes,
1060 (UINTN)CurrentBlockDesc->Union.DataBlock, (UINTN)DestPtr, (UINTN)CurrentBlockDesc->Length));
1061 DestPtr += CurrentBlockDesc->Length;
1062 }
1063 //
1064 // Start the next cycle
1065 //
1066 SizeLeft = 0;
1067 IsCorrupted = TRUE;
1068 CapsuleBeginFlag = TRUE;
1069 }
1070 }
1071 } else {
1072 //
1073 //The first entry is the block descriptor for EFI_CAPSULE_PEIM_PRIVATE_DATA.
1074 //
1075 CopyMem ((VOID *) DestPtr, (VOID *) (UINTN) CurrentBlockDesc->Union.DataBlock, (UINTN) CurrentBlockDesc->Length);
1076 DestPtr += CurrentBlockDesc->Length;
1077 }
1078 //
1079 //Walk through the block descriptor list.
1080 //
1081 CurrentBlockDesc++;
1082 }
1083 //
1084 // We return the base of memory we want reserved, and the size.
1085 // The memory peim should handle it appropriately from there.
1086 //
1087 *MemorySize = (UINTN) CapsuleImageSize;
1088 *MemoryBase = (VOID *) NewCapsuleBase;
1089
1090 //
1091 //Append the offsets of mutiply capsules to the continous buffer
1092 //
1093 DataPtr = (VOID*)((UINTN)NewCapsuleBase + sizeof(EFI_CAPSULE_PEIM_PRIVATE_DATA) + (UINTN)CapsuleImageSize);
1094 AddDataPtr = (UINT32*)(((UINTN) DataPtr + sizeof(UINT32) - 1) &~ (UINT32) (sizeof (UINT32) - 1));
1095
1096 *AddDataPtr++ = CapsuleIndex;
1097
1098 CopyMem (AddDataPtr, &CapsuleOffset[0], sizeof (UINT32) * CapsuleIndex);
1099
1100 PrivateDataPtr = (EFI_CAPSULE_PEIM_PRIVATE_DATA *) NewCapsuleBase;
1101 PrivateDataPtr->CapsuleSize = (UINT32) CapsuleImageSize;
1102
1103 return EFI_SUCCESS;
1104 }