Add more Nt* functions.
[wine] / server / handle.c
1 /*
2  * Server-side handle 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 <limits.h>
26 #include <string.h>
27 #include <stdarg.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30
31 #include "windef.h"
32
33 #include "handle.h"
34 #include "process.h"
35 #include "thread.h"
36 #include "request.h"
37
38 struct handle_entry
39 {
40     struct object *ptr;       /* object */
41     unsigned int   access;    /* access rights */
42     int            fd;        /* file descriptor (in client process) */
43 };
44
45 struct handle_table
46 {
47     struct object        obj;         /* object header */
48     struct process      *process;     /* process owning this table */
49     int                  count;       /* number of allocated entries */
50     int                  last;        /* last used entry */
51     int                  free;        /* first entry that may be free */
52     struct handle_entry *entries;     /* handle entries */
53 };
54
55 static struct handle_table *global_table;
56
57 /* reserved handle access rights */
58 #define RESERVED_SHIFT         26
59 #define RESERVED_INHERIT       (HANDLE_FLAG_INHERIT << RESERVED_SHIFT)
60 #define RESERVED_CLOSE_PROTECT (HANDLE_FLAG_PROTECT_FROM_CLOSE << RESERVED_SHIFT)
61 #define RESERVED_ALL           (RESERVED_INHERIT | RESERVED_CLOSE_PROTECT)
62
63 #define MIN_HANDLE_ENTRIES  32
64
65
66 /* handle to table index conversion */
67
68 /* handles are a multiple of 4 under NT; handle 0 is not used */
69 inline static obj_handle_t index_to_handle( int index )
70 {
71     return (obj_handle_t)((index + 1) << 2);
72 }
73 inline static int handle_to_index( obj_handle_t handle )
74 {
75     return ((unsigned int)handle >> 2) - 1;
76 }
77
78 /* global handle conversion */
79
80 #define HANDLE_OBFUSCATOR 0x544a4def
81
82 inline static int handle_is_global( obj_handle_t handle)
83 {
84     return ((unsigned long)handle ^ HANDLE_OBFUSCATOR) < 0x10000;
85 }
86 inline static obj_handle_t handle_local_to_global( obj_handle_t handle )
87 {
88     if (!handle) return 0;
89     return (obj_handle_t)((unsigned long)handle ^ HANDLE_OBFUSCATOR);
90 }
91 inline static obj_handle_t handle_global_to_local( obj_handle_t handle )
92 {
93     return (obj_handle_t)((unsigned long)handle ^ HANDLE_OBFUSCATOR);
94 }
95
96
97 static void handle_table_dump( struct object *obj, int verbose );
98 static void handle_table_destroy( struct object *obj );
99
100 static const struct object_ops handle_table_ops =
101 {
102     sizeof(struct handle_table),     /* size */
103     handle_table_dump,               /* dump */
104     no_add_queue,                    /* add_queue */
105     NULL,                            /* remove_queue */
106     NULL,                            /* signaled */
107     NULL,                            /* satisfied */
108     no_signal,                       /* signal */
109     no_get_fd,                       /* get_fd */
110     no_close_handle,                 /* close_handle */
111     handle_table_destroy             /* destroy */
112 };
113
114 /* dump a handle table */
115 static void handle_table_dump( struct object *obj, int verbose )
116 {
117     int i;
118     struct handle_table *table = (struct handle_table *)obj;
119     struct handle_entry *entry = table->entries;
120
121     assert( obj->ops == &handle_table_ops );
122
123     fprintf( stderr, "Handle table last=%d count=%d process=%p\n",
124              table->last, table->count, table->process );
125     if (!verbose) return;
126     entry = table->entries;
127     for (i = 0; i <= table->last; i++, entry++)
128     {
129         if (!entry->ptr) continue;
130         fprintf( stderr, "%9u: %p %08x ",
131                  (unsigned int)index_to_handle(i), entry->ptr, entry->access );
132         entry->ptr->ops->dump( entry->ptr, 0 );
133     }
134 }
135
136 /* destroy a handle table */
137 static void handle_table_destroy( struct object *obj )
138 {
139     int i;
140     struct handle_table *table = (struct handle_table *)obj;
141     struct handle_entry *entry;
142
143     assert( obj->ops == &handle_table_ops );
144
145     /* first notify all objects that handles are being closed */
146     if (table->process)
147     {
148         for (i = 0, entry = table->entries; i <= table->last; i++, entry++)
149         {
150             struct object *obj = entry->ptr;
151             if (obj) obj->ops->close_handle( obj, table->process, index_to_handle(i) );
152         }
153     }
154
155     for (i = 0, entry = table->entries; i <= table->last; i++, entry++)
156     {
157         struct object *obj = entry->ptr;
158         entry->ptr = NULL;
159         if (obj) release_object( obj );
160     }
161     free( table->entries );
162 }
163
164 /* allocate a new handle table */
165 struct handle_table *alloc_handle_table( struct process *process, int count )
166 {
167     struct handle_table *table;
168
169     if (count < MIN_HANDLE_ENTRIES) count = MIN_HANDLE_ENTRIES;
170     if (!(table = alloc_object( &handle_table_ops )))
171         return NULL;
172     table->process = process;
173     table->count   = count;
174     table->last    = -1;
175     table->free    = 0;
176     if ((table->entries = mem_alloc( count * sizeof(*table->entries) ))) return table;
177     release_object( table );
178     return NULL;
179 }
180
181 /* grow a handle table */
182 static int grow_handle_table( struct handle_table *table )
183 {
184     struct handle_entry *new_entries;
185     int count = table->count;
186
187     if (count >= INT_MAX / 2) return 0;
188     count *= 2;
189     if (!(new_entries = realloc( table->entries, count * sizeof(struct handle_entry) )))
190     {
191         set_error( STATUS_NO_MEMORY );
192         return 0;
193     }
194     table->entries = new_entries;
195     table->count   = count;
196     return 1;
197 }
198
199 /* allocate the first free entry in the handle table */
200 static obj_handle_t alloc_entry( struct handle_table *table, void *obj, unsigned int access )
201 {
202     struct handle_entry *entry = table->entries + table->free;
203     int i;
204
205     for (i = table->free; i <= table->last; i++, entry++) if (!entry->ptr) goto found;
206     if (i >= table->count)
207     {
208         if (!grow_handle_table( table )) return 0;
209         entry = table->entries + i;  /* the entries may have moved */
210     }
211     table->last = i;
212  found:
213     table->free = i + 1;
214     entry->ptr    = grab_object( obj );
215     entry->access = access;
216     entry->fd     = -1;
217     return index_to_handle(i);
218 }
219
220 /* allocate a handle for an object, incrementing its refcount */
221 /* return the handle, or 0 on error */
222 obj_handle_t alloc_handle( struct process *process, void *obj, unsigned int access, int inherit )
223 {
224     struct handle_table *table = process->handles;
225
226     assert( table );
227     assert( !(access & RESERVED_ALL) );
228     if (inherit) access |= RESERVED_INHERIT;
229     return alloc_entry( table, obj, access );
230 }
231
232 /* allocate a global handle for an object, incrementing its refcount */
233 /* return the handle, or 0 on error */
234 static obj_handle_t alloc_global_handle( void *obj, unsigned int access )
235 {
236     if (!global_table)
237     {
238         if (!(global_table = (struct handle_table *)alloc_handle_table( NULL, 0 )))
239             return 0;
240     }
241     return handle_local_to_global( alloc_entry( global_table, obj, access ));
242 }
243
244 /* return a handle entry, or NULL if the handle is invalid */
245 static struct handle_entry *get_handle( struct process *process, obj_handle_t handle )
246 {
247     struct handle_table *table = process->handles;
248     struct handle_entry *entry;
249     int index;
250
251     if (handle_is_global(handle))
252     {
253         handle = handle_global_to_local(handle);
254         table = global_table;
255     }
256     if (!table) goto error;
257     index = handle_to_index( handle );
258     if (index < 0) goto error;
259     if (index > table->last) goto error;
260     entry = table->entries + index;
261     if (!entry->ptr) goto error;
262     return entry;
263
264  error:
265     set_error( STATUS_INVALID_HANDLE );
266     return NULL;
267 }
268
269 /* attempt to shrink a table */
270 static void shrink_handle_table( struct handle_table *table )
271 {
272     struct handle_entry *entry = table->entries + table->last;
273     struct handle_entry *new_entries;
274     int count = table->count;
275
276     while (table->last >= 0)
277     {
278         if (entry->ptr) break;
279         table->last--;
280         entry--;
281     }
282     if (table->last >= count / 4) return;  /* no need to shrink */
283     if (count < MIN_HANDLE_ENTRIES * 2) return;  /* too small to shrink */
284     count /= 2;
285     if (!(new_entries = realloc( table->entries, count * sizeof(*new_entries) ))) return;
286     table->count   = count;
287     table->entries = new_entries;
288 }
289
290 /* copy the handle table of the parent process */
291 /* return 1 if OK, 0 on error */
292 struct handle_table *copy_handle_table( struct process *process, struct process *parent )
293 {
294     struct handle_table *parent_table = parent->handles;
295     struct handle_table *table;
296     int i;
297
298     assert( parent_table );
299     assert( parent_table->obj.ops == &handle_table_ops );
300
301     if (!(table = (struct handle_table *)alloc_handle_table( process, parent_table->count )))
302         return NULL;
303
304     if ((table->last = parent_table->last) >= 0)
305     {
306         struct handle_entry *ptr = table->entries;
307         memcpy( ptr, parent_table->entries, (table->last + 1) * sizeof(struct handle_entry) );
308         for (i = 0; i <= table->last; i++, ptr++)
309         {
310             if (!ptr->ptr) continue;
311             ptr->fd = -1;
312             if (ptr->access & RESERVED_INHERIT) grab_object( ptr->ptr );
313             else ptr->ptr = NULL; /* don't inherit this entry */
314         }
315     }
316     /* attempt to shrink the table */
317     shrink_handle_table( table );
318     return table;
319 }
320
321 /* close a handle and decrement the refcount of the associated object */
322 /* return 1 if OK, 0 on error */
323 int close_handle( struct process *process, obj_handle_t handle, int *fd )
324 {
325     struct handle_table *table;
326     struct handle_entry *entry;
327     struct object *obj;
328
329     if (!(entry = get_handle( process, handle ))) return 0;
330     if (entry->access & RESERVED_CLOSE_PROTECT)
331     {
332         set_error( STATUS_INVALID_HANDLE );
333         return 0;
334     }
335     obj = entry->ptr;
336     if (!obj->ops->close_handle( obj, process, handle ))
337     {
338         set_error( STATUS_INVALID_HANDLE );
339         return 0;
340     }
341     entry->ptr = NULL;
342     if (fd) *fd = entry->fd;
343     else if (entry->fd != -1) return 1;  /* silently ignore close attempt if we cannot close the fd */
344     entry->fd = -1;
345     table = handle_is_global(handle) ? global_table : process->handles;
346     if (entry < table->entries + table->free) table->free = entry - table->entries;
347     if (entry == table->entries + table->last) shrink_handle_table( table );
348     release_object( obj );
349     return 1;
350 }
351
352 /* close all the global handles */
353 void close_global_handles(void)
354 {
355     if (global_table)
356     {
357         release_object( global_table );
358         global_table = NULL;
359     }
360 }
361
362 /* retrieve the object corresponding to one of the magic pseudo-handles */
363 static inline struct object *get_magic_handle( obj_handle_t handle )
364 {
365     switch((unsigned long)handle)
366     {
367         case 0xfffffffe:  /* current thread pseudo-handle */
368             return &current->obj;
369         case 0x7fffffff:  /* current process pseudo-handle */
370         case 0xffffffff:  /* current process pseudo-handle */
371             return (struct object *)current->process;
372         default:
373             return NULL;
374     }
375 }
376
377 /* retrieve the object corresponding to a handle, incrementing its refcount */
378 struct object *get_handle_obj( struct process *process, obj_handle_t handle,
379                                unsigned int access, const struct object_ops *ops )
380 {
381     struct handle_entry *entry;
382     struct object *obj;
383
384     if (!(obj = get_magic_handle( handle )))
385     {
386         if (!(entry = get_handle( process, handle ))) return NULL;
387         if ((entry->access & access) != access)
388         {
389             set_error( STATUS_ACCESS_DENIED );
390             return NULL;
391         }
392         obj = entry->ptr;
393     }
394     if (ops && (obj->ops != ops))
395     {
396         set_error( STATUS_OBJECT_TYPE_MISMATCH );  /* not the right type */
397         return NULL;
398     }
399     return grab_object( obj );
400 }
401
402 /* retrieve the access rights of a given handle */
403 unsigned int get_handle_access( struct process *process, obj_handle_t handle )
404 {
405     struct handle_entry *entry;
406
407     if (get_magic_handle( handle )) return ~0U;  /* magic handles have all access rights */
408     if (!(entry = get_handle( process, handle ))) return 0;
409     return entry->access;
410 }
411
412 /* retrieve the cached fd for a given handle */
413 int get_handle_unix_fd( struct process *process, obj_handle_t handle, unsigned int access )
414 {
415     struct handle_entry *entry;
416
417     if (!(entry = get_handle( process, handle ))) return -1;
418     if ((entry->access & access) != access)
419     {
420         set_error( STATUS_ACCESS_DENIED );
421         return -1;
422     }
423     return entry->fd;
424 }
425
426 /* remove the cached fd and return it */
427 int flush_cached_fd( struct process *process, obj_handle_t handle )
428 {
429     struct handle_entry *entry = get_handle( process, handle );
430     int fd = -1;
431
432     if (entry)
433     {
434         fd = entry->fd;
435         entry->fd = -1;
436     }
437     return fd;
438 }
439
440 /* find the first inherited handle of the given type */
441 /* this is needed for window stations and desktops (don't ask...) */
442 obj_handle_t find_inherited_handle( struct process *process, const struct object_ops *ops )
443 {
444     struct handle_table *table = process->handles;
445     struct handle_entry *ptr;
446     int i;
447
448     if (!table) return 0;
449
450     for (i = 0, ptr = table->entries; i <= table->last; i++, ptr++)
451     {
452         if (!ptr->ptr) continue;
453         if (ptr->ptr->ops != ops) continue;
454         if (ptr->access & RESERVED_INHERIT) return index_to_handle(i);
455     }
456     return 0;
457 }
458
459 /* get/set the handle reserved flags */
460 /* return the old flags (or -1 on error) */
461 int set_handle_info( struct process *process, obj_handle_t handle, int mask, int flags, int *fd )
462 {
463     struct handle_entry *entry;
464     unsigned int old_access;
465
466     if (get_magic_handle( handle ))
467     {
468         /* we can retrieve but not set info for magic handles */
469         if (mask) set_error( STATUS_ACCESS_DENIED );
470         return 0;
471     }
472     if (!(entry = get_handle( process, handle ))) return -1;
473     old_access = entry->access;
474     mask  = (mask << RESERVED_SHIFT) & RESERVED_ALL;
475     flags = (flags << RESERVED_SHIFT) & mask;
476     entry->access = (entry->access & ~mask) | flags;
477     /* if no current fd set it, otherwise return current fd */
478     if (entry->fd == -1) entry->fd = *fd;
479     *fd = entry->fd;
480     return (old_access & RESERVED_ALL) >> RESERVED_SHIFT;
481 }
482
483 /* duplicate a handle */
484 obj_handle_t duplicate_handle( struct process *src, obj_handle_t src_handle, struct process *dst,
485                            unsigned int access, int inherit, int options )
486 {
487     obj_handle_t res;
488     struct object *obj = get_handle_obj( src, src_handle, 0, NULL );
489
490     if (!obj) return 0;
491     if (options & DUP_HANDLE_SAME_ACCESS)
492     {
493         struct handle_entry *entry = get_handle( src, src_handle );
494         if (entry)
495             access = entry->access;
496         else  /* pseudo-handle, give it full access */
497         {
498             access = STANDARD_RIGHTS_ALL | SPECIFIC_RIGHTS_ALL;
499             clear_error();
500         }
501     }
502     access &= ~RESERVED_ALL;
503     if (options & DUP_HANDLE_MAKE_GLOBAL)
504         res = alloc_global_handle( obj, access );
505     else
506         res = alloc_handle( dst, obj, access, inherit );
507     release_object( obj );
508     return res;
509 }
510
511 /* open a new handle to an existing object */
512 obj_handle_t open_object( const struct namespace *namespace, const WCHAR *name, size_t len,
513                           const struct object_ops *ops, unsigned int access, int inherit )
514 {
515     obj_handle_t handle = 0;
516     struct object *obj = find_object( namespace, name, len );
517     if (obj)
518     {
519         if (ops && obj->ops != ops)
520             set_error( STATUS_OBJECT_TYPE_MISMATCH );
521         else
522             handle = alloc_handle( current->process, obj, access, inherit );
523         release_object( obj );
524     }
525     else
526         set_error( STATUS_OBJECT_NAME_NOT_FOUND );
527     return handle;
528 }
529
530 /* return the size of the handle table of a given process */
531 unsigned int get_handle_table_count( struct process *process )
532 {
533     return process->handles->count;
534 }
535
536 /* close a handle */
537 DECL_HANDLER(close_handle)
538 {
539     close_handle( current->process, req->handle, &reply->fd );
540 }
541
542 /* set a handle information */
543 DECL_HANDLER(set_handle_info)
544 {
545     int fd = req->fd;
546
547     if (handle_is_global(req->handle)) fd = -1;  /* no fd cache for global handles */
548     reply->old_flags = set_handle_info( current->process, req->handle,
549                                         req->mask, req->flags, &fd );
550     reply->cur_fd = fd;
551 }
552
553 /* duplicate a handle */
554 DECL_HANDLER(dup_handle)
555 {
556     struct process *src, *dst;
557
558     reply->handle = 0;
559     reply->fd = -1;
560     if ((src = get_process_from_handle( req->src_process, PROCESS_DUP_HANDLE )))
561     {
562         if (req->options & DUP_HANDLE_MAKE_GLOBAL)
563         {
564             reply->handle = duplicate_handle( src, req->src_handle, NULL,
565                                               req->access, req->inherit, req->options );
566         }
567         else if ((dst = get_process_from_handle( req->dst_process, PROCESS_DUP_HANDLE )))
568         {
569             reply->handle = duplicate_handle( src, req->src_handle, dst,
570                                               req->access, req->inherit, req->options );
571             release_object( dst );
572         }
573         /* close the handle no matter what happened */
574         if (req->options & DUP_HANDLE_CLOSE_SOURCE)
575         {
576             if (src == current->process) close_handle( src, req->src_handle, &reply->fd );
577             else close_handle( src, req->src_handle, NULL );
578         }
579         release_object( src );
580     }
581 }