ReactOS 0.4.17-dev-804-g023d8af
object.c File Reference
#include <win32k.h>
Include dependency graph for object.c:

Go to the source code of this file.

Functions

 DBG_DEFAULT_CHANNEL (UserObj)
 
 _Success_ (return!=NULL)
 
static void FreeThreadObject (_In_ PVOID Object)
 
static void FreeDeskThreadObject (_In_ PVOID Object)
 
static void FreeDeskProcObject (_In_ PVOID Object)
 
void FreeProcMarkObject (_In_ PVOID Object)
 
static void FreeSysObject (_In_ PVOID Object)
 
static void FreeSysObjectCB (_In_ PVOID Object)
 
PUSER_HANDLE_ENTRY handle_to_entry (PUSER_HANDLE_TABLE ht, HANDLE handle)
 
static __inline HANDLE entry_to_handle (PUSER_HANDLE_TABLE ht, PUSER_HANDLE_ENTRY ptr)
 
static __inline PUSER_HANDLE_ENTRY alloc_user_entry (PUSER_HANDLE_TABLE ht)
 
VOID UserInitHandleTable (PUSER_HANDLE_TABLE ht, PVOID mem, ULONG bytes)
 
static __inline voidfree_user_entry (PUSER_HANDLE_TABLE ht, PUSER_HANDLE_ENTRY entry)
 
HANDLE UserAllocHandle (_Inout_ PUSER_HANDLE_TABLE ht, _In_ PVOID object, _In_ HANDLE_TYPE type, _In_ PVOID HandleOwner)
 
PVOID UserGetObjectNoErr (PUSER_HANDLE_TABLE ht, HANDLE handle, HANDLE_TYPE type)
 
PVOID UserGetObject (PUSER_HANDLE_TABLE ht, HANDLE handle, HANDLE_TYPE type)
 
HANDLE get_user_full_handle (PUSER_HANDLE_TABLE ht, HANDLE handle)
 
voidget_user_object_handle (PUSER_HANDLE_TABLE ht, HANDLE *handle, HANDLE_TYPE type)
 
BOOL FASTCALL UserCreateHandleTable (VOID)
 
PVOID FASTCALL UserCreateObject (PUSER_HANDLE_TABLE ht, PDESKTOP pDesktop, PTHREADINFO pti, HANDLE *h, HANDLE_TYPE type, ULONG size)
 
BOOL FASTCALL UserMarkObjectDestroy (PVOID Object)
 
BOOL FASTCALL UserDereferenceObject (PVOID Object)
 
BOOL FASTCALL UserFreeHandle (PUSER_HANDLE_TABLE ht, HANDLE handle)
 
BOOL FASTCALL UserObjectInDestroy (HANDLE h)
 
BOOL FASTCALL UserMarkHandleGranted (HANDLE h)
 
BOOL FASTCALL UserDeleteObject (HANDLE h, HANDLE_TYPE type)
 
VOID FASTCALL UserReferenceObject (PVOID obj)
 
PVOID FASTCALL UserReferenceObjectByHandle (HANDLE handle, HANDLE_TYPE type)
 
BOOLEAN UserDestroyObjectsForOwner (PUSER_HANDLE_TABLE Table, PVOID Owner)
 
BOOL APIENTRY NtUserValidateHandleSecure (HANDLE handle)
 
PVOID FASTCALL UserAssignmentLock (PVOID *ppvObj, PVOID pvNew)
 
PVOID FASTCALL UserAssignmentUnlock (PVOID *ppvObj)
 

Variables

PUSER_HANDLE_TABLE gHandleTable = NULL
 
struct {
   PVOID(*   ObjectAlloc )(PDESKTOP, PTHREADINFO,
       SIZE_T, PVOID *)
 
   BOOLEAN(*   ObjectDestroy )(PVOID)
 
