123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- /*
- * Server-side mutex management
- *
- * Copyright (C) 1998 Alexandre Julliard
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
- #include "config.h"
- #include "wine/port.h"
- #include <assert.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <stdarg.h>
- #include "ntstatus.h"
- #define WIN32_NO_STATUS
- #include "windef.h"
- #include "winternl.h"
- #include "handle.h"
- #include "thread.h"
- #include "request.h"
- #include "security.h"
- struct mutex
- {
- struct object obj; /* object header */
- struct thread *owner; /* mutex owner */
- unsigned int count; /* recursion count */
- int abandoned; /* has it been abandoned? */
- struct list entry; /* entry in owner thread mutex list */
- };
- static void mutex_dump( struct object *obj, int verbose );
- static struct object_type *mutex_get_type( struct object *obj );
- static int mutex_signaled( struct object *obj, struct wait_queue_entry *entry );
- static void mutex_satisfied( struct object *obj, struct wait_queue_entry *entry );
- static unsigned int mutex_map_access( struct object *obj, unsigned int access );
- static void mutex_destroy( struct object *obj );
- static int mutex_signal( struct object *obj, unsigned int access );
- static const struct object_ops mutex_ops =
- {
- sizeof(struct mutex), /* size */
- mutex_dump, /* dump */
- mutex_get_type, /* get_type */
- add_queue, /* add_queue */
- remove_queue, /* remove_queue */
- mutex_signaled, /* signaled */
- NULL, /* get_esync_fd */
- mutex_satisfied, /* satisfied */
- mutex_signal, /* signal */
- no_get_fd, /* get_fd */
- mutex_map_access, /* map_access */
- default_get_sd, /* get_sd */
- default_set_sd, /* set_sd */
- no_lookup_name, /* lookup_name */
- directory_link_name, /* link_name */
- default_unlink_name, /* unlink_name */
- no_open_file, /* open_file */
- no_kernel_obj_list, /* get_kernel_obj_list */
- no_alloc_handle, /* alloc_handle */
- no_close_handle, /* close_handle */
- mutex_destroy /* destroy */
- };
- /* grab a mutex for a given thread */
- static void do_grab( struct mutex *mutex, struct thread *thread )
- {
- assert( !mutex->count || (mutex->owner == thread) );
- if (!mutex->count++) /* FIXME: avoid wrap-around */
- {
- assert( !mutex->owner );
- mutex->owner = thread;
- list_add_head( &thread->mutex_list, &mutex->entry );
- }
- }
- /* release a mutex once the recursion count is 0 */
- static void do_release( struct mutex *mutex )
- {
- assert( !mutex->count );
- /* remove the mutex from the thread list of owned mutexes */
- list_remove( &mutex->entry );
- mutex->owner = NULL;
- wake_up( &mutex->obj, 0 );
- }
- static struct mutex *create_mutex( struct object *root, const struct unicode_str *name,
- unsigned int attr, int owned, const struct security_descriptor *sd )
- {
- struct mutex *mutex;
- if ((mutex = create_named_object( root, &mutex_ops, name, attr, sd )))
- {
- if (get_error() != STATUS_OBJECT_NAME_EXISTS)
- {
- /* initialize it if it didn't already exist */
- mutex->count = 0;
- mutex->owner = NULL;
- mutex->abandoned = 0;
- if (owned) do_grab( mutex, current );
- }
- }
- return mutex;
- }
- void abandon_mutexes( struct thread *thread )
- {
- struct list *ptr;
- while ((ptr = list_head( &thread->mutex_list )) != NULL)
- {
- struct mutex *mutex = LIST_ENTRY( ptr, struct mutex, entry );
- assert( mutex->owner == thread );
- mutex->count = 0;
- mutex->abandoned = 1;
- do_release( mutex );
- }
- }
- static void mutex_dump( struct object *obj, int verbose )
- {
- struct mutex *mutex = (struct mutex *)obj;
- assert( obj->ops == &mutex_ops );
- fprintf( stderr, "Mutex count=%u owner=%p\n", mutex->count, mutex->owner );
- }
- static struct object_type *mutex_get_type( struct object *obj )
- {
- static const struct unicode_str str = { type_Mutant, sizeof(type_Mutant) };
- return get_object_type( &str );
- }
- static int mutex_signaled( struct object *obj, struct wait_queue_entry *entry )
- {
- struct mutex *mutex = (struct mutex *)obj;
- assert( obj->ops == &mutex_ops );
- return (!mutex->count || (mutex->owner == get_wait_queue_thread( entry )));
- }
- static void mutex_satisfied( struct object *obj, struct wait_queue_entry *entry )
- {
- struct mutex *mutex = (struct mutex *)obj;
- assert( obj->ops == &mutex_ops );
- do_grab( mutex, get_wait_queue_thread( entry ));
- if (mutex->abandoned) make_wait_abandoned( entry );
- mutex->abandoned = 0;
- }
- static unsigned int mutex_map_access( struct object *obj, unsigned int access )
- {
- if (access & GENERIC_READ) access |= STANDARD_RIGHTS_READ | MUTANT_QUERY_STATE;
- if (access & GENERIC_WRITE) access |= STANDARD_RIGHTS_WRITE;
- if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE | SYNCHRONIZE;
- if (access & GENERIC_ALL) access |= STANDARD_RIGHTS_ALL | MUTEX_ALL_ACCESS;
- return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
- }
- static int mutex_signal( struct object *obj, unsigned int access )
- {
- struct mutex *mutex = (struct mutex *)obj;
- assert( obj->ops == &mutex_ops );
- if (!(access & SYNCHRONIZE))
- {
- set_error( STATUS_ACCESS_DENIED );
- return 0;
- }
- if (!mutex->count || (mutex->owner != current))
- {
- set_error( STATUS_MUTANT_NOT_OWNED );
- return 0;
- }
- if (!--mutex->count) do_release( mutex );
- return 1;
- }
- static void mutex_destroy( struct object *obj )
- {
- struct mutex *mutex = (struct mutex *)obj;
- assert( obj->ops == &mutex_ops );
- if (!mutex->count) return;
- mutex->count = 0;
- do_release( mutex );
- }
- /* create a mutex */
- DECL_HANDLER(create_mutex)
- {
- struct mutex *mutex;
- struct unicode_str name;
- struct object *root;
- const struct security_descriptor *sd;
- const struct object_attributes *objattr = get_req_object_attributes( &sd, &name, &root );
- if (!objattr) return;
- if ((mutex = create_mutex( root, &name, objattr->attributes, req->owned, sd )))
- {
- if (get_error() == STATUS_OBJECT_NAME_EXISTS)
- reply->handle = alloc_handle( current->process, mutex, req->access, objattr->attributes );
- else
- reply->handle = alloc_handle_no_access_check( current->process, mutex,
- req->access, objattr->attributes );
- release_object( mutex );
- }
- if (root) release_object( root );
- }
- /* open a handle to a mutex */
- DECL_HANDLER(open_mutex)
- {
- struct unicode_str name = get_req_unicode_str();
- reply->handle = open_object( current->process, req->rootdir, req->access,
- &mutex_ops, &name, req->attributes );
- }
- /* release a mutex */
- DECL_HANDLER(release_mutex)
- {
- struct mutex *mutex;
- if ((mutex = (struct mutex *)get_handle_obj( current->process, req->handle,
- 0, &mutex_ops )))
- {
- if (!mutex->count || (mutex->owner != current)) set_error( STATUS_MUTANT_NOT_OWNED );
- else
- {
- reply->prev_count = mutex->count;
- if (!--mutex->count) do_release( mutex );
- }
- release_object( mutex );
- }
- }
- /* return details about the mutex */
- DECL_HANDLER(query_mutex)
- {
- struct mutex *mutex;
- if ((mutex = (struct mutex *)get_handle_obj( current->process, req->handle,
- MUTANT_QUERY_STATE, &mutex_ops )))
- {
- reply->count = mutex->count;
- reply->owned = (mutex->owner == current);
- reply->abandoned = mutex->abandoned;
- release_object( mutex );
- }
- }
|