user32: Fix user_thread_info for 64-bits
[wine/wine64.git] / dlls / kernel32 / heap.c
blob31200583134ab8c7be53652d22405bf9096be047
1 /*
2 * Win32 heap functions
4 * Copyright 1995, 1996 Alexandre Julliard
5 * Copyright 1996 Huw Davies
6 * Copyright 1998 Ulrich Weigand
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "config.h"
24 #include "wine/port.h"
26 #include <assert.h>
27 #include <limits.h>
28 #include <stdlib.h>
29 #include <stdarg.h>
30 #include <stdio.h>
31 #include <string.h>
32 #include <sys/types.h>
33 #include <time.h>
34 #ifdef HAVE_SYS_PARAM_H
35 #include <sys/param.h>
36 #endif
37 #ifdef HAVE_SYS_SYSCTL_H
38 #include <sys/sysctl.h>
39 #endif
40 #ifdef HAVE_UNISTD_H
41 # include <unistd.h>
42 #endif
44 #ifdef sun
45 /* FIXME: Unfortunately swapctl can't be used with largefile.... */
46 # undef _FILE_OFFSET_BITS
47 # define _FILE_OFFSET_BITS 32
48 # ifdef HAVE_SYS_RESOURCE_H
49 # include <sys/resource.h>
50 # endif
51 # ifdef HAVE_SYS_STAT_H
52 # include <sys/stat.h>
53 # endif
54 # include <sys/swap.h>
55 #endif
58 #include "windef.h"
59 #include "winbase.h"
60 #include "winerror.h"
61 #include "winnt.h"
62 #include "winternl.h"
63 #include "wine/exception.h"
64 #include "wine/debug.h"
66 WINE_DEFAULT_DEBUG_CHANNEL(heap);
68 /* address where we try to map the system heap */
69 #define SYSTEM_HEAP_BASE ((void*)0x80000000)
70 #define SYSTEM_HEAP_SIZE 0x1000000 /* Default heap size = 16Mb */
72 static HANDLE systemHeap; /* globally shared heap */
75 /***********************************************************************
76 * HEAP_CreateSystemHeap
78 * Create the system heap.
80 static inline HANDLE HEAP_CreateSystemHeap(void)
82 int created;
83 void *base;
84 HANDLE map, event;
86 /* create the system heap event first */
87 event = CreateEventA( NULL, TRUE, FALSE, "__wine_system_heap_event" );
89 if (!(map = CreateFileMappingA( INVALID_HANDLE_VALUE, NULL, SEC_COMMIT | PAGE_READWRITE,
90 0, SYSTEM_HEAP_SIZE, "__wine_system_heap" ))) return 0;
91 created = (GetLastError() != ERROR_ALREADY_EXISTS);
93 if (!(base = MapViewOfFileEx( map, FILE_MAP_ALL_ACCESS, 0, 0, 0, SYSTEM_HEAP_BASE )))
95 /* pre-defined address not available */
96 ERR( "system heap base address %p not available\n", SYSTEM_HEAP_BASE );
97 return 0;
100 if (created) /* newly created heap */
102 systemHeap = RtlCreateHeap( HEAP_SHARED, base, SYSTEM_HEAP_SIZE,
103 SYSTEM_HEAP_SIZE, NULL, NULL );
104 SetEvent( event );
106 else
108 /* wait for the heap to be initialized */
109 WaitForSingleObject( event, INFINITE );
110 systemHeap = base;
112 CloseHandle( map );
113 return systemHeap;
117 /***********************************************************************
118 * HeapCreate (KERNEL32.@)
120 * Create a heap object.
122 * RETURNS
123 * Handle of heap: Success
124 * NULL: Failure
126 HANDLE WINAPI HeapCreate(
127 DWORD flags, /* [in] Heap allocation flag */
128 SIZE_T initialSize, /* [in] Initial heap size */
129 SIZE_T maxSize /* [in] Maximum heap size */
131 HANDLE ret;
133 if ( flags & HEAP_SHARED )
135 if (!systemHeap) HEAP_CreateSystemHeap();
136 else WARN( "Shared Heap requested, returning system heap.\n" );
137 ret = systemHeap;
139 else
141 ret = RtlCreateHeap( flags, NULL, maxSize, initialSize, NULL, NULL );
142 if (!ret) SetLastError( ERROR_NOT_ENOUGH_MEMORY );
144 return ret;
148 /***********************************************************************
149 * HeapDestroy (KERNEL32.@)
151 * Destroy a heap object.
153 * RETURNS
154 * TRUE: Success
155 * FALSE: Failure
157 BOOL WINAPI HeapDestroy( HANDLE heap /* [in] Handle of heap */ )
159 if (heap == systemHeap)
161 WARN( "attempt to destroy system heap, returning TRUE!\n" );
162 return TRUE;
164 if (!RtlDestroyHeap( heap )) return TRUE;
165 SetLastError( ERROR_INVALID_HANDLE );
166 return FALSE;
170 /***********************************************************************
171 * HeapCompact (KERNEL32.@)
173 SIZE_T WINAPI HeapCompact( HANDLE heap, DWORD flags )
175 return RtlCompactHeap( heap, flags );
179 /***********************************************************************
180 * HeapValidate (KERNEL32.@)
181 * Validates a specified heap.
183 * NOTES
184 * Flags is ignored.
186 * RETURNS
187 * TRUE: Success
188 * FALSE: Failure
190 BOOL WINAPI HeapValidate(
191 HANDLE heap, /* [in] Handle to the heap */
192 DWORD flags, /* [in] Bit flags that control access during operation */
193 LPCVOID block /* [in] Optional pointer to memory block to validate */
195 return RtlValidateHeap( heap, flags, block );
199 /***********************************************************************
200 * HeapWalk (KERNEL32.@)
201 * Enumerates the memory blocks in a specified heap.
203 * TODO
204 * - handling of PROCESS_HEAP_ENTRY_MOVEABLE and
205 * PROCESS_HEAP_ENTRY_DDESHARE (needs heap.c support)
207 * RETURNS
208 * TRUE: Success
209 * FALSE: Failure
211 BOOL WINAPI HeapWalk(
212 HANDLE heap, /* [in] Handle to heap to enumerate */
213 LPPROCESS_HEAP_ENTRY entry /* [out] Pointer to structure of enumeration info */
215 NTSTATUS ret = RtlWalkHeap( heap, entry );
216 if (ret) SetLastError( RtlNtStatusToDosError(ret) );
217 return !ret;
221 /***********************************************************************
222 * HeapLock (KERNEL32.@)
223 * Attempts to acquire the critical section object for a specified heap.
225 * RETURNS
226 * TRUE: Success
227 * FALSE: Failure
229 BOOL WINAPI HeapLock(
230 HANDLE heap /* [in] Handle of heap to lock for exclusive access */
232 return RtlLockHeap( heap );
236 /***********************************************************************
237 * HeapUnlock (KERNEL32.@)
238 * Releases ownership of the critical section object.
240 * RETURNS
241 * TRUE: Success
242 * FALSE: Failure
244 BOOL WINAPI HeapUnlock(
245 HANDLE heap /* [in] Handle to the heap to unlock */
247 return RtlUnlockHeap( heap );
251 /***********************************************************************
252 * GetProcessHeap (KERNEL32.@)
254 HANDLE WINAPI GetProcessHeap(void)
256 return NtCurrentTeb()->Peb->ProcessHeap;
260 /***********************************************************************
261 * GetProcessHeaps (KERNEL32.@)
263 DWORD WINAPI GetProcessHeaps( DWORD count, HANDLE *heaps )
265 return RtlGetProcessHeaps( count, heaps );
269 /* These are needed so that we can call the functions from inside kernel itself */
271 /***********************************************************************
272 * HeapAlloc (KERNEL32.@)
274 LPVOID WINAPI HeapAlloc( HANDLE heap, DWORD flags, SIZE_T size )
276 return RtlAllocateHeap( heap, flags, size );
279 BOOL WINAPI HeapFree( HANDLE heap, DWORD flags, LPVOID ptr )
281 return RtlFreeHeap( heap, flags, ptr );
284 LPVOID WINAPI HeapReAlloc( HANDLE heap, DWORD flags, LPVOID ptr, SIZE_T size )
286 return RtlReAllocateHeap( heap, flags, ptr, size );
289 SIZE_T WINAPI HeapSize( HANDLE heap, DWORD flags, LPCVOID ptr )
291 return RtlSizeHeap( heap, flags, ptr );
294 BOOL WINAPI HeapSetInformation( HANDLE heap, HEAP_INFORMATION_CLASS infoclass, PVOID info, SIZE_T size)
296 FIXME("%p %d %p %ld\n", heap, infoclass, info, size );
297 return TRUE;
301 * Win32 Global heap functions (GlobalXXX).
302 * These functions included in Win32 for compatibility with 16 bit Windows
303 * Especially the moveable blocks and handles are oldish.
304 * But the ability to directly allocate memory with GPTR and LPTR is widely
305 * used.
307 * The handle stuff looks horrible, but it's implemented almost like Win95
308 * does it.
312 #define MAGIC_GLOBAL_USED 0x5342
313 #define HANDLE_TO_INTERN(h) ((PGLOBAL32_INTERN)(((char *)(h))-2))
314 #define INTERN_TO_HANDLE(i) ((HGLOBAL) &((i)->Pointer))
315 #define POINTER_TO_HANDLE(p) (*(((const HGLOBAL *)(p))-2))
316 #define ISHANDLE(h) (((ULONG_PTR)(h)&2)!=0)
317 #define ISPOINTER(h) (((ULONG_PTR)(h)&2)==0)
318 /* align the storage needed for the HGLOBAL on an 8byte boundary thus
319 * GlobalAlloc/GlobalReAlloc'ing with GMEM_MOVEABLE of memory with
320 * size = 8*k, where k=1,2,3,... alloc's exactly the given size.
321 * The Minolta DiMAGE Image Viewer heavily relies on this, corrupting
322 * the output jpeg's > 1 MB if not */
323 #define HGLOBAL_STORAGE 8 /* sizeof(HGLOBAL)*2 */
325 #include "pshpack1.h"
327 typedef struct __GLOBAL32_INTERN
329 WORD Magic;
330 LPVOID Pointer;
331 BYTE Flags;
332 BYTE LockCount;
333 } GLOBAL32_INTERN, *PGLOBAL32_INTERN;
335 #include "poppack.h"
337 /***********************************************************************
338 * GlobalAlloc (KERNEL32.@)
340 * Allocate a global memory object.
342 * RETURNS
343 * Handle: Success
344 * NULL: Failure
346 HGLOBAL WINAPI GlobalAlloc(
347 UINT flags, /* [in] Object allocation attributes */
348 SIZE_T size /* [in] Number of bytes to allocate */
350 PGLOBAL32_INTERN pintern;
351 DWORD hpflags;
352 LPVOID palloc;
354 if(flags&GMEM_ZEROINIT)
355 hpflags=HEAP_ZERO_MEMORY;
356 else
357 hpflags=0;
359 if((flags & GMEM_MOVEABLE)==0) /* POINTER */
361 palloc=HeapAlloc(GetProcessHeap(), hpflags, size);
362 TRACE( "(flags=%04x) returning %p\n", flags, palloc );
363 return palloc;
365 else /* HANDLE */
367 if (size > INT_MAX-HGLOBAL_STORAGE)
369 SetLastError(ERROR_OUTOFMEMORY);
370 return 0;
373 RtlLockHeap(GetProcessHeap());
375 pintern = HeapAlloc(GetProcessHeap(), 0, sizeof(GLOBAL32_INTERN));
376 if (pintern)
378 pintern->Magic = MAGIC_GLOBAL_USED;
379 pintern->Flags = flags >> 8;
380 pintern->LockCount = 0;
382 if (size)
384 palloc = HeapAlloc(GetProcessHeap(), hpflags, size+HGLOBAL_STORAGE);
385 if (!palloc)
387 HeapFree(GetProcessHeap(), 0, pintern);
388 pintern = NULL;
390 else
392 *(HGLOBAL *)palloc = INTERN_TO_HANDLE(pintern);
393 pintern->Pointer = (char *)palloc + HGLOBAL_STORAGE;
396 else
397 pintern->Pointer = NULL;
400 RtlUnlockHeap(GetProcessHeap());
401 if (!pintern) return 0;
402 TRACE( "(flags=%04x) returning handle %p pointer %p\n",
403 flags, INTERN_TO_HANDLE(pintern), pintern->Pointer );
404 return INTERN_TO_HANDLE(pintern);
409 /***********************************************************************
410 * GlobalLock (KERNEL32.@)
412 * Lock a global memory object and return a pointer to first byte of the memory
414 * PARAMS
415 * hmem [I] Handle of the global memory object
417 * RETURNS
418 * Success: Pointer to first byte of the memory block
419 * Failure: NULL
421 * NOTES
422 * When the handle is invalid, last error is set to ERROR_INVALID_HANDLE
425 LPVOID WINAPI GlobalLock(HGLOBAL hmem)
427 PGLOBAL32_INTERN pintern;
428 LPVOID palloc;
430 if (ISPOINTER(hmem))
431 return IsBadReadPtr(hmem, 1) ? NULL : hmem;
433 RtlLockHeap(GetProcessHeap());
434 __TRY
436 pintern = HANDLE_TO_INTERN(hmem);
437 if (pintern->Magic == MAGIC_GLOBAL_USED)
439 palloc = pintern->Pointer;
440 if (!pintern->Pointer)
441 SetLastError(ERROR_DISCARDED);
442 else if (pintern->LockCount < GMEM_LOCKCOUNT)
443 pintern->LockCount++;
445 else
447 WARN("invalid handle %p (Magic: 0x%04x)\n", hmem, pintern->Magic);
448 palloc = NULL;
449 SetLastError(ERROR_INVALID_HANDLE);
452 __EXCEPT_PAGE_FAULT
454 WARN("(%p): Page fault occurred ! Caused by bug ?\n", hmem);
455 palloc = NULL;
456 SetLastError(ERROR_INVALID_HANDLE);
458 __ENDTRY
459 RtlUnlockHeap(GetProcessHeap());
460 return palloc;
464 /***********************************************************************
465 * GlobalUnlock (KERNEL32.@)
467 * Unlock a global memory object.
469 * PARAMS
470 * hmem [I] Handle of the global memory object
472 * RETURNS
473 * Success: Object is still locked
474 * Failure: FALSE (The Object is unlocked)
476 * NOTES
477 * When the handle is invalid, last error is set to ERROR_INVALID_HANDLE
480 BOOL WINAPI GlobalUnlock(HGLOBAL hmem)
482 PGLOBAL32_INTERN pintern;
483 BOOL locked;
485 if (ISPOINTER(hmem)) return TRUE;
487 RtlLockHeap(GetProcessHeap());
488 __TRY
490 pintern=HANDLE_TO_INTERN(hmem);
491 if(pintern->Magic==MAGIC_GLOBAL_USED)
493 if(pintern->LockCount)
495 pintern->LockCount--;
496 locked = (pintern->LockCount != 0);
497 if (!locked) SetLastError(NO_ERROR);
499 else
501 WARN("%p not locked\n", hmem);
502 SetLastError(ERROR_NOT_LOCKED);
503 locked = FALSE;
506 else
508 WARN("invalid handle %p (Magic: 0x%04x)\n", hmem, pintern->Magic);
509 SetLastError(ERROR_INVALID_HANDLE);
510 locked=FALSE;
513 __EXCEPT_PAGE_FAULT
515 WARN("(%p): Page fault occurred ! Caused by bug ?\n", hmem);
516 SetLastError( ERROR_INVALID_PARAMETER );
517 locked=FALSE;
519 __ENDTRY
520 RtlUnlockHeap(GetProcessHeap());
521 return locked;
525 /***********************************************************************
526 * GlobalHandle (KERNEL32.@)
528 * Get the handle associated with the pointer to a global memory block.
530 * RETURNS
531 * Handle: Success
532 * NULL: Failure
534 HGLOBAL WINAPI GlobalHandle(
535 LPCVOID pmem /* [in] Pointer to global memory block */
537 HGLOBAL handle;
538 PGLOBAL32_INTERN maybe_intern;
539 LPCVOID test;
541 if (!pmem)
543 SetLastError( ERROR_INVALID_PARAMETER );
544 return 0;
547 RtlLockHeap(GetProcessHeap());
548 __TRY
550 handle = 0;
552 /* note that if pmem is a pointer to a block allocated by */
553 /* GlobalAlloc with GMEM_MOVEABLE then magic test in HeapValidate */
554 /* will fail. */
555 if (ISPOINTER(pmem)) {
556 if (HeapValidate( GetProcessHeap(), 0, pmem )) {
557 handle = (HGLOBAL)pmem; /* valid fixed block */
558 break;
560 handle = POINTER_TO_HANDLE(pmem);
561 } else
562 handle = (HGLOBAL)pmem;
564 /* Now test handle either passed in or retrieved from pointer */
565 maybe_intern = HANDLE_TO_INTERN( handle );
566 if (maybe_intern->Magic == MAGIC_GLOBAL_USED) {
567 test = maybe_intern->Pointer;
568 if (HeapValidate( GetProcessHeap(), 0, (const char *)test - HGLOBAL_STORAGE ) && /* obj(-handle) valid arena? */
569 HeapValidate( GetProcessHeap(), 0, maybe_intern )) /* intern valid arena? */
570 break; /* valid moveable block */
572 handle = 0;
573 SetLastError( ERROR_INVALID_HANDLE );
575 __EXCEPT_PAGE_FAULT
577 SetLastError( ERROR_INVALID_HANDLE );
578 handle = 0;
580 __ENDTRY
581 RtlUnlockHeap(GetProcessHeap());
583 return handle;
587 /***********************************************************************
588 * GlobalReAlloc (KERNEL32.@)
590 * Change the size or attributes of a global memory object.
592 * RETURNS
593 * Handle: Success
594 * NULL: Failure
596 HGLOBAL WINAPI GlobalReAlloc(
597 HGLOBAL hmem, /* [in] Handle of global memory object */
598 SIZE_T size, /* [in] New size of block */
599 UINT flags /* [in] How to reallocate object */
601 LPVOID palloc;
602 HGLOBAL hnew;
603 PGLOBAL32_INTERN pintern;
604 DWORD heap_flags = (flags & GMEM_ZEROINIT) ? HEAP_ZERO_MEMORY : 0;
606 hnew = 0;
607 RtlLockHeap(GetProcessHeap());
608 if(flags & GMEM_MODIFY) /* modify flags */
610 if( ISPOINTER(hmem) && (flags & GMEM_MOVEABLE))
612 /* make a fixed block moveable
613 * actually only NT is able to do this. But it's soo simple
615 if (hmem == 0)
617 WARN("GlobalReAlloc with null handle!\n");
618 SetLastError( ERROR_NOACCESS );
619 hnew = 0;
621 else
623 size = HeapSize(GetProcessHeap(), 0, hmem);
624 hnew = GlobalAlloc(flags, size);
625 palloc = GlobalLock(hnew);
626 memcpy(palloc, hmem, size);
627 GlobalUnlock(hnew);
628 GlobalFree(hmem);
631 else if( ISPOINTER(hmem) &&(flags & GMEM_DISCARDABLE))
633 /* change the flags to make our block "discardable" */
634 pintern=HANDLE_TO_INTERN(hmem);
635 pintern->Flags = pintern->Flags | (GMEM_DISCARDABLE >> 8);
636 hnew=hmem;
638 else
640 SetLastError(ERROR_INVALID_PARAMETER);
641 hnew = 0;
644 else
646 if(ISPOINTER(hmem))
648 /* reallocate fixed memory */
649 hnew=HeapReAlloc(GetProcessHeap(), heap_flags, hmem, size);
651 else
653 /* reallocate a moveable block */
654 pintern=HANDLE_TO_INTERN(hmem);
656 #if 0
657 /* Apparently Windows doesn't care whether the handle is locked at this point */
658 /* See also the same comment in GlobalFree() */
659 if(pintern->LockCount>1) {
660 ERR("handle 0x%08lx is still locked, cannot realloc!\n",(DWORD)hmem);
661 SetLastError(ERROR_INVALID_HANDLE);
662 } else
663 #endif
664 if(size!=0)
666 hnew=hmem;
667 if(pintern->Pointer)
669 if(size > INT_MAX-HGLOBAL_STORAGE)
671 SetLastError(ERROR_OUTOFMEMORY);
672 hnew = 0;
674 else if((palloc = HeapReAlloc(GetProcessHeap(), heap_flags,
675 (char *) pintern->Pointer-HGLOBAL_STORAGE,
676 size+HGLOBAL_STORAGE)) == NULL)
677 hnew = 0; /* Block still valid */
678 else
679 pintern->Pointer = (char *)palloc+HGLOBAL_STORAGE;
681 else
683 if(size > INT_MAX-HGLOBAL_STORAGE)
685 SetLastError(ERROR_OUTOFMEMORY);
686 hnew = 0;
688 else if((palloc=HeapAlloc(GetProcessHeap(), heap_flags, size+HGLOBAL_STORAGE))
689 == NULL)
690 hnew = 0;
691 else
693 *(HGLOBAL *)palloc = hmem;
694 pintern->Pointer = (char *)palloc + HGLOBAL_STORAGE;
698 else
700 if (pintern->LockCount == 0)
702 if(pintern->Pointer)
704 HeapFree(GetProcessHeap(), 0, (char *) pintern->Pointer-HGLOBAL_STORAGE);
705 pintern->Pointer = NULL;
707 hnew = hmem;
709 else
710 WARN("not freeing memory associated with locked handle\n");
714 RtlUnlockHeap(GetProcessHeap());
715 return hnew;
719 /***********************************************************************
720 * GlobalFree (KERNEL32.@)
722 * Free a global memory object.
724 * PARAMS
725 * hmem [I] Handle of the global memory object
727 * RETURNS
728 * Success: NULL
729 * Failure: The provided handle
731 * NOTES
732 * When the handle is invalid, last error is set to ERROR_INVALID_HANDLE
735 HGLOBAL WINAPI GlobalFree(HGLOBAL hmem)
737 PGLOBAL32_INTERN pintern;
738 HGLOBAL hreturned;
740 RtlLockHeap(GetProcessHeap());
741 __TRY
743 hreturned = 0;
744 if(ISPOINTER(hmem)) /* POINTER */
746 if(!HeapFree(GetProcessHeap(), 0, hmem))
748 SetLastError(ERROR_INVALID_HANDLE);
749 hreturned = hmem;
752 else /* HANDLE */
754 pintern=HANDLE_TO_INTERN(hmem);
756 if(pintern->Magic==MAGIC_GLOBAL_USED)
758 pintern->Magic = 0xdead;
760 /* WIN98 does not make this test. That is you can free a */
761 /* block you have not unlocked. Go figure!! */
762 /* if(pintern->LockCount!=0) */
763 /* SetLastError(ERROR_INVALID_HANDLE); */
765 if(pintern->Pointer)
766 if(!HeapFree(GetProcessHeap(), 0, (char *)(pintern->Pointer)-HGLOBAL_STORAGE))
767 hreturned=hmem;
768 if(!HeapFree(GetProcessHeap(), 0, pintern))
769 hreturned=hmem;
771 else
773 WARN("invalid handle %p (Magic: 0x%04x)\n", hmem, pintern->Magic);
774 SetLastError(ERROR_INVALID_HANDLE);
775 hreturned = hmem;
779 __EXCEPT_PAGE_FAULT
781 ERR("(%p): Page fault occurred ! Caused by bug ?\n", hmem);
782 SetLastError( ERROR_INVALID_PARAMETER );
783 hreturned = hmem;
785 __ENDTRY
786 RtlUnlockHeap(GetProcessHeap());
787 return hreturned;
791 /***********************************************************************
792 * GlobalSize (KERNEL32.@)
794 * Get the size of a global memory object.
796 * PARAMS
797 * hmem [I] Handle of the global memory object
799 * RETURNS
800 * Failure: 0
801 * Success: Size in Bytes of the global memory object
803 * NOTES
804 * When the handle is invalid, last error is set to ERROR_INVALID_HANDLE
807 SIZE_T WINAPI GlobalSize(HGLOBAL hmem)
809 DWORD retval;
810 PGLOBAL32_INTERN pintern;
812 if (!((ULONG_PTR)hmem >> 16))
814 SetLastError(ERROR_INVALID_HANDLE);
815 return 0;
818 if(ISPOINTER(hmem))
820 retval=HeapSize(GetProcessHeap(), 0, hmem);
822 else
824 RtlLockHeap(GetProcessHeap());
825 pintern=HANDLE_TO_INTERN(hmem);
827 if(pintern->Magic==MAGIC_GLOBAL_USED)
829 if (!pintern->Pointer) /* handle case of GlobalAlloc( ??,0) */
830 retval = 0;
831 else
833 retval = HeapSize(GetProcessHeap(), 0,
834 (char *)(pintern->Pointer) - HGLOBAL_STORAGE );
835 if (retval != (DWORD)-1) retval -= HGLOBAL_STORAGE;
838 else
840 WARN("invalid handle %p (Magic: 0x%04x)\n", hmem, pintern->Magic);
841 SetLastError(ERROR_INVALID_HANDLE);
842 retval=0;
844 RtlUnlockHeap(GetProcessHeap());
846 /* HeapSize returns 0xffffffff on failure */
847 if (retval == 0xffffffff) retval = 0;
848 return retval;
852 /***********************************************************************
853 * GlobalWire (KERNEL32.@)
855 LPVOID WINAPI GlobalWire(HGLOBAL hmem)
857 return GlobalLock( hmem );
861 /***********************************************************************
862 * GlobalUnWire (KERNEL32.@)
864 BOOL WINAPI GlobalUnWire(HGLOBAL hmem)
866 return GlobalUnlock( hmem);
870 /***********************************************************************
871 * GlobalFix (KERNEL32.@)
873 VOID WINAPI GlobalFix(HGLOBAL hmem)
875 GlobalLock( hmem );
879 /***********************************************************************
880 * GlobalUnfix (KERNEL32.@)
882 VOID WINAPI GlobalUnfix(HGLOBAL hmem)
884 GlobalUnlock( hmem);
888 /***********************************************************************
889 * GlobalFlags (KERNEL32.@)
891 * Get information about a global memory object.
893 * PARAMS
894 * hmem [I] Handle of the global memory object
896 * RETURNS
897 * Failure: GMEM_INVALID_HANDLE, when the provided handle is invalid
898 * Success: Value specifying allocation flags and lock count
901 UINT WINAPI GlobalFlags(HGLOBAL hmem)
903 DWORD retval;
904 PGLOBAL32_INTERN pintern;
906 if(ISPOINTER(hmem))
908 retval=0;
910 else
912 RtlLockHeap(GetProcessHeap());
913 pintern=HANDLE_TO_INTERN(hmem);
914 if(pintern->Magic==MAGIC_GLOBAL_USED)
916 retval=pintern->LockCount + (pintern->Flags<<8);
917 if(pintern->Pointer==0)
918 retval|= GMEM_DISCARDED;
920 else
922 WARN("invalid handle %p (Magic: 0x%04x)\n", hmem, pintern->Magic);
923 SetLastError(ERROR_INVALID_HANDLE);
924 retval = GMEM_INVALID_HANDLE;
926 RtlUnlockHeap(GetProcessHeap());
928 return retval;
932 /***********************************************************************
933 * GlobalCompact (KERNEL32.@)
935 SIZE_T WINAPI GlobalCompact( DWORD minfree )
937 return 0; /* GlobalCompact does nothing in Win32 */
941 /***********************************************************************
942 * LocalAlloc (KERNEL32.@)
944 * Allocate a local memory object.
946 * RETURNS
947 * Handle: Success
948 * NULL: Failure
950 * NOTES
951 * Windows memory management does not provide a separate local heap
952 * and global heap.
954 HLOCAL WINAPI LocalAlloc(
955 UINT flags, /* [in] Allocation attributes */
956 SIZE_T size /* [in] Number of bytes to allocate */
958 return GlobalAlloc( flags, size );
962 /***********************************************************************
963 * LocalCompact (KERNEL32.@)
965 SIZE_T WINAPI LocalCompact( UINT minfree )
967 return 0; /* LocalCompact does nothing in Win32 */
971 /***********************************************************************
972 * LocalFlags (KERNEL32.@)
974 * Get information about a local memory object.
976 * RETURNS
977 * Value specifying allocation flags and lock count.
978 * LMEM_INVALID_HANDLE: Failure
980 * NOTES
981 * Windows memory management does not provide a separate local heap
982 * and global heap.
984 UINT WINAPI LocalFlags(
985 HLOCAL handle /* [in] Handle of memory object */
987 return GlobalFlags( handle );
991 /***********************************************************************
992 * LocalFree (KERNEL32.@)
994 * Free a local memory object.
996 * RETURNS
997 * NULL: Success
998 * Handle: Failure
1000 * NOTES
1001 * Windows memory management does not provide a separate local heap
1002 * and global heap.
1004 HLOCAL WINAPI LocalFree(
1005 HLOCAL handle /* [in] Handle of memory object */
1007 return GlobalFree( handle );
1011 /***********************************************************************
1012 * LocalHandle (KERNEL32.@)
1014 * Get the handle associated with the pointer to a local memory block.
1016 * RETURNS
1017 * Handle: Success
1018 * NULL: Failure
1020 * NOTES
1021 * Windows memory management does not provide a separate local heap
1022 * and global heap.
1024 HLOCAL WINAPI LocalHandle(
1025 LPCVOID ptr /* [in] Address of local memory block */
1027 return GlobalHandle( ptr );
1031 /***********************************************************************
1032 * LocalLock (KERNEL32.@)
1033 * Locks a local memory object and returns pointer to the first byte
1034 * of the memory block.
1036 * RETURNS
1037 * Pointer: Success
1038 * NULL: Failure
1040 * NOTES
1041 * Windows memory management does not provide a separate local heap
1042 * and global heap.
1044 LPVOID WINAPI LocalLock(
1045 HLOCAL handle /* [in] Address of local memory object */
1047 return GlobalLock( handle );
1051 /***********************************************************************
1052 * LocalReAlloc (KERNEL32.@)
1054 * Change the size or attributes of a local memory object.
1056 * RETURNS
1057 * Handle: Success
1058 * NULL: Failure
1060 * NOTES
1061 * Windows memory management does not provide a separate local heap
1062 * and global heap.
1064 HLOCAL WINAPI LocalReAlloc(
1065 HLOCAL handle, /* [in] Handle of memory object */
1066 SIZE_T size, /* [in] New size of block */
1067 UINT flags /* [in] How to reallocate object */
1069 return GlobalReAlloc( handle, size, flags );
1073 /***********************************************************************
1074 * LocalShrink (KERNEL32.@)
1076 SIZE_T WINAPI LocalShrink( HGLOBAL handle, UINT newsize )
1078 return 0; /* LocalShrink does nothing in Win32 */
1082 /***********************************************************************
1083 * LocalSize (KERNEL32.@)
1085 * Get the size of a local memory object.
1087 * RETURNS
1088 * Size: Success
1089 * 0: Failure
1091 * NOTES
1092 * Windows memory management does not provide a separate local heap
1093 * and global heap.
1095 SIZE_T WINAPI LocalSize(
1096 HLOCAL handle /* [in] Handle of memory object */
1098 return GlobalSize( handle );
1102 /***********************************************************************
1103 * LocalUnlock (KERNEL32.@)
1105 * Unlock a local memory object.
1107 * RETURNS
1108 * TRUE: Object is still locked
1109 * FALSE: Object is unlocked
1111 * NOTES
1112 * Windows memory management does not provide a separate local heap
1113 * and global heap.
1115 BOOL WINAPI LocalUnlock(
1116 HLOCAL handle /* [in] Handle of memory object */
1118 return GlobalUnlock( handle );
1122 /***********************************************************************
1123 * GlobalMemoryStatusEx (KERNEL32.@)
1124 * A version of GlobalMemoryStatus that can deal with memory over 4GB
1126 * RETURNS
1127 * TRUE
1129 BOOL WINAPI GlobalMemoryStatusEx( LPMEMORYSTATUSEX lpmemex )
1131 static MEMORYSTATUSEX cached_memstatus;
1132 static int cache_lastchecked = 0;
1133 SYSTEM_INFO si;
1134 #ifdef linux
1135 FILE *f;
1136 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__)
1137 unsigned long val;
1138 int mib[2];
1139 size_t size_sys;
1140 #elif defined(__APPLE__)
1141 unsigned int val;
1142 int mib[2];
1143 size_t size_sys;
1144 #elif defined(sun)
1145 unsigned long pagesize,maxpages,freepages,swapspace,swapfree;
1146 struct anoninfo swapinf;
1147 int rval;
1148 #endif
1150 if (lpmemex->dwLength != sizeof(*lpmemex))
1152 SetLastError( ERROR_INVALID_PARAMETER );
1153 return FALSE;
1156 if (time(NULL)==cache_lastchecked) {
1157 *lpmemex = cached_memstatus;
1158 return TRUE;
1160 cache_lastchecked = time(NULL);
1162 lpmemex->dwMemoryLoad = 0;
1163 lpmemex->ullTotalPhys = 16*1024*1024;
1164 lpmemex->ullAvailPhys = 16*1024*1024;
1165 lpmemex->ullTotalPageFile = 16*1024*1024;
1166 lpmemex->ullAvailPageFile = 16*1024*1024;
1168 #ifdef linux
1169 f = fopen( "/proc/meminfo", "r" );
1170 if (f)
1172 char buffer[256];
1173 unsigned long total, used, free, shared, buffers, cached;
1175 lpmemex->ullTotalPhys = lpmemex->ullAvailPhys = 0;
1176 lpmemex->ullTotalPageFile = lpmemex->ullAvailPageFile = 0;
1177 while (fgets( buffer, sizeof(buffer), f ))
1179 /* old style /proc/meminfo ... */
1180 if (sscanf( buffer, "Mem: %lu %lu %lu %lu %lu %lu",
1181 &total, &used, &free, &shared, &buffers, &cached ))
1183 lpmemex->ullTotalPhys += total;
1184 lpmemex->ullAvailPhys += free + buffers + cached;
1186 if (sscanf( buffer, "Swap: %lu %lu %lu", &total, &used, &free ))
1188 lpmemex->ullTotalPageFile += total;
1189 lpmemex->ullAvailPageFile += free;
1192 /* new style /proc/meminfo ... */
1193 if (sscanf(buffer, "MemTotal: %lu", &total))
1194 lpmemex->ullTotalPhys = total*1024;
1195 if (sscanf(buffer, "MemFree: %lu", &free))
1196 lpmemex->ullAvailPhys = free*1024;
1197 if (sscanf(buffer, "SwapTotal: %lu", &total))
1198 lpmemex->ullTotalPageFile = total*1024;
1199 if (sscanf(buffer, "SwapFree: %lu", &free))
1200 lpmemex->ullAvailPageFile = free*1024;
1201 if (sscanf(buffer, "Buffers: %lu", &buffers))
1202 lpmemex->ullAvailPhys += buffers*1024;
1203 if (sscanf(buffer, "Cached: %lu", &cached))
1204 lpmemex->ullAvailPhys += cached*1024;
1206 fclose( f );
1208 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__APPLE__)
1209 mib[0] = CTL_HW;
1210 mib[1] = HW_PHYSMEM;
1211 size_sys = sizeof(val);
1212 sysctl(mib, 2, &val, &size_sys, NULL, 0);
1213 if (val) lpmemex->ullTotalPhys = val;
1214 mib[1] = HW_USERMEM;
1215 size_sys = sizeof(val);
1216 sysctl(mib, 2, &val, &size_sys, NULL, 0);
1217 if (!val) val = lpmemex->ullTotalPhys;
1218 lpmemex->ullAvailPhys = val;
1219 lpmemex->ullTotalPageFile = val;
1220 lpmemex->ullAvailPageFile = val;
1221 #elif defined ( sun )
1222 pagesize=sysconf(_SC_PAGESIZE);
1223 maxpages=sysconf(_SC_PHYS_PAGES);
1224 freepages=sysconf(_SC_AVPHYS_PAGES);
1225 rval=swapctl(SC_AINFO, &swapinf);
1226 if(rval >-1)
1228 swapspace=swapinf.ani_max*pagesize;
1229 swapfree=swapinf.ani_free*pagesize;
1230 }else
1233 WARN("Swap size cannot be determined , assuming equal to physical memory\n");
1234 swapspace=maxpages*pagesize;
1235 swapfree=maxpages*pagesize;
1237 lpmemex->ullTotalPhys=pagesize*maxpages;
1238 lpmemex->ullAvailPhys = pagesize*freepages;
1239 lpmemex->ullTotalPageFile = swapspace;
1240 lpmemex->ullAvailPageFile = swapfree;
1241 #endif
1243 if (lpmemex->ullTotalPhys)
1245 lpmemex->dwMemoryLoad = (lpmemex->ullTotalPhys-lpmemex->ullAvailPhys)
1246 / (lpmemex->ullTotalPhys / 100);
1249 /* Win98 returns only the swapsize in ullTotalPageFile/ullAvailPageFile,
1250 WinXP returns the size of physical memory + swapsize;
1251 mimic the behavior of XP.
1252 Note: Project2k refuses to start if it sees less than 1Mb of free swap.
1254 lpmemex->ullTotalPageFile += lpmemex->ullTotalPhys;
1255 lpmemex->ullAvailPageFile += lpmemex->ullAvailPhys;
1257 /* Titan Quest refuses to run if TotalPageFile <= ullTotalPhys */
1258 if(lpmemex->ullTotalPageFile == lpmemex->ullTotalPhys)
1260 lpmemex->ullTotalPhys -= 1;
1261 lpmemex->ullAvailPhys -= 1;
1264 /* FIXME: should do something for other systems */
1265 GetSystemInfo(&si);
1266 lpmemex->ullTotalVirtual = (char*)si.lpMaximumApplicationAddress-(char*)si.lpMinimumApplicationAddress;
1267 /* FIXME: we should track down all the already allocated VM pages and substract them, for now arbitrarily remove 64KB so that it matches NT */
1268 lpmemex->ullAvailVirtual = lpmemex->ullTotalVirtual-64*1024;
1270 /* MSDN says about AvailExtendedVirtual: Size of unreserved and uncommitted
1271 memory in the extended portion of the virtual address space of the calling
1272 process, in bytes.
1273 However, I don't know what this means, so set it to zero :(
1275 lpmemex->ullAvailExtendedVirtual = 0;
1277 cached_memstatus = *lpmemex;
1279 TRACE("<-- LPMEMORYSTATUSEX: dwLength %d, dwMemoryLoad %d, ullTotalPhys %s, ullAvailPhys %s,"
1280 " ullTotalPageFile %s, ullAvailPageFile %s, ullTotalVirtual %s, ullAvailVirtual %s\n",
1281 lpmemex->dwLength, lpmemex->dwMemoryLoad, wine_dbgstr_longlong(lpmemex->ullTotalPhys),
1282 wine_dbgstr_longlong(lpmemex->ullAvailPhys), wine_dbgstr_longlong(lpmemex->ullTotalPageFile),
1283 wine_dbgstr_longlong(lpmemex->ullAvailPageFile), wine_dbgstr_longlong(lpmemex->ullTotalVirtual),
1284 wine_dbgstr_longlong(lpmemex->ullAvailVirtual) );
1286 return TRUE;
1289 /***********************************************************************
1290 * GlobalMemoryStatus (KERNEL32.@)
1291 * Provides information about the status of the memory, so apps can tell
1292 * roughly how much they are able to allocate
1294 * RETURNS
1295 * None
1297 VOID WINAPI GlobalMemoryStatus( LPMEMORYSTATUS lpBuffer )
1299 MEMORYSTATUSEX memstatus;
1300 OSVERSIONINFOW osver;
1301 IMAGE_NT_HEADERS *nt = RtlImageNtHeader( GetModuleHandleW(0) );
1303 /* Because GlobalMemoryStatus is identical to GlobalMemoryStatusEX save
1304 for one extra field in the struct, and the lack of a bug, we simply
1305 call GlobalMemoryStatusEx and copy the values across. */
1306 memstatus.dwLength = sizeof(memstatus);
1307 GlobalMemoryStatusEx(&memstatus);
1309 lpBuffer->dwLength = sizeof(*lpBuffer);
1310 lpBuffer->dwMemoryLoad = memstatus.dwMemoryLoad;
1312 /* Windows 2000 and later report -1 when values are greater than 4 Gb.
1313 * NT reports values modulo 4 Gb.
1316 osver.dwOSVersionInfoSize = sizeof(osver);
1317 GetVersionExW(&osver);
1319 if ( osver.dwMajorVersion >= 5 )
1321 lpBuffer->dwTotalPhys = min( memstatus.ullTotalPhys, MAXDWORD );
1322 lpBuffer->dwAvailPhys = min( memstatus.ullAvailPhys, MAXDWORD );
1323 lpBuffer->dwTotalPageFile = min( memstatus.ullTotalPageFile, MAXDWORD );
1324 lpBuffer->dwAvailPageFile = min( memstatus.ullAvailPageFile, MAXDWORD );
1325 lpBuffer->dwTotalVirtual = min( memstatus.ullTotalVirtual, MAXDWORD );
1326 lpBuffer->dwAvailVirtual = min( memstatus.ullAvailVirtual, MAXDWORD );
1329 else /* duplicate NT bug */
1331 lpBuffer->dwTotalPhys = memstatus.ullTotalPhys;
1332 lpBuffer->dwAvailPhys = memstatus.ullAvailPhys;
1333 lpBuffer->dwTotalPageFile = memstatus.ullTotalPageFile;
1334 lpBuffer->dwAvailPageFile = memstatus.ullAvailPageFile;
1335 lpBuffer->dwTotalVirtual = memstatus.ullTotalVirtual;
1336 lpBuffer->dwAvailVirtual = memstatus.ullAvailVirtual;
1339 /* values are limited to 2Gb unless the app has the IMAGE_FILE_LARGE_ADDRESS_AWARE flag */
1340 /* page file sizes are not limited (Adobe Illustrator 8 depends on this) */
1341 if (!(nt->FileHeader.Characteristics & IMAGE_FILE_LARGE_ADDRESS_AWARE))
1343 if (lpBuffer->dwTotalPhys > MAXLONG) lpBuffer->dwTotalPhys = MAXLONG;
1344 if (lpBuffer->dwAvailPhys > MAXLONG) lpBuffer->dwAvailPhys = MAXLONG;
1345 if (lpBuffer->dwTotalVirtual > MAXLONG) lpBuffer->dwTotalVirtual = MAXLONG;
1346 if (lpBuffer->dwAvailVirtual > MAXLONG) lpBuffer->dwAvailVirtual = MAXLONG;
1349 /* work around for broken photoshop 4 installer */
1350 if ( lpBuffer->dwAvailPhys + lpBuffer->dwAvailPageFile >= 2U*1024*1024*1024)
1351 lpBuffer->dwAvailPageFile = 2U*1024*1024*1024 - lpBuffer->dwAvailPhys - 1;
1353 /* limit page file size for really old binaries */
1354 if (nt->OptionalHeader.MajorSubsystemVersion < 4)
1356 if (lpBuffer->dwTotalPageFile > MAXLONG) lpBuffer->dwTotalPageFile = MAXLONG;
1357 if (lpBuffer->dwAvailPageFile > MAXLONG) lpBuffer->dwAvailPageFile = MAXLONG;
1360 TRACE("Length %u, MemoryLoad %u, TotalPhys %lx, AvailPhys %lx,"
1361 " TotalPageFile %lx, AvailPageFile %lx, TotalVirtual %lx, AvailVirtual %lx\n",
1362 lpBuffer->dwLength, lpBuffer->dwMemoryLoad, lpBuffer->dwTotalPhys,
1363 lpBuffer->dwAvailPhys, lpBuffer->dwTotalPageFile, lpBuffer->dwAvailPageFile,
1364 lpBuffer->dwTotalVirtual, lpBuffer->dwAvailVirtual );