   void(*   ObjectFree )(PVOID)
 
ObjectCallbacks [TYPE_CTYPES]
 

Function Documentation

◆ _Success_()

_Success_ ( return!  = NULL)

Definition at line 16 of file object.c.

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}
#define NULL
Definition: types.h:112
#define ASSERT(a)
Definition: mode.c:44
#define UNREFERENCED_PARAMETER(P)
Definition: ntbasedef.h:329
struct _THREADINFO * pti
Definition: ntuser.h:191
#define RtlZeroMemory(Destination, Length)
Definition: typedefs.h:262
static __inline PVOID UserHeapAlloc(SIZE_T Bytes)
Definition: usrheap.h:34
_Must_inspect_result_ _In_ WDFDEVICE _In_ PWDF_DEVICE_PROPERTY_DATA _In_ DEVPROPTYPE _In_ ULONG Size
Definition: wdfdevice.h:4539
#define IntReferenceThreadInfo(pti)
Definition: win32.h:168

◆ alloc_user_entry()

static __inline PUSER_HANDLE_ENTRY alloc_user_entry ( PUSER_HANDLE_TABLE  ht)
static

Definition at line 361 of file object.c.

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}
#define ERR(fmt,...)
Definition: precomp.h:57
size_t const new_size
Definition: expand.cpp:66
static const struct newhuff ht[]
Definition: huffman.h:296
PSERVERINFO gpsi
Definition: imm.c:18
#define LAST_USER_HANDLE
Definition: ntuser.h:11
#define FIRST_USER_HANDLE
Definition: ntuser.h:10
uint32_t entry
Definition: isohybrid.c:63
#define min(a, b)
Definition: monoChain.cc:55
void DbgUserDumpHandleTable()
#define TRACE(s)
Definition: solgame.cpp:4
Definition: ntuser.h:20
ULONG_PTR cHandleEntries
Definition: ntuser.h:1056
#define max(a, b)
Definition: svc.c:63
static __inline PVOID UserHeapReAlloc(PVOID lpMem, SIZE_T Bytes)
Definition: usrheap.h:54

Referenced by UserAllocHandle().

◆ DBG_DEFAULT_CHANNEL()

DBG_DEFAULT_CHANNEL ( UserObj  )

◆ entry_to_handle()

static __inline HANDLE entry_to_handle ( PUSER_HANDLE_TABLE  ht,
PUSER_HANDLE_ENTRY  ptr 
)
static

Definition at line 355 of file object.c.

356{
357 int index = ptr - ht->handles;
358 return (HANDLE)((((INT_PTR)index << 1) + FIRST_USER_HANDLE) + (ptr->generation << 16));
359}
GLuint index
Definition: glext.h:6031
static PVOID ptr
Definition: dispmode.c:27
int32_t INT_PTR
Definition: typedefs.h:64

Referenced by free_user_entry(), get_user_full_handle(), get_user_object_handle(), and UserAllocHandle().

◆ free_user_entry()

static __inline void * free_user_entry ( PUSER_HANDLE_TABLE  ht,
PUSER_HANDLE_ENTRY  entry 
)
static

Definition at line 417 of file object.c.

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 /* The slot is about to be reused, so no job may keep a grant on it */
446 if (entry->flags & HANDLEENTRY_GRANTED)
447 IntCleanupGrantedHandle(entry_to_handle(ht, entry));
448
449 ret = entry->ptr;
450 entry->ptr = ht->freelist;
451 entry->type = 0;
452 entry->flags = 0;
453 entry->pi = NULL;
454 ht->freelist = entry;
455
457
458 return ret;
459}
return ret
Definition: mutex.c:147
#define HANDLEENTRY_GRANTED
Definition: ntuser.h:17
@ TYPE_HOOK
Definition: ntuser.h:48
@ TYPE_CALLPROC
Definition: ntuser.h:50
@ TYPE_WINEVENTHOOK
Definition: ntuser.h:58
@ TYPE_CURSOR
Definition: ntuser.h:46
@ TYPE_WINDOW
Definition: ntuser.h:44
@ TYPE_ACCELTABLE
Definition: ntuser.h:51
@ TYPE_MENU
Definition: ntuser.h:45
struct _THREADINFO * PTHREADINFO
Definition: ntwin32.h:6
static __inline HANDLE entry_to_handle(PUSER_HANDLE_TABLE ht, PUSER_HANDLE_ENTRY ptr)
Definition: object.c:355

Referenced by UserDereferenceObject().

◆ FreeDeskProcObject()

static void FreeDeskProcObject ( _In_ PVOID  Object)
static

Definition at line 134 of file object.c.

