update for HEAD-2003091401
[reactos.git] / subsys / win32k / ntuser / userobj.c
1 /*
2  *  ReactOS W32 Subsystem
3  *  Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 ReactOS Team
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /* $Id$
20  *
21  * COPYRIGHT:        See COPYING in the top level directory
22  * PROJECT:          ReactOS kernel
23  * PURPOSE:          USER Object manager interface definition
24  * FILE:             subsys/win32k/ntuser/userobj.c
25  * PROGRAMER:        Rex Jolliff (rex@lvcablemodem.com)
26  *
27  */
28
29 #undef WIN32_LEAN_AND_MEAN
30 #include <windows.h>
31 #define NDEBUG
32 #include <debug.h>
33 #include <ddk/ntddk.h>
34 #include <win32k/userobj.h>
35
36 static  LIST_ENTRY  UserObjectList;
37
38 PUSER_OBJECT FASTCALL USEROBJ_AllocObject (WORD size, WORD magic)
39 {
40   PUSER_OBJECT_HEADER  newObject;
41
42   newObject = ExAllocatePoolWithTag(PagedPool, 
43                                     size + sizeof (USER_OBJECT_HEADER), 
44                                     USER_OBJECT_TAG);
45   if (newObject == 0)
46   {
47     return  0;
48   }
49   RtlZeroMemory(newObject, size + sizeof (USER_OBJECT_HEADER));
50
51   newObject->magic = magic;
52   ExInitializeFastMutex (&newObject->mutex);
53   InsertTailList (&UserObjectList, &newObject->listEntry);
54
55   return  UserObjectHeaderToBody (newObject);
56 }
57
58 BOOL FASTCALL USEROBJ_FreeObject (PUSER_OBJECT object, WORD magic)
59 {
60   PUSER_OBJECT_HEADER  objectHeader;
61
62   if (object == NULL)
63   {
64     return FALSE;
65   }
66   objectHeader = UserObjectBodyToHeader (object);
67   if (objectHeader->magic != magic)
68   {
69     return  FALSE;
70   }
71   RemoveEntryList (&objectHeader->listEntry);
72   ExFreePool (objectHeader);
73
74   return  TRUE;
75 }
76
77 HUSEROBJ FASTCALL USEROBJ_PtrToHandle (PUSER_OBJECT object, WORD  magic)
78 {
79   PUSER_OBJECT_HEADER  objectHeader;
80   
81   if (object == 0)
82   {
83     return  0;
84   }
85   objectHeader = UserObjectBodyToHeader (object);
86   if (objectHeader->magic != magic)
87   {
88     return  0;
89   }
90   
91   return  UserObjectHeaderToHandle(objectHeader);
92 }
93
94 PUSER_OBJECT FASTCALL USEROBJ_HandleToPtr (HUSEROBJ  handle, WORD  magic)
95 {
96   PUSER_OBJECT_HEADER  objectHeader;
97
98   if (handle == 0)
99   {
100     return  0;
101   }
102   objectHeader = UserObjectHandleToHeader (handle);
103   if ((objectHeader->magic != magic) && 
104       (magic != UO_MAGIC_DONTCARE))
105   {
106     return  0;
107   }
108
109   return  UserObjectHeaderToBody (objectHeader);
110 }
111
112 BOOL FASTCALL USEROBJ_LockObject (HUSEROBJ  objectHandle)
113 {
114   PUSER_OBJECT_HEADER  objectHeader;
115
116   if (objectHandle == 0)
117   {
118     return  FALSE;
119   }
120   objectHeader = UserObjectHandleToHeader (objectHandle);
121
122   ExAcquireFastMutexUnsafe (&objectHeader->mutex);
123
124   return  TRUE;
125 }
126
127 BOOL FASTCALL USEROBJ_UnlockObject (HUSEROBJ  objectHandle)
128 {
129   PUSER_OBJECT_HEADER  objectHeader;
130
131   if (objectHandle == 0)
132   {
133     return  FALSE;
134   }
135   objectHeader = UserObjectHandleToHeader (objectHandle);
136
137   ExReleaseFastMutexUnsafe (&objectHeader->mutex);
138
139   return  TRUE;
140 }
141
142 /* EOF */