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
22 #include "wine/port.h"
37 struct object obj; /* object header */
38 struct thread *owner; /* mutex owner */
39 unsigned int count; /* recursion count */
40 int abandoned; /* has it been abandoned? */
41 struct list entry; /* entry in owner thread mutex list */
44 static void mutex_dump( struct object *obj, int verbose );
45 static int mutex_signaled( struct object *obj, struct thread *thread );
46 static int mutex_satisfied( struct object *obj, struct thread *thread );
47 static void mutex_destroy( struct object *obj );
48 static int mutex_signal( struct object *obj, unsigned int access );
50 static const struct object_ops mutex_ops =
52 sizeof(struct mutex), /* size */
53 mutex_dump, /* dump */
54 add_queue, /* add_queue */
55 remove_queue, /* remove_queue */
56 mutex_signaled, /* signaled */
57 mutex_satisfied, /* satisfied */
58 mutex_signal, /* signal */
59 no_get_fd, /* get_fd */
60 no_close_handle, /* close_handle */
61 mutex_destroy /* destroy */
65 static struct mutex *create_mutex( const struct unicode_str *name, unsigned int attr, int owned )
69 if ((mutex = create_named_object( sync_namespace, &mutex_ops, name, attr )))
71 if (get_error() != STATUS_OBJECT_NAME_COLLISION)
73 /* initialize it if it didn't already exist */
77 if (owned) mutex_satisfied( &mutex->obj, current );
83 /* release a mutex once the recursion count is 0 */
84 static void do_release( struct mutex *mutex )
86 assert( !mutex->count );
87 /* remove the mutex from the thread list of owned mutexes */
88 list_remove( &mutex->entry );
90 wake_up( &mutex->obj, 0 );
93 void abandon_mutexes( struct thread *thread )
97 while ((ptr = list_head( &thread->mutex_list )) != NULL)
99 struct mutex *mutex = LIST_ENTRY( ptr, struct mutex, entry );
100 assert( mutex->owner == thread );
102 mutex->abandoned = 1;
107 static void mutex_dump( struct object *obj, int verbose )
109 struct mutex *mutex = (struct mutex *)obj;
110 assert( obj->ops == &mutex_ops );
111 fprintf( stderr, "Mutex count=%u owner=%p ", mutex->count, mutex->owner );
112 dump_object_name( &mutex->obj );
113 fputc( '\n', stderr );
116 static int mutex_signaled( struct object *obj, struct thread *thread )
118 struct mutex *mutex = (struct mutex *)obj;
119 assert( obj->ops == &mutex_ops );
120 return (!mutex->count || (mutex->owner == thread));
123 static int mutex_satisfied( struct object *obj, struct thread *thread )
125 struct mutex *mutex = (struct mutex *)obj;
126 assert( obj->ops == &mutex_ops );
127 assert( !mutex->count || (mutex->owner == thread) );
129 if (!mutex->count++) /* FIXME: avoid wrap-around */
131 assert( !mutex->owner );
132 mutex->owner = thread;
133 list_add_head( &thread->mutex_list, &mutex->entry );
135 if (!mutex->abandoned) return 0;
136 mutex->abandoned = 0;
140 static int mutex_signal( struct object *obj, unsigned int access )
142 struct mutex *mutex = (struct mutex *)obj;
143 assert( obj->ops == &mutex_ops );
145 if (!(access & SYNCHRONIZE)) /* FIXME: MUTEX_MODIFY_STATE? */
147 set_error( STATUS_ACCESS_DENIED );
150 if (!mutex->count || (mutex->owner != current))
152 set_error( STATUS_MUTANT_NOT_OWNED );
155 if (!--mutex->count) do_release( mutex );
159 static void mutex_destroy( struct object *obj )
161 struct mutex *mutex = (struct mutex *)obj;
162 assert( obj->ops == &mutex_ops );
164 if (!mutex->count) return;
170 DECL_HANDLER(create_mutex)
173 struct unicode_str name;
176 get_req_unicode_str( &name );
177 if ((mutex = create_mutex( &name, req->attributes, req->owned )))
179 reply->handle = alloc_handle( current->process, mutex, req->access,
180 req->attributes & OBJ_INHERIT );
181 release_object( mutex );
185 /* open a handle to a mutex */
186 DECL_HANDLER(open_mutex)
188 struct unicode_str name;
190 get_req_unicode_str( &name );
191 reply->handle = open_object( sync_namespace, &name, &mutex_ops, req->access, req->attributes );
194 /* release a mutex */
195 DECL_HANDLER(release_mutex)
199 if ((mutex = (struct mutex *)get_handle_obj( current->process, req->handle,
200 MUTEX_MODIFY_STATE, &mutex_ops )))
202 if (!mutex->count || (mutex->owner != current)) set_error( STATUS_MUTANT_NOT_OWNED );
205 reply->prev_count = mutex->count;
206 if (!--mutex->count) do_release( mutex );
208 release_object( mutex );