136{
138 PDESKTOP pDesk = ObjHead->rpdesk;
139 PPROCESSINFO ppi = (PPROCESSINFO)ObjHead->hTaskWow;
140
141 ppi->UserHandleCount--;
143
144 DesktopHeapFree(pDesk, Object);
145}
static __inline BOOL DesktopHeapFree(IN PDESKTOP Desktop, IN PVOID lpMem)
Definition: desktop.h:217
struct _PROCDESKHEAD * PPROCDESKHEAD
struct _PROCESSINFO * PPROCESSINFO
Definition: ntwin32.h:5
struct _DESKTOP * rpdesk
Definition: ntuser.h:222
DWORD_PTR hTaskWow
Definition: ntuser.h:221
_Must_inspect_result_ _In_ WDFCOLLECTION _In_ WDFOBJECT Object
#define IntDereferenceProcessInfo(ppi)
Definition: win32.h:188

◆ FreeDeskThreadObject()

static void FreeDeskThreadObject ( _In_ PVOID  Object)
static

Definition at line 89 of file object.c.

91{
93 PDESKTOP pDesk = ObjHead->rpdesk;
94 PTHREADINFO pti = ObjHead->pti;
95
96 DesktopHeapFree(pDesk, Object);
97
98 pti->ppi->UserHandleCount--;
100}
struct _THRDESKHEAD * PTHRDESKHEAD
struct _DESKTOP * rpdesk
Definition: ntuser.h:197
PPROCESSINFO ppi
Definition: win32.h:89
#define IntDereferenceThreadInfo(pti)
Definition: win32.h:173

◆ FreeProcMarkObject()

void FreeProcMarkObject ( _In_ PVOID  Object)

Definition at line 175 of file object.c.

177{
178 PPROCESSINFO ppi = ((PPROCMARKHEAD)Object)->ppi;
179
181
182 ppi->UserHandleCount--;
184}
struct _PROCMARKHEAD * PPROCMARKHEAD
static __inline BOOL UserHeapFree(PVOID lpMem)
Definition: usrheap.h:44

Referenced by FreeCurIconObject().

◆ FreeSysObject()

static void FreeSysObject ( _In_ PVOID  Object)
static

Definition at line 237 of file object.c.

239{
241}

◆ FreeSysObjectCB()

static void FreeSysObjectCB ( _In_ PVOID  Object)
static

Definition at line 243 of file object.c.

245{
247}
#define ExFreePoolWithTag(_P, _T)
Definition: module.h:1109
#define USERTAG_CLIPBOARD
Definition: tags.h:200

◆ FreeThreadObject()

static void FreeThreadObject ( _In_ PVOID  Object)
static

Definition at line 45 of file object.c.

47{
49 PTHREADINFO pti = ObjHead->pti;
50
51 UserHeapFree(ObjHead);
52
53 pti->ppi->UserHandleCount--;
55}
struct _THROBJHEAD * PTHROBJHEAD

◆ get_user_full_handle()

HANDLE get_user_full_handle ( PUSER_HANDLE_TABLE  ht,
HANDLE  handle 
)

Definition at line 515 of file object.c.

516{
518
519 if ((ULONG_PTR)handle >> 16)
520 return handle;
521 if (!(entry = handle_to_entry(ht, handle )))
522 return handle;
523 return entry_to_handle( ht, entry );
524}
uint32_t ULONG_PTR
Definition: typedefs.h:65
PUSER_HANDLE_ENTRY handle_to_entry(PUSER_HANDLE_TABLE ht, HANDLE handle)
Definition: object.c:341

◆ get_user_object_handle()

void * get_user_object_handle ( PUSER_HANDLE_TABLE  ht,
HANDLE handle,
HANDLE_TYPE  type 
)

Definition at line 528 of file object.c.

529{
531
532 if (!(entry = handle_to_entry(ht, *handle )) || entry->type != type)
533 return NULL;
535 return entry->ptr;
536}
GLuint GLuint GLsizei GLenum type
Definition: gl.h:1545

◆ handle_to_entry()

PUSER_HANDLE_ENTRY handle_to_entry ( PUSER_HANDLE_TABLE  ht,
HANDLE  handle 
)

