user32/tests: Fix the monitor tests on NT4.
[wine] / dlls / ntdll / heap.c
1 /*
2  * Win32 heap functions
3  *
4  * Copyright 1996 Alexandre Julliard
5  * Copyright 1998 Ulrich Weigand
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include "config.h"
23 #include "wine/port.h"
24
25 #include <assert.h>
26 #include <stdlib.h>
27 #include <stdarg.h>
28 #include <stdio.h>
29 #include <string.h>
30 #ifdef HAVE_VALGRIND_MEMCHECK_H
31 #include <valgrind/memcheck.h>
32 #endif
33
34 #define NONAMELESSUNION
35 #define NONAMELESSSTRUCT
36 #include "ntstatus.h"
37 #define WIN32_NO_STATUS
38 #include "windef.h"
39 #include "winnt.h"
40 #include "winternl.h"
41 #include "wine/list.h"
42 #include "wine/debug.h"
43 #include "wine/server.h"
44
45 WINE_DEFAULT_DEBUG_CHANNEL(heap);
46
47 /* Note: the heap data structures are loosely based on what Pietrek describes in his
48  * book 'Windows 95 System Programming Secrets', with some adaptations for
49  * better compatibility with NT.
50  */
51
52 /* FIXME: use SIZE_T for 'size' structure members, but we need to make sure
53  * that there is no unaligned accesses to structure fields.
54  */
55
56 typedef struct tagARENA_INUSE
57 {
58     DWORD  size;                    /* Block size; must be the first field */
59     DWORD  magic : 24;              /* Magic number */
60     DWORD  unused_bytes : 8;        /* Number of bytes in the block not used by user data (max value is HEAP_MIN_DATA_SIZE+HEAP_MIN_SHRINK_SIZE) */
61 } ARENA_INUSE;
62
63 typedef struct tagARENA_FREE
64 {
65     DWORD                 size;     /* Block size; must be the first field */
66     DWORD                 magic;    /* Magic number */
67     struct list           entry;    /* Entry in free list */
68 } ARENA_FREE;
69
70 typedef struct
71 {
72     struct list           entry;      /* entry in heap large blocks list */
73     SIZE_T                data_size;  /* size of user data */
74     SIZE_T                block_size; /* total size of virtual memory block */
75     DWORD                 pad[2];     /* padding to ensure 16-byte alignment of data */
76     DWORD                 size;       /* fields for compatibility with normal arenas */
77     DWORD                 magic;      /* these must remain at the end of the structure */
78 } ARENA_LARGE;
79
80 #define ARENA_FLAG_FREE        0x00000001  /* flags OR'ed with arena size */
81 #define ARENA_FLAG_PREV_FREE   0x00000002
82 #define ARENA_SIZE_MASK        (~3)
83 #define ARENA_LARGE_SIZE       0xfedcba90  /* magic value for 'size' field in large blocks */
84
85 /* Value for arena 'magic' field */
86 #define ARENA_INUSE_MAGIC      0x455355
87 #define ARENA_FREE_MAGIC       0x45455246
88 #define ARENA_LARGE_MAGIC      0x6752614c
89
90 #define ARENA_INUSE_FILLER     0x55
91 #define ARENA_FREE_FILLER      0xaa
92
93 #define ALIGNMENT              8   /* everything is aligned on 8 byte boundaries */
94 #define LARGE_ALIGNMENT        16  /* large blocks have stricter alignment */
95
96 #define ROUND_SIZE(size)       (((size) + ALIGNMENT - 1) & ~(ALIGNMENT-1))
97
98 #define QUIET                  1           /* Suppress messages  */
99 #define NOISY                  0           /* Report all errors  */
100
101 /* minimum data size (without arenas) of an allocated block */
102 /* make sure that it's larger than a free list entry */
103 #define HEAP_MIN_DATA_SIZE    (2 * sizeof(struct list))
104 /* minimum size that must remain to shrink an allocated block */
105 #define HEAP_MIN_SHRINK_SIZE  (HEAP_MIN_DATA_SIZE+sizeof(ARENA_FREE))
106 /* minimum size to start allocating large blocks */
107 #define HEAP_MIN_LARGE_BLOCK_SIZE  0x7f000
108
109 /* Max size of the blocks on the free lists */
110 static const SIZE_T HEAP_freeListSizes[] =
111 {
112     0x10, 0x20, 0x30, 0x40, 0x60, 0x80, 0x100, 0x200, 0x400, 0x1000, ~0UL
113 };
114 #define HEAP_NB_FREE_LISTS  (sizeof(HEAP_freeListSizes)/sizeof(HEAP_freeListSizes[0]))
115
116 typedef struct
117 {
118     ARENA_FREE  arena;
119 } FREE_LIST_ENTRY;
120
121 struct tagHEAP;
122
123 typedef struct tagSUBHEAP
124 {
125     void               *base;       /* Base address of the sub-heap memory block */
126     SIZE_T              size;       /* Size of the whole sub-heap */
127     SIZE_T              commitSize; /* Committed size of the sub-heap */
128     struct list         entry;      /* Entry in sub-heap list */
129     struct tagHEAP     *heap;       /* Main heap structure */
130     DWORD               headerSize; /* Size of the heap header */
131     DWORD               magic;      /* Magic number */
132 } SUBHEAP;
133
134 #define SUBHEAP_MAGIC    ((DWORD)('S' | ('U'<<8) | ('B'<<16) | ('H'<<24)))
135
136 typedef struct tagHEAP
137 {
138     DWORD            unknown[3];
139     DWORD            flags;         /* Heap flags */
140     DWORD            force_flags;   /* Forced heap flags for debugging */
141     SUBHEAP          subheap;       /* First sub-heap */
142     struct list      entry;         /* Entry in process heap list */
143     struct list      subheap_list;  /* Sub-heap list */
144     struct list      large_list;    /* Large blocks list */
145     SIZE_T           grow_size;     /* Size of next subheap for growing heap */
146     DWORD            magic;         /* Magic number */
147     RTL_CRITICAL_SECTION critSection; /* Critical section for serialization */
148     FREE_LIST_ENTRY  freeList[HEAP_NB_FREE_LISTS] DECLSPEC_ALIGN(8);  /* Free lists */
149 } HEAP;
150
151 #define HEAP_MAGIC       ((DWORD)('H' | ('E'<<8) | ('A'<<16) | ('P'<<24)))
152
153 #define HEAP_DEF_SIZE        0x110000   /* Default heap size = 1Mb + 64Kb */
154 #define COMMIT_MASK          0xffff  /* bitmask for commit/decommit granularity */
155
156 static HEAP *processHeap;  /* main process heap */
157
158 static BOOL HEAP_IsRealArena( HEAP *heapPtr, DWORD flags, LPCVOID block, BOOL quiet );
159
160 /* mark a block of memory as free for debugging purposes */
161 static inline void mark_block_free( void *ptr, SIZE_T size )
162 {
163     if (TRACE_ON(heap) || WARN_ON(heap)) memset( ptr, ARENA_FREE_FILLER, size );
164 #if defined(VALGRIND_MAKE_MEM_NOACCESS)
165     VALGRIND_DISCARD( VALGRIND_MAKE_MEM_NOACCESS( ptr, size ));
166 #elif defined( VALGRIND_MAKE_NOACCESS)
167     VALGRIND_DISCARD( VALGRIND_MAKE_NOACCESS( ptr, size ));
168 #endif
169 }
170
171 /* mark a block of memory as initialized for debugging purposes */
172 static inline void mark_block_initialized( void *ptr, SIZE_T size )
173 {
174 #if defined(VALGRIND_MAKE_MEM_DEFINED)
175     VALGRIND_DISCARD( VALGRIND_MAKE_MEM_DEFINED( ptr, size ));
176 #elif defined(VALGRIND_MAKE_READABLE)
177     VALGRIND_DISCARD( VALGRIND_MAKE_READABLE( ptr, size ));
178 #endif
179 }
180
181 /* mark a block of memory as uninitialized for debugging purposes */
182 static inline void mark_block_uninitialized( void *ptr, SIZE_T size )
183 {
184 #if defined(VALGRIND_MAKE_MEM_UNDEFINED)
185     VALGRIND_DISCARD( VALGRIND_MAKE_MEM_UNDEFINED( ptr, size ));
186 #elif defined(VALGRIND_MAKE_WRITABLE)
187     VALGRIND_DISCARD( VALGRIND_MAKE_WRITABLE( ptr, size ));
188 #endif
189     if (TRACE_ON(heap) || WARN_ON(heap))
190     {
191         memset( ptr, ARENA_INUSE_FILLER, size );
192 #if defined(VALGRIND_MAKE_MEM_UNDEFINED)
193         VALGRIND_DISCARD( VALGRIND_MAKE_MEM_UNDEFINED( ptr, size ));
194 #elif defined(VALGRIND_MAKE_WRITABLE)
195         /* make it uninitialized to valgrind again */
196         VALGRIND_DISCARD( VALGRIND_MAKE_WRITABLE( ptr, size ));
197 #endif
198     }
199 }
200
201 /* clear contents of a block of memory */
202 static inline void clear_block( void *ptr, SIZE_T size )
203 {
204     mark_block_initialized( ptr, size );
205     memset( ptr, 0, size );
206 }
207
208 /* notify that a new block of memory has been allocated for debugging purposes */
209 static inline void notify_alloc( void *ptr, SIZE_T size, BOOL init )
210 {
211 #ifdef VALGRIND_MALLOCLIKE_BLOCK
212     VALGRIND_MALLOCLIKE_BLOCK( ptr, size, 0, init );
213 #endif
214 }
215
216 /* notify that a block of memory has been freed for debugging purposes */
217 static inline void notify_free( void const *ptr )
218 {
219 #ifdef VALGRIND_FREELIKE_BLOCK
220     VALGRIND_FREELIKE_BLOCK( ptr, 0 );
221 #endif
222 }
223
224 static void subheap_notify_free_all(SUBHEAP const *subheap)
225 {
226 #ifdef VALGRIND_FREELIKE_BLOCK
227     char const *ptr = (char const *)subheap->base + subheap->headerSize;
228
229     if (!RUNNING_ON_VALGRIND) return;
230
231     while (ptr < (char const *)subheap->base + subheap->size)
232     {
233         if (*(const DWORD *)ptr & ARENA_FLAG_FREE)
234         {
235             ARENA_FREE const *pArena = (ARENA_FREE const *)ptr;
236             if (pArena->magic!=ARENA_FREE_MAGIC) ERR("bad free_magic @%p\n", pArena);
237             ptr += sizeof(*pArena) + (pArena->size & ARENA_SIZE_MASK);
238         }
239         else
240         {
241             ARENA_INUSE const *pArena = (ARENA_INUSE const *)ptr;
242             if (pArena->magic!=ARENA_INUSE_MAGIC) ERR("bad inuse_magic @%p\n", pArena);
243             notify_free(pArena + 1);
244             ptr += sizeof(*pArena) + (pArena->size & ARENA_SIZE_MASK);
245         }
246     }
247 #endif
248 }
249
250 /* locate a free list entry of the appropriate size */
251 /* size is the size of the whole block including the arena header */
252 static inline unsigned int get_freelist_index( SIZE_T size )
253 {
254     unsigned int i;
255
256     size -= sizeof(ARENA_FREE);
257     for (i = 0; i < HEAP_NB_FREE_LISTS - 1; i++) if (size <= HEAP_freeListSizes[i]) break;
258     return i;
259 }
260
261 /* get the memory protection type to use for a given heap */
262 static inline ULONG get_protection_type( DWORD flags )
263 {
264     return (flags & HEAP_CREATE_ENABLE_EXECUTE) ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE;
265 }
266
267 static RTL_CRITICAL_SECTION_DEBUG process_heap_critsect_debug =
268 {
269     0, 0, NULL,  /* will be set later */
270     { &process_heap_critsect_debug.ProcessLocksList, &process_heap_critsect_debug.ProcessLocksList },
271       0, 0, { (DWORD_PTR)(__FILE__ ": main process heap section") }
272 };
273
274
275 /***********************************************************************
276  *           HEAP_Dump
277  */
278 static void HEAP_Dump( HEAP *heap )
279 {
280     unsigned int i;
281     SUBHEAP *subheap;
282     char *ptr;
283
284     DPRINTF( "Heap: %p\n", heap );
285     DPRINTF( "Next: %p  Sub-heaps:", LIST_ENTRY( heap->entry.next, HEAP, entry ) );
286     LIST_FOR_EACH_ENTRY( subheap, &heap->subheap_list, SUBHEAP, entry ) DPRINTF( " %p", subheap );
287
288     DPRINTF( "\nFree lists:\n Block   Stat   Size    Id\n" );
289     for (i = 0; i < HEAP_NB_FREE_LISTS; i++)
290         DPRINTF( "%p free %08lx prev=%p next=%p\n",
291                  &heap->freeList[i].arena, HEAP_freeListSizes[i],
292                  LIST_ENTRY( heap->freeList[i].arena.entry.prev, ARENA_FREE, entry ),
293                  LIST_ENTRY( heap->freeList[i].arena.entry.next, ARENA_FREE, entry ));
294
295     LIST_FOR_EACH_ENTRY( subheap, &heap->subheap_list, SUBHEAP, entry )
296     {
297         SIZE_T freeSize = 0, usedSize = 0, arenaSize = subheap->headerSize;
298         DPRINTF( "\n\nSub-heap %p: base=%p size=%08lx committed=%08lx\n",
299                  subheap, subheap->base, subheap->size, subheap->commitSize );
300
301         DPRINTF( "\n Block    Arena   Stat   Size    Id\n" );
302         ptr = (char *)subheap->base + subheap->headerSize;
303         while (ptr < (char *)subheap->base + subheap->size)
304         {
305             if (*(DWORD *)ptr & ARENA_FLAG_FREE)
306             {
307                 ARENA_FREE *pArena = (ARENA_FREE *)ptr;
308                 DPRINTF( "%p %08x free %08x prev=%p next=%p\n",
309                          pArena, pArena->magic,
310                          pArena->size & ARENA_SIZE_MASK,
311                          LIST_ENTRY( pArena->entry.prev, ARENA_FREE, entry ),
312                          LIST_ENTRY( pArena->entry.next, ARENA_FREE, entry ) );
313                 ptr += sizeof(*pArena) + (pArena->size & ARENA_SIZE_MASK);
314                 arenaSize += sizeof(ARENA_FREE);
315                 freeSize += pArena->size & ARENA_SIZE_MASK;
316             }
317             else if (*(DWORD *)ptr & ARENA_FLAG_PREV_FREE)
318             {
319                 ARENA_INUSE *pArena = (ARENA_INUSE *)ptr;
320                 DPRINTF( "%p %08x Used %08x back=%p\n",
321                         pArena, pArena->magic, pArena->size & ARENA_SIZE_MASK, *((ARENA_FREE **)pArena - 1) );
322                 ptr += sizeof(*pArena) + (pArena->size & ARENA_SIZE_MASK);
323                 arenaSize += sizeof(ARENA_INUSE);
324                 usedSize += pArena->size & ARENA_SIZE_MASK;
325             }
326             else
327             {
328                 ARENA_INUSE *pArena = (ARENA_INUSE *)ptr;
329                 DPRINTF( "%p %08x used %08x\n", pArena, pArena->magic, pArena->size & ARENA_SIZE_MASK );
330                 ptr += sizeof(*pArena) + (pArena->size & ARENA_SIZE_MASK);
331                 arenaSize += sizeof(ARENA_INUSE);
332                 usedSize += pArena->size & ARENA_SIZE_MASK;
333             }
334         }
335         DPRINTF( "\nTotal: Size=%08lx Committed=%08lx Free=%08lx Used=%08lx Arenas=%08lx (%ld%%)\n\n",
336               subheap->size, subheap->commitSize, freeSize, usedSize,
337               arenaSize, (arenaSize * 100) / subheap->size );
338     }
339 }
340
341
342 static void HEAP_DumpEntry( LPPROCESS_HEAP_ENTRY entry )
343 {
344     WORD rem_flags;
345     TRACE( "Dumping entry %p\n", entry );
346     TRACE( "lpData\t\t: %p\n", entry->lpData );
347     TRACE( "cbData\t\t: %08x\n", entry->cbData);
348     TRACE( "cbOverhead\t: %08x\n", entry->cbOverhead);
349     TRACE( "iRegionIndex\t: %08x\n", entry->iRegionIndex);
350     TRACE( "WFlags\t\t: ");
351     if (entry->wFlags & PROCESS_HEAP_REGION)
352         TRACE( "PROCESS_HEAP_REGION ");
353     if (entry->wFlags & PROCESS_HEAP_UNCOMMITTED_RANGE)
354         TRACE( "PROCESS_HEAP_UNCOMMITTED_RANGE ");
355     if (entry->wFlags & PROCESS_HEAP_ENTRY_BUSY)
356         TRACE( "PROCESS_HEAP_ENTRY_BUSY ");
357     if (entry->wFlags & PROCESS_HEAP_ENTRY_MOVEABLE)
358         TRACE( "PROCESS_HEAP_ENTRY_MOVEABLE ");
359     if (entry->wFlags & PROCESS_HEAP_ENTRY_DDESHARE)
360         TRACE( "PROCESS_HEAP_ENTRY_DDESHARE ");
361     rem_flags = entry->wFlags &
362         ~(PROCESS_HEAP_REGION | PROCESS_HEAP_UNCOMMITTED_RANGE |
363           PROCESS_HEAP_ENTRY_BUSY | PROCESS_HEAP_ENTRY_MOVEABLE|
364           PROCESS_HEAP_ENTRY_DDESHARE);
365     if (rem_flags)
366         TRACE( "Unknown %08x", rem_flags);
367     TRACE( "\n");
368     if ((entry->wFlags & PROCESS_HEAP_ENTRY_BUSY )
369         && (entry->wFlags & PROCESS_HEAP_ENTRY_MOVEABLE))
370     {
371         /* Treat as block */
372         TRACE( "BLOCK->hMem\t\t:%p\n", entry->u.Block.hMem);
373     }
374     if (entry->wFlags & PROCESS_HEAP_REGION)
375     {
376         TRACE( "Region.dwCommittedSize\t:%08x\n",entry->u.Region.dwCommittedSize);
377         TRACE( "Region.dwUnCommittedSize\t:%08x\n",entry->u.Region.dwUnCommittedSize);
378         TRACE( "Region.lpFirstBlock\t:%p\n",entry->u.Region.lpFirstBlock);
379         TRACE( "Region.lpLastBlock\t:%p\n",entry->u.Region.lpLastBlock);
380     }
381 }
382
383 /***********************************************************************
384  *           HEAP_GetPtr
385  * RETURNS
386  *      Pointer to the heap
387  *      NULL: Failure
388  */
389 static HEAP *HEAP_GetPtr(
390              HANDLE heap /* [in] Handle to the heap */
391 ) {
392     HEAP *heapPtr = (HEAP *)heap;
393     if (!heapPtr || (heapPtr->magic != HEAP_MAGIC))
394     {
395         ERR("Invalid heap %p!\n", heap );
396         return NULL;
397     }
398     if (TRACE_ON(heap) && !HEAP_IsRealArena( heapPtr, 0, NULL, NOISY ))
399     {
400         HEAP_Dump( heapPtr );
401         assert( FALSE );
402         return NULL;
403     }
404     return heapPtr;
405 }
406
407
408 /***********************************************************************
409  *           HEAP_InsertFreeBlock
410  *
411  * Insert a free block into the free list.
412  */
413 static inline void HEAP_InsertFreeBlock( HEAP *heap, ARENA_FREE *pArena, BOOL last )
414 {
415     FREE_LIST_ENTRY *pEntry = heap->freeList + get_freelist_index( pArena->size + sizeof(*pArena) );
416     if (last)
417     {
418         /* insert at end of free list, i.e. before the next free list entry */
419         pEntry++;
420         if (pEntry == &heap->freeList[HEAP_NB_FREE_LISTS]) pEntry = heap->freeList;
421         list_add_before( &pEntry->arena.entry, &pArena->entry );
422     }
423     else
424     {
425         /* insert at head of free list */
426         list_add_after( &pEntry->arena.entry, &pArena->entry );
427     }
428     pArena->size |= ARENA_FLAG_FREE;
429 }
430
431
432 /***********************************************************************
433  *           HEAP_FindSubHeap
434  * Find the sub-heap containing a given address.
435  *
436  * RETURNS
437  *      Pointer: Success
438  *      NULL: Failure
439  */
440 static SUBHEAP *HEAP_FindSubHeap(
441                 const HEAP *heap, /* [in] Heap pointer */
442                 LPCVOID ptr ) /* [in] Address */
443 {
444     SUBHEAP *sub;
445     LIST_FOR_EACH_ENTRY( sub, &heap->subheap_list, SUBHEAP, entry )
446         if (((const char *)ptr >= (const char *)sub->base) &&
447             ((const char *)ptr < (const char *)sub->base + sub->size - sizeof(ARENA_INUSE)))
448             return sub;
449     return NULL;
450 }
451
452
453 /***********************************************************************
454  *           HEAP_Commit
455  *
456  * Make sure the heap storage is committed for a given size in the specified arena.
457  */
458 static inline BOOL HEAP_Commit( SUBHEAP *subheap, ARENA_INUSE *pArena, SIZE_T data_size )
459 {
460     void *ptr = (char *)(pArena + 1) + data_size + sizeof(ARENA_FREE);
461     SIZE_T size = (char *)ptr - (char *)subheap->base;
462     size = (size + COMMIT_MASK) & ~COMMIT_MASK;
463     if (size > subheap->size) size = subheap->size;
464     if (size <= subheap->commitSize) return TRUE;
465     size -= subheap->commitSize;
466     ptr = (char *)subheap->base + subheap->commitSize;
467     if (NtAllocateVirtualMemory( NtCurrentProcess(), &ptr, 0,
468                                  &size, MEM_COMMIT, get_protection_type( subheap->heap->flags ) ))
469     {
470         WARN("Could not commit %08lx bytes at %p for heap %p\n",
471                  size, ptr, subheap->heap );
472         return FALSE;
473     }
474     subheap->commitSize += size;
475     return TRUE;
476 }
477
478
479 /***********************************************************************
480  *           HEAP_Decommit
481  *
482  * If possible, decommit the heap storage from (including) 'ptr'.
483  */
484 static inline BOOL HEAP_Decommit( SUBHEAP *subheap, void *ptr )
485 {
486     void *addr;
487     SIZE_T decommit_size;
488     SIZE_T size = (char *)ptr - (char *)subheap->base;
489
490     /* round to next block and add one full block */
491     size = ((size + COMMIT_MASK) & ~COMMIT_MASK) + COMMIT_MASK + 1;
492     if (size >= subheap->commitSize) return TRUE;
493     decommit_size = subheap->commitSize - size;
494     addr = (char *)subheap->base + size;
495
496     if (NtFreeVirtualMemory( NtCurrentProcess(), &addr, &decommit_size, MEM_DECOMMIT ))
497     {
498         WARN("Could not decommit %08lx bytes at %p for heap %p\n",
499              decommit_size, (char *)subheap->base + size, subheap->heap );
500         return FALSE;
501     }
502     subheap->commitSize -= decommit_size;
503     return TRUE;
504 }
505
506
507 /***********************************************************************
508  *           HEAP_CreateFreeBlock
509  *
510  * Create a free block at a specified address. 'size' is the size of the
511  * whole block, including the new arena.
512  */
513 static void HEAP_CreateFreeBlock( SUBHEAP *subheap, void *ptr, SIZE_T size )
514 {
515     ARENA_FREE *pFree;
516     char *pEnd;
517     BOOL last;
518
519     /* Create a free arena */
520     mark_block_uninitialized( ptr, sizeof( ARENA_FREE ) );
521     pFree = (ARENA_FREE *)ptr;
522     pFree->magic = ARENA_FREE_MAGIC;
523
524     /* If debugging, erase the freed block content */
525
526     pEnd = (char *)ptr + size;
527     if (pEnd > (char *)subheap->base + subheap->commitSize)
528         pEnd = (char *)subheap->base + subheap->commitSize;
529     if (pEnd > (char *)(pFree + 1)) mark_block_free( pFree + 1, pEnd - (char *)(pFree + 1) );
530
531     /* Check if next block is free also */
532
533     if (((char *)ptr + size < (char *)subheap->base + subheap->size) &&
534         (*(DWORD *)((char *)ptr + size) & ARENA_FLAG_FREE))
535     {
536         /* Remove the next arena from the free list */
537         ARENA_FREE *pNext = (ARENA_FREE *)((char *)ptr + size);
538         list_remove( &pNext->entry );
539         size += (pNext->size & ARENA_SIZE_MASK) + sizeof(*pNext);
540         mark_block_free( pNext, sizeof(ARENA_FREE) );
541     }
542
543     /* Set the next block PREV_FREE flag and pointer */
544
545     last = ((char *)ptr + size >= (char *)subheap->base + subheap->size);
546     if (!last)
547     {
548         DWORD *pNext = (DWORD *)((char *)ptr + size);
549         *pNext |= ARENA_FLAG_PREV_FREE;
550         mark_block_initialized( pNext - 1, sizeof( ARENA_FREE * ) );
551         *((ARENA_FREE **)pNext - 1) = pFree;
552     }
553
554     /* Last, insert the new block into the free list */
555
556     pFree->size = size - sizeof(*pFree);
557     HEAP_InsertFreeBlock( subheap->heap, pFree, last );
558 }
559
560
561 /***********************************************************************
562  *           HEAP_MakeInUseBlockFree
563  *
564  * Turn an in-use block into a free block. Can also decommit the end of
565  * the heap, and possibly even free the sub-heap altogether.
566  */
567 static void HEAP_MakeInUseBlockFree( SUBHEAP *subheap, ARENA_INUSE *pArena )
568 {
569     ARENA_FREE *pFree;
570     SIZE_T size = (pArena->size & ARENA_SIZE_MASK) + sizeof(*pArena);
571
572     /* Check if we can merge with previous block */
573
574     if (pArena->size & ARENA_FLAG_PREV_FREE)
575     {
576         pFree = *((ARENA_FREE **)pArena - 1);
577         size += (pFree->size & ARENA_SIZE_MASK) + sizeof(ARENA_FREE);
578         /* Remove it from the free list */
579         list_remove( &pFree->entry );
580     }
581     else pFree = (ARENA_FREE *)pArena;
582
583     /* Create a free block */
584
585     HEAP_CreateFreeBlock( subheap, pFree, size );
586     size = (pFree->size & ARENA_SIZE_MASK) + sizeof(ARENA_FREE);
587     if ((char *)pFree + size < (char *)subheap->base + subheap->size)
588         return;  /* Not the last block, so nothing more to do */
589
590     /* Free the whole sub-heap if it's empty and not the original one */
591
592     if (((char *)pFree == (char *)subheap->base + subheap->headerSize) &&
593         (subheap != &subheap->heap->subheap))
594     {
595         SIZE_T size = 0;
596         void *addr = subheap->base;
597         /* Remove the free block from the list */
598         list_remove( &pFree->entry );
599         /* Remove the subheap from the list */
600         list_remove( &subheap->entry );
601         /* Free the memory */
602         subheap->magic = 0;
603         NtFreeVirtualMemory( NtCurrentProcess(), &addr, &size, MEM_RELEASE );
604         return;
605     }
606
607     /* Decommit the end of the heap */
608
609     if (!(subheap->heap->flags & HEAP_SHARED)) HEAP_Decommit( subheap, pFree + 1 );
610 }
611
612
613 /***********************************************************************
614  *           HEAP_ShrinkBlock
615  *
616  * Shrink an in-use block.
617  */
618 static void HEAP_ShrinkBlock(SUBHEAP *subheap, ARENA_INUSE *pArena, SIZE_T size)
619 {
620     if ((pArena->size & ARENA_SIZE_MASK) >= size + HEAP_MIN_SHRINK_SIZE)
621     {
622         HEAP_CreateFreeBlock( subheap, (char *)(pArena + 1) + size,
623                               (pArena->size & ARENA_SIZE_MASK) - size );
624         /* assign size plus previous arena flags */
625         pArena->size = size | (pArena->size & ~ARENA_SIZE_MASK);
626     }
627     else
628     {
629         /* Turn off PREV_FREE flag in next block */
630         char *pNext = (char *)(pArena + 1) + (pArena->size & ARENA_SIZE_MASK);
631         if (pNext < (char *)subheap->base + subheap->size)
632             *(DWORD *)pNext &= ~ARENA_FLAG_PREV_FREE;
633     }
634 }
635
636
637 /***********************************************************************
638  *           allocate_large_block
639  */
640 static void *allocate_large_block( HEAP *heap, DWORD flags, SIZE_T size )
641 {
642     ARENA_LARGE *arena;
643     SIZE_T block_size = sizeof(*arena) + ROUND_SIZE(size);
644     LPVOID address = NULL;
645
646     if (block_size < size) return NULL;  /* overflow */
647     if (NtAllocateVirtualMemory( NtCurrentProcess(), &address, 0,
648                                  &block_size, MEM_COMMIT, get_protection_type( flags ) ))
649     {
650         WARN("Could not allocate block for %08lx bytes\n", size );
651         return NULL;
652     }
653     arena = address;
654     arena->data_size = size;
655     arena->block_size = block_size;
656     arena->size = ARENA_LARGE_SIZE;
657     arena->magic = ARENA_LARGE_MAGIC;
658     list_add_tail( &heap->large_list, &arena->entry );
659     return arena + 1;
660 }
661
662
663 /***********************************************************************
664  *           free_large_block
665  */
666 static void free_large_block( HEAP *heap, DWORD flags, void *ptr )
667 {
668     ARENA_LARGE *arena = (ARENA_LARGE *)ptr - 1;
669     LPVOID address = arena;
670     SIZE_T size = 0;
671
672     list_remove( &arena->entry );
673     NtFreeVirtualMemory( NtCurrentProcess(), &address, &size, MEM_RELEASE );
674 }
675
676
677 /***********************************************************************
678  *           realloc_large_block
679  */
680 static void *realloc_large_block( HEAP *heap, DWORD flags, void *ptr, SIZE_T size )
681 {
682     ARENA_LARGE *arena = (ARENA_LARGE *)ptr - 1;
683     void *new_ptr;
684
685     if (arena->block_size - sizeof(*arena) >= size)
686     {
687         /* FIXME: we could remap zero-pages instead */
688         if ((flags & HEAP_ZERO_MEMORY) && size > arena->data_size)
689             memset( (char *)ptr + arena->data_size, 0, size - arena->data_size );
690         arena->data_size = size;
691         return ptr;
692     }
693     if (flags & HEAP_REALLOC_IN_PLACE_ONLY) return NULL;
694     if (!(new_ptr = allocate_large_block( heap, flags, size )))
695     {
696         WARN("Could not allocate block for %08lx bytes\n", size );
697         return NULL;
698     }
699     memcpy( new_ptr, ptr, arena->data_size );
700     free_large_block( heap, flags, ptr );
701     return new_ptr;
702 }
703
704
705 /***********************************************************************
706  *           find_large_block
707  */
708 static ARENA_LARGE *find_large_block( HEAP *heap, const void *ptr )
709 {
710     ARENA_LARGE *arena;
711
712     LIST_FOR_EACH_ENTRY( arena, &heap->large_list, ARENA_LARGE, entry )
713         if (ptr == (const void *)(arena + 1)) return arena;
714
715     return NULL;
716 }
717
718
719 /***********************************************************************
720  *           validate_large_arena
721  */
722 static BOOL validate_large_arena( HEAP *heap, const ARENA_LARGE *arena, BOOL quiet )
723 {
724     if ((ULONG_PTR)arena % getpagesize())
725     {
726         if (quiet == NOISY)
727         {
728             ERR( "Heap %p: invalid large arena pointer %p\n", heap, arena );
729             if (TRACE_ON(heap)) HEAP_Dump( heap );
730         }
731         else if (WARN_ON(heap))
732         {
733             WARN( "Heap %p: unaligned arena pointer %p\n", heap, arena );
734             if (TRACE_ON(heap)) HEAP_Dump( heap );
735         }
736         return FALSE;
737     }
738     if (arena->size != ARENA_LARGE_SIZE || arena->magic != ARENA_LARGE_MAGIC)
739     {
740         if (quiet == NOISY)
741         {
742             ERR( "Heap %p: invalid large arena %p values %x/%x\n",
743                  heap, arena, arena->size, arena->magic );
744             if (TRACE_ON(heap)) HEAP_Dump( heap );
745         }
746         else if (WARN_ON(heap))
747         {
748             WARN( "Heap %p: invalid large arena %p values %x/%x\n",
749                   heap, arena, arena->size, arena->magic );
750             if (TRACE_ON(heap)) HEAP_Dump( heap );
751         }
752         return FALSE;
753     }
754     return TRUE;
755 }
756
757
758 /***********************************************************************
759  *           HEAP_CreateSubHeap
760  */
761 static SUBHEAP *HEAP_CreateSubHeap( HEAP *heap, LPVOID address, DWORD flags,
762                                     SIZE_T commitSize, SIZE_T totalSize )
763 {
764     SUBHEAP *subheap;
765     FREE_LIST_ENTRY *pEntry;
766     unsigned int i;
767
768     if (!address)
769     {
770         /* round-up sizes on a 64K boundary */
771         totalSize  = (totalSize + 0xffff) & 0xffff0000;
772         commitSize = (commitSize + 0xffff) & 0xffff0000;
773         if (!commitSize) commitSize = 0x10000;
774         if (totalSize < commitSize) totalSize = commitSize;
775         if (flags & HEAP_SHARED) commitSize = totalSize;  /* always commit everything in a shared heap */
776
777         /* allocate the memory block */
778         if (NtAllocateVirtualMemory( NtCurrentProcess(), &address, 0, &totalSize,
779                                      MEM_RESERVE, get_protection_type( flags ) ))
780         {
781             WARN("Could not allocate %08lx bytes\n", totalSize );
782             return NULL;
783         }
784         if (NtAllocateVirtualMemory( NtCurrentProcess(), &address, 0,
785                                      &commitSize, MEM_COMMIT, get_protection_type( flags ) ))
786         {
787             WARN("Could not commit %08lx bytes for sub-heap %p\n", commitSize, address );
788             return NULL;
789         }
790     }
791
792     if (heap)
793     {
794         /* If this is a secondary subheap, insert it into list */
795
796         subheap = (SUBHEAP *)address;
797         subheap->base       = address;
798         subheap->heap       = heap;
799         subheap->size       = totalSize;
800         subheap->commitSize = commitSize;
801         subheap->magic      = SUBHEAP_MAGIC;
802         subheap->headerSize = ROUND_SIZE( sizeof(SUBHEAP) );
803         list_add_head( &heap->subheap_list, &subheap->entry );
804     }
805     else
806     {
807         /* If this is a primary subheap, initialize main heap */
808
809         heap = (HEAP *)address;
810         heap->flags         = flags;
811         heap->magic         = HEAP_MAGIC;
812         heap->grow_size     = max( HEAP_DEF_SIZE, totalSize );
813         list_init( &heap->subheap_list );
814         list_init( &heap->large_list );
815
816         subheap = &heap->subheap;
817         subheap->base       = address;
818         subheap->heap       = heap;
819         subheap->size       = totalSize;
820         subheap->commitSize = commitSize;
821         subheap->magic      = SUBHEAP_MAGIC;
822         subheap->headerSize = ROUND_SIZE( sizeof(HEAP) );
823         list_add_head( &heap->subheap_list, &subheap->entry );
824
825         /* Build the free lists */
826
827         list_init( &heap->freeList[0].arena.entry );
828         for (i = 0, pEntry = heap->freeList; i < HEAP_NB_FREE_LISTS; i++, pEntry++)
829         {
830             pEntry->arena.size = 0 | ARENA_FLAG_FREE;
831             pEntry->arena.magic = ARENA_FREE_MAGIC;
832             if (i) list_add_after( &pEntry[-1].arena.entry, &pEntry->arena.entry );
833         }
834
835         /* Initialize critical section */
836
837         if (!processHeap)  /* do it by hand to avoid memory allocations */
838         {
839             heap->critSection.DebugInfo      = &process_heap_critsect_debug;
840             heap->critSection.LockCount      = -1;
841             heap->critSection.RecursionCount = 0;
842             heap->critSection.OwningThread   = 0;
843             heap->critSection.LockSemaphore  = 0;
844             heap->critSection.SpinCount      = 0;
845             process_heap_critsect_debug.CriticalSection = &heap->critSection;
846         }
847         else
848         {
849             RtlInitializeCriticalSection( &heap->critSection );
850             heap->critSection.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": HEAP.critSection");
851         }
852
853         if (flags & HEAP_SHARED)
854         {
855             /* let's assume that only one thread at a time will try to do this */
856             HANDLE sem = heap->critSection.LockSemaphore;
857             if (!sem) NtCreateSemaphore( &sem, SEMAPHORE_ALL_ACCESS, NULL, 0, 1 );
858
859             NtDuplicateObject( NtCurrentProcess(), sem, NtCurrentProcess(), &sem, 0, 0,
860                                DUP_HANDLE_MAKE_GLOBAL | DUP_HANDLE_SAME_ACCESS | DUP_HANDLE_CLOSE_SOURCE );
861             heap->critSection.LockSemaphore = sem;
862             RtlFreeHeap( processHeap, 0, heap->critSection.DebugInfo );
863             heap->critSection.DebugInfo = NULL;
864         }
865     }
866
867     /* Create the first free block */
868
869     HEAP_CreateFreeBlock( subheap, (LPBYTE)subheap->base + subheap->headerSize,
870                           subheap->size - subheap->headerSize );
871
872     return subheap;
873 }
874
875
876 /***********************************************************************
877  *           HEAP_FindFreeBlock
878  *
879  * Find a free block at least as large as the requested size, and make sure
880  * the requested size is committed.
881  */
882 static ARENA_FREE *HEAP_FindFreeBlock( HEAP *heap, SIZE_T size,
883                                        SUBHEAP **ppSubHeap )
884 {
885     SUBHEAP *subheap;
886     struct list *ptr;
887     SIZE_T total_size;
888     FREE_LIST_ENTRY *pEntry = heap->freeList + get_freelist_index( size + sizeof(ARENA_INUSE) );
889
890     /* Find a suitable free list, and in it find a block large enough */
891
892     ptr = &pEntry->arena.entry;
893     while ((ptr = list_next( &heap->freeList[0].arena.entry, ptr )))
894     {
895         ARENA_FREE *pArena = LIST_ENTRY( ptr, ARENA_FREE, entry );
896         SIZE_T arena_size = (pArena->size & ARENA_SIZE_MASK) +
897                             sizeof(ARENA_FREE) - sizeof(ARENA_INUSE);
898         if (arena_size >= size)
899         {
900             subheap = HEAP_FindSubHeap( heap, pArena );
901             if (!HEAP_Commit( subheap, (ARENA_INUSE *)pArena, size )) return NULL;
902             *ppSubHeap = subheap;
903             return pArena;
904         }
905     }
906
907     /* If no block was found, attempt to grow the heap */
908
909     if (!(heap->flags & HEAP_GROWABLE))
910     {
911         WARN("Not enough space in heap %p for %08lx bytes\n", heap, size );
912         return NULL;
913     }
914     /* make sure that we have a big enough size *committed* to fit another
915      * last free arena in !
916      * So just one heap struct, one first free arena which will eventually
917      * get used, and a second free arena that might get assigned all remaining
918      * free space in HEAP_ShrinkBlock() */
919     total_size = size + ROUND_SIZE(sizeof(SUBHEAP)) + sizeof(ARENA_INUSE) + sizeof(ARENA_FREE);
920     if (total_size < size) return NULL;  /* overflow */
921
922     if (!(subheap = HEAP_CreateSubHeap( heap, NULL, heap->flags, total_size,
923                                         max( heap->grow_size, total_size ) )))
924         return NULL;
925
926     if (heap->grow_size < 128 * 1024 * 1024) heap->grow_size *= 2;
927
928     TRACE("created new sub-heap %p of %08lx bytes for heap %p\n",
929           subheap, subheap->size, heap );
930
931     *ppSubHeap = subheap;
932     return (ARENA_FREE *)((char *)subheap->base + subheap->headerSize);
933 }
934
935
936 /***********************************************************************
937  *           HEAP_IsValidArenaPtr
938  *
939  * Check that the pointer is inside the range possible for arenas.
940  */
941 static BOOL HEAP_IsValidArenaPtr( const HEAP *heap, const ARENA_FREE *ptr )
942 {
943     unsigned int i;
944     const SUBHEAP *subheap = HEAP_FindSubHeap( heap, ptr );
945     if (!subheap) return FALSE;
946     if ((const char *)ptr >= (const char *)subheap->base + subheap->headerSize) return TRUE;
947     if (subheap != &heap->subheap) return FALSE;
948     for (i = 0; i < HEAP_NB_FREE_LISTS; i++)
949         if (ptr == (const void *)&heap->freeList[i].arena) return TRUE;
950     return FALSE;
951 }
952
953
954 /***********************************************************************
955  *           HEAP_ValidateFreeArena
956  */
957 static BOOL HEAP_ValidateFreeArena( SUBHEAP *subheap, ARENA_FREE *pArena )
958 {
959     ARENA_FREE *prev, *next;
960     char *heapEnd = (char *)subheap->base + subheap->size;
961
962     /* Check for unaligned pointers */
963     if ( (ULONG_PTR)pArena % ALIGNMENT != 0 )
964     {
965         ERR("Heap %p: unaligned arena pointer %p\n", subheap->heap, pArena );
966         return FALSE;
967     }
968
969     /* Check magic number */
970     if (pArena->magic != ARENA_FREE_MAGIC)
971     {
972         ERR("Heap %p: invalid free arena magic %08x for %p\n", subheap->heap, pArena->magic, pArena );
973         return FALSE;
974     }
975     /* Check size flags */
976     if (!(pArena->size & ARENA_FLAG_FREE) ||
977         (pArena->size & ARENA_FLAG_PREV_FREE))
978     {
979         ERR("Heap %p: bad flags %08x for free arena %p\n",
980             subheap->heap, pArena->size & ~ARENA_SIZE_MASK, pArena );
981         return FALSE;
982     }
983     /* Check arena size */
984     if ((char *)(pArena + 1) + (pArena->size & ARENA_SIZE_MASK) > heapEnd)
985     {
986         ERR("Heap %p: bad size %08x for free arena %p\n",
987             subheap->heap, pArena->size & ARENA_SIZE_MASK, pArena );
988         return FALSE;
989     }
990     /* Check that next pointer is valid */
991     next = LIST_ENTRY( pArena->entry.next, ARENA_FREE, entry );
992     if (!HEAP_IsValidArenaPtr( subheap->heap, next ))
993     {
994         ERR("Heap %p: bad next ptr %p for arena %p\n",
995             subheap->heap, next, pArena );
996         return FALSE;
997     }
998     /* Check that next arena is free */
999     if (!(next->size & ARENA_FLAG_FREE) || (next->magic != ARENA_FREE_MAGIC))
1000     {
1001         ERR("Heap %p: next arena %p invalid for %p\n",
1002             subheap->heap, next, pArena );
1003         return FALSE;
1004     }
1005     /* Check that prev pointer is valid */
1006     prev = LIST_ENTRY( pArena->entry.prev, ARENA_FREE, entry );
1007     if (!HEAP_IsValidArenaPtr( subheap->heap, prev ))
1008     {
1009         ERR("Heap %p: bad prev ptr %p for arena %p\n",
1010             subheap->heap, prev, pArena );
1011         return FALSE;
1012     }
1013     /* Check that prev arena is free */
1014     if (!(prev->size & ARENA_FLAG_FREE) || (prev->magic != ARENA_FREE_MAGIC))
1015     {
1016         /* this often means that the prev arena got overwritten
1017          * by a memory write before that prev arena */
1018         ERR("Heap %p: prev arena %p invalid for %p\n",
1019             subheap->heap, prev, pArena );
1020         return FALSE;
1021     }
1022     /* Check that next block has PREV_FREE flag */
1023     if ((char *)(pArena + 1) + (pArena->size & ARENA_SIZE_MASK) < heapEnd)
1024     {
1025         if (!(*(DWORD *)((char *)(pArena + 1) +
1026             (pArena->size & ARENA_SIZE_MASK)) & ARENA_FLAG_PREV_FREE))
1027         {
1028             ERR("Heap %p: free arena %p next block has no PREV_FREE flag\n",
1029                 subheap->heap, pArena );
1030             return FALSE;
1031         }
1032         /* Check next block back pointer */
1033         if (*((ARENA_FREE **)((char *)(pArena + 1) +
1034             (pArena->size & ARENA_SIZE_MASK)) - 1) != pArena)
1035         {
1036             ERR("Heap %p: arena %p has wrong back ptr %p\n",
1037                 subheap->heap, pArena,
1038                 *((ARENA_FREE **)((char *)(pArena+1) + (pArena->size & ARENA_SIZE_MASK)) - 1));
1039             return FALSE;
1040         }
1041     }
1042     return TRUE;
1043 }
1044
1045
1046 /***********************************************************************
1047  *           HEAP_ValidateInUseArena
1048  */
1049 static BOOL HEAP_ValidateInUseArena( const SUBHEAP *subheap, const ARENA_INUSE *pArena, BOOL quiet )
1050 {
1051     const char *heapEnd = (const char *)subheap->base + subheap->size;
1052
1053     /* Check for unaligned pointers */
1054     if ( (ULONG_PTR)pArena % ALIGNMENT != 0 )
1055     {
1056         if ( quiet == NOISY )
1057         {
1058             ERR( "Heap %p: unaligned arena pointer %p\n", subheap->heap, pArena );
1059             if ( TRACE_ON(heap) )
1060                 HEAP_Dump( subheap->heap );
1061         }
1062         else if ( WARN_ON(heap) )
1063         {
1064             WARN( "Heap %p: unaligned arena pointer %p\n", subheap->heap, pArena );
1065             if ( TRACE_ON(heap) )
1066                 HEAP_Dump( subheap->heap );
1067         }
1068         return FALSE;
1069     }
1070
1071     /* Check magic number */
1072     if (pArena->magic != ARENA_INUSE_MAGIC)
1073     {
1074         if (quiet == NOISY) {
1075             ERR("Heap %p: invalid in-use arena magic %08x for %p\n", subheap->heap, pArena->magic, pArena );
1076             if (TRACE_ON(heap))
1077                HEAP_Dump( subheap->heap );
1078         }  else if (WARN_ON(heap)) {
1079             WARN("Heap %p: invalid in-use arena magic %08x for %p\n", subheap->heap, pArena->magic, pArena );
1080             if (TRACE_ON(heap))
1081                HEAP_Dump( subheap->heap );
1082         }
1083         return FALSE;
1084     }
1085     /* Check size flags */
1086     if (pArena->size & ARENA_FLAG_FREE)
1087     {
1088         ERR("Heap %p: bad flags %08x for in-use arena %p\n",
1089             subheap->heap, pArena->size & ~ARENA_SIZE_MASK, pArena );
1090         return FALSE;
1091     }
1092     /* Check arena size */
1093     if ((const char *)(pArena + 1) + (pArena->size & ARENA_SIZE_MASK) > heapEnd)
1094     {
1095         ERR("Heap %p: bad size %08x for in-use arena %p\n",
1096             subheap->heap, pArena->size & ARENA_SIZE_MASK, pArena );
1097         return FALSE;
1098     }
1099     /* Check next arena PREV_FREE flag */
1100     if (((const char *)(pArena + 1) + (pArena->size & ARENA_SIZE_MASK) < heapEnd) &&
1101         (*(const DWORD *)((const char *)(pArena + 1) + (pArena->size & ARENA_SIZE_MASK)) & ARENA_FLAG_PREV_FREE))
1102     {
1103         ERR("Heap %p: in-use arena %p next block has PREV_FREE flag\n",
1104             subheap->heap, pArena );
1105         return FALSE;
1106     }
1107     /* Check prev free arena */
1108     if (pArena->size & ARENA_FLAG_PREV_FREE)
1109     {
1110         const ARENA_FREE *pPrev = *((const ARENA_FREE * const*)pArena - 1);
1111         /* Check prev pointer */
1112         if (!HEAP_IsValidArenaPtr( subheap->heap, pPrev ))
1113         {
1114             ERR("Heap %p: bad back ptr %p for arena %p\n",
1115                 subheap->heap, pPrev, pArena );
1116             return FALSE;
1117         }
1118         /* Check that prev arena is free */
1119         if (!(pPrev->size & ARENA_FLAG_FREE) ||
1120             (pPrev->magic != ARENA_FREE_MAGIC))
1121         {
1122             ERR("Heap %p: prev arena %p invalid for in-use %p\n",
1123                 subheap->heap, pPrev, pArena );
1124             return FALSE;
1125         }
1126         /* Check that prev arena is really the previous block */
1127         if ((const char *)(pPrev + 1) + (pPrev->size & ARENA_SIZE_MASK) != (const char *)pArena)
1128         {
1129             ERR("Heap %p: prev arena %p is not prev for in-use %p\n",
1130                 subheap->heap, pPrev, pArena );
1131             return FALSE;
1132         }
1133     }
1134     return TRUE;
1135 }
1136
1137
1138 /***********************************************************************
1139  *           HEAP_IsRealArena  [Internal]
1140  * Validates a block is a valid arena.
1141  *
1142  * RETURNS
1143  *      TRUE: Success
1144  *      FALSE: Failure
1145  */
1146 static BOOL HEAP_IsRealArena( HEAP *heapPtr,   /* [in] ptr to the heap */
1147               DWORD flags,   /* [in] Bit flags that control access during operation */
1148               LPCVOID block, /* [in] Optional pointer to memory block to validate */
1149               BOOL quiet )   /* [in] Flag - if true, HEAP_ValidateInUseArena
1150                               *             does not complain    */
1151 {
1152     SUBHEAP *subheap;
1153     BOOL ret = TRUE;
1154     const ARENA_LARGE *large_arena;
1155
1156     flags &= HEAP_NO_SERIALIZE;
1157     flags |= heapPtr->flags;
1158     /* calling HeapLock may result in infinite recursion, so do the critsect directly */
1159     if (!(flags & HEAP_NO_SERIALIZE))
1160         RtlEnterCriticalSection( &heapPtr->critSection );
1161
1162     if (block)  /* only check this single memory block */
1163     {
1164         const ARENA_INUSE *arena = (const ARENA_INUSE *)block - 1;
1165
1166         if (!(subheap = HEAP_FindSubHeap( heapPtr, arena )) ||
1167             ((const char *)arena < (char *)subheap->base + subheap->headerSize))
1168         {
1169             if (!(large_arena = find_large_block( heapPtr, block )))
1170             {
1171                 if (quiet == NOISY)
1172                     ERR("Heap %p: block %p is not inside heap\n", heapPtr, block );
1173                 else if (WARN_ON(heap))
1174                     WARN("Heap %p: block %p is not inside heap\n", heapPtr, block );
1175                 ret = FALSE;
1176             }
1177             else
1178                 ret = validate_large_arena( heapPtr, large_arena, quiet );
1179         } else
1180             ret = HEAP_ValidateInUseArena( subheap, arena, quiet );
1181
1182         if (!(flags & HEAP_NO_SERIALIZE))
1183             RtlLeaveCriticalSection( &heapPtr->critSection );
1184         return ret;
1185     }
1186
1187     LIST_FOR_EACH_ENTRY( subheap, &heapPtr->subheap_list, SUBHEAP, entry )
1188     {
1189         char *ptr = (char *)subheap->base + subheap->headerSize;
1190         while (ptr < (char *)subheap->base + subheap->size)
1191         {
1192             if (*(DWORD *)ptr & ARENA_FLAG_FREE)
1193             {
1194                 if (!HEAP_ValidateFreeArena( subheap, (ARENA_FREE *)ptr )) {
1195                     ret = FALSE;
1196                     break;
1197                 }
1198                 ptr += sizeof(ARENA_FREE) + (*(DWORD *)ptr & ARENA_SIZE_MASK);
1199             }
1200             else
1201             {
1202                 if (!HEAP_ValidateInUseArena( subheap, (ARENA_INUSE *)ptr, NOISY )) {
1203                     ret = FALSE;
1204                     break;
1205                 }
1206                 ptr += sizeof(ARENA_INUSE) + (*(DWORD *)ptr & ARENA_SIZE_MASK);
1207             }
1208         }
1209         if (!ret) break;
1210     }
1211
1212     LIST_FOR_EACH_ENTRY( large_arena, &heapPtr->large_list, ARENA_LARGE, entry )
1213         if (!(ret = validate_large_arena( heapPtr, large_arena, quiet ))) break;
1214
1215     if (!(flags & HEAP_NO_SERIALIZE)) RtlLeaveCriticalSection( &heapPtr->critSection );
1216     return ret;
1217 }
1218
1219
1220 /***********************************************************************
1221  *           RtlCreateHeap   (NTDLL.@)
1222  *
1223  * Create a new Heap.
1224  *
1225  * PARAMS
1226  *  flags      [I] HEAP_ flags from "winnt.h"
1227  *  addr       [I] Desired base address
1228  *  totalSize  [I] Total size of the heap, or 0 for a growable heap
1229  *  commitSize [I] Amount of heap space to commit
1230  *  unknown    [I] Not yet understood
1231  *  definition [I] Heap definition
1232  *
1233  * RETURNS
1234  *  Success: A HANDLE to the newly created heap.
1235  *  Failure: a NULL HANDLE.
1236  */
1237 HANDLE WINAPI RtlCreateHeap( ULONG flags, PVOID addr, SIZE_T totalSize, SIZE_T commitSize,
1238                              PVOID unknown, PRTL_HEAP_DEFINITION definition )
1239 {
1240     SUBHEAP *subheap;
1241
1242     /* Allocate the heap block */
1243
1244     if (!totalSize)
1245     {
1246         totalSize = HEAP_DEF_SIZE;
1247         flags |= HEAP_GROWABLE;
1248     }
1249
1250     if (!(subheap = HEAP_CreateSubHeap( NULL, addr, flags, commitSize, totalSize ))) return 0;
1251
1252     /* link it into the per-process heap list */
1253     if (processHeap)
1254     {
1255         HEAP *heapPtr = subheap->heap;
1256         RtlEnterCriticalSection( &processHeap->critSection );
1257         list_add_head( &processHeap->entry, &heapPtr->entry );
1258         RtlLeaveCriticalSection( &processHeap->critSection );
1259     }
1260     else if (!addr)
1261     {
1262         processHeap = subheap->heap;  /* assume the first heap we create is the process main heap */
1263         list_init( &processHeap->entry );
1264         /* make sure structure alignment is correct */
1265         assert( (ULONG_PTR)processHeap->freeList % ALIGNMENT == 0 );
1266         assert( sizeof(ARENA_LARGE) % LARGE_ALIGNMENT == 0 );
1267     }
1268
1269     return (HANDLE)subheap->heap;
1270 }
1271
1272
1273 /***********************************************************************
1274  *           RtlDestroyHeap   (NTDLL.@)
1275  *
1276  * Destroy a Heap created with RtlCreateHeap().
1277  *
1278  * PARAMS
1279  *  heap [I] Heap to destroy.
1280  *
1281  * RETURNS
1282  *  Success: A NULL HANDLE, if heap is NULL or it was destroyed
1283  *  Failure: The Heap handle, if heap is the process heap.
1284  */
1285 HANDLE WINAPI RtlDestroyHeap( HANDLE heap )
1286 {
1287     HEAP *heapPtr = HEAP_GetPtr( heap );
1288     SUBHEAP *subheap, *next;
1289     ARENA_LARGE *arena, *arena_next;
1290     SIZE_T size;
1291     void *addr;
1292
1293     TRACE("%p\n", heap );
1294     if (!heapPtr) return heap;
1295
1296     if (heap == processHeap) return heap; /* cannot delete the main process heap */
1297
1298     /* remove it from the per-process list */
1299     RtlEnterCriticalSection( &processHeap->critSection );
1300     list_remove( &heapPtr->entry );
1301     RtlLeaveCriticalSection( &processHeap->critSection );
1302
1303     heapPtr->critSection.DebugInfo->Spare[0] = 0;
1304     RtlDeleteCriticalSection( &heapPtr->critSection );
1305
1306     LIST_FOR_EACH_ENTRY_SAFE( arena, arena_next, &heapPtr->large_list, ARENA_LARGE, entry )
1307     {
1308         list_remove( &arena->entry );
1309         size = 0;
1310         addr = arena;
1311         NtFreeVirtualMemory( NtCurrentProcess(), &addr, &size, MEM_RELEASE );
1312     }
1313     LIST_FOR_EACH_ENTRY_SAFE( subheap, next, &heapPtr->subheap_list, SUBHEAP, entry )
1314     {
1315         if (subheap == &heapPtr->subheap) continue;  /* do this one last */
1316         subheap_notify_free_all(subheap);
1317         list_remove( &subheap->entry );
1318         size = 0;
1319         addr = subheap->base;
1320         NtFreeVirtualMemory( NtCurrentProcess(), &addr, &size, MEM_RELEASE );
1321     }
1322     subheap_notify_free_all(&heapPtr->subheap);
1323     size = 0;
1324     addr = heapPtr->subheap.base;
1325     NtFreeVirtualMemory( NtCurrentProcess(), &addr, &size, MEM_RELEASE );
1326     return 0;
1327 }
1328
1329
1330 /***********************************************************************
1331  *           RtlAllocateHeap   (NTDLL.@)
1332  *
1333  * Allocate a memory block from a Heap.
1334  *
1335  * PARAMS
1336  *  heap  [I] Heap to allocate block from
1337  *  flags [I] HEAP_ flags from "winnt.h"
1338  *  size  [I] Size of the memory block to allocate
1339  *
1340  * RETURNS
1341  *  Success: A pointer to the newly allocated block
1342  *  Failure: NULL.
1343  *
1344  * NOTES
1345  *  This call does not SetLastError().
1346  */
1347 PVOID WINAPI RtlAllocateHeap( HANDLE heap, ULONG flags, SIZE_T size )
1348 {
1349     ARENA_FREE *pArena;
1350     ARENA_INUSE *pInUse;
1351     SUBHEAP *subheap;
1352     HEAP *heapPtr = HEAP_GetPtr( heap );
1353     SIZE_T rounded_size;
1354
1355     /* Validate the parameters */
1356
1357     if (!heapPtr) return NULL;
1358     flags &= HEAP_GENERATE_EXCEPTIONS | HEAP_NO_SERIALIZE | HEAP_ZERO_MEMORY;
1359     flags |= heapPtr->flags;
1360     rounded_size = ROUND_SIZE(size);
1361     if (rounded_size < size)  /* overflow */
1362     {
1363         if (flags & HEAP_GENERATE_EXCEPTIONS) RtlRaiseStatus( STATUS_NO_MEMORY );
1364         return NULL;
1365     }
1366     if (rounded_size < HEAP_MIN_DATA_SIZE) rounded_size = HEAP_MIN_DATA_SIZE;
1367
1368     if (!(flags & HEAP_NO_SERIALIZE)) RtlEnterCriticalSection( &heapPtr->critSection );
1369
1370     if (rounded_size >= HEAP_MIN_LARGE_BLOCK_SIZE && (flags & HEAP_GROWABLE))
1371     {
1372         void *ret = allocate_large_block( heap, flags, size );
1373         if (!(flags & HEAP_NO_SERIALIZE)) RtlLeaveCriticalSection( &heapPtr->critSection );
1374         if (!ret && (flags & HEAP_GENERATE_EXCEPTIONS)) RtlRaiseStatus( STATUS_NO_MEMORY );
1375         TRACE("(%p,%08x,%08lx): returning %p\n", heap, flags, size, ret );
1376         return ret;
1377     }
1378
1379     /* Locate a suitable free block */
1380
1381     if (!(pArena = HEAP_FindFreeBlock( heapPtr, rounded_size, &subheap )))
1382     {
1383         TRACE("(%p,%08x,%08lx): returning NULL\n",
1384                   heap, flags, size  );
1385         if (!(flags & HEAP_NO_SERIALIZE)) RtlLeaveCriticalSection( &heapPtr->critSection );
1386         if (flags & HEAP_GENERATE_EXCEPTIONS) RtlRaiseStatus( STATUS_NO_MEMORY );
1387         return NULL;
1388     }
1389
1390     /* Remove the arena from the free list */
1391
1392     list_remove( &pArena->entry );
1393
1394     /* Build the in-use arena */
1395
1396     pInUse = (ARENA_INUSE *)pArena;
1397
1398     /* in-use arena is smaller than free arena,
1399      * so we have to add the difference to the size */
1400     pInUse->size  = (pInUse->size & ~ARENA_FLAG_FREE) + sizeof(ARENA_FREE) - sizeof(ARENA_INUSE);
1401     pInUse->magic = ARENA_INUSE_MAGIC;
1402
1403     /* Shrink the block */
1404
1405     HEAP_ShrinkBlock( subheap, pInUse, rounded_size );
1406     pInUse->unused_bytes = (pInUse->size & ARENA_SIZE_MASK) - size;
1407
1408     notify_alloc( pInUse + 1, size, flags & HEAP_ZERO_MEMORY );
1409
1410     if (flags & HEAP_ZERO_MEMORY)
1411     {
1412         clear_block( pInUse + 1, size );
1413         mark_block_uninitialized( (char *)(pInUse + 1) + size, pInUse->unused_bytes );
1414     }
1415     else
1416         mark_block_uninitialized( pInUse + 1, pInUse->size & ARENA_SIZE_MASK );
1417
1418     if (!(flags & HEAP_NO_SERIALIZE)) RtlLeaveCriticalSection( &heapPtr->critSection );
1419
1420     TRACE("(%p,%08x,%08lx): returning %p\n", heap, flags, size, pInUse + 1 );
1421     return (LPVOID)(pInUse + 1);
1422 }
1423
1424
1425 /***********************************************************************
1426  *           RtlFreeHeap   (NTDLL.@)
1427  *
1428  * Free a memory block allocated with RtlAllocateHeap().
1429  *
1430  * PARAMS
1431  *  heap  [I] Heap that block was allocated from
1432  *  flags [I] HEAP_ flags from "winnt.h"
1433  *  ptr   [I] Block to free
1434  *
1435  * RETURNS
1436  *  Success: TRUE, if ptr is NULL or was freed successfully.
1437  *  Failure: FALSE.
1438  */
1439 BOOLEAN WINAPI RtlFreeHeap( HANDLE heap, ULONG flags, PVOID ptr )
1440 {
1441     ARENA_INUSE *pInUse;
1442     SUBHEAP *subheap;
1443     HEAP *heapPtr;
1444
1445     /* Validate the parameters */
1446
1447     if (!ptr) return TRUE;  /* freeing a NULL ptr isn't an error in Win2k */
1448
1449     heapPtr = HEAP_GetPtr( heap );
1450     if (!heapPtr)
1451     {
1452         RtlSetLastWin32ErrorAndNtStatusFromNtStatus( STATUS_INVALID_HANDLE );
1453         return FALSE;
1454     }
1455
1456     flags &= HEAP_NO_SERIALIZE;
1457     flags |= heapPtr->flags;
1458     if (!(flags & HEAP_NO_SERIALIZE)) RtlEnterCriticalSection( &heapPtr->critSection );
1459
1460     /* Inform valgrind we are trying to free memory, so it can throw up an error message */
1461     notify_free( ptr );
1462
1463     /* Some sanity checks */
1464     pInUse  = (ARENA_INUSE *)ptr - 1;
1465     if (!(subheap = HEAP_FindSubHeap( heapPtr, pInUse )))
1466     {
1467         if (!find_large_block( heapPtr, ptr )) goto error;
1468         free_large_block( heapPtr, flags, ptr );
1469         goto done;
1470     }
1471     if ((char *)pInUse < (char *)subheap->base + subheap->headerSize) goto error;
1472     if (!HEAP_ValidateInUseArena( subheap, pInUse, QUIET )) goto error;
1473
1474     /* Turn the block into a free block */
1475
1476     HEAP_MakeInUseBlockFree( subheap, pInUse );
1477
1478 done:
1479     if (!(flags & HEAP_NO_SERIALIZE)) RtlLeaveCriticalSection( &heapPtr->critSection );
1480     TRACE("(%p,%08x,%p): returning TRUE\n", heap, flags, ptr );
1481     return TRUE;
1482
1483 error:
1484     if (!(flags & HEAP_NO_SERIALIZE)) RtlLeaveCriticalSection( &heapPtr->critSection );
1485     RtlSetLastWin32ErrorAndNtStatusFromNtStatus( STATUS_INVALID_PARAMETER );
1486     TRACE("(%p,%08x,%p): returning FALSE\n", heap, flags, ptr );
1487     return FALSE;
1488 }
1489
1490
1491 /***********************************************************************
1492  *           RtlReAllocateHeap   (NTDLL.@)
1493  *
1494  * Change the size of a memory block allocated with RtlAllocateHeap().
1495  *
1496  * PARAMS
1497  *  heap  [I] Heap that block was allocated from
1498  *  flags [I] HEAP_ flags from "winnt.h"
1499  *  ptr   [I] Block to resize
1500  *  size  [I] Size of the memory block to allocate
1501  *
1502  * RETURNS
1503  *  Success: A pointer to the resized block (which may be different).
1504  *  Failure: NULL.
1505  */
1506 PVOID WINAPI RtlReAllocateHeap( HANDLE heap, ULONG flags, PVOID ptr, SIZE_T size )
1507 {
1508     ARENA_INUSE *pArena;
1509     HEAP *heapPtr;
1510     SUBHEAP *subheap;
1511     SIZE_T oldBlockSize, oldActualSize, rounded_size;
1512     void *ret;
1513
1514     if (!ptr) return NULL;
1515     if (!(heapPtr = HEAP_GetPtr( heap )))
1516     {
1517         RtlSetLastWin32ErrorAndNtStatusFromNtStatus( STATUS_INVALID_HANDLE );
1518         return NULL;
1519     }
1520
1521     /* Validate the parameters */
1522
1523     flags &= HEAP_GENERATE_EXCEPTIONS | HEAP_NO_SERIALIZE | HEAP_ZERO_MEMORY |
1524              HEAP_REALLOC_IN_PLACE_ONLY;
1525     flags |= heapPtr->flags;
1526     if (!(flags & HEAP_NO_SERIALIZE)) RtlEnterCriticalSection( &heapPtr->critSection );
1527
1528     rounded_size = ROUND_SIZE(size);
1529     if (rounded_size < size) goto oom;  /* overflow */
1530     if (rounded_size < HEAP_MIN_DATA_SIZE) rounded_size = HEAP_MIN_DATA_SIZE;
1531
1532     pArena = (ARENA_INUSE *)ptr - 1;
1533     if (!(subheap = HEAP_FindSubHeap( heapPtr, pArena )))
1534     {
1535         if (!find_large_block( heapPtr, ptr )) goto error;
1536         if (!(ret = realloc_large_block( heapPtr, flags, ptr, size ))) goto oom;
1537         goto done;
1538     }
1539     if ((char *)pArena < (char *)subheap->base + subheap->headerSize) goto error;
1540     if (!HEAP_ValidateInUseArena( subheap, pArena, QUIET )) goto error;
1541
1542     /* Check if we need to grow the block */
1543
1544     oldBlockSize = (pArena->size & ARENA_SIZE_MASK);
1545     oldActualSize = (pArena->size & ARENA_SIZE_MASK) - pArena->unused_bytes;
1546     if (rounded_size > oldBlockSize)
1547     {
1548         char *pNext = (char *)(pArena + 1) + oldBlockSize;
1549
1550         if (rounded_size >= HEAP_MIN_LARGE_BLOCK_SIZE && (flags & HEAP_GROWABLE))
1551         {
1552             if (!(ret = allocate_large_block( heapPtr, flags, size ))) goto oom;
1553             memcpy( ret, pArena + 1, oldActualSize );
1554             goto done;
1555         }
1556         if ((pNext < (char *)subheap->base + subheap->size) &&
1557             (*(DWORD *)pNext & ARENA_FLAG_FREE) &&
1558             (oldBlockSize + (*(DWORD *)pNext & ARENA_SIZE_MASK) + sizeof(ARENA_FREE) >= rounded_size))
1559         {
1560             /* The next block is free and large enough */
1561             ARENA_FREE *pFree = (ARENA_FREE *)pNext;
1562             list_remove( &pFree->entry );
1563             pArena->size += (pFree->size & ARENA_SIZE_MASK) + sizeof(*pFree);
1564             if (!HEAP_Commit( subheap, pArena, rounded_size )) goto oom;
1565             notify_free( pArena + 1 );
1566             HEAP_ShrinkBlock( subheap, pArena, rounded_size );
1567             notify_alloc( pArena + 1, size, FALSE );
1568             /* FIXME: this is wrong as we may lose old VBits settings */
1569             mark_block_initialized( pArena + 1, oldActualSize );
1570         }
1571         else  /* Do it the hard way */
1572         {
1573             ARENA_FREE *pNew;
1574             ARENA_INUSE *pInUse;
1575             SUBHEAP *newsubheap;
1576
1577             if ((flags & HEAP_REALLOC_IN_PLACE_ONLY) ||
1578                 !(pNew = HEAP_FindFreeBlock( heapPtr, rounded_size, &newsubheap )))
1579                 goto oom;
1580
1581             /* Build the in-use arena */
1582
1583             list_remove( &pNew->entry );
1584             pInUse = (ARENA_INUSE *)pNew;
1585             pInUse->size = (pInUse->size & ~ARENA_FLAG_FREE)
1586                            + sizeof(ARENA_FREE) - sizeof(ARENA_INUSE);
1587             pInUse->magic = ARENA_INUSE_MAGIC;
1588             HEAP_ShrinkBlock( newsubheap, pInUse, rounded_size );
1589
1590             mark_block_initialized( pInUse + 1, oldActualSize );
1591             notify_alloc( pInUse + 1, size, FALSE );
1592             memcpy( pInUse + 1, pArena + 1, oldActualSize );
1593
1594             /* Free the previous block */
1595
1596             notify_free( pArena + 1 );
1597             HEAP_MakeInUseBlockFree( subheap, pArena );
1598             subheap = newsubheap;
1599             pArena  = pInUse;
1600         }
1601     }
1602     else
1603     {
1604         /* Shrink the block */
1605         notify_free( pArena + 1 );
1606         HEAP_ShrinkBlock( subheap, pArena, rounded_size );
1607         notify_alloc( pArena + 1, size, FALSE );
1608         /* FIXME: this is wrong as we may lose old VBits settings */
1609         mark_block_initialized( pArena + 1, size );
1610     }
1611
1612     pArena->unused_bytes = (pArena->size & ARENA_SIZE_MASK) - size;
1613
1614     /* Clear the extra bytes if needed */
1615
1616     if (size > oldActualSize)
1617     {
1618         if (flags & HEAP_ZERO_MEMORY)
1619         {
1620             clear_block( (char *)(pArena + 1) + oldActualSize, size - oldActualSize );
1621             mark_block_uninitialized( (char *)(pArena + 1) + size, pArena->unused_bytes );
1622         }
1623         else
1624             mark_block_uninitialized( (char *)(pArena + 1) + oldActualSize,
1625                                       (pArena->size & ARENA_SIZE_MASK) - oldActualSize );
1626     }
1627
1628     /* Return the new arena */
1629
1630     ret = pArena + 1;
1631 done:
1632     if (!(flags & HEAP_NO_SERIALIZE)) RtlLeaveCriticalSection( &heapPtr->critSection );
1633     TRACE("(%p,%08x,%p,%08lx): returning %p\n", heap, flags, ptr, size, ret );
1634     return ret;
1635
1636 oom:
1637     if (!(flags & HEAP_NO_SERIALIZE)) RtlLeaveCriticalSection( &heapPtr->critSection );
1638     if (flags & HEAP_GENERATE_EXCEPTIONS) RtlRaiseStatus( STATUS_NO_MEMORY );
1639     RtlSetLastWin32ErrorAndNtStatusFromNtStatus( STATUS_NO_MEMORY );
1640     TRACE("(%p,%08x,%p,%08lx): returning NULL\n", heap, flags, ptr, size );
1641     return NULL;
1642
1643 error:
1644     if (!(flags & HEAP_NO_SERIALIZE)) RtlLeaveCriticalSection( &heapPtr->critSection );
1645     RtlSetLastWin32ErrorAndNtStatusFromNtStatus( STATUS_INVALID_PARAMETER );
1646     TRACE("(%p,%08x,%p,%08lx): returning NULL\n", heap, flags, ptr, size );
1647     return NULL;
1648 }
1649
1650
1651 /***********************************************************************
1652  *           RtlCompactHeap   (NTDLL.@)
1653  *
1654  * Compact the free space in a Heap.
1655  *
1656  * PARAMS
1657  *  heap  [I] Heap that block was allocated from
1658  *  flags [I] HEAP_ flags from "winnt.h"
1659  *
1660  * RETURNS
1661  *  The number of bytes compacted.
1662  *
1663  * NOTES
1664  *  This function is a harmless stub.
1665  */
1666 ULONG WINAPI RtlCompactHeap( HANDLE heap, ULONG flags )
1667 {
1668     static BOOL reported;
1669     if (!reported++) FIXME( "(%p, 0x%x) stub\n", heap, flags );
1670     return 0;
1671 }
1672
1673
1674 /***********************************************************************
1675  *           RtlLockHeap   (NTDLL.@)
1676  *
1677  * Lock a Heap.
1678  *
1679  * PARAMS
1680  *  heap  [I] Heap to lock
1681  *
1682  * RETURNS
1683  *  Success: TRUE. The Heap is locked.
1684  *  Failure: FALSE, if heap is invalid.
1685  */
1686 BOOLEAN WINAPI RtlLockHeap( HANDLE heap )
1687 {
1688     HEAP *heapPtr = HEAP_GetPtr( heap );
1689     if (!heapPtr) return FALSE;
1690     RtlEnterCriticalSection( &heapPtr->critSection );
1691     return TRUE;
1692 }
1693
1694
1695 /***********************************************************************
1696  *           RtlUnlockHeap   (NTDLL.@)
1697  *
1698  * Unlock a Heap.
1699  *
1700  * PARAMS
1701  *  heap  [I] Heap to unlock
1702  *
1703  * RETURNS
1704  *  Success: TRUE. The Heap is unlocked.
1705  *  Failure: FALSE, if heap is invalid.
1706  */
1707 BOOLEAN WINAPI RtlUnlockHeap( HANDLE heap )
1708 {
1709     HEAP *heapPtr = HEAP_GetPtr( heap );
1710     if (!heapPtr) return FALSE;
1711     RtlLeaveCriticalSection( &heapPtr->critSection );
1712     return TRUE;
1713 }
1714
1715
1716 /***********************************************************************
1717  *           RtlSizeHeap   (NTDLL.@)
1718  *
1719  * Get the actual size of a memory block allocated from a Heap.
1720  *
1721  * PARAMS
1722  *  heap  [I] Heap that block was allocated from
1723  *  flags [I] HEAP_ flags from "winnt.h"
1724  *  ptr   [I] Block to get the size of
1725  *
1726  * RETURNS
1727  *  Success: The size of the block.
1728  *  Failure: -1, heap or ptr are invalid.
1729  *
1730  * NOTES
1731  *  The size may be bigger than what was passed to RtlAllocateHeap().
1732  */
1733 SIZE_T WINAPI RtlSizeHeap( HANDLE heap, ULONG flags, const void *ptr )
1734 {
1735     SIZE_T ret;
1736     HEAP *heapPtr = HEAP_GetPtr( heap );
1737
1738     if (!heapPtr)
1739     {
1740         RtlSetLastWin32ErrorAndNtStatusFromNtStatus( STATUS_INVALID_HANDLE );
1741         return ~0UL;
1742     }
1743     flags &= HEAP_NO_SERIALIZE;
1744     flags |= heapPtr->flags;
1745     if (!(flags & HEAP_NO_SERIALIZE)) RtlEnterCriticalSection( &heapPtr->critSection );
1746     if (!HEAP_IsRealArena( heapPtr, HEAP_NO_SERIALIZE, ptr, QUIET ))
1747     {
1748         RtlSetLastWin32ErrorAndNtStatusFromNtStatus( STATUS_INVALID_PARAMETER );
1749         ret = ~0UL;
1750     }
1751     else
1752     {
1753         const ARENA_INUSE *pArena = (const ARENA_INUSE *)ptr - 1;
1754         if (pArena->size == ARENA_LARGE_SIZE)
1755         {
1756             const ARENA_LARGE *large_arena = (const ARENA_LARGE *)ptr - 1;
1757             ret = large_arena->data_size;
1758         }
1759         else ret = (pArena->size & ARENA_SIZE_MASK) - pArena->unused_bytes;
1760     }
1761     if (!(flags & HEAP_NO_SERIALIZE)) RtlLeaveCriticalSection( &heapPtr->critSection );
1762
1763     TRACE("(%p,%08x,%p): returning %08lx\n", heap, flags, ptr, ret );
1764     return ret;
1765 }
1766
1767
1768 /***********************************************************************
1769  *           RtlValidateHeap   (NTDLL.@)
1770  *
1771  * Determine if a block is a valid allocation from a heap.
1772  *
1773  * PARAMS
1774  *  heap  [I] Heap that block was allocated from
1775  *  flags [I] HEAP_ flags from "winnt.h"
1776  *  ptr   [I] Block to check
1777  *
1778  * RETURNS
1779  *  Success: TRUE. The block was allocated from heap.
1780  *  Failure: FALSE, if heap is invalid or ptr was not allocated from it.
1781  */
1782 BOOLEAN WINAPI RtlValidateHeap( HANDLE heap, ULONG flags, LPCVOID ptr )
1783 {
1784     HEAP *heapPtr = HEAP_GetPtr( heap );
1785     if (!heapPtr) return FALSE;
1786     return HEAP_IsRealArena( heapPtr, flags, ptr, QUIET );
1787 }
1788
1789
1790 /***********************************************************************
1791  *           RtlWalkHeap    (NTDLL.@)
1792  *
1793  * FIXME
1794  *  The PROCESS_HEAP_ENTRY flag values seem different between this
1795  *  function and HeapWalk(). To be checked.
1796  */
1797 NTSTATUS WINAPI RtlWalkHeap( HANDLE heap, PVOID entry_ptr )
1798 {
1799     LPPROCESS_HEAP_ENTRY entry = entry_ptr; /* FIXME */
1800     HEAP *heapPtr = HEAP_GetPtr(heap);
1801     SUBHEAP *sub, *currentheap = NULL;
1802     NTSTATUS ret;
1803     char *ptr;
1804     int region_index = 0;
1805
1806     if (!heapPtr || !entry) return STATUS_INVALID_PARAMETER;
1807
1808     if (!(heapPtr->flags & HEAP_NO_SERIALIZE)) RtlEnterCriticalSection( &heapPtr->critSection );
1809
1810     /* FIXME: enumerate large blocks too */
1811
1812     /* set ptr to the next arena to be examined */
1813
1814     if (!entry->lpData) /* first call (init) ? */
1815     {
1816         TRACE("begin walking of heap %p.\n", heap);
1817         currentheap = &heapPtr->subheap;
1818         ptr = (char*)currentheap->base + currentheap->headerSize;
1819     }
1820     else
1821     {
1822         ptr = entry->lpData;
1823         LIST_FOR_EACH_ENTRY( sub, &heapPtr->subheap_list, SUBHEAP, entry )
1824         {
1825             if ((ptr >= (char *)sub->base) &&
1826                 (ptr < (char *)sub->base + sub->size))
1827             {
1828                 currentheap = sub;
1829                 break;
1830             }
1831             region_index++;
1832         }
1833         if (currentheap == NULL)
1834         {
1835             ERR("no matching subheap found, shouldn't happen !\n");
1836             ret = STATUS_NO_MORE_ENTRIES;
1837             goto HW_end;
1838         }
1839
1840         if (((ARENA_INUSE *)ptr - 1)->magic == ARENA_INUSE_MAGIC)
1841         {
1842             ARENA_INUSE *pArena = (ARENA_INUSE *)ptr - 1;
1843             ptr += pArena->size & ARENA_SIZE_MASK;
1844         }
1845         else if (((ARENA_FREE *)ptr - 1)->magic == ARENA_FREE_MAGIC)
1846         {
1847             ARENA_FREE *pArena = (ARENA_FREE *)ptr - 1;
1848             ptr += pArena->size & ARENA_SIZE_MASK;
1849         }
1850         else
1851             ptr += entry->cbData; /* point to next arena */
1852
1853         if (ptr > (char *)currentheap->base + currentheap->size - 1)
1854         {   /* proceed with next subheap */
1855             struct list *next = list_next( &heapPtr->subheap_list, &currentheap->entry );
1856             if (!next)
1857             {  /* successfully finished */
1858                 TRACE("end reached.\n");
1859                 ret = STATUS_NO_MORE_ENTRIES;
1860                 goto HW_end;
1861             }
1862             currentheap = LIST_ENTRY( next, SUBHEAP, entry );
1863             ptr = (char *)currentheap->base + currentheap->headerSize;
1864         }
1865     }
1866
1867     entry->wFlags = 0;
1868     if (*(DWORD *)ptr & ARENA_FLAG_FREE)
1869     {
1870         ARENA_FREE *pArena = (ARENA_FREE *)ptr;
1871
1872         /*TRACE("free, magic: %04x\n", pArena->magic);*/
1873
1874         entry->lpData = pArena + 1;
1875         entry->cbData = pArena->size & ARENA_SIZE_MASK;
1876         entry->cbOverhead = sizeof(ARENA_FREE);
1877         entry->wFlags = PROCESS_HEAP_UNCOMMITTED_RANGE;
1878     }
1879     else
1880     {
1881         ARENA_INUSE *pArena = (ARENA_INUSE *)ptr;
1882
1883         /*TRACE("busy, magic: %04x\n", pArena->magic);*/
1884
1885         entry->lpData = pArena + 1;
1886         entry->cbData = pArena->size & ARENA_SIZE_MASK;
1887         entry->cbOverhead = sizeof(ARENA_INUSE);
1888         entry->wFlags = PROCESS_HEAP_ENTRY_BUSY;
1889         /* FIXME: can't handle PROCESS_HEAP_ENTRY_MOVEABLE
1890         and PROCESS_HEAP_ENTRY_DDESHARE yet */
1891     }
1892
1893     entry->iRegionIndex = region_index;
1894
1895     /* first element of heap ? */
1896     if (ptr == (char *)currentheap->base + currentheap->headerSize)
1897     {
1898         entry->wFlags |= PROCESS_HEAP_REGION;
1899         entry->u.Region.dwCommittedSize = currentheap->commitSize;
1900         entry->u.Region.dwUnCommittedSize =
1901                 currentheap->size - currentheap->commitSize;
1902         entry->u.Region.lpFirstBlock = /* first valid block */
1903                 (char *)currentheap->base + currentheap->headerSize;
1904         entry->u.Region.lpLastBlock  = /* first invalid block */
1905                 (char *)currentheap->base + currentheap->size;
1906     }
1907     ret = STATUS_SUCCESS;
1908     if (TRACE_ON(heap)) HEAP_DumpEntry(entry);
1909
1910 HW_end:
1911     if (!(heapPtr->flags & HEAP_NO_SERIALIZE)) RtlLeaveCriticalSection( &heapPtr->critSection );
1912     return ret;
1913 }
1914
1915
1916 /***********************************************************************
1917  *           RtlGetProcessHeaps    (NTDLL.@)
1918  *
1919  * Get the Heaps belonging to the current process.
1920  *
1921  * PARAMS
1922  *  count [I] size of heaps
1923  *  heaps [O] Destination array for heap HANDLE's
1924  *
1925  * RETURNS
1926  *  Success: The number of Heaps allocated by the process.
1927  *  Failure: 0.
1928  */
1929 ULONG WINAPI RtlGetProcessHeaps( ULONG count, HANDLE *heaps )
1930 {
1931     ULONG total = 1;  /* main heap */
1932     struct list *ptr;
1933
1934     RtlEnterCriticalSection( &processHeap->critSection );
1935     LIST_FOR_EACH( ptr, &processHeap->entry ) total++;
1936     if (total <= count)
1937     {
1938         *heaps++ = processHeap;
1939         LIST_FOR_EACH( ptr, &processHeap->entry )
1940             *heaps++ = LIST_ENTRY( ptr, HEAP, entry );
1941     }
1942     RtlLeaveCriticalSection( &processHeap->critSection );
1943     return total;
1944 }