X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=MdeModulePkg%2FCore%2FDxe%2FMem%2FPool.c;h=1891bb73876aa94029e8455c1c1c7c57b89d3675;hp=f0af2b88004493ecf3b4564b283d203aca888955;hb=84edd20bd0756ef5719835498d4283435d6b5e77;hpb=23c98c9417908188207408afa3f6901b8aca826a diff --git a/MdeModulePkg/Core/Dxe/Mem/Pool.c b/MdeModulePkg/Core/Dxe/Mem/Pool.c index f0af2b8800..1891bb7387 100644 --- a/MdeModulePkg/Core/Dxe/Mem/Pool.c +++ b/MdeModulePkg/Core/Dxe/Mem/Pool.c @@ -1,8 +1,8 @@ /** @file UEFI Memory pool management functions. -Copyright (c) 2006 - 2008, Intel Corporation.
-All rights reserved. This program and the accompanying materials +Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
+This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php @@ -12,9 +12,10 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. **/ -#include +#include "DxeMain.h" +#include "Imem.h" -#define POOL_FREE_SIGNATURE EFI_SIGNATURE_32('p','f','r','0') +#define POOL_FREE_SIGNATURE SIGNATURE_32('p','f','r','0') typedef struct { UINT32 Signature; UINT32 Index; @@ -22,21 +23,22 @@ typedef struct { } POOL_FREE; -#define POOL_HEAD_SIGNATURE EFI_SIGNATURE_32('p','h','d','0') +#define POOL_HEAD_SIGNATURE SIGNATURE_32('p','h','d','0') typedef struct { UINT32 Signature; - UINT32 Size; + UINT32 Reserved; EFI_MEMORY_TYPE Type; - UINTN Reserved; + UINTN Size; CHAR8 Data[1]; } POOL_HEAD; -#define SIZE_OF_POOL_HEAD EFI_FIELD_OFFSET(POOL_HEAD,Data) +#define SIZE_OF_POOL_HEAD OFFSET_OF(POOL_HEAD,Data) -#define POOL_TAIL_SIGNATURE EFI_SIGNATURE_32('p','t','a','l') +#define POOL_TAIL_SIGNATURE SIGNATURE_32('p','t','a','l') typedef struct { UINT32 Signature; - UINT32 Size; + UINT32 Reserved; + UINTN Size; } POOL_TAIL; @@ -59,22 +61,24 @@ typedef struct { // Globals // -#define POOL_SIGNATURE EFI_SIGNATURE_32('p','l','s','t') +#define POOL_SIGNATURE SIGNATURE_32('p','l','s','t') typedef struct { INTN Signature; UINTN Used; EFI_MEMORY_TYPE MemoryType; LIST_ENTRY FreeList[MAX_POOL_LIST]; LIST_ENTRY Link; -} POOL; - - -POOL PoolHead[EfiMaxMemoryType]; -LIST_ENTRY PoolHeadList; +} POOL; // +// Pool header for each memory type. // +POOL mPoolHead[EfiMaxMemoryType]; + // +// List of pool header to search for the appropriate memory type. +// +LIST_ENTRY mPoolHeadList = INITIALIZE_LIST_HEAD_VARIABLE (mPoolHeadList); /** @@ -90,21 +94,20 @@ CoreInitializePool ( UINTN Index; for (Type=0; Type < EfiMaxMemoryType; Type++) { - PoolHead[Type].Signature = 0; - PoolHead[Type].Used = 0; - PoolHead[Type].MemoryType = (EFI_MEMORY_TYPE) Type; + mPoolHead[Type].Signature = 0; + mPoolHead[Type].Used = 0; + mPoolHead[Type].MemoryType = (EFI_MEMORY_TYPE) Type; for (Index=0; Index < MAX_POOL_LIST; Index++) { - InitializeListHead (&PoolHead[Type].FreeList[Index]); + InitializeListHead (&mPoolHead[Type].FreeList[Index]); } } - InitializeListHead (&PoolHeadList); } /** Look up pool head for specified memory type. - @param MemoryType Memory type of which pool head is looked for + @param MemoryType Memory type of which pool head is looked for @return Pointer of Corresponding pool head. @@ -118,13 +121,17 @@ LookupPoolHead ( POOL *Pool; UINTN Index; - if (MemoryType >= 0 && MemoryType < EfiMaxMemoryType) { - return &PoolHead[MemoryType]; + if ((UINT32)MemoryType < EfiMaxMemoryType) { + return &mPoolHead[MemoryType]; } - if (MemoryType < 0) { + // + // MemoryType values in the range 0x80000000..0xFFFFFFFF are reserved for use by UEFI + // OS loaders that are provided by operating system vendors + // + if ((INT32)MemoryType < 0) { - for (Link = PoolHeadList.ForwardLink; Link != &PoolHeadList; Link = Link->ForwardLink) { + for (Link = mPoolHeadList.ForwardLink; Link != &mPoolHeadList; Link = Link->ForwardLink) { Pool = CR(Link, POOL, Link, POOL_SIGNATURE); if (Pool->MemoryType == MemoryType) { return Pool; @@ -143,7 +150,7 @@ LookupPoolHead ( InitializeListHead (&Pool->FreeList[Index]); } - InsertHeadList (&PoolHeadList, &Pool->Link); + InsertHeadList (&mPoolHeadList, &Pool->Link); return Pool; } @@ -151,25 +158,24 @@ LookupPoolHead ( return NULL; } - /** Allocate pool of a particular type. - @param PoolType Type of pool to allocate - @param Size The amount of pool to allocate - @param Buffer The address to return a pointer to the allocated - pool + @param PoolType Type of pool to allocate + @param Size The amount of pool to allocate + @param Buffer The address to return a pointer to the allocated + pool - @retval EFI_INVALID_PARAMETER PoolType not valid - @retval EFI_OUT_OF_RESOURCES Size exceeds max pool size or allocation failed. + @retval EFI_INVALID_PARAMETER PoolType not valid or Buffer is NULL. + @retval EFI_OUT_OF_RESOURCES Size exceeds max pool size or allocation failed. @retval EFI_SUCCESS Pool successfully allocated. **/ EFI_STATUS EFIAPI -CoreAllocatePool ( +CoreInternalAllocatePool ( IN EFI_MEMORY_TYPE PoolType, IN UINTN Size, OUT VOID **Buffer @@ -184,9 +190,13 @@ CoreAllocatePool ( PoolType == EfiConventionalMemory) { return EFI_INVALID_PARAMETER; } - + + if (Buffer == NULL) { + return EFI_INVALID_PARAMETER; + } + *Buffer = NULL; - + // // If size is too large, fail it // Base on the EFI spec, return status of EFI_OUT_OF_RESOURCES @@ -208,14 +218,42 @@ CoreAllocatePool ( return (*Buffer != NULL) ? EFI_SUCCESS : EFI_OUT_OF_RESOURCES; } +/** + Allocate pool of a particular type. + + @param PoolType Type of pool to allocate + @param Size The amount of pool to allocate + @param Buffer The address to return a pointer to the allocated + pool + + @retval EFI_INVALID_PARAMETER PoolType not valid or Buffer is NULL. + @retval EFI_OUT_OF_RESOURCES Size exceeds max pool size or allocation failed. + @retval EFI_SUCCESS Pool successfully allocated. + +**/ +EFI_STATUS +EFIAPI +CoreAllocatePool ( + IN EFI_MEMORY_TYPE PoolType, + IN UINTN Size, + OUT VOID **Buffer + ) +{ + EFI_STATUS Status; + Status = CoreInternalAllocatePool (PoolType, Size, Buffer); + if (!EFI_ERROR (Status)) { + CoreUpdateProfile ((EFI_PHYSICAL_ADDRESS) (UINTN) RETURN_ADDRESS (0), MemoryProfileActionAllocatePool, PoolType, Size, *Buffer); + } + return Status; +} /** Internal function to allocate pool of a particular type. Caller must have the memory lock held - @param PoolType Type of pool to allocate - @param Size The amount of pool to allocate + @param PoolType Type of pool to allocate + @param Size The amount of pool to allocate @return The allocate pool, or NULL @@ -235,7 +273,6 @@ CoreAllocatePoolI ( UINTN Index; UINTN FSize; UINTN Offset; - UINTN Adjustment; UINTN NoPages; ASSERT_LOCKED (&gMemoryLock); @@ -243,13 +280,13 @@ CoreAllocatePoolI ( // // Adjust the size by the pool header & tail overhead // - + // // Adjusting the Size to be of proper alignment so that // we don't get an unaligned access fault later when // pool_Tail is being initialized // - ALIGN_VARIABLE (Size, Adjustment); + Size = ALIGN_VARIABLE (Size); Size += POOL_OVERHEAD; Index = SIZE_TO_LIST(Size); @@ -265,7 +302,7 @@ CoreAllocatePoolI ( // if (Index >= MAX_POOL_LIST) { NoPages = EFI_SIZE_TO_PAGES(Size) + EFI_SIZE_TO_PAGES (DEFAULT_PAGE_ALLOCATION) - 1; - NoPages &= ~(EFI_SIZE_TO_PAGES (DEFAULT_PAGE_ALLOCATION) - 1); + NoPages &= ~(UINTN)(EFI_SIZE_TO_PAGES (DEFAULT_PAGE_ALLOCATION) - 1); Head = CoreAllocatePoolPages (PoolType, NoPages, DEFAULT_PAGE_ALLOCATION); goto Done; } @@ -292,7 +329,7 @@ CoreAllocatePoolI ( FSize = LIST_TO_SIZE(Index); while (Offset + FSize <= DEFAULT_PAGE_ALLOCATION) { - Free = (POOL_FREE *) &NewPage[Offset]; + Free = (POOL_FREE *) &NewPage[Offset]; Free->Signature = POOL_FREE_SIGNATURE; Free->Index = (UINT32)Index; InsertHeadList (&Pool->FreeList[Index], &Free->Link); @@ -318,27 +355,26 @@ Done: Buffer = NULL; if (Head != NULL) { - + // // If we have a pool buffer, fill in the header & tail info // Head->Signature = POOL_HEAD_SIGNATURE; - Head->Size = (UINT32) Size; + Head->Size = Size; Head->Type = (EFI_MEMORY_TYPE) PoolType; Tail = HEAD_TO_TAIL (Head); Tail->Signature = POOL_TAIL_SIGNATURE; - Tail->Size = (UINT32) Size; + Tail->Size = Size; Buffer = Head->Data; DEBUG_CLEAR_MEMORY (Buffer, Size - POOL_OVERHEAD); - DEBUG ( - (DEBUG_POOL, - "AllocatePoolI: Type %x, Addr %x (len %x) %,d\n", - PoolType, - Buffer, - Size - POOL_OVERHEAD, - Pool->Used) - ); + DEBUG (( + DEBUG_POOL, + "AllocatePoolI: Type %x, Addr %p (len %lx) %,ld\n", PoolType, + Buffer, + (UINT64)(Size - POOL_OVERHEAD), + (UINT64) Pool->Used + )); // // Account the allocation @@ -346,33 +382,32 @@ Done: Pool->Used += Size; } else { - DEBUG ((DEBUG_ERROR | DEBUG_POOL, "AllocatePool: failed to allocate %d bytes\n", Size)); + DEBUG ((DEBUG_ERROR | DEBUG_POOL, "AllocatePool: failed to allocate %ld bytes\n", (UINT64) Size)); } return Buffer; } - /** Frees pool. - @param Buffer The allocated pool entry to free + @param Buffer The allocated pool entry to free - @retval EFI_INVALID_PARAMETER Buffer is not a valid value. + @retval EFI_INVALID_PARAMETER Buffer is not a valid value. @retval EFI_SUCCESS Pool successfully freed. **/ EFI_STATUS EFIAPI -CoreFreePool ( +CoreInternalFreePool ( IN VOID *Buffer ) { EFI_STATUS Status; - if (NULL == Buffer) { + if (Buffer == NULL) { return EFI_INVALID_PARAMETER; } @@ -382,15 +417,37 @@ CoreFreePool ( return Status; } +/** + Frees pool. + + @param Buffer The allocated pool entry to free + + @retval EFI_INVALID_PARAMETER Buffer is not a valid value. + @retval EFI_SUCCESS Pool successfully freed. + +**/ +EFI_STATUS +EFIAPI +CoreFreePool ( + IN VOID *Buffer + ) +{ + EFI_STATUS Status; + Status = CoreInternalFreePool (Buffer); + if (!EFI_ERROR (Status)) { + CoreUpdateProfile ((EFI_PHYSICAL_ADDRESS) (UINTN) RETURN_ADDRESS (0), MemoryProfileActionFreePool, 0, 0, Buffer); + } + return Status; +} /** Internal function to free a pool entry. Caller must have the memory lock held - @param Buffer The allocated pool entry to free + @param Buffer The allocated pool entry to free - @retval EFI_INVALID_PARAMETER Buffer not valid + @retval EFI_INVALID_PARAMETER Buffer not valid @retval EFI_SUCCESS Buffer successfully freed. **/ @@ -411,19 +468,19 @@ CoreFreePoolI ( UINTN Offset; BOOLEAN AllFree; - ASSERT(NULL != Buffer); + ASSERT(Buffer != NULL); // // Get the head & tail of the pool entry // Head = CR (Buffer, POOL_HEAD, Data, POOL_HEAD_SIGNATURE); - ASSERT(NULL != Head); + ASSERT(Head != NULL); if (Head->Signature != POOL_HEAD_SIGNATURE) { return EFI_INVALID_PARAMETER; } Tail = HEAD_TO_TAIL (Head); - ASSERT(NULL != Tail); + ASSERT(Tail != NULL); // // Debug @@ -449,10 +506,10 @@ CoreFreePoolI ( return EFI_INVALID_PARAMETER; } Pool->Used -= Size; - DEBUG ((DEBUG_POOL, "FreePool: %x (len %x) %,d\n", Head->Data, Head->Size - POOL_OVERHEAD, Pool->Used)); + DEBUG ((DEBUG_POOL, "FreePool: %p (len %lx) %,ld\n", Head->Data, (UINT64)(Head->Size - POOL_OVERHEAD), (UINT64) Pool->Used)); // - // Determine the pool list + // Determine the pool list // Index = SIZE_TO_LIST(Size); DEBUG_CLEAR_MEMORY (Head, Size); @@ -466,7 +523,7 @@ CoreFreePoolI ( // Return the memory pages back to free memory // NoPages = EFI_SIZE_TO_PAGES(Size) + EFI_SIZE_TO_PAGES (DEFAULT_PAGE_ALLOCATION) - 1; - NoPages &= ~(EFI_SIZE_TO_PAGES (DEFAULT_PAGE_ALLOCATION) - 1); + NoPages &= ~(UINTN)(EFI_SIZE_TO_PAGES (DEFAULT_PAGE_ALLOCATION) - 1); CoreFreePoolPages ((EFI_PHYSICAL_ADDRESS) (UINTN) Head, NoPages); } else { @@ -475,18 +532,18 @@ CoreFreePoolI ( // Put the pool entry onto the free pool list // Free = (POOL_FREE *) Head; - ASSERT(NULL != Free); + ASSERT(Free != NULL); Free->Signature = POOL_FREE_SIGNATURE; Free->Index = (UINT32)Index; InsertHeadList (&Pool->FreeList[Index], &Free->Link); // - // See if all the pool entries in the same page as Free are freed pool + // See if all the pool entries in the same page as Free are freed pool // entries // NewPage = (CHAR8 *)((UINTN)Free & ~((DEFAULT_PAGE_ALLOCATION) -1)); Free = (POOL_FREE *) &NewPage[0]; - ASSERT(NULL != Free); + ASSERT(Free != NULL); if (Free->Signature == POOL_FREE_SIGNATURE) { @@ -494,12 +551,12 @@ CoreFreePoolI ( AllFree = TRUE; Offset = 0; - + while ((Offset < DEFAULT_PAGE_ALLOCATION) && (AllFree)) { FSize = LIST_TO_SIZE(Index); while (Offset + FSize <= DEFAULT_PAGE_ALLOCATION) { Free = (POOL_FREE *) &NewPage[Offset]; - ASSERT(NULL != Free); + ASSERT(Free != NULL); if (Free->Signature != POOL_FREE_SIGNATURE) { AllFree = FALSE; } @@ -511,20 +568,20 @@ CoreFreePoolI ( if (AllFree) { // - // All of the pool entries in the same page as Free are free pool + // All of the pool entries in the same page as Free are free pool // entries // Remove all of these pool entries from the free loop lists. // Free = (POOL_FREE *) &NewPage[0]; - ASSERT(NULL != Free); + ASSERT(Free != NULL); Index = Free->Index; Offset = 0; - + while (Offset < DEFAULT_PAGE_ALLOCATION) { FSize = LIST_TO_SIZE(Index); while (Offset + FSize <= DEFAULT_PAGE_ALLOCATION) { Free = (POOL_FREE *) &NewPage[Offset]; - ASSERT(NULL != Free); + ASSERT(Free != NULL); RemoveEntryList (&Free->Link); Offset += FSize; } @@ -540,14 +597,15 @@ CoreFreePoolI ( } // - // If this is an OS specific memory type, then check to see if the last + // If this is an OS specific memory type, then check to see if the last // portion of that memory type has been freed. If it has, then free the // list entry for that memory type // - if (Pool->MemoryType < 0 && Pool->Used == 0) { + if ((INT32)Pool->MemoryType < 0 && Pool->Used == 0) { RemoveEntryList (&Pool->Link); CoreFreePoolI (Pool); } return EFI_SUCCESS; } +