Definition at line 341 of file object.c.

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}
#define index(s, c)
Definition: various.h:29
_In_ uint64_t _In_ uint64_t _In_ uint64_t generation
Definition: btrfs.c:2996
#define LOWORD(l)
Definition: pedump.c:82
#define HIWORD(l)
Definition: typedefs.h:247

Referenced by get_user_full_handle(), get_user_object_handle(), NtUserValidateHandleSecure(), UserDereferenceObject(), UserFreeHandle(), UserGetObject(), UserGetObjectNoErr(), UserMarkHandleGranted(), UserMarkObjectDestroy(), and UserObjectInDestroy().

◆ NtUserValidateHandleSecure()

BOOL APIENTRY NtUserValidateHandleSecure ( HANDLE  handle)

Definition at line 815 of file object.c.

817{
818 UINT uType;
819 PPROCESSINFO ppi;
821 BOOL Ret = FALSE;
822
824
826 {
828 goto Exit; // Return FALSE
829 }
830 uType = entry->type;
831 switch (uType)
832 {
833 case TYPE_WINDOW:
835 ppi = ((PTHREADINFO)entry->pi)->ppi;
836 break;
837 case TYPE_MENU:
838 case TYPE_ACCELTABLE:
839 case TYPE_CURSOR:
840 case TYPE_HOOK:
841 case TYPE_CALLPROC:
843 ppi = entry->pi;
844 break;
845 default:
846 ppi = NULL;
847 break;
848 }
849
850 if (!ppi)
851 goto Exit; // Return FALSE
852
853 // Same process job returns TRUE.
854 if (gptiCurrent->ppi->pW32Job == ppi->pW32Job) Ret = TRUE;
855
856Exit:
857 UserLeave();
858 return Ret;
859}
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define ERROR_INVALID_HANDLE
Definition: compat.h:98
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned int UINT
Definition: sysinfo.c:13
@ TYPE_SETWINDOWPOS
Definition: ntuser.h:47
@ TYPE_INPUTCONTEXT
Definition: ntuser.h:60
VOID FASTCALL UserLeave(VOID)
Definition: ntuser.c:255
PTHREADINFO gptiCurrent
Definition: ntuser.c:15
VOID FASTCALL UserEnterExclusive(VOID)
Definition: ntuser.c:247
static void Exit(void)
Definition: sock.c:1330
struct _JOBINFO * pW32Job
Definition: win32.h:277
PUSER_HANDLE_TABLE gHandleTable
Definition: object.c:13
ENGAPI VOID APIENTRY EngSetLastError(_In_ ULONG iError)
Definition: error.c:21

Referenced by ValidateHandleNoErr().

◆ UserAllocHandle()

HANDLE UserAllocHandle ( _Inout_ PUSER_HANDLE_TABLE  ht,
_In_ PVOID  object,
_In_ HANDLE_TYPE  type,
_In_ PVOID  HandleOwner 
)

Definition at line 462 of file object.c.

467{
469 if (!entry)
470 return 0;
471 entry->ptr = object;
472 entry->type = type;
473 entry->flags = 0;
474 entry->pi = HandleOwner;
475 if (++entry->generation >= 0xffff)
476 entry->generation = 1;
477
478 /* We have created a handle, which is a reference! */
479 UserReferenceObject(object);
480
481 return entry_to_handle(ht, entry );
482}
static __inline PUSER_HANDLE_ENTRY alloc_user_entry(PUSER_HANDLE_TABLE ht)
Definition: object.c:361
VOID FASTCALL UserReferenceObject(PVOID obj)
Definition: object.c:754

Referenced by UserCreateObject().

◆ UserAssignmentLock()

PVOID FASTCALL UserAssignmentLock ( PVOID ppvObj,
PVOID  pvNew 
)

Definition at line 861 of file object.c.

862{
863 PVOID pvOld = *ppvObj;
864 *ppvObj = pvNew;
865
866 if (pvOld && pvOld == pvNew)
867 return pvOld;
868
869 if (pvNew)
870 UserReferenceObject(pvNew);
871
872 if (pvOld)
873 {
874 if (UserDereferenceObject(pvOld))
875 pvOld = NULL;
876 }
877
878 return pvOld;
879}
BOOL FASTCALL UserDereferenceObject(PVOID Object)
Definition: object.c:647

