class.c 8.66 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Server-side window class management
 *
 * Copyright (C) 2002 Mike McCormack
 * Copyright (C) 2003 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
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 21 22 23 24 25 26 27 28 29
 */

#include "config.h"
#include "wine/port.h"

#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

30 31 32
#include "ntstatus.h"
#define WIN32_NO_STATUS

33 34 35 36 37 38
#include "wine/list.h"

#include "request.h"
#include "object.h"
#include "process.h"
#include "user.h"
39
#include "winuser.h"
40
#include "winternl.h"
41 42 43 44 45 46 47 48

struct window_class
{
    struct list     entry;           /* entry in process list */
    struct process *process;         /* process owning the class */
    int             count;           /* reference count */
    int             local;           /* local class? */
    atom_t          atom;            /* class atom */
49
    atom_t          base_atom;       /* base class atom for versioned class */
50
    mod_handle_t    instance;        /* module instance */
51 52
    unsigned int    style;           /* class style */
    int             win_extra;       /* number of window extra bytes */
53
    client_ptr_t    client_ptr;      /* pointer to class in client address space */
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
    int             nb_extra_bytes;  /* number of extra bytes */
    char            extra_bytes[1];  /* extra bytes storage */
};

static struct window_class *create_class( struct process *process, int extra_bytes, int local )
{
    struct window_class *class;

    if (!(class = mem_alloc( sizeof(*class) + extra_bytes - 1 ))) return NULL;

    class->process = (struct process *)grab_object( process );
    class->count = 0;
    class->local = local;
    class->nb_extra_bytes = extra_bytes;
    memset( class->extra_bytes, 0, extra_bytes );
    /* other fields are initialized by caller */

    /* local classes have priority so we put them first in the list */
    if (local) list_add_head( &process->classes, &class->entry );
    else list_add_tail( &process->classes, &class->entry );
    return class;
}

static void destroy_class( struct window_class *class )
{
    list_remove( &class->entry );
    release_object( class->process );
    free( class );
}

void destroy_process_classes( struct process *process )
{
    struct list *ptr;

    while ((ptr = list_head( &process->classes )))
    {
        struct window_class *class = LIST_ENTRY( ptr, struct window_class, entry );
        destroy_class( class );
    }
}

95
static struct window_class *find_class( struct process *process, atom_t atom, mod_handle_t instance )
96 97 98 99 100 101 102 103 104 105 106 107
{
    struct list *ptr;

    LIST_FOR_EACH( ptr, &process->classes )
    {
        struct window_class *class = LIST_ENTRY( ptr, struct window_class, entry );
        if (class->atom != atom) continue;
        if (!instance || !class->local || class->instance == instance) return class;
    }
    return NULL;
}

108
struct window_class *grab_class( struct process *process, atom_t atom,
109
                                 mod_handle_t instance, int *extra_bytes )
110 111
{
    struct window_class *class = find_class( process, atom, instance );
112 113 114 115 116
    if (class)
    {
        class->count++;
        *extra_bytes = class->win_extra;
    }
117 118 119 120 121 122 123 124 125 126
    else set_error( STATUS_INVALID_HANDLE );
    return class;
}

void release_class( struct window_class *class )
{
    assert( class->count > 0 );
    class->count--;
}

127 128 129 130 131
int is_desktop_class( struct window_class *class )
{
    return (class->atom == DESKTOP_ATOM && !class->local);
}

132 133 134 135 136 137 138 139
int is_hwnd_message_class( struct window_class *class )
{
    static const WCHAR messageW[] = {'M','e','s','s','a','g','e'};
    static const struct unicode_str name = { messageW, sizeof(messageW) };

    return (!class->local && class->atom == find_global_atom( NULL, &name ));
}

140 141 142 143 144
atom_t get_class_atom( struct window_class *class )
{
    return class->atom;
}

145
client_ptr_t get_class_client_ptr( struct window_class *class )
146 147 148 149
{
    return class->client_ptr;
}

