semaphore.c 7.48 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3 4
/*
 * Server-side semaphore management
 *
 * Copyright (C) 1998 Alexandre Julliard
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * 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
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard's avatar
Alexandre Julliard committed
19 20
 */

21 22 23
#include "config.h"
#include "wine/port.h"

Alexandre Julliard's avatar
Alexandre Julliard committed
24 25 26
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
27
#include <stdarg.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
28

29 30
#include "ntstatus.h"
#define WIN32_NO_STATUS
31
#include "windef.h"
32
#include "winternl.h"
33 34 35

#include "handle.h"
#include "thread.h"
36
#include "request.h"
37
#include "security.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
38 39 40 41 42 43 44 45

struct semaphore
{
    struct object  obj;    /* object header */
    unsigned int   count;  /* current count */
    unsigned int   max;    /* maximum possible count */
};

46
static void semaphore_dump( struct object *obj, int verbose );
47
static struct object_type *semaphore_get_type( struct object *obj );
48
static int semaphore_signaled( struct object *obj, struct wait_queue_entry *entry );
49
static void semaphore_satisfied( struct object *obj, struct wait_queue_entry *entry );
50
static unsigned int semaphore_map_access( struct object *obj, unsigned int access );
51
static int semaphore_signal( struct object *obj, unsigned int access );
Alexandre Julliard's avatar
Alexandre Julliard committed
52 53 54

static const struct object_ops semaphore_ops =
{
55 56
    sizeof(struct semaphore),      /* size */
    semaphore_dump,                /* dump */
57
    semaphore_get_type,            /* get_type */
58 59 60 61
    add_queue,                     /* add_queue */
    remove_queue,                  /* remove_queue */
    semaphore_signaled,            /* signaled */
    semaphore_satisfied,           /* satisfied */
62
    semaphore_signal,              /* signal */
63
    no_get_fd,                     /* get_fd */
64
    semaphore_map_access,          /* map_access */
65 66
    default_get_sd,                /* get_sd */
    default_set_sd,                /* set_sd */
67
    no_lookup_name,                /* lookup_name */
68 69
    directory_link_name,           /* link_name */
    default_unlink_name,           /* unlink_name */
70
    no_open_file,                  /* open_file */
71
    no_close_handle,               /* close_handle */
72
    no_destroy                     /* destroy */
Alexandre Julliard's avatar
Alexandre Julliard committed
73 74 75
};


76
static struct semaphore *create_semaphore( struct object *root, const struct unicode_str *name,
77 78
                                           unsigned int attr, unsigned int initial, unsigned int max,
                                           const struct security_descriptor *sd )
Alexandre Julliard's avatar
Alexandre Julliard committed
79 80 81 82 83
{
    struct semaphore *sem;

    if (!max || (initial > max))
    {
84
        set_error( STATUS_INVALID_PARAMETER );
Alexandre Julliard's avatar
Alexandre Julliard committed
85 86
        return NULL;
    }
87
    if ((sem = create_named_object( root, &semaphore_ops, name, attr, sd )))
Alexandre Julliard's avatar
Alexandre Julliard committed
88
    {
89
        if (get_error() != STATUS_OBJECT_NAME_EXISTS)
90 91 92 93 94
        {
            /* initialize it if it didn't already exist */
            sem->count = initial;
            sem->max   = max;
        }
Alexandre Julliard's avatar
Alexandre Julliard committed
95
    }
96
    return sem;
Alexandre Julliard's avatar
Alexandre Julliard committed
97 98
}

99 100
static int release_semaphore( struct semaphore *sem, unsigned int count,
                              unsigned int *prev )
Alexandre Julliard's avatar
Alexandre Julliard committed
101
{
102 103
    if (prev) *prev = sem->count;
    if (sem->count + count < sem->count || sem->count + count > sem->max)
Alexandre Julliard's avatar
Alexandre Julliard committed
104
    {
105 106 107 108 109 110 111 112 113 114 115 116
        set_error( STATUS_SEMAPHORE_LIMIT_EXCEEDED );
        return 0;
    }
    else if (sem->count)
    {
        /* there cannot be any thread to wake up if the count is != 0 */
        sem->count += count;
    }
    else
    {
        sem->count = count;
        wake_up( &sem->obj, count );
Alexandre Julliard's avatar
Alexandre Julliard committed
117
    }
118
    return 1;
Alexandre Julliard's avatar
Alexandre Julliard committed
119 120
}

