widl: Add support for function parameter flags to SLTG typelib generator.
[wine.git] / server / handle.c
blobef243e06e0bd51f8aaba46b20cb1a70aec30f725
1 /*
2 * Server-side handle management
4 * Copyright (C) 1998 Alexandre Julliard
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.
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.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
23 #include <assert.h>
24 #include <limits.h>
25 #include <string.h>
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <sys/types.h>
31 #include "ntstatus.h"
32 #define WIN32_NO_STATUS
33 #include "windef.h"
34 #include "winternl.h"
36 #include "handle.h"
37 #include "process.h"
38 #include "thread.h"
39 #include "security.h"
40 #include "request.h"
42 struct handle_entry
44 struct object *ptr; /* object */
45 unsigned int access; /* access rights */
48 struct handle_table
50 struct object obj; /* object header */
51 struct process *process; /* process owning this table */
52 int count; /* number of allocated entries */
53 int last; /* last used entry */
54 int free; /* first entry that may be free */
55 struct handle_entry *entries; /* handle entries */
58 static struct handle_table *global_table;
60 /* reserved handle access rights */
61 #define RESERVED_SHIFT 26
62 #define RESERVED_INHERIT (HANDLE_FLAG_INHERIT << RESERVED_SHIFT)
63 #define RESERVED_CLOSE_PROTECT (HANDLE_FLAG_PROTECT_FROM_CLOSE << RESERVED_SHIFT)
64 #define RESERVED_ALL (RESERVED_INHERIT | RESERVED_CLOSE_PROTECT)
66 #define MIN_HANDLE_ENTRIES 32
67 #define MAX_HANDLE_ENTRIES 0x00ffffff
70 /* handle to table index conversion */
72 /* handles are a multiple of 4 under NT; handle 0 is not used */
73 static inline obj_handle_t index_to_handle( int index )
75 return (obj_handle_t)((index + 1) << 2);
77 static inline int handle_to_index( obj_handle_t handle )
79 return (handle >> 2) - 1;
82 /* global handle conversion */
84 #define HANDLE_OBFUSCATOR 0x544a4def
86 static inline int handle_is_global( obj_handle_t handle)
88 return (handle ^ HANDLE_OBFUSCATOR) <= (MAX_HANDLE_ENTRIES << 2);
90 static inline obj_handle_t handle_local_to_global( obj_handle_t handle )
92 if (!handle) return 0;
93 return handle ^ HANDLE_OBFUSCATOR;
95 static inline obj_handle_t handle_global_to_local( obj_handle_t handle )
97 return handle ^ HANDLE_OBFUSCATOR;
100 /* grab an object and increment its handle count */
101 static struct object *grab_object_for_handle( struct object *obj )
103 obj->handle_count++;
104 obj->ops->type->handle_count++;
105 obj->ops->type->handle_max = max( obj->ops->type->handle_max, obj->ops->type->handle_count );
106 return grab_object( obj );
109 /* release an object and decrement its handle count */
110 static void release_object_from_handle( struct object *obj )
112 assert( obj->handle_count );
113 obj->ops->type->handle_count--;
114 obj->handle_count--;
115 release_object( obj );
118 static void handle_table_dump( struct object *obj, int verbose );
119 static void handle_table_destroy( struct object *obj );
121 static const struct object_ops handle_table_ops =
123 sizeof(struct handle_table), /* size */
124 &no_type, /* type */
125 handle_table_dump, /* dump */
126 no_add_queue, /* add_queue */
127 NULL, /* remove_queue */
128 NULL, /* signaled */
129 NULL, /* satisfied */
130 no_signal, /* signal */
131 no_get_fd, /* get_fd */
132 default_map_access, /* map_access */
133 default_get_sd, /* get_sd */
134 default_set_sd, /* set_sd */
135 no_get_full_name, /* get_full_name */
136 no_lookup_name, /* lookup_name */
137 no_link_name, /* link_name */
138 NULL, /* unlink_name */
139 no_open_file, /* open_file */
140 no_kernel_obj_list, /* get_kernel_obj_list */
141 no_close_handle, /* close_handle */
142 handle_table_destroy /* destroy */
145 /* dump a handle table */
146 static void handle_table_dump( struct object *obj, int verbose )
148 int i;
149 struct handle_table *table = (struct handle_table *)obj;
150 struct handle_entry *entry;
152 assert( obj->ops == &handle_table_ops );
154 fprintf( stderr, "Handle table last=%d count=%d process=%p\n",
155 table->last, table->count, table->process );
156 if (!verbose) return;
157 entry = table->entries;
158 for (i = 0; i <= table->last; i++, entry++)
160 if (!entry->ptr) continue;
161 fprintf( stderr, " %04x: %p %08x ",
162 index_to_handle(i), entry->ptr, entry->access );
163 dump_object_name( entry->ptr );
164 entry->ptr->ops->dump( entry->ptr, 0 );
168 /* destroy a handle table */
169 static void handle_table_destroy( struct object *obj )
171 int i;
172 struct handle_table *table = (struct handle_table *)obj;
173 struct handle_entry *entry;
175 assert( obj->ops == &handle_table_ops );
177 for (i = 0, entry = table->entries; i <= table->last; i++, entry++)
179 struct object *obj = entry->ptr;
180 entry->ptr = NULL;
181 if (obj)
183 if (table->process)
184 obj->ops->close_handle( obj, table->process, index_to_handle(i) );
185 release_object_from_handle( obj );
188 free( table->entries );
191 /* close all the process handles and free the handle table */
192 void close_process_handles( struct process *process )
194 struct handle_table *table = process->handles;
196 process->handles = NULL;
197 if (table) release_object( table );
200 /* allocate a new handle table */
201 struct handle_table *alloc_handle_table( struct process *process, int count )
203 struct handle_table *table;
205 if (count < MIN_HANDLE_ENTRIES) count = MIN_HANDLE_ENTRIES;
206 if (!(table = alloc_object( &handle_table_ops )))
207 return NULL;
208 table->process = process;
209 table->count = count;
210 table->last = -1;
211 table->free = 0;
212 if ((table->entries = mem_alloc( count * sizeof(*table->entries) ))) return table;
213 release_object( table );
214 return NULL;
217 /* grow a handle table */
218 static int grow_handle_table( struct handle_table *table )
220 struct handle_entry *new_entries;
221 int count = min( table->count * 2, MAX_HANDLE_ENTRIES );
223 if (count == table->count ||
224 !(new_entries = realloc( table->entries, count * sizeof(struct handle_entry) )))
226 set_error( STATUS_INSUFFICIENT_RESOURCES );
227 return 0;
229 table->entries = new_entries;
230 table->count = count;
231 return 1;
234 /* allocate the first free entry in the handle table */
235 static obj_handle_t alloc_entry( struct handle_table *table, void *obj, unsigned int access )
237 struct handle_entry *entry = table->entries + table->free;
238 int i;
240 for (i = table->free; i <= table->last; i++, entry++) if (!entry->ptr) goto found;
241 if (i >= table->count)
243 if (!grow_handle_table( table )) return 0;
244 entry = table->entries + i; /* the entries may have moved */
246 table->last = i;
247 found:
248 table->free = i + 1;
249 entry->ptr = grab_object_for_handle( obj );
250 entry->access = access;
251 return index_to_handle(i);
254 /* allocate a handle for an object, incrementing its refcount */
255 static obj_handle_t alloc_handle_entry( struct process *process, void *ptr,
256 unsigned int access, unsigned int attr )
258 struct object *obj = ptr;
260 assert( !(access & RESERVED_ALL) );
261 if (attr & OBJ_INHERIT) access |= RESERVED_INHERIT;
262 if (!process->handles)
264 set_error( STATUS_PROCESS_IS_TERMINATING );
265 return 0;
267 return alloc_entry( process->handles, obj, access );
270 /* allocate a handle for an object, incrementing its refcount */
271 /* return the handle, or 0 on error */
272 obj_handle_t alloc_handle_no_access_check( struct process *process, void *ptr, unsigned int access, unsigned int attr )
274 struct object *obj = ptr;
275 if (access & MAXIMUM_ALLOWED) access = GENERIC_ALL;
276 access = obj->ops->map_access( obj, access ) & ~RESERVED_ALL;
277 return alloc_handle_entry( process, ptr, access, attr );
280 /* allocate a handle for an object, checking the dacl allows the process to */
281 /* access it and incrementing its refcount */
282 /* return the handle, or 0 on error */
283 obj_handle_t alloc_handle( struct process *process, void *ptr, unsigned int access, unsigned int attr )
285 struct object *obj = ptr;
286 access = obj->ops->map_access( obj, access ) & ~RESERVED_ALL;
287 if (access && !check_object_access( NULL, obj, &access )) return 0;
288 return alloc_handle_entry( process, ptr, access, attr );
291 /* allocate a global handle for an object, incrementing its refcount */
292 /* return the handle, or 0 on error */
293 static obj_handle_t alloc_global_handle_no_access_check( void *obj, unsigned int access )
295 if (!global_table)
297 if (!(global_table = alloc_handle_table( NULL, 0 )))
298 return 0;
299 make_object_permanent( &global_table->obj );
301 return handle_local_to_global( alloc_entry( global_table, obj, access ));
304 /* allocate a global handle for an object, checking the dacl allows the */
305 /* process to access it and incrementing its refcount and incrementing its refcount */
306 /* return the handle, or 0 on error */
307 static obj_handle_t alloc_global_handle( void *obj, unsigned int access )
309 if (access && !check_object_access( NULL, obj, &access )) return 0;
310 return alloc_global_handle_no_access_check( obj, access );
313 /* return a handle entry, or NULL if the handle is invalid */
314 static struct handle_entry *get_handle( struct process *process, obj_handle_t handle )
316 struct handle_table *table = process->handles;
317 struct handle_entry *entry;
318 int index;
320 if (handle_is_global(handle))
322 handle = handle_global_to_local(handle);
323 table = global_table;
325 if (!table) return NULL;
326 index = handle_to_index( handle );
327 if (index < 0) return NULL;
328 if (index > table->last) return NULL;
329 entry = table->entries + index;
330 if (!entry->ptr) return NULL;
331 return entry;
334 /* attempt to shrink a table */
335 static void shrink_handle_table( struct handle_table *table )
337 struct handle_entry *entry = table->entries + table->last;
338 struct handle_entry *new_entries;
339 int count = table->count;
341 while (table->last >= 0)
343 if (entry->ptr) break;
344 table->last--;
345 entry--;
347 if (table->last >= count / 4) return; /* no need to shrink */
348 if (count < MIN_HANDLE_ENTRIES * 2) return; /* too small to shrink */
349 count /= 2;
350 if (!(new_entries = realloc( table->entries, count * sizeof(*new_entries) ))) return;
351 table->count = count;
352 table->entries = new_entries;
355 static void inherit_handle( struct process *parent, const obj_handle_t handle, struct handle_table *table )
357 struct handle_entry *dst, *src;
358 int index;
360 dst = table->entries;
362 src = get_handle( parent, handle );
363 if (!src || !(src->access & RESERVED_INHERIT)) return;
364 index = handle_to_index( handle );
365 if (dst[index].ptr) return;
366 grab_object_for_handle( src->ptr );
367 dst[index] = *src;
368 table->last = max( table->last, index );
371 /* copy the handle table of the parent process */
372 /* return 1 if OK, 0 on error */
373 struct handle_table *copy_handle_table( struct process *process, struct process *parent,
374 const obj_handle_t *handles, unsigned int handle_count,
375 const obj_handle_t *std_handles )
377 struct handle_table *parent_table = parent->handles;
378 struct handle_table *table;
379 int i;
381 assert( parent_table );
382 assert( parent_table->obj.ops == &handle_table_ops );
384 if (!(table = alloc_handle_table( process, parent_table->count )))
385 return NULL;
387 if (handles)
389 memset( table->entries, 0, parent_table->count * sizeof(*table->entries) );
391 for (i = 0; i < handle_count; i++)
393 inherit_handle( parent, handles[i], table );
396 for (i = 0; i < 3; i++)
398 inherit_handle( parent, std_handles[i], table );
401 else
403 if ((table->last = parent_table->last) >= 0)
405 struct handle_entry *ptr = table->entries;
406 memcpy( ptr, parent_table->entries, (table->last + 1) * sizeof(struct handle_entry) );
407 for (i = 0; i <= table->last; i++, ptr++)
409 if (!ptr->ptr) continue;
410 if (ptr->access & RESERVED_INHERIT) grab_object_for_handle( ptr->ptr );
411 else ptr->ptr = NULL; /* don't inherit this entry */
415 /* attempt to shrink the table */
416 shrink_handle_table( table );
417 return table;
420 /* close a handle and decrement the refcount of the associated object */
421 unsigned int close_handle( struct process *process, obj_handle_t handle )
423 struct handle_table *table;
424 struct handle_entry *entry;
425 struct object *obj;
427 if (!(entry = get_handle( process, handle ))) return STATUS_INVALID_HANDLE;
428 if (entry->access & RESERVED_CLOSE_PROTECT) return STATUS_HANDLE_NOT_CLOSABLE;
429 obj = entry->ptr;
430 if (!obj->ops->close_handle( obj, process, handle )) return STATUS_HANDLE_NOT_CLOSABLE;
431 entry->ptr = NULL;
432 table = handle_is_global(handle) ? global_table : process->handles;
433 if (entry < table->entries + table->free) table->free = entry - table->entries;
434 if (entry == table->entries + table->last) shrink_handle_table( table );
435 release_object_from_handle( obj );
436 return STATUS_SUCCESS;
439 /* retrieve the object corresponding to one of the magic pseudo-handles */
440 static inline struct object *get_magic_handle( obj_handle_t handle )
442 switch(handle)
444 case 0xfffffffa: /* current thread impersonation token pseudo-handle */
445 return (struct object *)thread_get_impersonation_token( current );
446 case 0xfffffffb: /* current thread token pseudo-handle */
447 return (struct object *)current->token;
448 case 0xfffffffc: /* current process token pseudo-handle */
449 return (struct object *)current->process->token;
450 case 0xfffffffe: /* current thread pseudo-handle */
451 return &current->obj;
452 case 0x7fffffff: /* current process pseudo-handle */
453 case 0xffffffff: /* current process pseudo-handle */
454 return (struct object *)current->process;
455 default:
456 return NULL;
460 /* retrieve the object corresponding to a handle, incrementing its refcount */
461 struct object *get_handle_obj( struct process *process, obj_handle_t handle,
462 unsigned int access, const struct object_ops *ops )
464 struct handle_entry *entry;
465 struct object *obj;
467 if (!(obj = get_magic_handle( handle )))
469 if (!(entry = get_handle( process, handle )))
471 set_error( STATUS_INVALID_HANDLE );
472 return NULL;
474 obj = entry->ptr;
475 if (ops && (obj->ops != ops))
477 set_error( STATUS_OBJECT_TYPE_MISMATCH ); /* not the right type */
478 return NULL;
480 if ((entry->access & access) != access)
482 set_error( STATUS_ACCESS_DENIED );
483 return NULL;
486 else if (ops && (obj->ops != ops))
488 set_error( STATUS_OBJECT_TYPE_MISMATCH ); /* not the right type */
489 return NULL;
491 return grab_object( obj );
494 /* retrieve the access rights of a given handle */
495 unsigned int get_handle_access( struct process *process, obj_handle_t handle )
497 struct handle_entry *entry;
499 if (get_magic_handle( handle )) return ~RESERVED_ALL; /* magic handles have all access rights */
500 if (!(entry = get_handle( process, handle ))) return 0;
501 return entry->access & ~RESERVED_ALL;
504 /* find the first inherited handle of the given type */
505 /* this is needed for window stations and desktops (don't ask...) */
506 obj_handle_t find_inherited_handle( struct process *process, const struct object_ops *ops )
508 struct handle_table *table = process->handles;
509 struct handle_entry *ptr;
510 int i;
512 if (!table) return 0;
514 for (i = 0, ptr = table->entries; i <= table->last; i++, ptr++)
516 if (!ptr->ptr) continue;
517 if (ptr->ptr->ops != ops) continue;
518 if (ptr->access & RESERVED_INHERIT) return index_to_handle(i);
520 return 0;
523 /* return number of open handles to the object in the process */
524 unsigned int get_obj_handle_count( struct process *process, const struct object *obj )
526 struct handle_table *table = process->handles;
527 struct handle_entry *ptr;
528 unsigned int count = 0;
529 int i;
531 if (!table) return 0;
533 for (i = 0, ptr = table->entries; i <= table->last; i++, ptr++)
534 if (ptr->ptr == obj) ++count;
535 return count;
538 /* get/set the handle reserved flags */
539 /* return the old flags (or -1 on error) */
540 static int set_handle_flags( struct process *process, obj_handle_t handle, int mask, int flags )
542 struct handle_entry *entry;
543 unsigned int old_access;
545 if (get_magic_handle( handle ))
547 /* we can retrieve but not set info for magic handles */
548 if (mask) set_error( STATUS_ACCESS_DENIED );
549 return 0;
551 if (!(entry = get_handle( process, handle )))
553 set_error( STATUS_INVALID_HANDLE );
554 return -1;
556 old_access = entry->access;
557 mask = (mask << RESERVED_SHIFT) & RESERVED_ALL;
558 flags = (flags << RESERVED_SHIFT) & mask;
559 entry->access = (entry->access & ~mask) | flags;
560 return (old_access & RESERVED_ALL) >> RESERVED_SHIFT;
563 /* duplicate a handle */
564 obj_handle_t duplicate_handle( struct process *src, obj_handle_t src_handle, struct process *dst,
565 unsigned int access, unsigned int attr, unsigned int options )
567 obj_handle_t res;
568 struct handle_entry *entry;
569 unsigned int src_access, src_flags;
570 struct object *obj = get_handle_obj( src, src_handle, 0, NULL );
572 if (!obj) return 0;
573 if ((entry = get_handle( src, src_handle )))
574 src_access = entry->access;
575 else /* pseudo-handle, give it full access */
576 src_access = obj->ops->map_access( obj, GENERIC_ALL );
577 src_flags = (src_access & RESERVED_ALL) >> RESERVED_SHIFT;
578 src_access &= ~RESERVED_ALL;
580 if (options & DUPLICATE_SAME_ACCESS)
581 access = src_access;
582 else
583 access = obj->ops->map_access( obj, access ) & ~RESERVED_ALL;
585 /* asking for the more access rights than src_access? */
586 if (access & ~src_access)
588 if ((current->token && !check_object_access( current->token, obj, &access )) ||
589 !check_object_access( dst->token, obj, &access ))
591 release_object( obj );
592 return 0;
595 if (options & DUPLICATE_MAKE_GLOBAL)
596 res = alloc_global_handle( obj, access );
597 else
598 res = alloc_handle_no_access_check( dst, obj, access, attr );
600 else
602 if (options & DUPLICATE_MAKE_GLOBAL)
603 res = alloc_global_handle_no_access_check( obj, access );
604 else if ((options & DUPLICATE_CLOSE_SOURCE) && src == dst &&
605 entry && !(entry->access & RESERVED_CLOSE_PROTECT))
607 if (attr & OBJ_INHERIT) access |= RESERVED_INHERIT;
608 entry->access = access;
609 res = src_handle;
611 else
612 res = alloc_handle_entry( dst, obj, access, attr );
615 if (res && (options & DUPLICATE_SAME_ATTRIBUTES))
616 set_handle_flags( dst, res, ~0u, src_flags );
618 release_object( obj );
619 return res;
622 /* open a new handle to an existing object */
623 obj_handle_t open_object( struct process *process, obj_handle_t parent, unsigned int access,
624 const struct object_ops *ops, const struct unicode_str *name,
625 unsigned int attributes )
627 obj_handle_t handle = 0;
628 struct object *obj, *root = NULL;
630 if (name->len >= 65534)
632 set_error( STATUS_OBJECT_NAME_INVALID );
633 return 0;
636 if (parent)
638 if (name->len)
639 root = get_directory_obj( process, parent );
640 else /* opening the object itself can work for non-directories too */
641 root = get_handle_obj( process, parent, 0, NULL );
642 if (!root) return 0;
645 if ((obj = open_named_object( root, ops, name, attributes )))
647 handle = alloc_handle( process, obj, access, attributes );
648 release_object( obj );
650 if (root) release_object( root );
651 return handle;
654 /* return the size of the handle table of a given process */
655 unsigned int get_handle_table_count( struct process *process )
657 if (!process->handles) return 0;
658 return process->handles->count;
661 /* close a handle */
662 DECL_HANDLER(close_handle)
664 unsigned int err = close_handle( current->process, req->handle );
665 set_error( err );
668 /* set a handle information */
669 DECL_HANDLER(set_handle_info)
671 reply->old_flags = set_handle_flags( current->process, req->handle, req->mask, req->flags );
674 /* duplicate a handle */
675 DECL_HANDLER(dup_handle)
677 struct process *src, *dst = NULL;
679 reply->handle = 0;
680 if ((src = get_process_from_handle( req->src_process, PROCESS_DUP_HANDLE )))
682 if (req->options & DUPLICATE_MAKE_GLOBAL)
684 reply->handle = duplicate_handle( src, req->src_handle, NULL,
685 req->access, req->attributes, req->options );
687 else if ((dst = get_process_from_handle( req->dst_process, PROCESS_DUP_HANDLE )))
689 reply->handle = duplicate_handle( src, req->src_handle, dst,
690 req->access, req->attributes, req->options );
691 release_object( dst );
693 /* close the handle no matter what happened */
694 if ((req->options & DUPLICATE_CLOSE_SOURCE) && (src != dst || req->src_handle != reply->handle))
695 close_handle( src, req->src_handle );
696 release_object( src );
700 DECL_HANDLER(get_object_info)
702 struct object *obj;
704 if (!(obj = get_handle_obj( current->process, req->handle, 0, NULL ))) return;
706 reply->access = get_handle_access( current->process, req->handle );
707 reply->ref_count = obj->refcount;
708 reply->handle_count = obj->handle_count;
709 release_object( obj );
712 DECL_HANDLER(get_object_name)
714 struct object *obj;
715 WCHAR *name;
717 if (!(obj = get_handle_obj( current->process, req->handle, 0, NULL ))) return;
719 if ((name = obj->ops->get_full_name( obj, &reply->total )))
720 set_reply_data_ptr( name, min( reply->total, get_reply_max_size() ));
721 release_object( obj );
724 DECL_HANDLER(set_security_object)
726 data_size_t sd_size = get_req_data_size();
727 const struct security_descriptor *sd = get_req_data();
728 struct object *obj;
729 unsigned int access = 0;
731 if (!sd_is_valid( sd, sd_size ))
733 set_error( STATUS_ACCESS_VIOLATION );
734 return;
737 if (req->security_info & OWNER_SECURITY_INFORMATION ||
738 req->security_info & GROUP_SECURITY_INFORMATION ||
739 req->security_info & LABEL_SECURITY_INFORMATION)
740 access |= WRITE_OWNER;
741 if (req->security_info & SACL_SECURITY_INFORMATION)
742 access |= ACCESS_SYSTEM_SECURITY;
743 if (req->security_info & DACL_SECURITY_INFORMATION)
744 access |= WRITE_DAC;
746 if (!(obj = get_handle_obj( current->process, req->handle, access, NULL ))) return;
748 obj->ops->set_sd( obj, sd, req->security_info );
749 release_object( obj );
752 DECL_HANDLER(get_security_object)
754 const struct security_descriptor *sd;
755 struct object *obj;
756 unsigned int access = READ_CONTROL;
757 struct security_descriptor req_sd;
758 int present;
759 const struct sid *owner, *group;
760 const struct acl *sacl, *dacl;
761 struct acl *label_acl = NULL;
763 if (req->security_info & SACL_SECURITY_INFORMATION)
764 access |= ACCESS_SYSTEM_SECURITY;
766 if (!(obj = get_handle_obj( current->process, req->handle, access, NULL ))) return;
768 sd = obj->ops->get_sd( obj );
769 if (sd)
771 req_sd.control = sd->control & ~SE_SELF_RELATIVE;
773 owner = sd_get_owner( sd );
774 if (req->security_info & OWNER_SECURITY_INFORMATION)
775 req_sd.owner_len = sd->owner_len;
776 else
777 req_sd.owner_len = 0;
779 group = sd_get_group( sd );
780 if (req->security_info & GROUP_SECURITY_INFORMATION)
781 req_sd.group_len = sd->group_len;
782 else
783 req_sd.group_len = 0;
785 sacl = sd_get_sacl( sd, &present );
786 if (req->security_info & SACL_SECURITY_INFORMATION && present)
787 req_sd.sacl_len = sd->sacl_len;
788 else if (req->security_info & LABEL_SECURITY_INFORMATION && present && sacl)
790 if (!(label_acl = extract_security_labels( sacl ))) goto done;
791 req_sd.sacl_len = label_acl->size;
792 sacl = label_acl;
794 else
795 req_sd.sacl_len = 0;
797 dacl = sd_get_dacl( sd, &present );
798 if (req->security_info & DACL_SECURITY_INFORMATION && present)
799 req_sd.dacl_len = sd->dacl_len;
800 else
801 req_sd.dacl_len = 0;
803 reply->sd_len = sizeof(req_sd) + req_sd.owner_len + req_sd.group_len +
804 req_sd.sacl_len + req_sd.dacl_len;
805 if (reply->sd_len <= get_reply_max_size())
807 char *ptr = set_reply_data_size(reply->sd_len);
809 memcpy( ptr, &req_sd, sizeof(req_sd) );
810 ptr += sizeof(req_sd);
811 memcpy( ptr, owner, req_sd.owner_len );
812 ptr += req_sd.owner_len;
813 memcpy( ptr, group, req_sd.group_len );
814 ptr += req_sd.group_len;
815 memcpy( ptr, sacl, req_sd.sacl_len );
816 ptr += req_sd.sacl_len;
817 memcpy( ptr, dacl, req_sd.dacl_len );
819 else
820 set_error(STATUS_BUFFER_TOO_SMALL);
823 done:
824 release_object( obj );
825 free( label_acl );
828 struct enum_handle_info
830 unsigned int count;
831 struct handle_info *handle;
834 static int enum_handles( struct process *process, void *user )
836 struct enum_handle_info *info = user;
837 struct handle_table *table = process->handles;
838 struct handle_entry *entry;
839 struct handle_info *handle;
840 unsigned int i;
842 if (!table)
843 return 0;
845 for (i = 0, entry = table->entries; i <= table->last; i++, entry++)
847 if (!entry->ptr) continue;
848 if (!info->handle)
850 info->count++;
851 continue;
853 assert( info->count );
854 handle = info->handle++;
855 handle->owner = process->id;
856 handle->handle = index_to_handle(i);
857 handle->access = entry->access & ~RESERVED_ALL;
858 handle->type = entry->ptr->ops->type->index;
859 handle->attributes = 0;
860 if (entry->access & RESERVED_INHERIT) handle->attributes |= OBJ_INHERIT;
861 if (entry->access & RESERVED_CLOSE_PROTECT) handle->attributes |= OBJ_PROTECT_CLOSE;
862 info->count--;
865 return 0;
868 DECL_HANDLER(get_system_handles)
870 struct enum_handle_info info;
871 struct handle_info *handle;
872 data_size_t max_handles = get_reply_max_size() / sizeof(*handle);
874 info.handle = NULL;
875 info.count = 0;
876 enum_processes( enum_handles, &info );
877 reply->count = info.count;
879 if (max_handles < info.count)
880 set_error( STATUS_BUFFER_TOO_SMALL );
881 else if ((handle = set_reply_data_size( info.count * sizeof(*handle) )))
883 info.handle = handle;
884 enum_processes( enum_handles, &info );
888 DECL_HANDLER(set_object_permanence)
890 const unsigned int access = req->permanent ? 0 : DELETE;
891 struct object *obj;
893 if (!(obj = get_handle_obj( current->process, req->handle, access, NULL ))) return;
895 if (req->permanent && !obj->is_permanent)
897 grab_object( obj );
898 make_object_permanent( obj );
900 else if (!req->permanent && obj->is_permanent)
902 make_object_temporary( obj );
903 release_object( obj );
905 release_object( obj );
908 DECL_HANDLER(compare_objects)
910 struct object *obj1, *obj2;
912 if (!(obj1 = get_handle_obj( current->process, req->first, 0, NULL ))) return;
913 if (!(obj2 = get_handle_obj( current->process, req->second, 0, NULL )))
915 release_object( obj1 );
916 return;
919 if (obj1 != obj2) set_error( STATUS_NOT_SAME_OBJECT );
921 release_object( obj2 );
922 release_object( obj1 );