[NTOSKRNL]
[reactos.git] / reactos / ntoskrnl / mm / ARM3 / expool.c
1 /*
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
7 */
8
9 /* INCLUDES *******************************************************************/
10
11 #include <ntoskrnl.h>
12 #define NDEBUG
13 #include <debug.h>
14
15 #define MODULE_INVOLVED_IN_ARM3
16 #include "../ARM3/miarm.h"
17
18 #undef ExAllocatePoolWithQuota
19 #undef ExAllocatePoolWithQuotaTag
20
21 /* GLOBALS ********************************************************************/
22
23 ULONG ExpNumberOfPagedPools;
24 POOL_DESCRIPTOR NonPagedPoolDescriptor;
25 PPOOL_DESCRIPTOR ExpPagedPoolDescriptor[16 + 1];
26 PPOOL_DESCRIPTOR PoolVector[2];
27 PVOID PoolTrackTable;
28 PKGUARDED_MUTEX ExpPagedPoolMutex;
29
30 /* Pool block/header/list access macros */
31 #define POOL_ENTRY(x) (PPOOL_HEADER)((ULONG_PTR)(x) - sizeof(POOL_HEADER))
32 #define POOL_FREE_BLOCK(x) (PLIST_ENTRY)((ULONG_PTR)(x) + sizeof(POOL_HEADER))
33 #define POOL_BLOCK(x, i) (PPOOL_HEADER)((ULONG_PTR)(x) + ((i) * POOL_BLOCK_SIZE))
34 #define POOL_NEXT_BLOCK(x) POOL_BLOCK((x), (x)->BlockSize)
35 #define POOL_PREV_BLOCK(x) POOL_BLOCK((x), -((x)->PreviousSize))
36
37 /*
38 * Pool list access debug macros, similar to Arthur's pfnlist.c work.
39 * Microsoft actually implements similar checks in the Windows Server 2003 SP1
40 * pool code, but only for checked builds.
41 *
42 * As of Vista, however, an MSDN Blog entry by a Security Team Manager indicates
43 * that these checks are done even on retail builds, due to the increasing
44 * number of kernel-mode attacks which depend on dangling list pointers and other
45 * kinds of list-based attacks.
46 *
47 * For now, I will leave these checks on all the time, but later they are likely
48 * to be DBG-only, at least until there are enough kernel-mode security attacks
49 * against ReactOS to warrant the performance hit.
50 *
51 * For now, these are not made inline, so we can get good stack traces.
52 */
53 PLIST_ENTRY
54 NTAPI
55 ExpDecodePoolLink(IN PLIST_ENTRY Link)
56 {
57 return (PLIST_ENTRY)((ULONG_PTR)Link & ~1);
58 }
59
60 PLIST_ENTRY
61 NTAPI
62 ExpEncodePoolLink(IN PLIST_ENTRY Link)
63 {
64 return (PLIST_ENTRY)((ULONG_PTR)Link | 1);
65 }
66
67 VOID
68 NTAPI
69 ExpCheckPoolLinks(IN PLIST_ENTRY ListHead)
70 {
71 if ((ExpDecodePoolLink(ExpDecodePoolLink(ListHead->Flink)->Blink) != ListHead) ||
72 (ExpDecodePoolLink(ExpDecodePoolLink(ListHead->Blink)->Flink) != ListHead))
73 {
74 KeBugCheckEx(BAD_POOL_HEADER,
75 3,
76 (ULONG_PTR)ListHead,
77 (ULONG_PTR)ExpDecodePoolLink(ExpDecodePoolLink(ListHead->Flink)->Blink),
78 (ULONG_PTR)ExpDecodePoolLink(ExpDecodePoolLink(ListHead->Blink)->Flink));
79 }
80 }
81
82 VOID
83 NTAPI
84 ExpInitializePoolListHead(IN PLIST_ENTRY ListHead)
85 {
86 ListHead->Flink = ListHead->Blink = ExpEncodePoolLink(ListHead);
87 }
88
89 BOOLEAN
90 NTAPI
91 ExpIsPoolListEmpty(IN PLIST_ENTRY ListHead)
92 {
93 return (ExpDecodePoolLink(ListHead->Flink) == ListHead);
94 }
95
96 VOID
97 NTAPI
98 ExpRemovePoolEntryList(IN PLIST_ENTRY Entry)
99 {
100 PLIST_ENTRY Blink, Flink;
101 Flink = ExpDecodePoolLink(Entry->Flink);
102 Blink = ExpDecodePoolLink(Entry->Blink);
103 Flink->Blink = ExpEncodePoolLink(Blink);
104 Blink->Flink = ExpEncodePoolLink(Flink);
105 }
106
107 PLIST_ENTRY
108 NTAPI
109 ExpRemovePoolHeadList(IN PLIST_ENTRY ListHead)
110 {
111 PLIST_ENTRY Entry, Flink;
112 Entry = ExpDecodePoolLink(ListHead->Flink);
113 Flink = ExpDecodePoolLink(Entry->Flink);
114 ListHead->Flink = ExpEncodePoolLink(Flink);
115 Flink->Blink = ExpEncodePoolLink(ListHead);
116 return Entry;
117 }
118
119 PLIST_ENTRY
120 NTAPI
121 ExpRemovePoolTailList(IN PLIST_ENTRY ListHead)
122 {
123 PLIST_ENTRY Entry, Blink;
124 Entry = ExpDecodePoolLink(ListHead->Blink);
125 Blink = ExpDecodePoolLink(Entry->Blink);
126 ListHead->Blink = ExpEncodePoolLink(Blink);
127 Blink->Flink = ExpEncodePoolLink(ListHead);
128 return Entry;
129 }
130
131 VOID
132 NTAPI
133 ExpInsertPoolTailList(IN PLIST_ENTRY ListHead,
134 IN PLIST_ENTRY Entry)
135 {
136 PLIST_ENTRY Blink;
137 ExpCheckPoolLinks(ListHead);
138 Blink = ExpDecodePoolLink(ListHead->Blink);
139 Entry->Flink = ExpEncodePoolLink(ListHead);
140 Entry->Blink = ExpEncodePoolLink(Blink);
141 Blink->Flink = ExpEncodePoolLink(Entry);
142 ListHead->Blink = ExpEncodePoolLink(Entry);
143 ExpCheckPoolLinks(ListHead);
144 }
145
146 VOID
147 NTAPI
148 ExpInsertPoolHeadList(IN PLIST_ENTRY ListHead,
149 IN PLIST_ENTRY Entry)
150 {
151 PLIST_ENTRY Flink;
152 ExpCheckPoolLinks(ListHead);
153 Flink = ExpDecodePoolLink(ListHead->Flink);
154 Entry->Flink = ExpEncodePoolLink(Flink);
155 Entry->Blink = ExpEncodePoolLink(ListHead);
156 Flink->Blink = ExpEncodePoolLink(Entry);
157 ListHead->Flink = ExpEncodePoolLink(Entry);
158 ExpCheckPoolLinks(ListHead);
159 }
160
161 VOID
162 NTAPI
163 ExpCheckPoolHeader(IN PPOOL_HEADER Entry)
164 {
165 PPOOL_HEADER PreviousEntry, NextEntry;
166
167 /* Is there a block before this one? */
168 if (Entry->PreviousSize)
169 {
170 /* Get it */
171 PreviousEntry = POOL_PREV_BLOCK(Entry);
172
173 /* The two blocks must be on the same page! */
174 if (PAGE_ALIGN(Entry) != PAGE_ALIGN(PreviousEntry))
175 {
176 /* Something is awry */
177 KeBugCheckEx(BAD_POOL_HEADER,
178 6,
179 (ULONG_PTR)PreviousEntry,
180 __LINE__,
181 (ULONG_PTR)Entry);
182 }
183
184 /* This block should also indicate that it's as large as we think it is */
185 if (PreviousEntry->BlockSize != Entry->PreviousSize)
186 {
187 /* Otherwise, someone corrupted one of the sizes */
188 KeBugCheckEx(BAD_POOL_HEADER,
189 5,
190 (ULONG_PTR)PreviousEntry,
191 __LINE__,
192 (ULONG_PTR)Entry);
193 }
194 }
195 else if (PAGE_ALIGN(Entry) != Entry)
196 {
197 /* If there's no block before us, we are the first block, so we should be on a page boundary */
198 KeBugCheckEx(BAD_POOL_HEADER,
199 7,
200 0,
201 __LINE__,
202 (ULONG_PTR)Entry);
203 }
204
205 /* This block must have a size */
206 if (!Entry->BlockSize)
207 {
208 /* Someone must've corrupted this field */
209 KeBugCheckEx(BAD_POOL_HEADER,
210 8,
211 0,
212 __LINE__,
213 (ULONG_PTR)Entry);
214 }
215
216 /* Okay, now get the next block */
217 NextEntry = POOL_NEXT_BLOCK(Entry);
218
219 /* If this is the last block, then we'll be page-aligned, otherwise, check this block */
220 if (PAGE_ALIGN(NextEntry) != NextEntry)
221 {
222 /* The two blocks must be on the same page! */
223 if (PAGE_ALIGN(Entry) != PAGE_ALIGN(NextEntry))
224 {
225 /* Something is messed up */
226 KeBugCheckEx(BAD_POOL_HEADER,
227 9,
228 (ULONG_PTR)NextEntry,
229 __LINE__,
230 (ULONG_PTR)Entry);
231 }
232
233 /* And this block should think we are as large as we truly are */
234 if (NextEntry->PreviousSize != Entry->BlockSize)
235 {
236 /* Otherwise, someone corrupted the field */
237 KeBugCheckEx(BAD_POOL_HEADER,
238 5,
239 (ULONG_PTR)NextEntry,
240 __LINE__,
241 (ULONG_PTR)Entry);
242 }
243 }
244 }
245
246 VOID
247 NTAPI
248 ExpCheckPoolBlocks(IN PVOID Block)
249 {
250 BOOLEAN FoundBlock = FALSE;
251 SIZE_T Size = 0;
252 PPOOL_HEADER Entry;
253
254 /* Get the first entry for this page, make sure it really is the first */
255 Entry = PAGE_ALIGN(Block);
256 ASSERT(Entry->PreviousSize == 0);
257
258 /* Now scan each entry */
259 while (TRUE)
260 {
261 /* When we actually found our block, remember this */
262 if (Entry == Block) FoundBlock = TRUE;
263
264 /* Now validate this block header */
265 ExpCheckPoolHeader(Entry);
266
267 /* And go to the next one, keeping track of our size */
268 Size += Entry->BlockSize;
269 Entry = POOL_NEXT_BLOCK(Entry);
270
271 /* If we hit the last block, stop */
272 if (Size >= (PAGE_SIZE / POOL_BLOCK_SIZE)) break;
273
274 /* If we hit the end of the page, stop */
275 if (PAGE_ALIGN(Entry) == Entry) break;
276 }
277
278 /* We must've found our block, and we must have hit the end of the page */
279 if ((PAGE_ALIGN(Entry) != Entry) || !(FoundBlock))
280 {
281 /* Otherwise, the blocks are messed up */
282 KeBugCheckEx(BAD_POOL_HEADER, 10, (ULONG_PTR)Block, __LINE__, (ULONG_PTR)Entry);
283 }
284 }
285
286 /* PRIVATE FUNCTIONS **********************************************************/
287
288 VOID
289 NTAPI
290 INIT_FUNCTION
291 ExInitializePoolDescriptor(IN PPOOL_DESCRIPTOR PoolDescriptor,
292 IN POOL_TYPE PoolType,
293 IN ULONG PoolIndex,
294 IN ULONG Threshold,
295 IN PVOID PoolLock)
296 {
297 PLIST_ENTRY NextEntry, LastEntry;
298
299 //
300 // Setup the descriptor based on the caller's request
301 //
302 PoolDescriptor->PoolType = PoolType;
303 PoolDescriptor->PoolIndex = PoolIndex;
304 PoolDescriptor->Threshold = Threshold;
305 PoolDescriptor->LockAddress = PoolLock;
306
307 //
308 // Initialize accounting data
309 //
310 PoolDescriptor->RunningAllocs = 0;
311 PoolDescriptor->RunningDeAllocs = 0;
312 PoolDescriptor->TotalPages = 0;
313 PoolDescriptor->TotalBytes = 0;
314 PoolDescriptor->TotalBigPages = 0;
315
316 //
317 // Nothing pending for now
318 //
319 PoolDescriptor->PendingFrees = NULL;
320 PoolDescriptor->PendingFreeDepth = 0;
321
322 //
323 // Loop all the descriptor's allocation lists and initialize them
324 //
325 NextEntry = PoolDescriptor->ListHeads;
326 LastEntry = NextEntry + POOL_LISTS_PER_PAGE;
327 while (NextEntry < LastEntry)
328 {
329 ExpInitializePoolListHead(NextEntry);
330 NextEntry++;
331 }
332 }
333
334 VOID
335 NTAPI
336 INIT_FUNCTION
337 InitializePool(IN POOL_TYPE PoolType,
338 IN ULONG Threshold)
339 {
340 PPOOL_DESCRIPTOR Descriptor;
341
342 //
343 // Check what kind of pool this is
344 //
345 if (PoolType == NonPagedPool)
346 {
347 //
348 // Initialize the nonpaged pool descriptor
349 //
350 PoolVector[NonPagedPool] = &NonPagedPoolDescriptor;
351 ExInitializePoolDescriptor(PoolVector[NonPagedPool],
352 NonPagedPool,
353 0,
354 Threshold,
355 NULL);
356 }
357 else
358 {
359 //
360 // Allocate the pool descriptor
361 //
362 Descriptor = ExAllocatePoolWithTag(NonPagedPool,
363 sizeof(KGUARDED_MUTEX) +
364 sizeof(POOL_DESCRIPTOR),
365 'looP');
366 if (!Descriptor)
367 {
368 //
369 // This is really bad...
370 //
371 KeBugCheckEx(MUST_SUCCEED_POOL_EMPTY,
372 0,
373 -1,
374 -1,
375 -1);
376 }
377
378 //
379 // Setup the vector and guarded mutex for paged pool
380 //
381 PoolVector[PagedPool] = Descriptor;
382 ExpPagedPoolMutex = (PKGUARDED_MUTEX)(Descriptor + 1);
383 KeInitializeGuardedMutex(ExpPagedPoolMutex);
384 ExInitializePoolDescriptor(Descriptor,
385 PagedPool,
386 0,
387 Threshold,
388 ExpPagedPoolMutex);
389 }
390 }
391
392 FORCEINLINE
393 KIRQL
394 ExLockPool(IN PPOOL_DESCRIPTOR Descriptor)
395 {
396 //
397 // Check if this is nonpaged pool
398 //
399 if ((Descriptor->PoolType & BASE_POOL_TYPE_MASK) == NonPagedPool)
400 {
401 //
402 // Use the queued spin lock
403 //
404 return KeAcquireQueuedSpinLock(LockQueueNonPagedPoolLock);
405 }
406 else
407 {
408 //
409 // Use the guarded mutex
410 //
411 KeAcquireGuardedMutex(Descriptor->LockAddress);
412 return APC_LEVEL;
413 }
414 }
415
416 FORCEINLINE
417 VOID
418 ExUnlockPool(IN PPOOL_DESCRIPTOR Descriptor,
419 IN KIRQL OldIrql)
420 {
421 //
422 // Check if this is nonpaged pool
423 //
424 if ((Descriptor->PoolType & BASE_POOL_TYPE_MASK) == NonPagedPool)
425 {
426 //
427 // Use the queued spin lock
428 //
429 KeReleaseQueuedSpinLock(LockQueueNonPagedPoolLock, OldIrql);
430 }
431 else
432 {
433 //
434 // Use the guarded mutex
435 //
436 KeReleaseGuardedMutex(Descriptor->LockAddress);
437 }
438 }
439
440 /* PUBLIC FUNCTIONS ***********************************************************/
441
442 /*
443 * @implemented
444 */
445 PVOID
446 NTAPI
447 ExAllocatePoolWithTag(IN POOL_TYPE PoolType,
448 IN SIZE_T NumberOfBytes,
449 IN ULONG Tag)
450 {
451 PPOOL_DESCRIPTOR PoolDesc;
452 PLIST_ENTRY ListHead;
453 PPOOL_HEADER Entry, NextEntry, FragmentEntry;
454 KIRQL OldIrql;
455 ULONG BlockSize, i;
456
457 //
458 // Some sanity checks
459 //
460 ASSERT(Tag != 0);
461 ASSERT(Tag != ' GIB');
462 ASSERT(NumberOfBytes != 0);
463
464 //
465 // Get the pool type and its corresponding vector for this request
466 //
467 PoolType = PoolType & BASE_POOL_TYPE_MASK;
468 PoolDesc = PoolVector[PoolType];
469 ASSERT(PoolDesc != NULL);
470
471 //
472 // Check if this is a big page allocation
473 //
474 if (NumberOfBytes > POOL_MAX_ALLOC)
475 {
476 //
477 // Then just return the number of pages requested
478 //
479 return MiAllocatePoolPages(PoolType, NumberOfBytes);
480 }
481
482 //
483 // Should never request 0 bytes from the pool, but since so many drivers do
484 // it, we'll just assume they want 1 byte, based on NT's similar behavior
485 //
486 if (!NumberOfBytes) NumberOfBytes = 1;
487
488 //
489 // A pool allocation is defined by its data, a linked list to connect it to
490 // the free list (if necessary), and a pool header to store accounting info.
491 // Calculate this size, then convert it into a block size (units of pool
492 // headers)
493 //
494 // Note that i cannot overflow (past POOL_LISTS_PER_PAGE) because any such
495 // request would've been treated as a POOL_MAX_ALLOC earlier and resulted in
496 // the direct allocation of pages.
497 //
498 i = (NumberOfBytes + sizeof(POOL_HEADER) + (POOL_BLOCK_SIZE - 1)) / POOL_BLOCK_SIZE;
499
500 //
501 // Loop in the free lists looking for a block if this size. Start with the
502 // list optimized for this kind of size lookup
503 //
504 ListHead = &PoolDesc->ListHeads[i];
505 do
506 {
507 //
508 // Are there any free entries available on this list?
509 //
510 if (!ExpIsPoolListEmpty(ListHead))
511 {
512 //
513 // Acquire the pool lock now
514 //
515 OldIrql = ExLockPool(PoolDesc);
516
517 //
518 // And make sure the list still has entries
519 //
520 if (ExpIsPoolListEmpty(ListHead))
521 {
522 //
523 // Someone raced us (and won) before we had a chance to acquire
524 // the lock.
525 //
526 // Try again!
527 //
528 ExUnlockPool(PoolDesc, OldIrql);
529 ListHead++;
530 continue;
531 }
532
533 //
534 // Remove a free entry from the list
535 // Note that due to the way we insert free blocks into multiple lists
536 // there is a guarantee that any block on this list will either be
537 // of the correct size, or perhaps larger.
538 //
539 ExpCheckPoolLinks(ListHead);
540 Entry = POOL_ENTRY(ExpRemovePoolHeadList(ListHead));
541 ExpCheckPoolLinks(ListHead);
542 ExpCheckPoolBlocks(Entry);
543 ASSERT(Entry->BlockSize >= i);
544 ASSERT(Entry->PoolType == 0);
545
546 //
547 // Check if this block is larger that what we need. The block could
548 // not possibly be smaller, due to the reason explained above (and
549 // we would've asserted on a checked build if this was the case).
550 //
551 if (Entry->BlockSize != i)
552 {
553 //
554 // Is there an entry before this one?
555 //
556 if (Entry->PreviousSize == 0)
557 {
558 //
559 // There isn't anyone before us, so take the next block and
560 // turn it into a fragment that contains the leftover data
561 // that we don't need to satisfy the caller's request
562 //
563 FragmentEntry = POOL_BLOCK(Entry, i);
564 FragmentEntry->BlockSize = Entry->BlockSize - i;
565
566 //
567 // And make it point back to us
568 //
569 FragmentEntry->PreviousSize = i;
570
571 //
572 // Now get the block that follows the new fragment and check
573 // if it's still on the same page as us (and not at the end)
574 //
575 NextEntry = POOL_NEXT_BLOCK(FragmentEntry);
576 if (PAGE_ALIGN(NextEntry) != NextEntry)
577 {
578 //
579 // Adjust this next block to point to our newly created
580 // fragment block
581 //
582 NextEntry->PreviousSize = FragmentEntry->BlockSize;
583 }
584 }
585 else
586 {
587 //
588 // There is a free entry before us, which we know is smaller
589 // so we'll make this entry the fragment instead
590 //
591 FragmentEntry = Entry;
592
593 //
594 // And then we'll remove from it the actual size required.
595 // Now the entry is a leftover free fragment
596 //
597 Entry->BlockSize -= i;
598
599 //
600 // Now let's go to the next entry after the fragment (which
601 // used to point to our original free entry) and make it
602 // reference the new fragment entry instead.
603 //
604 // This is the entry that will actually end up holding the
605 // allocation!
606 //
607 Entry = POOL_NEXT_BLOCK(Entry);
608 Entry->PreviousSize = FragmentEntry->BlockSize;
609
610 //
611 // And now let's go to the entry after that one and check if
612 // it's still on the same page, and not at the end
613 //
614 NextEntry = POOL_BLOCK(Entry, i);
615 if (PAGE_ALIGN(NextEntry) != NextEntry)
616 {
617 //
618 // Make it reference the allocation entry
619 //
620 NextEntry->PreviousSize = i;
621 }
622 }
623
624 //
625 // Now our (allocation) entry is the right size
626 //
627 Entry->BlockSize = i;
628
629 //
630 // And the next entry is now the free fragment which contains
631 // the remaining difference between how big the original entry
632 // was, and the actual size the caller needs/requested.
633 //
634 FragmentEntry->PoolType = 0;
635 BlockSize = FragmentEntry->BlockSize;
636
637 //
638 // Now check if enough free bytes remained for us to have a
639 // "full" entry, which contains enough bytes for a linked list
640 // and thus can be used for allocations (up to 8 bytes...)
641 //
642 ExpCheckPoolLinks(&PoolDesc->ListHeads[BlockSize - 1]);
643 if (BlockSize != 1)
644 {
645 //
646 // Insert the free entry into the free list for this size
647 //
648 ExpInsertPoolTailList(&PoolDesc->ListHeads[BlockSize - 1],
649 POOL_FREE_BLOCK(FragmentEntry));
650 ExpCheckPoolLinks(POOL_FREE_BLOCK(FragmentEntry));
651 }
652 }
653
654 //
655 // We have found an entry for this allocation, so set the pool type
656 // and release the lock since we're done
657 //
658 Entry->PoolType = PoolType + 1;
659 ExpCheckPoolBlocks(Entry);
660 ExUnlockPool(PoolDesc, OldIrql);
661
662 //
663 // Return the pool allocation
664 //
665 Entry->PoolTag = Tag;
666 (POOL_FREE_BLOCK(Entry))->Flink = NULL;
667 (POOL_FREE_BLOCK(Entry))->Blink = NULL;
668 return POOL_FREE_BLOCK(Entry);
669 }
670 } while (++ListHead != &PoolDesc->ListHeads[POOL_LISTS_PER_PAGE]);
671
672 //
673 // There were no free entries left, so we have to allocate a new fresh page
674 //
675 Entry = MiAllocatePoolPages(PoolType, PAGE_SIZE);
676 ASSERT(Entry != NULL);
677 Entry->Ulong1 = 0;
678 Entry->BlockSize = i;
679 Entry->PoolType = PoolType + 1;
680
681 //
682 // This page will have two entries -- one for the allocation (which we just
683 // created above), and one for the remaining free bytes, which we're about
684 // to create now. The free bytes are the whole page minus what was allocated
685 // and then converted into units of block headers.
686 //
687 BlockSize = (PAGE_SIZE / POOL_BLOCK_SIZE) - i;
688 FragmentEntry = POOL_BLOCK(Entry, i);
689 FragmentEntry->Ulong1 = 0;
690 FragmentEntry->BlockSize = BlockSize;
691 FragmentEntry->PreviousSize = i;
692
693 //
694 // Now check if enough free bytes remained for us to have a "full" entry,
695 // which contains enough bytes for a linked list and thus can be used for
696 // allocations (up to 8 bytes...)
697 //
698 if (FragmentEntry->BlockSize != 1)
699 {
700 //
701 // Excellent -- acquire the pool lock
702 //
703 OldIrql = ExLockPool(PoolDesc);
704
705 //
706 // And insert the free entry into the free list for this block size
707 //
708 ExpCheckPoolLinks(&PoolDesc->ListHeads[BlockSize - 1]);
709 ExpInsertPoolTailList(&PoolDesc->ListHeads[BlockSize - 1],
710 POOL_FREE_BLOCK(FragmentEntry));
711 ExpCheckPoolLinks(POOL_FREE_BLOCK(FragmentEntry));
712
713 //
714 // Release the pool lock
715 //
716 ExpCheckPoolBlocks(Entry);
717 ExUnlockPool(PoolDesc, OldIrql);
718 }
719
720 //
721 // And return the pool allocation
722 //
723 ExpCheckPoolBlocks(Entry);
724 Entry->PoolTag = Tag;
725 return POOL_FREE_BLOCK(Entry);
726 }
727
728 /*
729 * @implemented
730 */
731 PVOID
732 NTAPI
733 ExAllocatePool(POOL_TYPE PoolType,
734 SIZE_T NumberOfBytes)
735 {
736 //
737 // Use a default tag of "None"
738 //
739 return ExAllocatePoolWithTag(PoolType, NumberOfBytes, 'enoN');
740 }
741
742 /*
743 * @implemented
744 */
745 VOID
746 NTAPI
747 ExFreePoolWithTag(IN PVOID P,
748 IN ULONG TagToFree)
749 {
750 PPOOL_HEADER Entry, NextEntry;
751 ULONG BlockSize;
752 KIRQL OldIrql;
753 POOL_TYPE PoolType;
754 PPOOL_DESCRIPTOR PoolDesc;
755 BOOLEAN Combined = FALSE;
756
757 //
758 // Quickly deal with big page allocations
759 //
760 if (PAGE_ALIGN(P) == P)
761 {
762 MiFreePoolPages(P);
763 return;
764 }
765
766 //
767 // Get the entry for this pool allocation
768 // The pointer math here may look wrong or confusing, but it is quite right
769 //
770 Entry = P;
771 Entry--;
772
773 //
774 // Get the size of the entry, and it's pool type, then load the descriptor
775 // for this pool type
776 //
777 BlockSize = Entry->BlockSize;
778 PoolType = (Entry->PoolType - 1) & BASE_POOL_TYPE_MASK;
779 PoolDesc = PoolVector[PoolType];
780
781 //
782 // Get the pointer to the next entry
783 //
784 NextEntry = POOL_BLOCK(Entry, BlockSize);
785
786 //
787 // Acquire the pool lock
788 //
789 OldIrql = ExLockPool(PoolDesc);
790
791 //
792 // Check if the next allocation is at the end of the page
793 //
794 ExpCheckPoolBlocks(Entry);
795 if (PAGE_ALIGN(NextEntry) != NextEntry)
796 {
797 //
798 // We may be able to combine the block if it's free
799 //
800 if (NextEntry->PoolType == 0)
801 {
802 //
803 // The next block is free, so we'll do a combine
804 //
805 Combined = TRUE;
806
807 //
808 // Make sure there's actual data in the block -- anything smaller
809 // than this means we only have the header, so there's no linked list
810 // for us to remove
811 //
812 if ((NextEntry->BlockSize != 1))
813 {
814 //
815 // The block is at least big enough to have a linked list, so go
816 // ahead and remove it
817 //
818 ExpCheckPoolLinks(POOL_FREE_BLOCK(NextEntry));
819 ExpRemovePoolEntryList(POOL_FREE_BLOCK(NextEntry));
820 ExpCheckPoolLinks(ExpDecodePoolLink((POOL_FREE_BLOCK(NextEntry))->Flink));
821 ExpCheckPoolLinks(ExpDecodePoolLink((POOL_FREE_BLOCK(NextEntry))->Blink));
822 }
823
824 //
825 // Our entry is now combined with the next entry
826 //
827 Entry->BlockSize = Entry->BlockSize + NextEntry->BlockSize;
828 }
829 }
830
831 //
832 // Now check if there was a previous entry on the same page as us
833 //
834 if (Entry->PreviousSize)
835 {
836 //
837 // Great, grab that entry and check if it's free
838 //
839 NextEntry = POOL_PREV_BLOCK(Entry);
840 if (NextEntry->PoolType == 0)
841 {
842 //
843 // It is, so we can do a combine
844 //
845 Combined = TRUE;
846
847 //
848 // Make sure there's actual data in the block -- anything smaller
849 // than this means we only have the header so there's no linked list
850 // for us to remove
851 //
852 if ((NextEntry->BlockSize != 1))
853 {
854 //
855 // The block is at least big enough to have a linked list, so go
856 // ahead and remove it
857 //
858 ExpCheckPoolLinks(POOL_FREE_BLOCK(NextEntry));
859 ExpRemovePoolEntryList(POOL_FREE_BLOCK(NextEntry));
860 ExpCheckPoolLinks(ExpDecodePoolLink((POOL_FREE_BLOCK(NextEntry))->Flink));
861 ExpCheckPoolLinks(ExpDecodePoolLink((POOL_FREE_BLOCK(NextEntry))->Blink));
862 }
863
864 //
865 // Combine our original block (which might've already been combined
866 // with the next block), into the previous block
867 //
868 NextEntry->BlockSize = NextEntry->BlockSize + Entry->BlockSize;
869
870 //
871 // And now we'll work with the previous block instead
872 //
873 Entry = NextEntry;
874 }
875 }
876
877 //
878 // By now, it may have been possible for our combined blocks to actually
879 // have made up a full page (if there were only 2-3 allocations on the
880 // page, they could've all been combined).
881 //
882 if ((PAGE_ALIGN(Entry) == Entry) &&
883 (PAGE_ALIGN(POOL_NEXT_BLOCK(Entry)) == POOL_NEXT_BLOCK(Entry)))
884 {
885 //
886 // In this case, release the pool lock, and free the page
887 //
888 ExUnlockPool(PoolDesc, OldIrql);
889 MiFreePoolPages(Entry);
890 return;
891 }
892
893 //
894 // Otherwise, we now have a free block (or a combination of 2 or 3)
895 //
896 Entry->PoolType = 0;
897 BlockSize = Entry->BlockSize;
898 ASSERT(BlockSize != 1);
899
900 //
901 // Check if we actually did combine it with anyone
902 //
903 if (Combined)
904 {
905 //
906 // Get the first combined block (either our original to begin with, or
907 // the one after the original, depending if we combined with the previous)
908 //
909 NextEntry = POOL_NEXT_BLOCK(Entry);
910
911 //
912 // As long as the next block isn't on a page boundary, have it point
913 // back to us
914 //
915 if (PAGE_ALIGN(NextEntry) != NextEntry) NextEntry->PreviousSize = BlockSize;
916 }
917
918 //
919 // Insert this new free block, and release the pool lock
920 //
921 ExpInsertPoolHeadList(&PoolDesc->ListHeads[BlockSize - 1], POOL_FREE_BLOCK(Entry));
922 ExpCheckPoolLinks(POOL_FREE_BLOCK(Entry));
923 ExUnlockPool(PoolDesc, OldIrql);
924 }
925
926 /*
927 * @implemented
928 */
929 VOID
930 NTAPI
931 ExFreePool(PVOID P)
932 {
933 //
934 // Just free without checking for the tag
935 //
936 ExFreePoolWithTag(P, 0);
937 }
938
939 /*
940 * @unimplemented
941 */
942 SIZE_T
943 NTAPI
944 ExQueryPoolBlockSize(IN PVOID PoolBlock,
945 OUT PBOOLEAN QuotaCharged)
946 {
947 //
948 // Not implemented
949 //
950 UNIMPLEMENTED;
951 return FALSE;
952 }
953
954 /*
955 * @implemented
956 */
957
958 PVOID
959 NTAPI
960 ExAllocatePoolWithQuota(IN POOL_TYPE PoolType,
961 IN SIZE_T NumberOfBytes)
962 {
963 //
964 // Allocate the pool
965 //
966 return ExAllocatePoolWithQuotaTag(PoolType, NumberOfBytes, 'enoN');
967 }
968
969 /*
970 * @implemented
971 */
972 PVOID
973 NTAPI
974 ExAllocatePoolWithTagPriority(IN POOL_TYPE PoolType,
975 IN SIZE_T NumberOfBytes,
976 IN ULONG Tag,
977 IN EX_POOL_PRIORITY Priority)
978 {
979 //
980 // Allocate the pool
981 //
982 UNIMPLEMENTED;
983 return ExAllocatePoolWithTag(PoolType, NumberOfBytes, Tag);
984 }
985
986 /*
987 * @implemented
988 */
989 PVOID
990 NTAPI
991 ExAllocatePoolWithQuotaTag(IN POOL_TYPE PoolType,
992 IN SIZE_T NumberOfBytes,
993 IN ULONG Tag)
994 {
995 //
996 // Allocate the pool
997 //
998 UNIMPLEMENTED;
999 return ExAllocatePoolWithTag(PoolType, NumberOfBytes, Tag);
1000 }
1001
1002 /* EOF */