winemac: Add basic support for importing the public.html pasteboard format.
[wine.git] / server / handle.c
blob37fba69eac352fc7f62c6e5927058c8c30a61386
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"
22 #include "wine/port.h"
24 #include <assert.h>
25 #include <limits.h>
26 #include <string.h>
27 #include <stdarg.h>
28 #include <stdio.h>
29 #include <stdlib.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 return grab_object( obj );
107 /* release an object and decrement its handle count */
108 static void release_object_from_handle( struct object *obj )
110 assert( obj->handle_count );
111 obj->handle_count--;
112 release_object( obj );
115 static void handle_table_dump( struct object *obj, int verbose );
116 static void handle_table_destroy( struct object *obj );
118 static const struct object_ops handle_table_ops =
120 sizeof(struct handle_table), /* size */
121 handle_table_dump, /* dump */
122 no_get_type, /* get_type */
123 no_add_queue, /* add_queue */
124 NULL, /* remove_queue */
125 NULL, /* signaled */
126 NULL, /* satisfied */
127 no_signal, /* signal */
128 no_get_fd, /* get_fd */
129 no_map_access, /* map_access */
130 default_get_sd, /* get_sd */
131 default_set_sd, /* set_sd */
132 no_lookup_name, /* lookup_name */
133 no_link_name, /* link_name */
134 NULL, /* unlink_name */
135 no_open_file, /* open_file */
136 no_close_handle, /* close_handle */
137 handle_table_destroy /* destroy */
140 /* dump a handle table */
141 static void handle_table_dump( struct object *obj, int verbose )
143 int i;
144 struct handle_table *table = (struct handle_table *)obj;
145 struct handle_entry *entry;
147 assert( obj->ops == &handle_table_ops );
149 fprintf( stderr, "Handle table last=%d count=%d process=%p\n",
150 table->last, table->count, table->process );
151 if (!verbose) return;
152 entry = table->entries;
153 for (i = 0; i <= table->last; i++, entry++)
155 if (!entry->ptr) continue;
156 fprintf( stderr, " %04x: %p %08x ",
157 index_to_handle(i), entry->ptr, entry->access );
158 dump_object_name( entry->ptr );
159 entry->ptr->ops->dump( entry->ptr, 0 );
163 /* destroy a handle table */
164 static void handle_table_destroy( struct object *obj )
166 int i;
167 struct handle_table *table = (struct handle_table *)obj;
168 struct handle_entry *entry;
170 assert( obj->ops == &handle_table_ops );
172 /* first notify all objects that handles are being closed */
173 if (table->process)
175 for (i = 0, entry = table->entries; i <= table->last; i++, entry++)
177 struct object *obj = entry->ptr;
178 if (obj) obj->ops->close_handle( obj, table->process, index_to_handle(i) );
182 for (i = 0, entry = table->entries; i <= table->last; i++, entry++)
184 struct object *obj = entry->ptr;
185 entry->ptr = NULL;
186 if (obj) 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 access = obj->ops->map_access( obj, access ) & ~RESERVED_ALL;
276 return alloc_handle_entry( process, ptr, access, attr );
279 /* allocate a handle for an object, checking the dacl allows the process to */
280 /* access it and incrementing its refcount */
281 /* return the handle, or 0 on error */
282 obj_handle_t alloc_handle( struct process *process, void *ptr, unsigned int access, unsigned int attr )
284 struct object *obj = ptr;
285 access = obj->ops->map_access( obj, access ) & ~RESERVED_ALL;
286 if (access && !check_object_access( obj, &access )) return 0;
287 return alloc_handle_entry( process, ptr, access, attr );
290 /* allocate a global handle for an object, incrementing its refcount */
291 /* return the handle, or 0 on error */
292 static obj_handle_t alloc_global_handle_no_access_check( void *obj, unsigned int access )
294 if (!global_table)
296 if (!(global_table = alloc_handle_table( NULL, 0 )))
297 return 0;
298 make_object_static( &global_table->obj );
300 return handle_local_to_global( alloc_entry( global_table, obj, access ));
303 /* allocate a global handle for an object, checking the dacl allows the */
304 /* process to access it and incrementing its refcount and incrementing its refcount */
305 /* return the handle, or 0 on error */
306 static obj_handle_t alloc_global_handle( void *obj, unsigned int access )
308 if (access && !check_object_access( obj, &access )) return 0;
309 return alloc_global_handle_no_access_check( obj, access );
312 /* return a handle entry, or NULL if the handle is invalid */
313 static struct handle_entry *get_handle( struct process *process, obj_handle_t handle )
315 struct handle_table *table = process->handles;
316 struct handle_entry *entry;
317 int index;
319 if (handle_is_global(handle))
321 handle = handle_global_to_local(handle);
322 table = global_table;
324 if (!table) return NULL;
325 index = handle_to_index( handle );
326 if (index < 0) return NULL;
327 if (index > table->last) return NULL;
328 entry = table->entries + index;
329 if (!entry->ptr) return NULL;
330 return entry;
333 /* attempt to shrink a table */
334 static void shrink_handle_table( struct handle_table *table )
336 struct handle_entry *entry = table->entries + table->last;
337 struct handle_entry *new_entries;
338 int count = table->count;
340 while (table->last >= 0)
342 if (entry->ptr) break;
343 table->last--;
344 entry--;
346 if (table->last >= count / 4) return; /* no need to shrink */
347 if (count < MIN_HANDLE_ENTRIES * 2) return; /* too small to shrink */
348 count /= 2;
349 if (!(new_entries = realloc( table->entries, count * sizeof(*new_entries) ))) return;
350 table->count = count;
351 table->entries = new_entries;
354 /* copy the handle table of the parent process */
355 /* return 1 if OK, 0 on error */
356 struct handle_table *copy_handle_table( struct process *process, struct process *parent )
358 struct handle_table *parent_table = parent->handles;
359 struct handle_table *table;
360 int i;
362 assert( parent_table );
363 assert( parent_table->obj.ops == &handle_table_ops );
365 if (!(table = alloc_handle_table( process, parent_table->count )))
366 return NULL;
368 if ((table->last = parent_table->last) >= 0)
370 struct handle_entry *ptr = table->entries;
371 memcpy( ptr, parent_table->entries, (table->last + 1) * sizeof(struct handle_entry) );
372 for (i = 0; i <= table->last; i++, ptr++)
374 if (!ptr->ptr) continue;
375 if (ptr->access & RESERVED_INHERIT) grab_object_for_handle( ptr->ptr );
376 else ptr->ptr = NULL; /* don't inherit this entry */
379 /* attempt to shrink the table */
380 shrink_handle_table( table );
381 return table;
384 /* close a handle and decrement the refcount of the associated object */
385 unsigned int close_handle( struct process *process, obj_handle_t handle )
387 struct handle_table *table;
388 struct handle_entry *entry;
389 struct object *obj;
391 if (!(entry = get_handle( process, handle ))) return STATUS_INVALID_HANDLE;
392 if (entry->access & RESERVED_CLOSE_PROTECT) return STATUS_HANDLE_NOT_CLOSABLE;
393 obj = entry->ptr;
394 if (!obj->ops->close_handle( obj, process, handle )) return STATUS_HANDLE_NOT_CLOSABLE;
395 entry->ptr = NULL;
396 table = handle_is_global(handle) ? global_table : process->handles;
397 if (entry < table->entries + table->free) table->free = entry - table->entries;
398 if (entry == table->entries + table->last) shrink_handle_table( table );
399 release_object_from_handle( obj );
400 return STATUS_SUCCESS;
403 /* retrieve the object corresponding to one of the magic pseudo-handles */
404 static inline struct object *get_magic_handle( obj_handle_t handle )
406 switch(handle)
408 case 0xfffffffa: /* current thread impersonation token pseudo-handle */
409 return (struct object *)thread_get_impersonation_token( current );
410 case 0xfffffffb: /* current thread token pseudo-handle */
411 return (struct object *)current->token;
412 case 0xfffffffc: /* current process token pseudo-handle */
413 return (struct object *)current->process->token;
414 case 0xfffffffe: /* current thread pseudo-handle */
415 return &current->obj;
416 case 0x7fffffff: /* current process pseudo-handle */
417 case 0xffffffff: /* current process pseudo-handle */
418 return (struct object *)current->process;
419 default:
420 return NULL;
424 /* retrieve the object corresponding to a handle, incrementing its refcount */
425 struct object *get_handle_obj( struct process *process, obj_handle_t handle,
426 unsigned int access, const struct object_ops *ops )
428 struct handle_entry *entry;
429 struct object *obj;
431 if (!(obj = get_magic_handle( handle )))
433 if (!(entry = get_handle( process, handle )))
435 set_error( STATUS_INVALID_HANDLE );
436 return NULL;
438 obj = entry->ptr;
439 if (ops && (obj->ops != ops))
441 set_error( STATUS_OBJECT_TYPE_MISMATCH ); /* not the right type */
442 return NULL;
444 if ((entry->access & access) != access)
446 set_error( STATUS_ACCESS_DENIED );
447 return NULL;
450 else if (ops && (obj->ops != ops))
452 set_error( STATUS_OBJECT_TYPE_MISMATCH ); /* not the right type */
453 return NULL;
455 return grab_object( obj );
458 /* retrieve the access rights of a given handle */
459 unsigned int get_handle_access( struct process *process, obj_handle_t handle )
461 struct handle_entry *entry;
463 if (get_magic_handle( handle )) return ~RESERVED_ALL; /* magic handles have all access rights */
464 if (!(entry = get_handle( process, handle ))) return 0;
465 return entry->access & ~RESERVED_ALL;
468 /* find the first inherited handle of the given type */
469 /* this is needed for window stations and desktops (don't ask...) */
470 obj_handle_t find_inherited_handle( struct process *process, const struct object_ops *ops )
472 struct handle_table *table = process->handles;
473 struct handle_entry *ptr;
474 int i;
476 if (!table) return 0;
478 for (i = 0, ptr = table->entries; i <= table->last; i++, ptr++)
480 if (!ptr->ptr) continue;
481 if (ptr->ptr->ops != ops) continue;
482 if (ptr->access & RESERVED_INHERIT) return index_to_handle(i);
484 return 0;
487 /* enumerate handles of a given type */
488 /* this is needed for window stations and desktops */
489 obj_handle_t enumerate_handles( struct process *process, const struct object_ops *ops,
490 unsigned int *index )
492 struct handle_table *table = process->handles;
493 unsigned int i;
494 struct handle_entry *entry;
496 if (!table) return 0;
498 for (i = *index, entry = &table->entries[i]; i <= table->last; i++, entry++)
500 if (!entry->ptr) continue;
501 if (entry->ptr->ops != ops) continue;
502 *index = i + 1;
503 return index_to_handle(i);
505 return 0;
508 /* get/set the handle reserved flags */
509 /* return the old flags (or -1 on error) */
510 static int set_handle_flags( struct process *process, obj_handle_t handle, int mask, int flags )
512 struct handle_entry *entry;
513 unsigned int old_access;
515 if (get_magic_handle( handle ))
517 /* we can retrieve but not set info for magic handles */
518 if (mask) set_error( STATUS_ACCESS_DENIED );
519 return 0;
521 if (!(entry = get_handle( process, handle )))
523 set_error( STATUS_INVALID_HANDLE );
524 return -1;
526 old_access = entry->access;
527 mask = (mask << RESERVED_SHIFT) & RESERVED_ALL;
528 flags = (flags << RESERVED_SHIFT) & mask;
529 entry->access = (entry->access & ~mask) | flags;
530 return (old_access & RESERVED_ALL) >> RESERVED_SHIFT;
533 /* duplicate a handle */
534 obj_handle_t duplicate_handle( struct process *src, obj_handle_t src_handle, struct process *dst,
535 unsigned int access, unsigned int attr, unsigned int options )
537 obj_handle_t res;
538 struct handle_entry *entry;
539 unsigned int src_access;
540 struct object *obj = get_handle_obj( src, src_handle, 0, NULL );
542 if (!obj) return 0;
543 if ((entry = get_handle( src, src_handle )))
544 src_access = entry->access;
545 else /* pseudo-handle, give it full access */
546 src_access = obj->ops->map_access( obj, GENERIC_ALL );
547 src_access &= ~RESERVED_ALL;
549 if (options & DUP_HANDLE_SAME_ACCESS)
550 access = src_access;
551 else
552 access = obj->ops->map_access( obj, access ) & ~RESERVED_ALL;
554 /* asking for the more access rights than src_access? */
555 if (access & ~src_access)
557 if (options & DUP_HANDLE_MAKE_GLOBAL)
558 res = alloc_global_handle( obj, access );
559 else
560 res = alloc_handle( dst, obj, access, attr );
562 else
564 if (options & DUP_HANDLE_MAKE_GLOBAL)
565 res = alloc_global_handle_no_access_check( obj, access );
566 else if ((options & DUP_HANDLE_CLOSE_SOURCE) && src == dst &&
567 entry && !(entry->access & RESERVED_CLOSE_PROTECT))
569 if (attr & OBJ_INHERIT) access |= RESERVED_INHERIT;
570 entry->access = access;
571 res = src_handle;
573 else
574 res = alloc_handle_entry( dst, obj, access, attr );
577 release_object( obj );
578 return res;
581 /* open a new handle to an existing object */
582 obj_handle_t open_object( struct process *process, obj_handle_t parent, unsigned int access,
583 const struct object_ops *ops, const struct unicode_str *name,
584 unsigned int attributes )
586 obj_handle_t handle = 0;
587 struct object *obj, *root = NULL;
589 if (name->len >= 65534)
591 set_error( STATUS_OBJECT_NAME_INVALID );
592 return 0;
595 if (parent)
597 if (name->len)
598 root = get_directory_obj( process, parent );
599 else /* opening the object itself can work for non-directories too */
600 root = get_handle_obj( process, parent, 0, NULL );
601 if (!root) return 0;
604 if ((obj = open_named_object( root, ops, name, attributes )))
606 handle = alloc_handle( process, obj, access, attributes );
607 release_object( obj );
609 if (root) release_object( root );
610 return handle;
613 /* return the size of the handle table of a given process */
614 unsigned int get_handle_table_count( struct process *process )
616 if (!process->handles) return 0;
617 return process->handles->count;
620 /* close a handle */
621 DECL_HANDLER(close_handle)
623 unsigned int err = close_handle( current->process, req->handle );
624 set_error( err );
627 /* set a handle information */
628 DECL_HANDLER(set_handle_info)
630 reply->old_flags = set_handle_flags( current->process, req->handle, req->mask, req->flags );
633 /* duplicate a handle */
634 DECL_HANDLER(dup_handle)
636 struct process *src, *dst = NULL;
638 reply->handle = 0;
639 if ((src = get_process_from_handle( req->src_process, PROCESS_DUP_HANDLE )))
641 if (req->options & DUP_HANDLE_MAKE_GLOBAL)
643 reply->handle = duplicate_handle( src, req->src_handle, NULL,
644 req->access, req->attributes, req->options );
646 else if ((dst = get_process_from_handle( req->dst_process, PROCESS_DUP_HANDLE )))
648 reply->handle = duplicate_handle( src, req->src_handle, dst,
649 req->access, req->attributes, req->options );
650 release_object( dst );
652 /* close the handle no matter what happened */
653 if ((req->options & DUP_HANDLE_CLOSE_SOURCE) && (src != dst || req->src_handle != reply->handle))
654 reply->closed = !close_handle( src, req->src_handle );
655 reply->self = (src == current->process);
656 release_object( src );
660 DECL_HANDLER(get_object_info)
662 struct object *obj;
663 WCHAR *name;
665 if (!(obj = get_handle_obj( current->process, req->handle, 0, NULL ))) return;
667 reply->access = get_handle_access( current->process, req->handle );
668 reply->ref_count = obj->refcount;
669 reply->handle_count = obj->handle_count;
670 if ((name = get_object_full_name( obj, &reply->total )))
671 set_reply_data_ptr( name, min( reply->total, get_reply_max_size() ));
672 release_object( obj );
675 DECL_HANDLER(set_security_object)
677 data_size_t sd_size = get_req_data_size();
678 const struct security_descriptor *sd = get_req_data();
679 struct object *obj;
680 unsigned int access = 0;
682 if (!sd_is_valid( sd, sd_size ))
684 set_error( STATUS_ACCESS_VIOLATION );
685 return;
688 if (req->security_info & OWNER_SECURITY_INFORMATION ||
689 req->security_info & GROUP_SECURITY_INFORMATION)
690 access |= WRITE_OWNER;
691 if (req->security_info & SACL_SECURITY_INFORMATION)
692 access |= ACCESS_SYSTEM_SECURITY;
693 if (req->security_info & DACL_SECURITY_INFORMATION)
694 access |= WRITE_DAC;
696 if (!(obj = get_handle_obj( current->process, req->handle, access, NULL ))) return;
698 obj->ops->set_sd( obj, sd, req->security_info );
699 release_object( obj );
702 DECL_HANDLER(get_security_object)
704 const struct security_descriptor *sd;
705 struct object *obj;
706 unsigned int access = READ_CONTROL;
707 struct security_descriptor req_sd;
708 int present;
709 const SID *owner, *group;
710 const ACL *sacl, *dacl;
712 if (req->security_info & SACL_SECURITY_INFORMATION)
713 access |= ACCESS_SYSTEM_SECURITY;
715 if (!(obj = get_handle_obj( current->process, req->handle, access, NULL ))) return;
717 sd = obj->ops->get_sd( obj );
718 if (sd)
720 req_sd.control = sd->control & ~SE_SELF_RELATIVE;
722 owner = sd_get_owner( sd );
723 if (req->security_info & OWNER_SECURITY_INFORMATION)
724 req_sd.owner_len = sd->owner_len;
725 else
726 req_sd.owner_len = 0;
728 group = sd_get_group( sd );
729 if (req->security_info & GROUP_SECURITY_INFORMATION)
730 req_sd.group_len = sd->group_len;
731 else
732 req_sd.group_len = 0;
734 req_sd.control |= SE_SACL_PRESENT;
735 sacl = sd_get_sacl( sd, &present );
736 if (req->security_info & SACL_SECURITY_INFORMATION && present)
737 req_sd.sacl_len = sd->sacl_len;
738 else
739 req_sd.sacl_len = 0;
741 req_sd.control |= SE_DACL_PRESENT;
742 dacl = sd_get_dacl( sd, &present );
743 if (req->security_info & DACL_SECURITY_INFORMATION && present)
744 req_sd.dacl_len = sd->dacl_len;
745 else
746 req_sd.dacl_len = 0;
748 reply->sd_len = sizeof(req_sd) + req_sd.owner_len + req_sd.group_len +
749 req_sd.sacl_len + req_sd.dacl_len;
750 if (reply->sd_len <= get_reply_max_size())
752 char *ptr = set_reply_data_size(reply->sd_len);
754 memcpy( ptr, &req_sd, sizeof(req_sd) );
755 ptr += sizeof(req_sd);
756 memcpy( ptr, owner, req_sd.owner_len );
757 ptr += req_sd.owner_len;
758 memcpy( ptr, group, req_sd.group_len );
759 ptr += req_sd.group_len;
760 memcpy( ptr, sacl, req_sd.sacl_len );
761 ptr += req_sd.sacl_len;
762 memcpy( ptr, dacl, req_sd.dacl_len );
764 else
765 set_error(STATUS_BUFFER_TOO_SMALL);
768 release_object( obj );
771 struct enum_handle_info
773 unsigned int count;
774 struct handle_info *handle;
777 static int enum_handles( struct process *process, void *user )
779 struct enum_handle_info *info = user;
780 struct handle_table *table = process->handles;
781 struct handle_entry *entry;
782 struct handle_info *handle;
783 unsigned int i;
785 if (!table)
786 return 0;
788 for (i = 0, entry = table->entries; i <= table->last; i++, entry++)
790 if (!entry->ptr) continue;
791 if (!info->handle)
793 info->count++;
794 continue;
796 assert( info->count );
797 handle = info->handle++;
798 handle->owner = process->id;
799 handle->handle = index_to_handle(i);
800 handle->access = entry->access & ~RESERVED_ALL;
801 info->count--;
804 return 0;
807 DECL_HANDLER(get_system_handles)
809 struct enum_handle_info info;
810 struct handle_info *handle;
811 data_size_t max_handles = get_reply_max_size() / sizeof(*handle);
813 info.handle = NULL;
814 info.count = 0;
815 enum_processes( enum_handles, &info );
816 reply->count = info.count;
818 if (max_handles < info.count)
819 set_error( STATUS_BUFFER_TOO_SMALL );
820 else if ((handle = set_reply_data_size( info.count * sizeof(*handle) )))
822 info.handle = handle;
823 enum_processes( enum_handles, &info );