Added an implementation of the MSVCRTD.DLL debugging C runtime DLL.
[wine] / server / semaphore.c
1 /*
2  * Server-side semaphore management
3  *
4  * Copyright (C) 1998 Alexandre Julliard
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <assert.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27
28 #include "windef.h"
29
30 #include "handle.h"
31 #include "thread.h"
32 #include "request.h"
33
34 struct semaphore
35 {
36     struct object  obj;    /* object header */
37     unsigned int   count;  /* current count */
38     unsigned int   max;    /* maximum possible count */
39 };
40
41 static void semaphore_dump( struct object *obj, int verbose );
42 static int semaphore_signaled( struct object *obj, struct thread *thread );
43 static int semaphore_satisfied( struct object *obj, struct thread *thread );
44
45 static const struct object_ops semaphore_ops =
46 {
47     sizeof(struct semaphore),      /* size */
48     semaphore_dump,                /* dump */
49     add_queue,                     /* add_queue */
50     remove_queue,                  /* remove_queue */
51     semaphore_signaled,            /* signaled */
52     semaphore_satisfied,           /* satisfied */
53     no_get_fd,                     /* get_fd */
54     no_destroy                     /* destroy */
55 };
56
57
58 static struct semaphore *create_semaphore( const WCHAR *name, size_t len,
59                                            unsigned int initial, unsigned int max )
60 {
61     struct semaphore *sem;
62
63     if (!max || (initial > max))
64     {
65         set_error( STATUS_INVALID_PARAMETER );
66         return NULL;
67     }
68     if ((sem = create_named_object( sync_namespace, &semaphore_ops, name, len )))
69     {
70         if (get_error() != STATUS_OBJECT_NAME_COLLISION)
71         {
72             /* initialize it if it didn't already exist */
73             sem->count = initial;
74             sem->max   = max;
75         }
76     }
77     return sem;
78 }
79
80 static unsigned int release_semaphore( obj_handle_t handle, unsigned int count )
81 {
82     struct semaphore *sem;
83     unsigned int prev = 0;
84
85     if ((sem = (struct semaphore *)get_handle_obj( current->process, handle,
86                                                    SEMAPHORE_MODIFY_STATE, &semaphore_ops )))
87     {
88         prev = sem->count;
89         if (sem->count + count < sem->count || sem->count + count > sem->max)
90         {
91             set_error( STATUS_SEMAPHORE_LIMIT_EXCEEDED );
92         }
93         else if (sem->count)
94         {
95             /* there cannot be any thread waiting if the count is != 0 */
96             assert( !sem->obj.head );
97             sem->count += count;
98         }
99         else
100         {
101             sem->count = count;
102             wake_up( &sem->obj, count );
103         }
104         release_object( sem );
105     }
106     return prev;
107 }
108
109 static void semaphore_dump( struct object *obj, int verbose )
110 {
111     struct semaphore *sem = (struct semaphore *)obj;
112     assert( obj->ops == &semaphore_ops );
113     fprintf( stderr, "Semaphore count=%d max=%d ", sem->count, sem->max );
114     dump_object_name( &sem->obj );
115     fputc( '\n', stderr );
116 }
117
118 static int semaphore_signaled( struct object *obj, struct thread *thread )
119 {
120     struct semaphore *sem = (struct semaphore *)obj;
121     assert( obj->ops == &semaphore_ops );
122     return (sem->count > 0);
123 }
124
125 static int semaphore_satisfied( struct object *obj, struct thread *thread )
126 {
127     struct semaphore *sem = (struct semaphore *)obj;
128     assert( obj->ops == &semaphore_ops );
129     assert( sem->count );
130     sem->count--;
131     return 0;  /* not abandoned */
132 }
133
134 /* create a semaphore */
135 DECL_HANDLER(create_semaphore)
136 {
137     struct semaphore *sem;
138
139     reply->handle = 0;
140     if ((sem = create_semaphore( get_req_data(), get_req_data_size(),
141                                  req->initial, req->max )))
142     {
143         reply->handle = alloc_handle( current->process, sem, SEMAPHORE_ALL_ACCESS, req->inherit );
144         release_object( sem );
145     }
146 }
147
148 /* open a handle to a semaphore */
149 DECL_HANDLER(open_semaphore)
150 {
151     reply->handle = open_object( sync_namespace, get_req_data(), get_req_data_size(),
152                                  &semaphore_ops, req->access, req->inherit );
153 }
154
155 /* release a semaphore */
156 DECL_HANDLER(release_semaphore)
157 {
158     reply->prev_count = release_semaphore( req->handle, req->count );
159 }