Referenced by co_IntSetKeyboardLayoutForProcess(), co_UserActivateKeyboardLayout(), co_UserCreateWindowEx(), InitThreadCallback(), IntImmActivateLayout(), IntTranslateKbdMessage(), NtUserSetThreadLayoutHandles(), and UserCreateInputContext().

◆ UserAssignmentUnlock()

PVOID FASTCALL UserAssignmentUnlock ( PVOID ppvObj)

Definition at line 881 of file object.c.

882{
883 PVOID pvOld = *ppvObj;
884 *ppvObj = NULL;
885
886 if (pvOld)
887 {
888 if (UserDereferenceObject(pvOld))
889 pvOld = NULL;
890 }
891
892 return pvOld;
893}

Referenced by co_UserFreeWindow(), ExitThreadCallback(), and IntWinStaObjectDelete().

◆ UserCreateHandleTable()

BOOL FASTCALL UserCreateHandleTable ( VOID  )

Definition at line 540 of file object.c.

541{
542 PVOID mem;
543 INT HandleCount = 1024 * 4;
544
545 // FIXME: Don't alloc all at once! Must be mapped into umode also...
547 if (!mem)
548 {
549 ERR("Failed creating handle table\n");
550 return FALSE;
551 }
552
554 if (gHandleTable == NULL)
555 {
557 ERR("Failed creating handle table\n");
558 return FALSE;
559 }
560
561 // FIXME: Make auto growable
563
564 return TRUE;
565}
Definition: mem.c:349
int32_t INT
Definition: typedefs.h:58
static ULONG HandleCount
Definition: uefidisk.c:67
VOID UserInitHandleTable(PUSER_HANDLE_TABLE ht, PVOID mem, ULONG bytes)
Definition: object.c:407

Referenced by InitUserImpl().

◆ UserCreateObject()

PVOID FASTCALL UserCreateObject ( PUSER_HANDLE_TABLE  ht,
PDESKTOP  pDesktop,
PTHREADINFO  pti,
HANDLE h,
HANDLE_TYPE  type,
ULONG  size 
)

Definition at line 572 of file object.c.

578{
579 HANDLE hi;
581 PVOID ObjectOwner;
582
583 /* Some sanity checks. Other checks will be made in the allocator */
586 ASSERT(ht != NULL);
587
588 /* Allocate the object */
590 Object = ObjectCallbacks[type].ObjectAlloc(pDesktop, pti, size, &ObjectOwner);
591 if (!Object)
592 {
593 ERR("User object allocation failed. Out of memory!\n");
594 return NULL;
595 }
596
597 hi = UserAllocHandle(ht, Object, type, ObjectOwner);
598 if (hi == NULL)
599 {
600 ERR("Out of user handles!\n");
601 ObjectCallbacks[type].ObjectFree(Object);
602 return NULL;
603 }
604
605#if DBG
606 if (pti)
607 pti->ppi->DbgHandleCount[type]++;
608#endif
609
610 /* Give this object its identity. */
611 ((PHEAD)Object)->h = hi;
612
613 /* The caller will get a locked object.
614 * Note: with the reference from the handle, that makes two */
616
617 if (h)
618 *h = hi;
619 return Object;
620}
GLsizeiptr size
Definition: glext.h:5919
GLfloat GLfloat GLfloat GLfloat h
Definition: glext.h:7723
struct _HEAD * PHEAD
@ TYPE_CTYPES
Definition: ntuser.h:65
#define TYPE_FREE
Definition: sunlabel.h:176
HANDLE UserAllocHandle(_Inout_ PUSER_HANDLE_TABLE ht, _In_ PVOID object, _In_ HANDLE_TYPE type, _In_ PVOID HandleOwner)
Definition: object.c:462
PVOID(* ObjectAlloc)(PDESKTOP, PTHREADINFO, SIZE_T, PVOID *)
Definition: object.c:251
static const struct @5774 ObjectCallbacks[TYPE_CTYPES]

Referenced by co_UserLoadKbdLayout(), CreateCallProc(), CreateTimer(), IntAddSynthesizedFormats(), IntCloneMenu(), IntCreateCurIconHandle(), IntCreateMenu(), IntCreateMonitorObject(), IntCreateWindow(), IntSynthesizeDib(), NtUserCallOneParam(), NtUserConvertMemHandle(), NtUserCreateAcceleratorTable(), NtUserSetWindowsHookEx(), NtUserSetWinEventHook(), UserCreateInputContext(), and UserLoadKbdFile().