150 151 152
/* create a window class */
DECL_HANDLER(create_class)
{
153
    struct window_class *class;
154
    struct unicode_str name = get_req_unicode_str();
155
    atom_t atom, base_atom;
156

157
    if (name.len)
158
    {
159
        atom = add_global_atom( NULL, &name );
160
        if (!atom) return;
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
        if (req->name_offset && req->name_offset < name.len / sizeof(WCHAR))
        {
            name.str += req->name_offset;
            name.len -= req->name_offset * sizeof(WCHAR);

            base_atom = add_global_atom( NULL, &name );
            if (!base_atom)
            {
                release_global_atom( NULL, atom );
                return;
            }
        }
        else
        {
            base_atom = atom;
            grab_global_atom( NULL, atom );
        }
178 179 180
    }
    else
    {
181
        base_atom = atom = req->atom;
182
        if (!grab_global_atom( NULL, atom )) return;
183
        grab_global_atom( NULL, base_atom );
184 185 186
    }

    class = find_class( current->process, atom, req->instance );
187 188 189
    if (class && !class->local == !req->local)
    {
        set_win32_error( ERROR_CLASS_ALREADY_EXISTS );
190
        release_global_atom( NULL, atom );
191
        release_global_atom( NULL, base_atom );
192 193
        return;
    }
194
    if (req->extra < 0 || req->extra > 4096 || req->win_extra < 0 || req->win_extra > 4096)
195
    {
196
        /* don't allow stupid values here */
197
        set_error( STATUS_INVALID_PARAMETER );
198
        release_global_atom( NULL, atom );
199
        release_global_atom( NULL, base_atom );
200 201 202 203 204
        return;
    }

    if (!(class = create_class( current->process, req->extra, req->local )))
    {
205
        release_global_atom( NULL, atom );
206
        release_global_atom( NULL, base_atom );
207 208
        return;
    }
209
    class->atom       = atom;
210
    class->base_atom  = base_atom;
211 212 213 214
    class->instance   = req->instance;
    class->style      = req->style;
    class->win_extra  = req->win_extra;
    class->client_ptr = req->client_ptr;
215
    reply->atom = atom;
216 217 218 219 220
}

/* destroy a window class */
DECL_HANDLER(destroy_class)
{
221
    struct window_class *class;
222
    struct unicode_str name = get_req_unicode_str();
223 224
    atom_t atom = req->atom;

225
    if (name.len) atom = find_global_atom( NULL, &name );
226

227
    if (!(class = find_class( current->process, atom, req->instance )))
228
        set_win32_error( ERROR_CLASS_DOES_NOT_EXIST );
229 230 231
    else if (class->count)
        set_win32_error( ERROR_CLASS_HAS_WINDOWS );
    else
232 233
    {
        reply->client_ptr = class->client_ptr;
234
        destroy_class( class );
235
    }
236 237 238 239 240 241 242 243 244 245
}


/* set some information in a class */
DECL_HANDLER(set_class_info)
{
    struct window_class *class = get_window_class( req->window );

    if (!class) return;

246 247 248 249 250 251
    if (req->flags && class->process != current->process)
    {
        set_error( STATUS_ACCESS_DENIED );
        return;
    }

252 253 254 255 256 257 258
    if (req->extra_size > sizeof(req->extra_value) ||
        req->extra_offset < -1 ||
        req->extra_offset > class->nb_extra_bytes - (int)req->extra_size)
    {
        set_win32_error( ERROR_INVALID_INDEX );
        return;
    }
259 260 261 262 263
    if ((req->flags & SET_CLASS_WINEXTRA) && (req->win_extra < 0 || req->win_extra > 4096))
    {
        set_error( STATUS_INVALID_PARAMETER );
        return;
    }
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
    if (req->extra_offset != -1)
    {
        memcpy( &reply->old_extra_value, class->extra_bytes + req->extra_offset, req->extra_size );
    }
    else if (req->flags & SET_CLASS_EXTRA)
    {
        set_win32_error( ERROR_INVALID_INDEX );
        return;
    }

    reply->old_atom      = class->atom;
    reply->old_style     = class->style;
    reply->old_extra     = class->nb_extra_bytes;
    reply->old_win_extra = class->win_extra;
    reply->old_instance  = class->instance;
279
    reply->base_atom     = class->base_atom;
280 281 282

    if (req->flags & SET_CLASS_ATOM)
    {
283 284
        if (!grab_global_atom( NULL, req->atom )) return;
        release_global_atom( NULL, class->atom );
285 286 287 288 289 290 291 292
        class->atom = req->atom;
    }
    if (req->flags & SET_CLASS_STYLE) class->style = req->style;
    if (req->flags & SET_CLASS_WINEXTRA) class->win_extra = req->win_extra;
    if (req->flags & SET_CLASS_INSTANCE) class->instance = req->instance;
    if (req->flags & SET_CLASS_EXTRA) memcpy( class->extra_bytes + req->extra_offset,
                                              &req->extra_value, req->extra_size );
}