Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Server-side semaphore management |
| 3 | * |
| 4 | * Copyright (C) 1998 Alexandre Julliard |
| 5 | */ |
| 6 | |
| 7 | #include <assert.h> |
| 8 | #include <stdio.h> |
| 9 | #include <stdlib.h> |
| 10 | |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 11 | #include "winnt.h" |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 12 | |
| 13 | #include "handle.h" |
| 14 | #include "thread.h" |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 15 | #include "request.h" |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 16 | |
| 17 | struct semaphore |
| 18 | { |
| 19 | struct object obj; /* object header */ |
| 20 | unsigned int count; /* current count */ |
| 21 | unsigned int max; /* maximum possible count */ |
| 22 | }; |
| 23 | |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 24 | static void semaphore_dump( struct object *obj, int verbose ); |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 25 | static int semaphore_signaled( struct object *obj, struct thread *thread ); |
| 26 | static int semaphore_satisfied( struct object *obj, struct thread *thread ); |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 27 | |
| 28 | static const struct object_ops semaphore_ops = |
| 29 | { |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 30 | sizeof(struct semaphore), /* size */ |
| 31 | semaphore_dump, /* dump */ |
| 32 | add_queue, /* add_queue */ |
| 33 | remove_queue, /* remove_queue */ |
| 34 | semaphore_signaled, /* signaled */ |
| 35 | semaphore_satisfied, /* satisfied */ |
| 36 | NULL, /* get_poll_events */ |
| 37 | NULL, /* poll_event */ |
| 38 | no_read_fd, /* get_read_fd */ |
| 39 | no_write_fd, /* get_write_fd */ |
| 40 | no_flush, /* flush */ |
| 41 | no_get_file_info, /* get_file_info */ |
| 42 | no_destroy /* destroy */ |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | |
Alexandre Julliard | d16319c | 1999-11-25 21:30:24 +0000 | [diff] [blame] | 46 | static struct semaphore *create_semaphore( const WCHAR *name, size_t len, |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 47 | unsigned int initial, unsigned int max ) |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 48 | { |
| 49 | struct semaphore *sem; |
| 50 | |
| 51 | if (!max || (initial > max)) |
| 52 | { |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 53 | set_error( STATUS_INVALID_PARAMETER ); |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 54 | return NULL; |
| 55 | } |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 56 | if ((sem = create_named_object( &semaphore_ops, name, len ))) |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 57 | { |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 58 | if (get_error() != STATUS_OBJECT_NAME_COLLISION) |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 59 | { |
| 60 | /* initialize it if it didn't already exist */ |
| 61 | sem->count = initial; |
| 62 | sem->max = max; |
| 63 | } |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 64 | } |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 65 | return sem; |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 68 | static unsigned int release_semaphore( int handle, unsigned int count ) |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 69 | { |
| 70 | struct semaphore *sem; |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 71 | unsigned int prev = 0; |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 72 | |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 73 | if ((sem = (struct semaphore *)get_handle_obj( current->process, handle, |
| 74 | SEMAPHORE_MODIFY_STATE, &semaphore_ops ))) |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 75 | { |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 76 | prev = sem->count; |
| 77 | if (sem->count + count < sem->count || sem->count + count > sem->max) |
| 78 | { |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 79 | set_error( STATUS_SEMAPHORE_LIMIT_EXCEEDED ); |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 80 | } |
| 81 | else if (sem->count) |
| 82 | { |
| 83 | /* there cannot be any thread waiting if the count is != 0 */ |
| 84 | assert( !sem->obj.head ); |
| 85 | sem->count += count; |
| 86 | } |
| 87 | else |
| 88 | { |
| 89 | sem->count = count; |
| 90 | wake_up( &sem->obj, count ); |
| 91 | } |
| 92 | release_object( sem ); |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 93 | } |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 94 | return prev; |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 95 | } |
| 96 | |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 97 | static void semaphore_dump( struct object *obj, int verbose ) |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 98 | { |
| 99 | struct semaphore *sem = (struct semaphore *)obj; |
| 100 | assert( obj->ops == &semaphore_ops ); |
Alexandre Julliard | d16319c | 1999-11-25 21:30:24 +0000 | [diff] [blame] | 101 | fprintf( stderr, "Semaphore count=%d max=%d ", sem->count, sem->max ); |
| 102 | dump_object_name( &sem->obj ); |
| 103 | fputc( '\n', stderr ); |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | static int semaphore_signaled( struct object *obj, struct thread *thread ) |
| 107 | { |
| 108 | struct semaphore *sem = (struct semaphore *)obj; |
| 109 | assert( obj->ops == &semaphore_ops ); |
| 110 | return (sem->count > 0); |
| 111 | } |
| 112 | |
| 113 | static int semaphore_satisfied( struct object *obj, struct thread *thread ) |
| 114 | { |
| 115 | struct semaphore *sem = (struct semaphore *)obj; |
| 116 | assert( obj->ops == &semaphore_ops ); |
| 117 | assert( sem->count ); |
| 118 | sem->count--; |
| 119 | return 0; /* not abandoned */ |
| 120 | } |
| 121 | |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 122 | /* create a semaphore */ |
| 123 | DECL_HANDLER(create_semaphore) |
| 124 | { |
Alexandre Julliard | ef88637 | 2000-04-04 19:33:27 +0000 | [diff] [blame] | 125 | size_t len = get_req_strlenW( req, req->name ); |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 126 | struct semaphore *sem; |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 127 | |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 128 | req->handle = -1; |
| 129 | if ((sem = create_semaphore( req->name, len, req->initial, req->max ))) |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 130 | { |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 131 | req->handle = alloc_handle( current->process, sem, SEMAPHORE_ALL_ACCESS, req->inherit ); |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 132 | release_object( sem ); |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 133 | } |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | /* open a handle to a semaphore */ |
| 137 | DECL_HANDLER(open_semaphore) |
| 138 | { |
Alexandre Julliard | ef88637 | 2000-04-04 19:33:27 +0000 | [diff] [blame] | 139 | size_t len = get_req_strlenW( req, req->name ); |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 140 | req->handle = open_object( req->name, len, &semaphore_ops, req->access, req->inherit ); |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | /* release a semaphore */ |
| 144 | DECL_HANDLER(release_semaphore) |
| 145 | { |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 146 | req->prev_count = release_semaphore( req->handle, req->count ); |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 147 | } |