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"
30 #define WIN32_NO_STATUS
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
)
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 */
81 if (owned
) mutex_satisfied( &mutex
->obj
, current
);
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
);
94 wake_up( &mutex
->obj
, 0 );
97 void abandon_mutexes( struct thread
*thread
)
101 while ((ptr
= list_head( &thread
->mutex_list
)) != NULL
)
103 struct mutex
*mutex
= LIST_ENTRY( ptr
, struct mutex
, entry
);
104 assert( mutex
->owner
== thread
);
106 mutex
->abandoned
= 1;
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;
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
);
154 if (!mutex
->count
|| (mutex
->owner
!= current
))
156 set_error( STATUS_MUTANT_NOT_OWNED
);
159 if (!--mutex
->count
) do_release( mutex
);
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;
174 DECL_HANDLER(create_mutex
)
177 struct unicode_str name
;
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
)
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
);
209 reply
->prev_count
= mutex
->count
;
210 if (!--mutex
->count
) do_release( mutex
);
212 release_object( mutex
);