2 * PROJECT: ReactOS Kernel
3 * LICENSE: BSD - See COPYING.ARM in the top level directory
4 * FILE: ntoskrnl/mm/ARM3/expool.c
5 * PURPOSE: ARM Memory Manager Executive Pool Manager
6 * PROGRAMMERS: ReactOS Portable Systems Group
9 /* INCLUDES *******************************************************************/
15 #line 15 "ARM³::EXPOOL"
16 #define MODULE_INVOLVED_IN_ARM3
17 #include "../ARM3/miarm.h"
19 #undef ExAllocatePoolWithQuota
20 #undef ExAllocatePoolWithQuotaTag
22 /* GLOBALS ********************************************************************/
24 ULONG ExpNumberOfPagedPools
;
25 POOL_DESCRIPTOR NonPagedPoolDescriptor
;
26 PPOOL_DESCRIPTOR ExpPagedPoolDescriptor
[16 + 1];
27 PPOOL_DESCRIPTOR PoolVector
[2];
29 PKGUARDED_MUTEX ExpPagedPoolMutex
;
31 /* Pool block/header/list access macros */
32 #define POOL_ENTRY(x) (PPOOL_HEADER)((ULONG_PTR)(x) - sizeof(POOL_HEADER))
33 #define POOL_FREE_BLOCK(x) (PLIST_ENTRY)((ULONG_PTR)(x) + sizeof(POOL_HEADER))
34 #define POOL_BLOCK(x, i) (PPOOL_HEADER)((ULONG_PTR)(x) + ((i) * POOL_BLOCK_SIZE))
35 #define POOL_NEXT_BLOCK(x) POOL_BLOCK((x), (x)->BlockSize)
36 #define POOL_PREV_BLOCK(x) POOL_BLOCK((x), -((x)->PreviousSize))
39 * Pool list access debug macros, similar to Arthur's pfnlist.c work.
40 * Microsoft actually implements similar checks in the Windows Server 2003 SP1
41 * pool code, but only for checked builds.
43 * As of Vista, however, an MSDN Blog entry by a Security Team Manager indicates
44 * that these checks are done even on retail builds, due to the increasing
45 * number of kernel-mode attacks which depend on dangling list pointers and other
46 * kinds of list-based attacks.
48 * For now, I will leave these checks on all the time, but later they are likely
49 * to be DBG-only, at least until there are enough kernel-mode security attacks
50 * against ReactOS to warrant the performance hit.
52 * For now, these are not made inline, so we can get good stack traces.
56 ExpDecodePoolLink(IN PLIST_ENTRY Link
)
58 return (PLIST_ENTRY
)((ULONG_PTR
)Link
& ~1);
63 ExpEncodePoolLink(IN PLIST_ENTRY Link
)
65 return (PLIST_ENTRY
)((ULONG_PTR
)Link
| 1);
70 ExpCheckPoolLinks(IN PLIST_ENTRY ListHead
)
72 if ((ExpDecodePoolLink(ExpDecodePoolLink(ListHead
->Flink
)->Blink
) != ListHead
) ||
73 (ExpDecodePoolLink(ExpDecodePoolLink(ListHead
->Blink
)->Flink
) != ListHead
))
75 KeBugCheckEx(BAD_POOL_HEADER
,
78 (ULONG_PTR
)ExpDecodePoolLink(ExpDecodePoolLink(ListHead
->Flink
)->Blink
),
79 (ULONG_PTR
)ExpDecodePoolLink(ExpDecodePoolLink(ListHead
->Blink
)->Flink
));
85 ExpInitializePoolListHead(IN PLIST_ENTRY ListHead
)
87 ListHead
->Flink
= ListHead
->Blink
= ExpEncodePoolLink(ListHead
);
92 ExpIsPoolListEmpty(IN PLIST_ENTRY ListHead
)
94 return (ExpDecodePoolLink(ListHead
->Flink
) == ListHead
);
99 ExpRemovePoolEntryList(IN PLIST_ENTRY Entry
)
101 PLIST_ENTRY Blink
, Flink
;
102 Flink
= ExpDecodePoolLink(Entry
->Flink
);
103 Blink
= ExpDecodePoolLink(Entry
->Blink
);
104 Flink
->Blink
= ExpEncodePoolLink(Blink
);
105 Blink
->Flink
= ExpEncodePoolLink(Flink
);
110 ExpRemovePoolHeadList(IN PLIST_ENTRY ListHead
)
112 PLIST_ENTRY Entry
, Flink
;
113 Entry
= ExpDecodePoolLink(ListHead
->Flink
);
114 Flink
= ExpDecodePoolLink(Entry
->Flink
);
115 ListHead
->Flink
= ExpEncodePoolLink(Flink
);
116 Flink
->Blink
= ExpEncodePoolLink(ListHead
);
122 ExpRemovePoolTailList(IN PLIST_ENTRY ListHead
)
124 PLIST_ENTRY Entry
, Blink
;
125 Entry
= ExpDecodePoolLink(ListHead
->Blink
);
126 Blink
= ExpDecodePoolLink(Entry
->Blink
);
127 ListHead
->Blink
= ExpEncodePoolLink(Blink
);
128 Blink
->Flink
= ExpEncodePoolLink(ListHead
);
134 ExpInsertPoolTailList(IN PLIST_ENTRY ListHead
,
135 IN PLIST_ENTRY Entry
)
138 ExpCheckPoolLinks(ListHead
);
139 Blink
= ExpDecodePoolLink(ListHead
->Blink
);
140 Entry
->Flink
= ExpEncodePoolLink(ListHead
);
141 Entry
->Blink
= ExpEncodePoolLink(Blink
);
142 Blink
->Flink
= ExpEncodePoolLink(Entry
);
143 ListHead
->Blink
= ExpEncodePoolLink(Entry
);
144 ExpCheckPoolLinks(ListHead
);
149 ExpInsertPoolHeadList(IN PLIST_ENTRY ListHead
,
150 IN PLIST_ENTRY Entry
)
153 ExpCheckPoolLinks(ListHead
);
154 Flink
= ExpDecodePoolLink(ListHead
->Flink
);
155 Entry
->Flink
= ExpEncodePoolLink(Flink
);
156 Entry
->Blink
= ExpEncodePoolLink(ListHead
);
157 Flink
->Blink
= ExpEncodePoolLink(Entry
);
158 ListHead
->Flink
= ExpEncodePoolLink(Entry
);
159 ExpCheckPoolLinks(ListHead
);
164 ExpCheckPoolHeader(IN PPOOL_HEADER Entry
)
166 PPOOL_HEADER PreviousEntry
, NextEntry
;
168 /* Is there a block before this one? */
169 if (Entry
->PreviousSize
)
172 PreviousEntry
= POOL_PREV_BLOCK(Entry
);
174 /* The two blocks must be on the same page! */
175 if (PAGE_ALIGN(Entry
) != PAGE_ALIGN(PreviousEntry
))
177 /* Something is awry */
178 KeBugCheckEx(BAD_POOL_HEADER
,
180 (ULONG_PTR
)PreviousEntry
,
185 /* This block should also indicate that it's as large as we think it is */
186 if (PreviousEntry
->BlockSize
!= Entry
->PreviousSize
)
188 /* Otherwise, someone corrupted one of the sizes */
189 KeBugCheckEx(BAD_POOL_HEADER
,
191 (ULONG_PTR
)PreviousEntry
,
196 else if (PAGE_ALIGN(Entry
) != Entry
)
198 /* If there's no block before us, we are the first block, so we should be on a page boundary */
199 KeBugCheckEx(BAD_POOL_HEADER
,
206 /* This block must have a size */
207 if (!Entry
->BlockSize
)
209 /* Someone must've corrupted this field */
210 KeBugCheckEx(BAD_POOL_HEADER
,
217 /* Okay, now get the next block */
218 NextEntry
= POOL_NEXT_BLOCK(Entry
);
220 /* If this is the last block, then we'll be page-aligned, otherwise, check this block */
221 if (PAGE_ALIGN(NextEntry
) != NextEntry
)
223 /* The two blocks must be on the same page! */
224 if (PAGE_ALIGN(Entry
) != PAGE_ALIGN(NextEntry
))
226 /* Something is messed up */
227 KeBugCheckEx(BAD_POOL_HEADER
,
229 (ULONG_PTR
)NextEntry
,
234 /* And this block should think we are as large as we truly are */
235 if (NextEntry
->PreviousSize
!= Entry
->BlockSize
)
237 /* Otherwise, someone corrupted the field */
238 KeBugCheckEx(BAD_POOL_HEADER
,
240 (ULONG_PTR
)NextEntry
,
249 ExpCheckPoolBlocks(IN PVOID Block
)
255 /* Get the first entry for this page, make sure it really is the first */
256 Entry
= PAGE_ALIGN(Block
);
257 ASSERT(Entry
->PreviousSize
== 0);
259 /* Now scan each entry */
262 /* When we actually found our block, remember this */
263 if (Entry
== Block
) FoundBlock
= TRUE
;
265 /* Now validate this block header */
266 ExpCheckPoolHeader(Entry
);
268 /* And go to the next one, keeping track of our size */
269 Size
+= Entry
->BlockSize
;
270 Entry
= POOL_NEXT_BLOCK(Entry
);
272 /* If we hit the last block, stop */
273 if (Size
>= (PAGE_SIZE
/ POOL_BLOCK_SIZE
)) break;
275 /* If we hit the end of the page, stop */
276 if (PAGE_ALIGN(Entry
) == Entry
) break;
279 /* We must've found our block, and we must have hit the end of the page */
280 if ((PAGE_ALIGN(Entry
) != Entry
) || !(FoundBlock
))
282 /* Otherwise, the blocks are messed up */
283 KeBugCheckEx(BAD_POOL_HEADER
, 10, (ULONG_PTR
)Block
, __LINE__
, (ULONG_PTR
)Entry
);
287 /* PRIVATE FUNCTIONS **********************************************************/
292 ExInitializePoolDescriptor(IN PPOOL_DESCRIPTOR PoolDescriptor
,
293 IN POOL_TYPE PoolType
,
298 PLIST_ENTRY NextEntry
, LastEntry
;
301 // Setup the descriptor based on the caller's request
303 PoolDescriptor
->PoolType
= PoolType
;
304 PoolDescriptor
->PoolIndex
= PoolIndex
;
305 PoolDescriptor
->Threshold
= Threshold
;
306 PoolDescriptor
->LockAddress
= PoolLock
;
309 // Initialize accounting data
311 PoolDescriptor
->RunningAllocs
= 0;
312 PoolDescriptor
->RunningDeAllocs
= 0;
313 PoolDescriptor
->TotalPages
= 0;
314 PoolDescriptor
->TotalBytes
= 0;
315 PoolDescriptor
->TotalBigPages
= 0;
318 // Nothing pending for now
320 PoolDescriptor
->PendingFrees
= NULL
;
321 PoolDescriptor
->PendingFreeDepth
= 0;
324 // Loop all the descriptor's allocation lists and initialize them
326 NextEntry
= PoolDescriptor
->ListHeads
;
327 LastEntry
= NextEntry
+ POOL_LISTS_PER_PAGE
;
328 while (NextEntry
< LastEntry
)
330 ExpInitializePoolListHead(NextEntry
);
338 InitializePool(IN POOL_TYPE PoolType
,
341 PPOOL_DESCRIPTOR Descriptor
;
344 // Check what kind of pool this is
346 if (PoolType
== NonPagedPool
)
349 // Initialize the nonpaged pool descriptor
351 PoolVector
[NonPagedPool
] = &NonPagedPoolDescriptor
;
352 ExInitializePoolDescriptor(PoolVector
[NonPagedPool
],
361 // Allocate the pool descriptor
363 Descriptor
= ExAllocatePoolWithTag(NonPagedPool
,
364 sizeof(KGUARDED_MUTEX
) +
365 sizeof(POOL_DESCRIPTOR
),
370 // This is really bad...
372 KeBugCheckEx(MUST_SUCCEED_POOL_EMPTY
,
380 // Setup the vector and guarded mutex for paged pool
382 PoolVector
[PagedPool
] = Descriptor
;
383 ExpPagedPoolMutex
= (PKGUARDED_MUTEX
)(Descriptor
+ 1);
384 KeInitializeGuardedMutex(ExpPagedPoolMutex
);
385 ExInitializePoolDescriptor(Descriptor
,
395 ExLockPool(IN PPOOL_DESCRIPTOR Descriptor
)
398 // Check if this is nonpaged pool
400 if ((Descriptor
->PoolType
& BASE_POOL_TYPE_MASK
) == NonPagedPool
)
403 // Use the queued spin lock
405 return KeAcquireQueuedSpinLock(LockQueueNonPagedPoolLock
);
410 // Use the guarded mutex
412 KeAcquireGuardedMutex(Descriptor
->LockAddress
);
419 ExUnlockPool(IN PPOOL_DESCRIPTOR Descriptor
,
423 // Check if this is nonpaged pool
425 if ((Descriptor
->PoolType
& BASE_POOL_TYPE_MASK
) == NonPagedPool
)
428 // Use the queued spin lock
430 KeReleaseQueuedSpinLock(LockQueueNonPagedPoolLock
, OldIrql
);
435 // Use the guarded mutex
437 KeReleaseGuardedMutex(Descriptor
->LockAddress
);
441 /* PUBLIC FUNCTIONS ***********************************************************/
448 ExAllocatePoolWithTag(IN POOL_TYPE PoolType
,
449 IN SIZE_T NumberOfBytes
,
452 PPOOL_DESCRIPTOR PoolDesc
;
453 PLIST_ENTRY ListHead
;
454 PPOOL_HEADER Entry
, NextEntry
, FragmentEntry
;
459 // Some sanity checks
462 ASSERT(Tag
!= ' GIB');
463 ASSERT(NumberOfBytes
!= 0);
466 // Get the pool type and its corresponding vector for this request
468 PoolType
= PoolType
& BASE_POOL_TYPE_MASK
;
469 PoolDesc
= PoolVector
[PoolType
];
470 ASSERT(PoolDesc
!= NULL
);
473 // Check if this is a big page allocation
475 if (NumberOfBytes
> POOL_MAX_ALLOC
)
478 // Then just return the number of pages requested
480 return MiAllocatePoolPages(PoolType
, NumberOfBytes
);
484 // Should never request 0 bytes from the pool, but since so many drivers do
485 // it, we'll just assume they want 1 byte, based on NT's similar behavior
487 if (!NumberOfBytes
) NumberOfBytes
= 1;
490 // A pool allocation is defined by its data, a linked list to connect it to
491 // the free list (if necessary), and a pool header to store accounting info.
492 // Calculate this size, then convert it into a block size (units of pool
495 // Note that i cannot overflow (past POOL_LISTS_PER_PAGE) because any such
496 // request would've been treated as a POOL_MAX_ALLOC earlier and resulted in
497 // the direct allocation of pages.
499 i
= (NumberOfBytes
+ sizeof(POOL_HEADER
) + (POOL_BLOCK_SIZE
- 1)) / POOL_BLOCK_SIZE
;
502 // Loop in the free lists looking for a block if this size. Start with the
503 // list optimized for this kind of size lookup
505 ListHead
= &PoolDesc
->ListHeads
[i
];
509 // Are there any free entries available on this list?
511 if (!ExpIsPoolListEmpty(ListHead
))
514 // Acquire the pool lock now
516 OldIrql
= ExLockPool(PoolDesc
);
519 // And make sure the list still has entries
521 if (ExpIsPoolListEmpty(ListHead
))
524 // Someone raced us (and won) before we had a chance to acquire
529 ExUnlockPool(PoolDesc
, OldIrql
);
535 // Remove a free entry from the list
536 // Note that due to the way we insert free blocks into multiple lists
537 // there is a guarantee that any block on this list will either be
538 // of the correct size, or perhaps larger.
540 ExpCheckPoolLinks(ListHead
);
541 Entry
= POOL_ENTRY(ExpRemovePoolHeadList(ListHead
));
542 ExpCheckPoolLinks(ListHead
);
543 ExpCheckPoolBlocks(Entry
);
544 ASSERT(Entry
->BlockSize
>= i
);
545 ASSERT(Entry
->PoolType
== 0);
548 // Check if this block is larger that what we need. The block could
549 // not possibly be smaller, due to the reason explained above (and
550 // we would've asserted on a checked build if this was the case).
552 if (Entry
->BlockSize
!= i
)
555 // Is there an entry before this one?
557 if (Entry
->PreviousSize
== 0)
560 // There isn't anyone before us, so take the next block and
561 // turn it into a fragment that contains the leftover data
562 // that we don't need to satisfy the caller's request
564 FragmentEntry
= POOL_BLOCK(Entry
, i
);
565 FragmentEntry
->BlockSize
= Entry
->BlockSize
- i
;
568 // And make it point back to us
570 FragmentEntry
->PreviousSize
= i
;
573 // Now get the block that follows the new fragment and check
574 // if it's still on the same page as us (and not at the end)
576 NextEntry
= POOL_NEXT_BLOCK(FragmentEntry
);
577 if (PAGE_ALIGN(NextEntry
) != NextEntry
)
580 // Adjust this next block to point to our newly created
583 NextEntry
->PreviousSize
= FragmentEntry
->BlockSize
;
589 // There is a free entry before us, which we know is smaller
590 // so we'll make this entry the fragment instead
592 FragmentEntry
= Entry
;
595 // And then we'll remove from it the actual size required.
596 // Now the entry is a leftover free fragment
598 Entry
->BlockSize
-= i
;
601 // Now let's go to the next entry after the fragment (which
602 // used to point to our original free entry) and make it
603 // reference the new fragment entry instead.
605 // This is the entry that will actually end up holding the
608 Entry
= POOL_NEXT_BLOCK(Entry
);
609 Entry
->PreviousSize
= FragmentEntry
->BlockSize
;
612 // And now let's go to the entry after that one and check if
613 // it's still on the same page, and not at the end
615 NextEntry
= POOL_BLOCK(Entry
, i
);
616 if (PAGE_ALIGN(NextEntry
) != NextEntry
)
619 // Make it reference the allocation entry
621 NextEntry
->PreviousSize
= i
;
626 // Now our (allocation) entry is the right size
628 Entry
->BlockSize
= i
;
631 // And the next entry is now the free fragment which contains
632 // the remaining difference between how big the original entry
633 // was, and the actual size the caller needs/requested.
635 FragmentEntry
->PoolType
= 0;
636 BlockSize
= FragmentEntry
->BlockSize
;
639 // Now check if enough free bytes remained for us to have a
640 // "full" entry, which contains enough bytes for a linked list
641 // and thus can be used for allocations (up to 8 bytes...)
643 ExpCheckPoolLinks(&PoolDesc
->ListHeads
[BlockSize
- 1]);
647 // Insert the free entry into the free list for this size
649 ExpInsertPoolTailList(&PoolDesc
->ListHeads
[BlockSize
- 1],
650 POOL_FREE_BLOCK(FragmentEntry
));
651 ExpCheckPoolLinks(POOL_FREE_BLOCK(FragmentEntry
));
656 // We have found an entry for this allocation, so set the pool type
657 // and release the lock since we're done
659 Entry
->PoolType
= PoolType
+ 1;
660 ExpCheckPoolBlocks(Entry
);
661 ExUnlockPool(PoolDesc
, OldIrql
);
664 // Return the pool allocation
666 Entry
->PoolTag
= Tag
;
667 (POOL_FREE_BLOCK(Entry
))->Flink
= NULL
;
668 (POOL_FREE_BLOCK(Entry
))->Blink
= NULL
;
669 return POOL_FREE_BLOCK(Entry
);
671 } while (++ListHead
!= &PoolDesc
->ListHeads
[POOL_LISTS_PER_PAGE
]);
674 // There were no free entries left, so we have to allocate a new fresh page
676 Entry
= MiAllocatePoolPages(PoolType
, PAGE_SIZE
);
677 ASSERT(Entry
!= NULL
);
679 Entry
->BlockSize
= i
;
680 Entry
->PoolType
= PoolType
+ 1;
683 // This page will have two entries -- one for the allocation (which we just
684 // created above), and one for the remaining free bytes, which we're about
685 // to create now. The free bytes are the whole page minus what was allocated
686 // and then converted into units of block headers.
688 BlockSize
= (PAGE_SIZE
/ POOL_BLOCK_SIZE
) - i
;
689 FragmentEntry
= POOL_BLOCK(Entry
, i
);
690 FragmentEntry
->Ulong1
= 0;
691 FragmentEntry
->BlockSize
= BlockSize
;
692 FragmentEntry
->PreviousSize
= i
;
695 // Now check if enough free bytes remained for us to have a "full" entry,
696 // which contains enough bytes for a linked list and thus can be used for
697 // allocations (up to 8 bytes...)
699 if (FragmentEntry
->BlockSize
!= 1)
702 // Excellent -- acquire the pool lock
704 OldIrql
= ExLockPool(PoolDesc
);
707 // And insert the free entry into the free list for this block size
709 ExpCheckPoolLinks(&PoolDesc
->ListHeads
[BlockSize
- 1]);
710 ExpInsertPoolTailList(&PoolDesc
->ListHeads
[BlockSize
- 1],
711 POOL_FREE_BLOCK(FragmentEntry
));
712 ExpCheckPoolLinks(POOL_FREE_BLOCK(FragmentEntry
));
715 // Release the pool lock
717 ExpCheckPoolBlocks(Entry
);
718 ExUnlockPool(PoolDesc
, OldIrql
);
722 // And return the pool allocation
724 ExpCheckPoolBlocks(Entry
);
725 Entry
->PoolTag
= Tag
;
726 return POOL_FREE_BLOCK(Entry
);
734 ExAllocatePool(POOL_TYPE PoolType
,
735 SIZE_T NumberOfBytes
)
738 // Use a default tag of "None"
740 return ExAllocatePoolWithTag(PoolType
, NumberOfBytes
, 'enoN');
748 ExFreePoolWithTag(IN PVOID P
,
751 PPOOL_HEADER Entry
, NextEntry
;
755 PPOOL_DESCRIPTOR PoolDesc
;
756 BOOLEAN Combined
= FALSE
;
759 // Quickly deal with big page allocations
761 if (PAGE_ALIGN(P
) == P
)
768 // Get the entry for this pool allocation
769 // The pointer math here may look wrong or confusing, but it is quite right
775 // Get the size of the entry, and it's pool type, then load the descriptor
776 // for this pool type
778 BlockSize
= Entry
->BlockSize
;
779 PoolType
= (Entry
->PoolType
- 1) & BASE_POOL_TYPE_MASK
;
780 PoolDesc
= PoolVector
[PoolType
];
783 // Get the pointer to the next entry
785 NextEntry
= POOL_BLOCK(Entry
, BlockSize
);
788 // Acquire the pool lock
790 OldIrql
= ExLockPool(PoolDesc
);
793 // Check if the next allocation is at the end of the page
795 ExpCheckPoolBlocks(Entry
);
796 if (PAGE_ALIGN(NextEntry
) != NextEntry
)
799 // We may be able to combine the block if it's free
801 if (NextEntry
->PoolType
== 0)
804 // The next block is free, so we'll do a combine
809 // Make sure there's actual data in the block -- anything smaller
810 // than this means we only have the header, so there's no linked list
813 if ((NextEntry
->BlockSize
!= 1))
816 // The block is at least big enough to have a linked list, so go
817 // ahead and remove it
819 ExpCheckPoolLinks(POOL_FREE_BLOCK(NextEntry
));
820 ExpRemovePoolEntryList(POOL_FREE_BLOCK(NextEntry
));
821 ExpCheckPoolLinks(ExpDecodePoolLink((POOL_FREE_BLOCK(NextEntry
))->Flink
));
822 ExpCheckPoolLinks(ExpDecodePoolLink((POOL_FREE_BLOCK(NextEntry
))->Blink
));
826 // Our entry is now combined with the next entry
828 Entry
->BlockSize
= Entry
->BlockSize
+ NextEntry
->BlockSize
;
833 // Now check if there was a previous entry on the same page as us
835 if (Entry
->PreviousSize
)
838 // Great, grab that entry and check if it's free
840 NextEntry
= POOL_PREV_BLOCK(Entry
);
841 if (NextEntry
->PoolType
== 0)
844 // It is, so we can do a combine
849 // Make sure there's actual data in the block -- anything smaller
850 // than this means we only have the header so there's no linked list
853 if ((NextEntry
->BlockSize
!= 1))
856 // The block is at least big enough to have a linked list, so go
857 // ahead and remove it
859 ExpCheckPoolLinks(POOL_FREE_BLOCK(NextEntry
));
860 ExpRemovePoolEntryList(POOL_FREE_BLOCK(NextEntry
));
861 ExpCheckPoolLinks(ExpDecodePoolLink((POOL_FREE_BLOCK(NextEntry
))->Flink
));
862 ExpCheckPoolLinks(ExpDecodePoolLink((POOL_FREE_BLOCK(NextEntry
))->Blink
));
866 // Combine our original block (which might've already been combined
867 // with the next block), into the previous block
869 NextEntry
->BlockSize
= NextEntry
->BlockSize
+ Entry
->BlockSize
;
872 // And now we'll work with the previous block instead
879 // By now, it may have been possible for our combined blocks to actually
880 // have made up a full page (if there were only 2-3 allocations on the
881 // page, they could've all been combined).
883 if ((PAGE_ALIGN(Entry
) == Entry
) &&
884 (PAGE_ALIGN(POOL_NEXT_BLOCK(Entry
)) == POOL_NEXT_BLOCK(Entry
)))
887 // In this case, release the pool lock, and free the page
889 ExUnlockPool(PoolDesc
, OldIrql
);
890 MiFreePoolPages(Entry
);
895 // Otherwise, we now have a free block (or a combination of 2 or 3)
898 BlockSize
= Entry
->BlockSize
;
899 ASSERT(BlockSize
!= 1);
902 // Check if we actually did combine it with anyone
907 // Get the first combined block (either our original to begin with, or
908 // the one after the original, depending if we combined with the previous)
910 NextEntry
= POOL_NEXT_BLOCK(Entry
);
913 // As long as the next block isn't on a page boundary, have it point
916 if (PAGE_ALIGN(NextEntry
) != NextEntry
) NextEntry
->PreviousSize
= BlockSize
;
920 // Insert this new free block, and release the pool lock
922 ExpInsertPoolHeadList(&PoolDesc
->ListHeads
[BlockSize
- 1], POOL_FREE_BLOCK(Entry
));
923 ExpCheckPoolLinks(POOL_FREE_BLOCK(Entry
));
924 ExUnlockPool(PoolDesc
, OldIrql
);
935 // Just free without checking for the tag
937 ExFreePoolWithTag(P
, 0);
945 ExQueryPoolBlockSize(IN PVOID PoolBlock
,
946 OUT PBOOLEAN QuotaCharged
)
961 ExAllocatePoolWithQuota(IN POOL_TYPE PoolType
,
962 IN SIZE_T NumberOfBytes
)
967 return ExAllocatePoolWithQuotaTag(PoolType
, NumberOfBytes
, 'enoN');
975 ExAllocatePoolWithTagPriority(IN POOL_TYPE PoolType
,
976 IN SIZE_T NumberOfBytes
,
978 IN EX_POOL_PRIORITY Priority
)
984 return ExAllocatePoolWithTag(PoolType
, NumberOfBytes
, Tag
);
992 ExAllocatePoolWithQuotaTag(IN POOL_TYPE PoolType
,
993 IN SIZE_T NumberOfBytes
,
1000 return ExAllocatePoolWithTag(PoolType
, NumberOfBytes
, Tag
);