Match PSDK STATUS_* definitions.
[wine/gsoc_dplay.git] / server / mutex.c
blob0953f3f4007774e5076d068c559f20c5578879f4
1 /*
2 * Server-side mutex management
4 * Copyright (C) 1998 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <assert.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <stdarg.h>
29 #include "ntstatus.h"
30 #define WIN32_NO_STATUS
31 #include "windef.h"
32 #include "winternl.h"
34 #include "handle.h"
35 #include "thread.h"
36 #include "request.h"
38 struct mutex
40 struct object obj; /* object header */
41 struct thread *owner; /* mutex owner */
42 unsigned int count; /* recursion count */
43 int abandoned; /* has it been abandoned? */
44 struct list entry; /* entry in owner thread mutex list */
47 static void mutex_dump( struct object *obj, int verbose );
48 static int mutex_signaled( struct object *obj, struct thread *thread );
49 static int mutex_satisfied( struct object *obj, struct thread *thread );
50 static void mutex_destroy( struct object *obj );
51 static int mutex_signal( struct object *obj, unsigned int access );
53 static const struct object_ops mutex_ops =
55 sizeof(struct mutex), /* size */
56 mutex_dump, /* dump */
57 add_queue, /* add_queue */
58 remove_queue, /* remove_queue */
59 mutex_signaled, /* signaled */
60 mutex_satisfied, /* satisfied */
61 mutex_signal, /* signal */
62 no_get_fd, /* get_fd */
63 no_lookup_name, /* lookup_name */
64 no_close_handle, /* close_handle */
65 mutex_destroy /* destroy */
69 static struct mutex *create_mutex( const struct unicode_str *name, unsigned int attr, int owned )
71 struct mutex *mutex;
73 if ((mutex = create_named_object( sync_namespace, &mutex_ops, name, attr )))
75 if (get_error() != STATUS_OBJECT_NAME_EXISTS)
77 /* initialize it if it didn't already exist */
78 mutex->count = 0;
79 mutex->owner = NULL;
80 mutex->abandoned = 0;
81 if (owned) mutex_satisfied( &mutex->obj, current );
84 return mutex;
87 /* release a mutex once the recursion count is 0 */
88 static void do_release( struct mutex *mutex )
90 assert( !mutex->count );
91 /* remove the mutex from the thread list of owned mutexes */
92 list_remove( &mutex->entry );
93 mutex->owner = NULL;
94 wake_up( &mutex->obj, 0 );
97 void abandon_mutexes( struct thread *thread )
99 struct list *ptr;
101 while ((ptr = list_head( &thread->mutex_list )) != NULL)
103 struct mutex *mutex = LIST_ENTRY( ptr, struct mutex, entry );
104 assert( mutex->owner == thread );
105 mutex->count = 0;
106 mutex->abandoned = 1;
107 do_release( mutex );
111 static void mutex_dump( struct object *obj, int verbose )
113 struct mutex *mutex = (struct mutex *)obj;
114 assert( obj->ops == &mutex_ops );
115 fprintf( stderr, "Mutex count=%u owner=%p ", mutex->count, mutex->owner );
116 dump_object_name( &mutex->obj );
117 fputc( '\n', stderr );
120 static int mutex_signaled( struct object *obj, struct thread *thread )
122 struct mutex *mutex = (struct mutex *)obj;
123 assert( obj->ops == &mutex_ops );
124 return (!mutex->count || (mutex->owner == thread));
127 static int mutex_satisfied( struct object *obj, struct thread *thread )
129 struct mutex *mutex = (struct mutex *)obj;
130 assert( obj->ops == &mutex_ops );
131 assert( !mutex->count || (mutex->owner == thread) );
133 if (!mutex->count++) /* FIXME: avoid wrap-around */
135 assert( !mutex->owner );
136 mutex->owner = thread;
137 list_add_head( &thread->mutex_list, &mutex->entry );
139 if (!mutex->abandoned) return 0;
140 mutex->abandoned = 0;
141 return 1;
144 static int mutex_signal( struct object *obj, unsigned int access )
146 struct mutex *mutex = (struct mutex *)obj;
147 assert( obj->ops == &mutex_ops );
149 if (!(access & SYNCHRONIZE)) /* FIXME: MUTEX_MODIFY_STATE? */
151 set_error( STATUS_ACCESS_DENIED );
152 return 0;
154 if (!mutex->count || (mutex->owner != current))
156 set_error( STATUS_MUTANT_NOT_OWNED );
157 return 0;
159 if (!--mutex->count) do_release( mutex );
160 return 1;
163 static void mutex_destroy( struct object *obj )
165 struct mutex *mutex = (struct mutex *)obj;
166 assert( obj->ops == &mutex_ops );
168 if (!mutex->count) return;
169 mutex->count = 0;
170 do_release( mutex );
173 /* create a mutex */
174 DECL_HANDLER(create_mutex)
176 struct mutex *mutex;
177 struct unicode_str name;
179 reply->handle = 0;
180 get_req_unicode_str( &name );
181 if ((mutex = create_mutex( &name, req->attributes, req->owned )))
183 reply->handle = alloc_handle( current->process, mutex, req->access,
184 req->attributes & OBJ_INHERIT );
185 release_object( mutex );
189 /* open a handle to a mutex */
190 DECL_HANDLER(open_mutex)
192 struct unicode_str name;
194 get_req_unicode_str( &name );
195 reply->handle = open_object( sync_namespace, &name, &mutex_ops, req->access, req->attributes );
198 /* release a mutex */
199 DECL_HANDLER(release_mutex)
201 struct mutex *mutex;
203 if ((mutex = (struct mutex *)get_handle_obj( current->process, req->handle,
204 MUTEX_MODIFY_STATE, &mutex_ops )))
206 if (!mutex->count || (mutex->owner != current)) set_error( STATUS_MUTANT_NOT_OWNED );
207 else
209 reply->prev_count = mutex->count;
210 if (!--mutex->count) do_release( mutex );
212 release_object( mutex );