◆ UserDeleteObject()

BOOL FASTCALL UserDeleteObject ( HANDLE  h,
HANDLE_TYPE  type 
)

Definition at line 740 of file object.c.

741{
743
744 if (!body) return FALSE;
745
746 ASSERT( ((PHEAD)body)->cLockObj >= 1);
747 ASSERT( ((PHEAD)body)->cLockObj < 0x10000);
748
750}
static const void * body(MD5_CTX *ctx, const void *data, unsigned long size)
Definition: md5.c:100
Definition: ntuser.h:183
PVOID UserGetObject(PUSER_HANDLE_TABLE ht, HANDLE handle, HANDLE_TYPE type)
Definition: object.c:499
BOOL FASTCALL UserFreeHandle(PUSER_HANDLE_TABLE ht, HANDLE handle)
Definition: object.c:689

Referenced by co_UserFreeWindow(), co_UserLoadKbdLayout(), DestroyCallProc(), IntDestroyCurIconObject(), IntDestroyInputContext(), IntDestroyMenuObject(), IntDestroyMonitorObject(), IntEndDeferWindowPosEx(), IntFreeElementData(), IntFreeHook(), IntRemoveEvent(), NtUserCallOneParam(), NtUserConvertMemHandle(), NtUserCreateAcceleratorTable(), RemoveTimer(), UnloadKbdFile(), UserDestroyAccelTable(), UserDestroyInputContext(), UserLoadKbdFile(), and UserUnloadKbl().

◆ UserDereferenceObject()

BOOL FASTCALL UserDereferenceObject ( PVOID  Object)

Definition at line 647 of file object.c.

648{
649 PHEAD ObjHead = Object;
650
651 ASSERT(ObjHead->cLockObj >= 1);
652 ASSERT(ObjHead->cLockObj < 0x10000);
653
654 if (--ObjHead->cLockObj == 0)
655 {
658
659 entry = handle_to_entry(gHandleTable, ObjHead->h);
660
661 ASSERT(entry != NULL);
662 /* The entry should be marked as in deletion */
664
665 type = entry->type;
668
669 /* We can now get rid of everything */
671
672#if 0
673 /* Call the object destructor */
674 ASSERT(ObjectCallbacks[type].ObjectCleanup != NULL);
675 ObjectCallbacks[type].ObjectCleanup(Object);
676#endif
677
678 /* And free it */
680 ObjectCallbacks[type].ObjectFree(Object);
681
682 return TRUE;
683 }
684 return FALSE;
685}
#define HANDLEENTRY_INDESTROY
Definition: ntuser.h:14
enum _HANDLE_TYPE HANDLE_TYPE
DWORD cLockObj
Definition: ntuser.h:185
HANDLE h
Definition: ntuser.h:184
void(* ObjectFree)(PVOID)
Definition: object.c:253
static __inline void * free_user_entry(PUSER_HANDLE_TABLE ht, PUSER_HANDLE_ENTRY entry)
Definition: object.c:417

Referenced by _Success_(), co_UserCreateWindowEx(), co_UserFreeWindow(), co_UserLoadKbdLayout(), co_UserSetParent(), co_WinPosSearchChildren(), CreateCallProc(), DefWndDoSizeMove(), DesktopWindowProc(), ExitThreadCallback(), FreeCurIconObject(), IntAddSynthesizedFormats(), IntCleanupCurIconCache(), IntCreateCurIconHandle(), IntCreateWindow(), IntDefWindowProc(), IntDestroyClass(), IntDestroyMonitorObject(), IntEndDeferWindowPosEx(), IntRemoveCursorFromList(), IntSetAconData(), IntSetOwner(), IntSynthesizeDib(), IntSystemSetCursor(), MENU_DrawBitmapItem(), MsqCleanupMessageQueue(), NtUserConvertMemHandle(), NtUserCreateAcceleratorTable(), NtUserDestroyCursor(), NtUserDrawIconEx(), NtUserGetCursorFrameInfo(), NtUserGetIconSize(), NtUserSetCursor(), NtUserSetWindowsHookEx(), NtUserSetWinEventHook(), NtUserUnhookWindowsHookEx(), RemoveTimer(), ReplaceWndPtr(), UserAssignmentLock(), UserAssignmentUnlock(), UserAttachThreadInput(), UserCreateInputContext(), UserCreateMenu(), UserDerefObjectCo(), UserDrawCaption(), UserDrawSysMenuButton(), UserFreeHandle(), UserLoadKbdFile(), UserSetClassLongPtr(), and UserSetCursorIconData().