121
static void semaphore_dump( struct object *obj, int verbose )
Alexandre Julliard's avatar
Alexandre Julliard committed
122 123 124
{
    struct semaphore *sem = (struct semaphore *)obj;
    assert( obj->ops == &semaphore_ops );
125
    fprintf( stderr, "Semaphore count=%d max=%d\n", sem->count, sem->max );
Alexandre Julliard's avatar
Alexandre Julliard committed
126 127
}

128 129 130 131 132 133 134
static struct object_type *semaphore_get_type( struct object *obj )
{
    static const WCHAR name[] = {'S','e','m','a','p','h','o','r','e'};
    static const struct unicode_str str = { name, sizeof(name) };
    return get_object_type( &str );
}

135
static int semaphore_signaled( struct object *obj, struct wait_queue_entry *entry )
Alexandre Julliard's avatar
Alexandre Julliard committed
136 137 138 139 140 141
{
    struct semaphore *sem = (struct semaphore *)obj;
    assert( obj->ops == &semaphore_ops );
    return (sem->count > 0);
}

142
static void semaphore_satisfied( struct object *obj, struct wait_queue_entry *entry )
Alexandre Julliard's avatar
Alexandre Julliard committed
143 144 145 146 147 148 149
{
    struct semaphore *sem = (struct semaphore *)obj;
    assert( obj->ops == &semaphore_ops );
    assert( sem->count );
    sem->count--;
}

150 151
static unsigned int semaphore_map_access( struct object *obj, unsigned int access )
{
152
    if (access & GENERIC_READ)    access |= STANDARD_RIGHTS_READ | SEMAPHORE_QUERY_STATE;
153
    if (access & GENERIC_WRITE)   access |= STANDARD_RIGHTS_WRITE | SEMAPHORE_MODIFY_STATE;
154
    if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE | SYNCHRONIZE;
155 156 157 158
    if (access & GENERIC_ALL)     access |= STANDARD_RIGHTS_ALL | SEMAPHORE_ALL_ACCESS;
    return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
}

159 160 161 162 163 164 165 166 167 168 169 170 171
static int semaphore_signal( struct object *obj, unsigned int access )
{
    struct semaphore *sem = (struct semaphore *)obj;
    assert( obj->ops == &semaphore_ops );

    if (!(access & SEMAPHORE_MODIFY_STATE))
    {
        set_error( STATUS_ACCESS_DENIED );
        return 0;
    }
    return release_semaphore( sem, 1, NULL );
}

172 173 174
/* create a semaphore */
DECL_HANDLER(create_semaphore)
{
175
    struct semaphore *sem;
176
    struct unicode_str name;
177
    struct object *root;
178
    const struct security_descriptor *sd;
179
    const struct object_attributes *objattr = get_req_object_attributes( &sd, &name, &root );
180

181
    if (!objattr) return;
182

183
    if ((sem = create_semaphore( root, &name, objattr->attributes, req->initial, req->max, sd )))
184
    {
185
        if (get_error() == STATUS_OBJECT_NAME_EXISTS)
186
            reply->handle = alloc_handle( current->process, sem, req->access, objattr->attributes );
187
        else
188 189
            reply->handle = alloc_handle_no_access_check( current->process, sem,
                                                          req->access, objattr->attributes );
190
        release_object( sem );
191
    }
192 193

    if (root) release_object( root );
194 195 196 197 198
}

/* open a handle to a semaphore */
DECL_HANDLER(open_semaphore)
{
199
    struct unicode_str name = get_req_unicode_str();
200

201 202
    reply->handle = open_object( current->process, req->rootdir, req->access,
                                 &semaphore_ops, &name, req->attributes );
203 204 205 206 207
}

/* release a semaphore */
DECL_HANDLER(release_semaphore)
{
208 209 210 211 212 213 214 215
    struct semaphore *sem;

    if ((sem = (struct semaphore *)get_handle_obj( current->process, req->handle,
                                                   SEMAPHORE_MODIFY_STATE, &semaphore_ops )))
    {
        release_semaphore( sem, req->count, &reply->prev_count );
        release_object( sem );
    }
216
}
217 218 219 220 221 222 223 224 225 226 227 228 229 230

/* query details about the semaphore */
DECL_HANDLER(query_semaphore)
{
    struct semaphore *sem;

    if ((sem = (struct semaphore *)get_handle_obj( current->process, req->handle,
                                                   SEMAPHORE_QUERY_STATE, &semaphore_ops )))
    {
        reply->current = sem->count;
        reply->max = sem->max;
        release_object( sem );
    }
}