ReactOS 0.4.17-dev-117-g313be0c
object.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * PURPOSE: User handle manager
5 * FILE: win32ss/user/ntuser/object.c
6 * PROGRAMER: Copyright (C) 2001 Alexandre Julliard
7 */
8
9#include <win32k.h>
11
12//int usedHandles=0;
14
15/* Forward declarations */
17static PVOID AllocThreadObject(
18 _In_ PDESKTOP pDesk,
19 _In_ PTHREADINFO pti,
21 _Out_ PVOID* HandleOwner)
22{
23 PTHROBJHEAD ObjHead;
24
26
27 ASSERT(Size > sizeof(*ObjHead));
28 ASSERT(pti != NULL);
29
30 ObjHead = UserHeapAlloc(Size);
31 if (!ObjHead)
32 return NULL;
33
34 RtlZeroMemory(ObjHead, Size);
35
36 ObjHead->pti = pti;
38 *HandleOwner = pti;
39 /* It's a thread object, but it still count as one for the process */
40 pti->ppi->UserHandleCount++;
41
42 return ObjHead;
43}
44
45static void FreeThreadObject(
47{
49 PTHREADINFO pti = ObjHead->pti;
50
51 UserHeapFree(ObjHead);
52
53 pti->ppi->UserHandleCount--;
55}
56
57_Success_(return!=NULL)
58static PVOID AllocDeskThreadObject(
59 _In_ PDESKTOP pDesk,
60 _In_ PTHREADINFO pti,
62 _Out_ PVOID* HandleOwner)
63{
64 PTHRDESKHEAD ObjHead;
65
66 ASSERT(Size > sizeof(*ObjHead));
67 ASSERT(pti != NULL);
68
69 if (!pDesk)
70 pDesk = pti->rpdesk;
71
72 ObjHead = DesktopHeapAlloc(pDesk, Size);
73 if (!ObjHead)
74 return NULL;
75
76 RtlZeroMemory(ObjHead, Size);
77
78 ObjHead->pSelf = ObjHead;
79 ObjHead->rpdesk = pDesk;
80 ObjHead->pti = pti;
82 *HandleOwner = pti;
83 /* It's a thread object, but it still count as one for the process */
84 pti->ppi->UserHandleCount++;
85
86 return ObjHead;
87}
88
91{
93 PDESKTOP pDesk = ObjHead->rpdesk;
94 PTHREADINFO pti = ObjHead->pti;
95
96 DesktopHeapFree(pDesk, Object);
97
98 pti->ppi->UserHandleCount--;
100}
101
102_Success_(return!=NULL)
103static PVOID AllocDeskProcObject(
104 _In_ PDESKTOP pDesk,
105 _In_ PTHREADINFO pti,
107 _Out_ PVOID* HandleOwner)
108{
109 PPROCDESKHEAD ObjHead;
110 PPROCESSINFO ppi;
111
112 ASSERT(Size > sizeof(*ObjHead));
113 ASSERT(pDesk != NULL);
114 ASSERT(pti != NULL);
115
116 ObjHead = DesktopHeapAlloc(pDesk, Size);
117 if (!ObjHead)
118 return NULL;
119
120 RtlZeroMemory(ObjHead, Size);
121
122 ppi = pti->ppi;
123
124 ObjHead->pSelf = ObjHead;
125 ObjHead->rpdesk = pDesk;
126 ObjHead->hTaskWow = (DWORD_PTR)ppi;
127 ppi->UserHandleCount++;
129 *HandleOwner = ppi;
130
131 return ObjHead;
132}
133
136{
138 PDESKTOP pDesk = ObjHead->rpdesk;
139 PPROCESSINFO ppi = (PPROCESSINFO)ObjHead->hTaskWow;
140
141 ppi->UserHandleCount--;
143
144 DesktopHeapFree(pDesk, Object);
145}
146
147_Success_(return!=NULL)
148static PVOID AllocProcMarkObject(
149 _In_ PDESKTOP pDesk,
150 _In_ PTHREADINFO pti,
152 _Out_ PVOID* HandleOwner)
153{
154 PPROCMARKHEAD ObjHead;
155 PPROCESSINFO ppi = pti->ppi;
156
158
159 ASSERT(Size > sizeof(*ObjHead));
160
161 ObjHead = UserHeapAlloc(Size);
162 if (!ObjHead)
163 return NULL;
164
165 RtlZeroMemory(ObjHead, Size);
166
167 ObjHead->ppi = ppi;
169 *HandleOwner = ppi;
170 ppi->UserHandleCount++;
171
172 return ObjHead;
173}
174
177{
178 PPROCESSINFO ppi = ((PPROCMARKHEAD)Object)->ppi;
179
181
182 ppi->UserHandleCount--;
184}
185
186_Success_(return!=NULL)
187static PVOID AllocSysObject(
188 _In_ PDESKTOP pDesk,
189 _In_ PTHREADINFO pti,
191 _Out_ PVOID* ObjectOwner)
192{
194
197
198 ASSERT(Size > sizeof(HEAD));
199
201 if (!Object)
202 return NULL;
203
204 *ObjectOwner = NULL;
205
207 return Object;
208}
209
210_Success_(return!=NULL)
211static PVOID AllocSysObjectCB(
212 _In_ PDESKTOP pDesk,
213 _In_ PTHREADINFO pti,
215 _Out_ PVOID* ObjectOwner)
216{
218
221 ASSERT(Size > sizeof(HEAD));
222
223 /* Allocate the clipboard data */
224 // FIXME: This allocation should be done on the current session pool;
225 // however ReactOS' MM doesn't support session pool yet.
226 Object = ExAllocatePoolZero(/* SESSION_POOL_MASK | */ PagedPool, Size, USERTAG_CLIPBOARD);
227 if (!Object)
228 {
229 ERR("ExAllocatePoolZero failed. No object created.\n");
230 return NULL;
231 }
232
233 *ObjectOwner = NULL;
234 return Object;
235}
236
237static void FreeSysObject(
239{
241}
242
243static void FreeSysObjectCB(
245{
247}
248
249static const struct
250{
255{
256 { NULL, NULL, NULL }, /* TYPE_FREE */
257 { AllocDeskThreadObject, co_UserDestroyWindow, FreeDeskThreadObject }, /* TYPE_WINDOW */
258 { AllocDeskProcObject, UserDestroyMenuObject, FreeDeskProcObject }, /* TYPE_MENU */
259 { AllocProcMarkObject, IntDestroyCurIconObject, FreeCurIconObject }, /* TYPE_CURSOR */
260 { AllocSysObject, /*UserSetWindowPosCleanup*/NULL, FreeSysObject }, /* TYPE_SETWINDOWPOS */
261 { AllocDeskThreadObject, IntRemoveHook, FreeDeskThreadObject }, /* TYPE_HOOK */
262 { AllocSysObjectCB, /*UserClipDataCleanup*/NULL,FreeSysObjectCB }, /* TYPE_CLIPDATA */
263 { AllocDeskProcObject, DestroyCallProc, FreeDeskProcObject }, /* TYPE_CALLPROC */
264 { AllocProcMarkObject, UserDestroyAccelTable, FreeProcMarkObject }, /* TYPE_ACCELTABLE */
265 { NULL, NULL, NULL }, /* TYPE_DDEACCESS */
266 { NULL, NULL, NULL }, /* TYPE_DDECONV */
267 { NULL, NULL, NULL }, /* TYPE_DDEXACT */
268 { AllocSysObject, /*UserMonitorCleanup*/NULL, FreeSysObject }, /* TYPE_MONITOR */
269 { AllocSysObject, /*UserKbdLayoutCleanup*/NULL,FreeSysObject }, /* TYPE_KBDLAYOUT */
270 { AllocSysObject, /*UserKbdFileCleanup*/NULL, FreeSysObject }, /* TYPE_KBDFILE */
271 { AllocThreadObject, IntRemoveEvent, FreeThreadObject }, /* TYPE_WINEVENTHOOK */
272 { AllocSysObject, /*UserTimerCleanup*/NULL, FreeSysObject }, /* TYPE_TIMER */
274 { NULL, NULL, NULL }, /* TYPE_HIDDATA */
275 { NULL, NULL, NULL }, /* TYPE_DEVICEINFO */
276 { NULL, NULL, NULL }, /* TYPE_TOUCHINPUTINFO */
277 { NULL, NULL, NULL }, /* TYPE_GESTUREINFOOBJ */
279
280#if DBG
281
283{
284 int HandleCounts[TYPE_CTYPES];
285 PPROCESSINFO ppiList;
286 int i;
287 PWCHAR TypeNames[] = {L"Free",L"Window",L"Menu", L"CursorIcon", L"SMWP", L"Hook", L"ClipBoardData", L"CallProc",
288 L"Accel", L"DDEaccess", L"DDEconv", L"DDExact", L"Monitor", L"KBDlayout", L"KBDfile",
289 L"Event", L"Timer", L"InputContext", L"HidData", L"DeviceInfo", L"TouchInput",L"GestureInfo"};
290
291 ERR("Total handles count: %lu\n", gpsi->cHandleEntries);
292
293 memset(HandleCounts, 0, sizeof(HandleCounts));
294
295 /* First of all count the number of handles per type */
296 ppiList = gppiList;
297 while (ppiList)
298 {
299 ERR("Process %s (%p) handles count: %d\n\t", ppiList->peProcess->ImageFileName, ppiList->peProcess->UniqueProcessId, ppiList->UserHandleCount);
300
301 for (i = 1 ;i < TYPE_CTYPES; i++)
302 {
303 HandleCounts[i] += ppiList->DbgHandleCount[i];
304
305 DbgPrint("%S: %lu, ", TypeNames[i], ppiList->DbgHandleCount[i]);
306 if (i % 6 == 0)
307 DbgPrint("\n\t");
308 }
309 DbgPrint("\n");
310
311 ppiList = ppiList->ppiNext;
312 }
313
314 /* Print total type counts */
315 ERR("Total handles of the running processes: \n\t");
316 for (i = 1 ;i < TYPE_CTYPES; i++)
317 {
318 DbgPrint("%S: %d, ", TypeNames[i], HandleCounts[i]);
319 if (i % 6 == 0)
320 DbgPrint("\n\t");
321 }
322 DbgPrint("\n");
323
324 /* Now count the handle counts that are allocated from the handle table */
325 memset(HandleCounts, 0, sizeof(HandleCounts));
326 for (i = 0; i < gHandleTable->nb_handles; i++)
327 HandleCounts[gHandleTable->handles[i].type]++;
328
329 ERR("Total handles count allocated: \n\t");
330 for (i = 1 ;i < TYPE_CTYPES; i++)
331 {
332 DbgPrint("%S: %d, ", TypeNames[i], HandleCounts[i]);
333 if (i % 6 == 0)
334 DbgPrint("\n\t");
335 }
336 DbgPrint("\n");
337}
338
339#endif
340
342{
343 unsigned short generation;
344 int index = (LOWORD(handle) - FIRST_USER_HANDLE) >> 1;
345 if (index < 0 || index >= ht->nb_handles)
346 return NULL;
347 if (!ht->handles[index].type)
348 return NULL;
350 if (generation == ht->handles[index].generation || !generation || generation == 0xffff)
351 return &ht->handles[index];
352 return NULL;
353}
354
356{
357 int index = ptr - ht->handles;
358 return (HANDLE)((((INT_PTR)index << 1) + FIRST_USER_HANDLE) + (ptr->generation << 16));
359}
360
362{
364 TRACE("handles used %lu\n", gpsi->cHandleEntries);
365
366 if (ht->freelist)
367 {
368 entry = ht->freelist;
369 ht->freelist = entry->ptr;
370
372 return entry;
373 }
374
375 if (ht->nb_handles >= ht->allocated_handles) /* Need to grow the array */
376 {
377 ERR("Out of user handles! Used -> %lu, NM_Handle -> %d\n", gpsi->cHandleEntries, ht->nb_handles);
378
379#if DBG
381#endif
382
383 return NULL;
384#if 0
385 PUSER_HANDLE_ENTRY new_handles;
386 /* Grow array by 50% (but at minimum 32 entries) */
387 int growth = max( 32, ht->allocated_handles / 2 );
388 int new_size = min( ht->allocated_handles + growth, (LAST_USER_HANDLE-FIRST_USER_HANDLE+1) >> 1 );
389 if (new_size <= ht->allocated_handles)
390 return NULL;
391 if (!(new_handles = UserHeapReAlloc( ht->handles, new_size * sizeof(*ht->handles) )))
392 return NULL;
393 ht->handles = new_handles;
394 ht->allocated_handles = new_size;
395#endif
396 }
397
398 entry = &ht->handles[ht->nb_handles++];
399
400 entry->generation = 1;
401
403
404 return entry;
405}
406
408{
409 ht->freelist = NULL;
410 ht->handles = mem;
411
412 ht->nb_handles = 0;
413 ht->allocated_handles = bytes / sizeof(USER_HANDLE_ENTRY);
414}
415
416
418{
419 void *ret;
420
421#if DBG
422 {
423 PPROCESSINFO ppi;
424 switch (entry->type)
425 {
426 case TYPE_WINDOW:
427 case TYPE_HOOK:
429 ppi = ((PTHREADINFO)entry->pi)->ppi;
430 break;
431 case TYPE_MENU:
432 case TYPE_CURSOR:
433 case TYPE_CALLPROC:
434 case TYPE_ACCELTABLE:
435 ppi = entry->pi;
436 break;
437 default:
438 ppi = NULL;
439 }
440 if (ppi)
441 ppi->DbgHandleCount[entry->type]--;
442 }
443#endif
444
445 ret = entry->ptr;
446 entry->ptr = ht->freelist;
447 entry->type = 0;
448 entry->flags = 0;
449 entry->pi = NULL;
450 ht->freelist = entry;
451
453
454 return ret;
455}
456
457/* allocate a user handle for a given object */
460 _In_ PVOID object,
462 _In_ PVOID HandleOwner)
463{
465 if (!entry)
466 return 0;
467 entry->ptr = object;
468 entry->type = type;
469 entry->flags = 0;
470 entry->pi = HandleOwner;
471 if (++entry->generation >= 0xffff)
472 entry->generation = 1;
473
474 /* We have created a handle, which is a reference! */
475 UserReferenceObject(object);
476
477 return entry_to_handle(ht, entry );
478}
479
480/* return a pointer to a user object from its handle without setting an error */
482{
484
485 ASSERT(ht);
486
487 if (!(entry = handle_to_entry(ht, handle )) || entry->type != type)
488 {
489 return NULL;
490 }
491 return entry->ptr;
492}
493
494/* return a pointer to a user object from its handle */
496{
498
499 ASSERT(ht);
500
501 if (!(entry = handle_to_entry(ht, handle )) || entry->type != type)
502 {
504 return NULL;
505 }
506 return entry->ptr;
507}
508
509
510/* Get the full handle (32bit) for a possibly truncated (16bit) handle */
512{
514
515 if ((ULONG_PTR)handle >> 16)
516 return handle;
517 if (!(entry = handle_to_entry(ht, handle )))
518 return handle;
519 return entry_to_handle( ht, entry );
520}
521
522
523/* Same as get_user_object plus set the handle to the full 32-bit value */
525{
527
528 if (!(entry = handle_to_entry(ht, *handle )) || entry->type != type)
529 return NULL;
531 return entry->ptr;
532}
533
534
535
537{
538 PVOID mem;
539 INT HandleCount = 1024 * 4;
540
541 // FIXME: Don't alloc all at once! Must be mapped into umode also...
543 if (!mem)
544 {
545 ERR("Failed creating handle table\n");
546 return FALSE;
547 }
548
550 if (gHandleTable == NULL)
551 {
553 ERR("Failed creating handle table\n");
554 return FALSE;
555 }
556
557 // FIXME: Make auto growable
559
560 return TRUE;
561}
562
563//
564// New
565//
566PVOID
569 PDESKTOP pDesktop,
570 PTHREADINFO pti,
571 HANDLE* h,
573 ULONG size)
574{
575 HANDLE hi;
577 PVOID ObjectOwner;
578
579 /* Some sanity checks. Other checks will be made in the allocator */
582 ASSERT(ht != NULL);
583
584 /* Allocate the object */
586 Object = ObjectCallbacks[type].ObjectAlloc(pDesktop, pti, size, &ObjectOwner);
587 if (!Object)
588 {
589 ERR("User object allocation failed. Out of memory!\n");
590 return NULL;
591 }
592
593 hi = UserAllocHandle(ht, Object, type, ObjectOwner);
594 if (hi == NULL)
595 {
596 ERR("Out of user handles!\n");
597 ObjectCallbacks[type].ObjectFree(Object);
598 return NULL;
599 }
600
601#if DBG
602 if (pti)
603 pti->ppi->DbgHandleCount[type]++;
604#endif
605
606 /* Give this object its identity. */
607 ((PHEAD)Object)->h = hi;
608
609 /* The caller will get a locked object.
610 * Note: with the reference from the handle, that makes two */
612
613 if (h)
614 *h = hi;
615 return Object;
616}
617
618BOOL
621{
623 PHEAD ObjHead = Object;
624
625 entry = handle_to_entry(gHandleTable, ObjHead->h);
626
627 ASSERT(entry != NULL);
628
629 entry->flags |= HANDLEENTRY_DESTROY;
630
631 if (ObjHead->cLockObj > 1)
632 {
633 entry->flags &= ~HANDLEENTRY_INDESTROY;
634 TRACE("Count %d\n",ObjHead->cLockObj);
635 return FALSE;
636 }
637
638 return TRUE;
639}
640
641BOOL
644{
645 PHEAD ObjHead = Object;
646
647 ASSERT(ObjHead->cLockObj >= 1);
648 ASSERT(ObjHead->cLockObj < 0x10000);
649
650 if (--ObjHead->cLockObj == 0)
651 {
654
655 entry = handle_to_entry(gHandleTable, ObjHead->h);
656
657 ASSERT(entry != NULL);
658 /* The entry should be marked as in deletion */
660
661 type = entry->type;
664
665 /* We can now get rid of everything */
667
668#if 0
669 /* Call the object destructor */
670 ASSERT(ObjectCallbacks[type].ObjectCleanup != NULL);
671 ObjectCallbacks[type].ObjectCleanup(Object);
672#endif
673
674 /* And free it */
676 ObjectCallbacks[type].ObjectFree(Object);
677
678 return TRUE;
679 }
680 return FALSE;
681}
682
683BOOL
686{
688
689 if (!(entry = handle_to_entry( ht, handle )))
690 {
692 return FALSE;
693 }
694
696
697 return UserDereferenceObject(entry->ptr);
698}
699
700BOOL
703{
705
706 if (!(entry = handle_to_entry( gHandleTable, h )))
707 {
709 return TRUE;
710 }
711 return (entry->flags & HANDLEENTRY_INDESTROY);
712}
713
714BOOL
717{
719
720 if (!body) return FALSE;
721
722 ASSERT( ((PHEAD)body)->cLockObj >= 1);
723 ASSERT( ((PHEAD)body)->cLockObj < 0x10000);
724
726}
727
728VOID
731{
732 PHEAD ObjHead = obj;
733 ASSERT(ObjHead->cLockObj < 0x10000);
734
735 ObjHead->cLockObj++;
736}
737
738PVOID
741{
743
745 if (object)
746 {
747 UserReferenceObject(object);
748 }
749 return object;
750}
751
754{
755 int i;
757 BOOLEAN Ret = TRUE;
758
759 /* Sweep the whole handle table */
760 for (i = 0; i < Table->allocated_handles; i++)
761 {
762 Entry = &Table->handles[i];
763
764 if (Entry->pi != Owner)
765 continue;
766
767 /* Do not destroy if it's already been done */
768 if (Entry->flags & HANDLEENTRY_INDESTROY)
769 continue;
770
771 /* Call destructor */
772 if (!ObjectCallbacks[Entry->type].ObjectDestroy(Entry->ptr))
773 {
774 ERR("Failed destructing object %p, type %u.\n", Entry->ptr, Entry->type);
775 /* Don't return immediately, we must continue destroying the other objects */
776 Ret = FALSE;
777 }
778 }
779
780 return Ret;
781}
782
783/*
784 *
785 * Status
786 * @implemented
787 */
788
789BOOL
793{
794 UINT uType;
795 PPROCESSINFO ppi;
797 BOOL Ret = FALSE;
798
800
802 {
804 goto Exit; // Return FALSE
805 }
806 uType = entry->type;
807 switch (uType)
808 {
809 case TYPE_WINDOW:
811 ppi = ((PTHREADINFO)entry->pi)->ppi;
812 break;
813 case TYPE_MENU:
814 case TYPE_ACCELTABLE:
815 case TYPE_CURSOR:
816 case TYPE_HOOK:
817 case TYPE_CALLPROC:
819 ppi = entry->pi;
820 break;
821 default:
822 ppi = NULL;
823 break;
824 }
825
826 if (!ppi)
827 goto Exit; // Return FALSE
828
829 // Same process job returns TRUE.
830 if (gptiCurrent->ppi->pW32Job == ppi->pW32Job) Ret = TRUE;
831
832Exit:
833 UserLeave();
834 return Ret;
835}
836
838{
839 PVOID pvOld = *ppvObj;
840 *ppvObj = pvNew;
841
842 if (pvOld && pvOld == pvNew)
843 return pvOld;
844
845 if (pvNew)
846 UserReferenceObject(pvNew);
847
848 if (pvOld)
849 {
850 if (UserDereferenceObject(pvOld))
851 pvOld = NULL;
852 }
853
854 return pvOld;
855}
856
858{
859 PVOID pvOld = *ppvObj;
860 *ppvObj = NULL;
861
862 if (pvOld)
863 {
864 if (UserDereferenceObject(pvOld))
865 pvOld = NULL;
866 }
867
868 return pvOld;
869}
#define __inline
Definition: _wctype.cpp:15
unsigned char BOOLEAN
Definition: actypes.h:127
static unsigned char bytes[4]
Definition: adnsresfilter.c:74
#define index(s, c)
Definition: various.h:29
#define ERR(fmt,...)
Definition: precomp.h:57
#define DBG_DEFAULT_CHANNEL(ch)
Definition: debug.h:106
BOOLEAN DestroyCallProc(_Inout_ PVOID Object)
Definition: callproc.c:22
#define STATUS_INVALID_HANDLE
Definition: d3dkmdt.h:40
struct _DESKTOP * PDESKTOP
static __inline PVOID DesktopHeapAlloc(IN PDESKTOP Desktop, IN SIZE_T Bytes)
Definition: desktop.h:204
static __inline BOOL DesktopHeapFree(IN PDESKTOP Desktop, IN PVOID lpMem)
Definition: desktop.h:215
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define APIENTRY
Definition: api.h:79
#define ERROR_INVALID_HANDLE
Definition: compat.h:98
return ret
Definition: mutex.c:146
#define L(x)
Definition: resources.c:13
_In_ uint64_t _In_ uint64_t _In_ uint64_t generation
Definition: btrfs.c:2996
#define PagedPool
Definition: env_spec_w32.h:308
size_t const new_size
Definition: expand.cpp:66
unsigned int BOOL
Definition: ntddk_ex.h:94
ASMGENDATA Table[]
Definition: genincdata.c:61
GLuint GLuint GLsizei GLenum type
Definition: gl.h:1545
GLsizeiptr size
Definition: glext.h:5919
GLuint index
Definition: glext.h:6031
GLfloat GLfloat GLfloat GLfloat h
Definition: glext.h:7723
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
#define DbgPrint
Definition: hal.h:12
static const struct newhuff ht[]
Definition: huffman.h:296
PSERVERINFO gpsi
Definition: imm.c:18
#define LAST_USER_HANDLE
Definition: ntuser.h:11
struct _USER_HANDLE_ENTRY USER_HANDLE_ENTRY
#define HANDLEENTRY_INDESTROY
Definition: ntuser.h:14
struct _PROCMARKHEAD * PPROCMARKHEAD
struct _PROCDESKHEAD * PPROCDESKHEAD
struct _HEAD * PHEAD
enum _HANDLE_TYPE HANDLE_TYPE
@ TYPE_HOOK
Definition: ntuser.h:45
@ TYPE_CTYPES
Definition: ntuser.h:62
@ TYPE_CALLPROC
Definition: ntuser.h:47
@ TYPE_WINEVENTHOOK
Definition: ntuser.h:55
@ TYPE_CURSOR
Definition: ntuser.h:43
@ TYPE_WINDOW
Definition: ntuser.h:41
@ TYPE_ACCELTABLE
Definition: ntuser.h:48
@ TYPE_MENU
Definition: ntuser.h:42
@ TYPE_SETWINDOWPOS
Definition: ntuser.h:44
@ TYPE_INPUTCONTEXT
Definition: ntuser.h:57
#define HANDLEENTRY_DESTROY
Definition: ntuser.h:13
struct _THRDESKHEAD * PTHRDESKHEAD
struct _THROBJHEAD * PTHROBJHEAD
#define FIRST_USER_HANDLE
Definition: ntuser.h:10
uint32_t entry
Definition: isohybrid.c:63
#define ASSERT(a)
Definition: mode.c:44
#define ExFreePoolWithTag(_P, _T)
Definition: module.h:1109
static PVOID ptr
Definition: dispmode.c:27
static PVOID ExAllocatePoolZero(ULONG PoolType, SIZE_T NumberOfBytes, ULONG Tag)
Definition: precomp.h:45
#define min(a, b)
Definition: monoChain.cc:55
unsigned int UINT
Definition: ndis.h:50
_Out_writes_bytes_to_opt_ AbsoluteSecurityDescriptorSize PSECURITY_DESCRIPTOR _Inout_ PULONG _Out_writes_bytes_to_opt_ DaclSize PACL _Inout_ PULONG _Out_writes_bytes_to_opt_ SaclSize PACL _Inout_ PULONG _Out_writes_bytes_to_opt_ OwnerSize PSID Owner
Definition: rtlfuncs.h:1629
#define _Inout_
Definition: no_sal2.h:162
#define _Success_(c)
Definition: no_sal2.h:84
#define _Out_
Definition: no_sal2.h:160
#define _In_
Definition: no_sal2.h:158
#define FASTCALL
Definition: nt_native.h:50
#define UNREFERENCED_PARAMETER(P)
Definition: ntbasedef.h:329
BOOLEAN IntRemoveHook(PVOID Object)
Definition: hook.c:1036
PVOID AllocInputContextObject(_In_ PDESKTOP pDesk, _In_ PTHREADINFO pti, _In_ SIZE_T Size, _Out_ PVOID *HandleOwner)
Definition: ime.c:1517
BOOLEAN UserDestroyInputContext(_In_opt_ PVOID Object)
Definition: ime.c:1576
VOID UserFreeInputContext(_In_opt_ PVOID Object)
Definition: ime.c:1548
VOID FASTCALL UserLeave(VOID)
Definition: ntuser.c:255
PTHREADINFO gptiCurrent
Definition: ntuser.c:15
VOID FASTCALL UserEnterExclusive(VOID)
Definition: ntuser.c:247
struct _THREADINFO * PTHREADINFO
Definition: ntwin32.h:6
struct _PROCESSINFO * PPROCESSINFO
Definition: ntwin32.h:5
void DbgUserDumpHandleTable()
#define LOWORD(l)
Definition: pedump.c:82
#define BOOLEAN
Definition: pedump.c:73
static const void * body(MD5_CTX *ctx, const void *data, unsigned long size)
Definition: md5.c:100
#define memset(x, y, z)
Definition: compat.h:39
Entry
Definition: section.c:5216
static void Exit(void)
Definition: sock.c:1330
#define TRACE(s)
Definition: solgame.cpp:4
Definition: ntuser.h:180
DWORD cLockObj
Definition: ntuser.h:182
HANDLE h
Definition: ntuser.h:181
struct _DESKTOP * rpdesk
Definition: ntuser.h:219
DWORD_PTR hTaskWow
Definition: ntuser.h:218
PVOID pSelf
Definition: ntuser.h:220
PVOID pW32Job
Definition: win32.h:276
PPROCESSINFO ppiNext
Definition: win32.h:262
struct _PROCESSINFO * ppi
Definition: ntuser.h:227
struct _DESKTOP * rpdesk
Definition: ntuser.h:194
PVOID pSelf
Definition: ntuser.h:195
PPROCESSINFO ppi
Definition: win32.h:88
struct _THREADINFO * pti
Definition: ntuser.h:188
Definition: ntuser.h:17
unsigned char type
Definition: ntuser.h:25
PUSER_HANDLE_ENTRY handles
Definition: ntuser.h:32
Definition: mem.c:349
ULONG_PTR cHandleEntries
Definition: ntuser.h:1052
#define TYPE_FREE
Definition: sunlabel.h:176
#define max(a, b)
Definition: svc.c:63
#define DWORD_PTR
Definition: treelist.c:76
int32_t INT_PTR
Definition: typedefs.h:64
void * PVOID
Definition: typedefs.h:50
ULONG_PTR SIZE_T
Definition: typedefs.h:80
int32_t INT
Definition: typedefs.h:58
#define RtlZeroMemory(Destination, Length)
Definition: typedefs.h:262
uint32_t ULONG_PTR
Definition: typedefs.h:65
uint16_t * PWCHAR
Definition: typedefs.h:56
uint32_t ULONG
Definition: typedefs.h:59
#define HIWORD(l)
Definition: typedefs.h:247
static ULONG HandleCount
Definition: uefidisk.c:67
BOOLEAN co_UserDestroyWindow(PVOID Object)
Definition: window.c:2865
static __inline PVOID UserHeapAlloc(SIZE_T Bytes)
Definition: usrheap.h:34
static __inline BOOL UserHeapFree(PVOID lpMem)
Definition: usrheap.h:44
static __inline PVOID UserHeapReAlloc(PVOID lpMem, SIZE_T Bytes)
Definition: usrheap.h:54
_Must_inspect_result_ _In_ WDFCOLLECTION _In_ WDFOBJECT Object
_Must_inspect_result_ _In_ WDFDEVICE _In_ PWDF_DEVICE_PROPERTY_DATA _In_ DEVPROPTYPE _In_ ULONG Size
Definition: wdfdevice.h:4539
#define IntDereferenceThreadInfo(pti)
Definition: win32.h:172
#define IntReferenceProcessInfo(ppi)
Definition: win32.h:182
#define IntReferenceThreadInfo(pti)
Definition: win32.h:167
#define IntDereferenceProcessInfo(ppi)
Definition: win32.h:187
VOID FASTCALL SetLastNtError(_In_ NTSTATUS Status)
Definition: error.c:30
BOOLEAN UserDestroyAccelTable(PVOID Object)
Definition: accelerator.c:324
VOID FreeCurIconObject(_In_ PVOID Object)
Definition: cursoricon.c:336
BOOLEAN IntDestroyCurIconObject(_In_ PVOID Object)
Definition: cursoricon.c:317
BOOLEAN IntRemoveEvent(PVOID Object)
Definition: event.c:126
PPROCESSINFO gppiList
Definition: main.c:31
BOOLEAN UserDestroyMenuObject(PVOID Object)
Definition: menu.c:311
static __inline PUSER_HANDLE_ENTRY alloc_user_entry(PUSER_HANDLE_TABLE ht)
Definition: object.c:361
PVOID UserGetObject(PUSER_HANDLE_TABLE ht, HANDLE handle, HANDLE_TYPE type)
Definition: object.c:495
BOOLEAN UserDestroyObjectsForOwner(PUSER_HANDLE_TABLE Table, PVOID Owner)
Definition: object.c:753
BOOL FASTCALL UserMarkObjectDestroy(PVOID Object)
Definition: object.c:620
PVOID FASTCALL UserAssignmentLock(PVOID *ppvObj, PVOID pvNew)
Definition: object.c:837
BOOL FASTCALL UserDereferenceObject(PVOID Object)
Definition: object.c:643
PVOID FASTCALL UserReferenceObjectByHandle(HANDLE handle, HANDLE_TYPE type)
Definition: object.c:740
BOOL FASTCALL UserDeleteObject(HANDLE h, HANDLE_TYPE type)
Definition: object.c:716
PUSER_HANDLE_TABLE gHandleTable
Definition: object.c:13
VOID UserInitHandleTable(PUSER_HANDLE_TABLE ht, PVOID mem, ULONG bytes)
Definition: object.c:407
BOOLEAN(* ObjectDestroy)(PVOID)
Definition: object.c:252
BOOL FASTCALL UserObjectInDestroy(HANDLE h)
Definition: object.c:702
void FreeProcMarkObject(_In_ PVOID Object)
Definition: object.c:175
BOOL FASTCALL UserCreateHandleTable(VOID)
Definition: object.c:536
void * get_user_object_handle(PUSER_HANDLE_TABLE ht, HANDLE *handle, HANDLE_TYPE type)
Definition: object.c:524
static void FreeDeskThreadObject(_In_ PVOID Object)
Definition: object.c:89
HANDLE get_user_full_handle(PUSER_HANDLE_TABLE ht, HANDLE handle)
Definition: object.c:511
HANDLE UserAllocHandle(_Inout_ PUSER_HANDLE_TABLE ht, _In_ PVOID object, _In_ HANDLE_TYPE type, _In_ PVOID HandleOwner)
Definition: object.c:458
PVOID(* ObjectAlloc)(PDESKTOP, PTHREADINFO, SIZE_T, PVOID *)
Definition: object.c:251
PVOID FASTCALL UserCreateObject(PUSER_HANDLE_TABLE ht, PDESKTOP pDesktop, PTHREADINFO pti, HANDLE *h, HANDLE_TYPE type, ULONG size)
Definition: object.c:568
BOOL APIENTRY NtUserValidateHandleSecure(HANDLE handle)
Definition: object.c:791
static void FreeSysObject(_In_ PVOID Object)
Definition: object.c:237
PVOID FASTCALL UserAssignmentUnlock(PVOID *ppvObj)
Definition: object.c:857
void(* ObjectFree)(PVOID)
Definition: object.c:253
static void FreeSysObjectCB(_In_ PVOID Object)
Definition: object.c:243
static void FreeThreadObject(_In_ PVOID Object)
Definition: object.c:45
static __inline HANDLE entry_to_handle(PUSER_HANDLE_TABLE ht, PUSER_HANDLE_ENTRY ptr)
Definition: object.c:355
static const struct @5630 ObjectCallbacks[TYPE_CTYPES]
BOOL FASTCALL UserFreeHandle(PUSER_HANDLE_TABLE ht, HANDLE handle)
Definition: object.c:685
static __inline void * free_user_entry(PUSER_HANDLE_TABLE ht, PUSER_HANDLE_ENTRY entry)
Definition: object.c:417
PVOID UserGetObjectNoErr(PUSER_HANDLE_TABLE ht, HANDLE handle, HANDLE_TYPE type)
Definition: object.c:481
VOID FASTCALL UserReferenceObject(PVOID obj)
Definition: object.c:730
PUSER_HANDLE_ENTRY handle_to_entry(PUSER_HANDLE_TABLE ht, HANDLE handle)
Definition: object.c:341
static void FreeDeskProcObject(_In_ PVOID Object)
Definition: object.c:134
#define USERTAG_CLIPBOARD
Definition: tags.h:200
ENGAPI VOID APIENTRY EngSetLastError(_In_ ULONG iError)
Definition: error.c:21