◆ UserDestroyObjectsForOwner()

BOOLEAN UserDestroyObjectsForOwner ( PUSER_HANDLE_TABLE  Table,
PVOID  Owner 
)

Definition at line 777 of file object.c.

778{
779 int i;
781 BOOLEAN Ret = TRUE;
782
783 /* Sweep the whole handle table */
784 for (i = 0; i < Table->allocated_handles; i++)
785 {
786 Entry = &Table->handles[i];
787
788 if (Entry->pi != Owner)
789 continue;
790
791 /* Do not destroy if it's already been done */
792 if (Entry->flags & HANDLEENTRY_INDESTROY)
793 continue;
794
795 /* Call destructor */
796 if (!ObjectCallbacks[Entry->type].ObjectDestroy(Entry->ptr))
797 {
798 ERR("Failed destructing object %p, type %u.\n", Entry->ptr, Entry->type);
799 /* Don't return immediately, we must continue destroying the other objects */
800 Ret = FALSE;
801 }
802 }
803
804 return Ret;
805}
unsigned char BOOLEAN
Definition: actypes.h:127
ASMGENDATA Table[]
Definition: genincdata.c:61
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
_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
Entry
Definition: section.c:5216

Referenced by ExitThreadCallback(), and UserProcessDestroy().

◆ UserFreeHandle()

BOOL FASTCALL UserFreeHandle ( PUSER_HANDLE_TABLE  ht,
HANDLE  handle 
)

Definition at line 689 of file object.c.

690{
692
693 if (!(entry = handle_to_entry( ht, handle )))
694 {
696 return FALSE;
697 }
698
699 /* HANDLEENTRY_GRANTED has to survive for free_user_entry */
701
702 return UserDereferenceObject(entry->ptr);
703}
#define STATUS_INVALID_HANDLE
Definition: d3dkmdt.h:40
VOID FASTCALL SetLastNtError(_In_ NTSTATUS Status)
Definition: error.c:30

Referenced by UserDeleteObject().

◆ UserGetObject()

◆ UserGetObjectNoErr()

PVOID UserGetObjectNoErr ( PUSER_HANDLE_TABLE  ht,
HANDLE  handle,
HANDLE_TYPE  type 
)

Definition at line 485 of file object.c.

486{
488
489 ASSERT(ht);
490
491 if (!(entry = handle_to_entry(ht, handle )) || entry->type != type)
492 {
493 return NULL;
494 }
495 return entry->ptr;
496}

Referenced by IntDestroyInputContext(), NC_IconForWindow(), NtUserAssociateInputContext(), NtUserDestroyInputContext(), NtUserSetCursor(), and ValidateHwndNoErr().

◆ UserInitHandleTable()

VOID UserInitHandleTable ( PUSER_HANDLE_TABLE  ht,
PVOID  mem,
ULONG  bytes 
)

Definition at line 407 of file object.c.

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}
static unsigned char bytes[4]
Definition: adnsresfilter.c:74
struct _USER_HANDLE_ENTRY USER_HANDLE_ENTRY

Referenced by UserCreateHandleTable().

◆ UserMarkHandleGranted()

BOOL FASTCALL UserMarkHandleGranted ( HANDLE  h)

Definition at line 726 of file object.c.

727{
729
731 if (entry == NULL)
732 return FALSE;
733
734 entry->flags |= HANDLEENTRY_GRANTED;
735 return TRUE;
736}

◆ UserMarkObjectDestroy()

BOOL FASTCALL UserMarkObjectDestroy ( PVOID  Object)

Definition at line 624 of file object.c.

625{
627 PHEAD ObjHead = Object;
628
629 entry = handle_to_entry(gHandleTable, ObjHead->h);
630
631 ASSERT(entry != NULL);
632
633 entry->flags |= HANDLEENTRY_DESTROY;
634
635 if (ObjHead->cLockObj > 1)
636 {
637 entry->flags &= ~HANDLEENTRY_INDESTROY;
638 TRACE("Count %d\n",ObjHead->cLockObj);
639 return FALSE;
640 }
641
642 return TRUE;
643}
#define HANDLEENTRY_DESTROY
Definition: ntuser.h:13

Referenced by co_IntUnloadKeyboardLayoutEx(), co_UserFreeWindow(), IntDestroyMenuObject(), and UserDestroyInputContext().

◆ UserObjectInDestroy()

BOOL FASTCALL UserObjectInDestroy ( HANDLE  h)

◆ UserReferenceObject()

◆ UserReferenceObjectByHandle()

PVOID FASTCALL UserReferenceObjectByHandle ( HANDLE  handle,
HANDLE_TYPE  type 
)

Definition at line 764 of file object.c.

765{
767
769 if (object)
770 {
771 UserReferenceObject(object);
772 }
773 return object;
774}

Referenced by UserGetCurIconObject().

Variable Documentation

◆ gHandleTable

◆ ObjectAlloc

PVOID(* ObjectAlloc) (PDESKTOP, PTHREADINFO, SIZE_T, PVOID *) ( PDESKTOP  ,
PTHREADINFO  ,
SIZE_T  ,
PVOID  
)

Definition at line 251 of file object.c.

Referenced by UserCreateObject().

◆ 

const struct { ... } ObjectCallbacks[TYPE_CTYPES]
Initial value:
=
{
{ NULL, NULL, NULL },
{ AllocDeskThreadObject, co_UserDestroyWindow, FreeDeskThreadObject },
{ AllocDeskProcObject, UserDestroyMenuObject, FreeDeskProcObject },
{ AllocProcMarkObject, IntDestroyCurIconObject, FreeCurIconObject },
{ AllocSysObject, NULL, FreeSysObject },
{ AllocDeskThreadObject, IntRemoveHook, FreeDeskThreadObject },
{ AllocSysObjectCB, NULL,FreeSysObjectCB },
{ AllocDeskProcObject, DestroyCallProc, FreeDeskProcObject },
{ AllocProcMarkObject, UserDestroyAccelTable, FreeProcMarkObject },
{ NULL, NULL, NULL },
{ NULL, NULL, NULL },
{ NULL, NULL, NULL },
{ AllocSysObject, NULL, FreeSysObject },
{ AllocSysObject, NULL,FreeSysObject },
{ AllocSysObject, NULL, FreeSysObject },
{ AllocThreadObject, IntRemoveEvent, FreeThreadObject },
{ AllocSysObject, NULL, FreeSysObject },
{ NULL, NULL, NULL },
{ NULL, NULL, NULL },
{ NULL, NULL, NULL },
{ NULL, NULL, NULL },
}
BOOLEAN DestroyCallProc(_Inout_ PVOID Object)
Definition: callproc.c:22
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
BOOLEAN co_UserDestroyWindow(PVOID Object)
Definition: window.c:2857
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
BOOLEAN UserDestroyMenuObject(PVOID Object)
Definition: menu.c:311
void FreeProcMarkObject(_In_ PVOID Object)
Definition: object.c:175
static void FreeDeskThreadObject(_In_ PVOID Object)
Definition: object.c:89
static void FreeSysObject(_In_ PVOID Object)
Definition: object.c:237
static void FreeSysObjectCB(_In_ PVOID Object)
Definition: object.c:243
static void FreeThreadObject(_In_ PVOID Object)
Definition: object.c:45
static void FreeDeskProcObject(_In_ PVOID Object)
Definition: object.c:134

Referenced by UserCreateObject(), UserDereferenceObject(), and UserDestroyObjectsForOwner().

◆ ObjectDestroy

BOOLEAN(* ObjectDestroy) (PVOID) ( PVOID  )

Definition at line 252 of file object.c.

◆ ObjectFree

void(* ObjectFree) (PVOID) ( PVOID  )

Definition at line 253 of file object.c.

Referenced by UserDereferenceObject().