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
22 #include "wine/port.h"
32 #define WIN32_NO_STATUS
44 struct object
*ptr
; /* object */
45 unsigned int access
; /* access rights */
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
)
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
);
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 */
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
)
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
)
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 */
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
;
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
)))
208 table
->process
= process
;
209 table
->count
= count
;
212 if ((table
->entries
= mem_alloc( count
* sizeof(*table
->entries
) ))) return table
;
213 release_object( table
);
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
);
229 table
->entries
= new_entries
;
230 table
->count
= count
;
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
;
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 */
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
);
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( 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
)
297 if (!(global_table
= alloc_handle_table( NULL
, 0 )))
299 make_object_static( &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( 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
;
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
;
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;
347 if (table
->last
>= count
/ 4) return; /* no need to shrink */
348 if (count
< MIN_HANDLE_ENTRIES
* 2) return; /* too small to shrink */
350 if (!(new_entries
= realloc( table
->entries
, count
* sizeof(*new_entries
) ))) return;
351 table
->count
= count
;
352 table
->entries
= new_entries
;
355 /* copy the handle table of the parent process */
356 /* return 1 if OK, 0 on error */
357 struct handle_table
*copy_handle_table( struct process
*process
, struct process
*parent
)
359 struct handle_table
*parent_table
= parent
->handles
;
360 struct handle_table
*table
;
363 assert( parent_table
);
364 assert( parent_table
->obj
.ops
== &handle_table_ops
);
366 if (!(table
= alloc_handle_table( process
, parent_table
->count
)))
369 if ((table
->last
= parent_table
->last
) >= 0)
371 struct handle_entry
*ptr
= table
->entries
;
372 memcpy( ptr
, parent_table
->entries
, (table
->last
+ 1) * sizeof(struct handle_entry
) );
373 for (i
= 0; i
<= table
->last
; i
++, ptr
++)
375 if (!ptr
->ptr
) continue;
376 if (ptr
->access
& RESERVED_INHERIT
) grab_object_for_handle( ptr
->ptr
);
377 else ptr
->ptr
= NULL
; /* don't inherit this entry */
380 /* attempt to shrink the table */
381 shrink_handle_table( table
);
385 /* close a handle and decrement the refcount of the associated object */
386 unsigned int close_handle( struct process
*process
, obj_handle_t handle
)
388 struct handle_table
*table
;
389 struct handle_entry
*entry
;
392 if (!(entry
= get_handle( process
, handle
))) return STATUS_INVALID_HANDLE
;
393 if (entry
->access
& RESERVED_CLOSE_PROTECT
) return STATUS_HANDLE_NOT_CLOSABLE
;
395 if (!obj
->ops
->close_handle( obj
, process
, handle
)) return STATUS_HANDLE_NOT_CLOSABLE
;
397 table
= handle_is_global(handle
) ? global_table
: process
->handles
;
398 if (entry
< table
->entries
+ table
->free
) table
->free
= entry
- table
->entries
;
399 if (entry
== table
->entries
+ table
->last
) shrink_handle_table( table
);
400 release_object_from_handle( obj
);
401 return STATUS_SUCCESS
;
404 /* retrieve the object corresponding to one of the magic pseudo-handles */
405 static inline struct object
*get_magic_handle( obj_handle_t handle
)
409 case 0xfffffffa: /* current thread impersonation token pseudo-handle */
410 return (struct object
*)thread_get_impersonation_token( current
);
411 case 0xfffffffb: /* current thread token pseudo-handle */
412 return (struct object
*)current
->token
;
413 case 0xfffffffc: /* current process token pseudo-handle */
414 return (struct object
*)current
->process
->token
;
415 case 0xfffffffe: /* current thread pseudo-handle */
416 return ¤t
->obj
;
417 case 0x7fffffff: /* current process pseudo-handle */
418 case 0xffffffff: /* current process pseudo-handle */
419 return (struct object
*)current
->process
;
425 /* retrieve the object corresponding to a handle, incrementing its refcount */
426 struct object
*get_handle_obj( struct process
*process
, obj_handle_t handle
,
427 unsigned int access
, const struct object_ops
*ops
)
429 struct handle_entry
*entry
;
432 if (!(obj
= get_magic_handle( handle
)))
434 if (!(entry
= get_handle( process
, handle
)))
436 set_error( STATUS_INVALID_HANDLE
);
440 if (ops
&& (obj
->ops
!= ops
))
442 set_error( STATUS_OBJECT_TYPE_MISMATCH
); /* not the right type */
445 if ((entry
->access
& access
) != access
)
447 set_error( STATUS_ACCESS_DENIED
);
451 else if (ops
&& (obj
->ops
!= ops
))
453 set_error( STATUS_OBJECT_TYPE_MISMATCH
); /* not the right type */
456 return grab_object( obj
);
459 /* retrieve the access rights of a given handle */
460 unsigned int get_handle_access( struct process
*process
, obj_handle_t handle
)
462 struct handle_entry
*entry
;
464 if (get_magic_handle( handle
)) return ~RESERVED_ALL
; /* magic handles have all access rights */
465 if (!(entry
= get_handle( process
, handle
))) return 0;
466 return entry
->access
& ~RESERVED_ALL
;
469 /* find the first inherited handle of the given type */
470 /* this is needed for window stations and desktops (don't ask...) */
471 obj_handle_t
find_inherited_handle( struct process
*process
, const struct object_ops
*ops
)
473 struct handle_table
*table
= process
->handles
;
474 struct handle_entry
*ptr
;
477 if (!table
) return 0;
479 for (i
= 0, ptr
= table
->entries
; i
<= table
->last
; i
++, ptr
++)
481 if (!ptr
->ptr
) continue;
482 if (ptr
->ptr
->ops
!= ops
) continue;
483 if (ptr
->access
& RESERVED_INHERIT
) return index_to_handle(i
);
488 /* enumerate handles of a given type */
489 /* this is needed for window stations and desktops */
490 obj_handle_t
enumerate_handles( struct process
*process
, const struct object_ops
*ops
,
491 unsigned int *index
)
493 struct handle_table
*table
= process
->handles
;
495 struct handle_entry
*entry
;
497 if (!table
) return 0;
499 for (i
= *index
, entry
= &table
->entries
[i
]; i
<= table
->last
; i
++, entry
++)
501 if (!entry
->ptr
) continue;
502 if (entry
->ptr
->ops
!= ops
) continue;
504 return index_to_handle(i
);
509 /* get/set the handle reserved flags */
510 /* return the old flags (or -1 on error) */
511 static int set_handle_flags( struct process
*process
, obj_handle_t handle
, int mask
, int flags
)
513 struct handle_entry
*entry
;
514 unsigned int old_access
;
516 if (get_magic_handle( handle
))
518 /* we can retrieve but not set info for magic handles */
519 if (mask
) set_error( STATUS_ACCESS_DENIED
);
522 if (!(entry
= get_handle( process
, handle
)))
524 set_error( STATUS_INVALID_HANDLE
);
527 old_access
= entry
->access
;
528 mask
= (mask
<< RESERVED_SHIFT
) & RESERVED_ALL
;
529 flags
= (flags
<< RESERVED_SHIFT
) & mask
;
530 entry
->access
= (entry
->access
& ~mask
) | flags
;
531 return (old_access
& RESERVED_ALL
) >> RESERVED_SHIFT
;
534 /* duplicate a handle */
535 obj_handle_t
duplicate_handle( struct process
*src
, obj_handle_t src_handle
, struct process
*dst
,
536 unsigned int access
, unsigned int attr
, unsigned int options
)
539 struct handle_entry
*entry
;
540 unsigned int src_access
;
541 struct object
*obj
= get_handle_obj( src
, src_handle
, 0, NULL
);
544 if ((entry
= get_handle( src
, src_handle
)))
545 src_access
= entry
->access
;
546 else /* pseudo-handle, give it full access */
547 src_access
= obj
->ops
->map_access( obj
, GENERIC_ALL
);
548 src_access
&= ~RESERVED_ALL
;
550 if (options
& DUP_HANDLE_SAME_ACCESS
)
553 access
= obj
->ops
->map_access( obj
, access
) & ~RESERVED_ALL
;
555 /* asking for the more access rights than src_access? */
556 if (access
& ~src_access
)
558 if (options
& DUP_HANDLE_MAKE_GLOBAL
)
559 res
= alloc_global_handle( obj
, access
);
561 res
= alloc_handle( dst
, obj
, access
, attr
);
565 if (options
& DUP_HANDLE_MAKE_GLOBAL
)
566 res
= alloc_global_handle_no_access_check( obj
, access
);
567 else if ((options
& DUP_HANDLE_CLOSE_SOURCE
) && src
== dst
&&
568 entry
&& !(entry
->access
& RESERVED_CLOSE_PROTECT
))
570 if (attr
& OBJ_INHERIT
) access
|= RESERVED_INHERIT
;
571 entry
->access
= access
;
575 res
= alloc_handle_entry( dst
, obj
, access
, attr
);
578 release_object( obj
);
582 /* open a new handle to an existing object */
583 obj_handle_t
open_object( struct process
*process
, obj_handle_t parent
, unsigned int access
,
584 const struct object_ops
*ops
, const struct unicode_str
*name
,
585 unsigned int attributes
)
587 obj_handle_t handle
= 0;
588 struct object
*obj
, *root
= NULL
;
590 if (name
->len
>= 65534)
592 set_error( STATUS_OBJECT_NAME_INVALID
);
599 root
= get_directory_obj( process
, parent
);
600 else /* opening the object itself can work for non-directories too */
601 root
= get_handle_obj( process
, parent
, 0, NULL
);
605 if ((obj
= open_named_object( root
, ops
, name
, attributes
)))
607 handle
= alloc_handle( process
, obj
, access
, attributes
);
608 release_object( obj
);
610 if (root
) release_object( root
);
614 /* return the size of the handle table of a given process */
615 unsigned int get_handle_table_count( struct process
*process
)
617 if (!process
->handles
) return 0;
618 return process
->handles
->count
;
622 DECL_HANDLER(close_handle
)
624 unsigned int err
= close_handle( current
->process
, req
->handle
);
628 /* set a handle information */
629 DECL_HANDLER(set_handle_info
)
631 reply
->old_flags
= set_handle_flags( current
->process
, req
->handle
, req
->mask
, req
->flags
);
634 /* duplicate a handle */
635 DECL_HANDLER(dup_handle
)
637 struct process
*src
, *dst
= NULL
;
640 if ((src
= get_process_from_handle( req
->src_process
, PROCESS_DUP_HANDLE
)))
642 if (req
->options
& DUP_HANDLE_MAKE_GLOBAL
)
644 reply
->handle
= duplicate_handle( src
, req
->src_handle
, NULL
,
645 req
->access
, req
->attributes
, req
->options
);
647 else if ((dst
= get_process_from_handle( req
->dst_process
, PROCESS_DUP_HANDLE
)))
649 reply
->handle
= duplicate_handle( src
, req
->src_handle
, dst
,
650 req
->access
, req
->attributes
, req
->options
);
651 release_object( dst
);
653 /* close the handle no matter what happened */
654 if ((req
->options
& DUP_HANDLE_CLOSE_SOURCE
) && (src
!= dst
|| req
->src_handle
!= reply
->handle
))
655 reply
->closed
= !close_handle( src
, req
->src_handle
);
656 reply
->self
= (src
== current
->process
);
657 release_object( src
);
661 DECL_HANDLER(get_object_info
)
666 if (!(obj
= get_handle_obj( current
->process
, req
->handle
, 0, NULL
))) return;
668 reply
->access
= get_handle_access( current
->process
, req
->handle
);
669 reply
->ref_count
= obj
->refcount
;
670 reply
->handle_count
= obj
->handle_count
;
671 if ((name
= get_object_full_name( obj
, &reply
->total
)))
672 set_reply_data_ptr( name
, min( reply
->total
, get_reply_max_size() ));
673 release_object( obj
);
676 DECL_HANDLER(set_security_object
)
678 data_size_t sd_size
= get_req_data_size();
679 const struct security_descriptor
*sd
= get_req_data();
681 unsigned int access
= 0;
683 if (!sd_is_valid( sd
, sd_size
))
685 set_error( STATUS_ACCESS_VIOLATION
);
689 if (req
->security_info
& OWNER_SECURITY_INFORMATION
||
690 req
->security_info
& GROUP_SECURITY_INFORMATION
||
691 req
->security_info
& LABEL_SECURITY_INFORMATION
)
692 access
|= WRITE_OWNER
;
693 if (req
->security_info
& SACL_SECURITY_INFORMATION
)
694 access
|= ACCESS_SYSTEM_SECURITY
;
695 if (req
->security_info
& DACL_SECURITY_INFORMATION
)
698 if (!(obj
= get_handle_obj( current
->process
, req
->handle
, access
, NULL
))) return;
700 obj
->ops
->set_sd( obj
, sd
, req
->security_info
);
701 release_object( obj
);
704 DECL_HANDLER(get_security_object
)
706 const struct security_descriptor
*sd
;
708 unsigned int access
= READ_CONTROL
;
709 struct security_descriptor req_sd
;
711 const SID
*owner
, *group
;
712 const ACL
*sacl
, *dacl
;
713 ACL
*label_acl
= NULL
;
715 if (req
->security_info
& SACL_SECURITY_INFORMATION
)
716 access
|= ACCESS_SYSTEM_SECURITY
;
718 if (!(obj
= get_handle_obj( current
->process
, req
->handle
, access
, NULL
))) return;
720 sd
= obj
->ops
->get_sd( obj
);
723 req_sd
.control
= sd
->control
& ~SE_SELF_RELATIVE
;
725 owner
= sd_get_owner( sd
);
726 if (req
->security_info
& OWNER_SECURITY_INFORMATION
)
727 req_sd
.owner_len
= sd
->owner_len
;
729 req_sd
.owner_len
= 0;
731 group
= sd_get_group( sd
);
732 if (req
->security_info
& GROUP_SECURITY_INFORMATION
)
733 req_sd
.group_len
= sd
->group_len
;
735 req_sd
.group_len
= 0;
737 sacl
= sd_get_sacl( sd
, &present
);
738 if (req
->security_info
& SACL_SECURITY_INFORMATION
&& present
)
739 req_sd
.sacl_len
= sd
->sacl_len
;
740 else if (req
->security_info
& LABEL_SECURITY_INFORMATION
&& present
&& sacl
)
742 if (!(label_acl
= extract_security_labels( sacl
))) goto done
;
743 req_sd
.sacl_len
= label_acl
->AclSize
;
749 dacl
= sd_get_dacl( sd
, &present
);
750 if (req
->security_info
& DACL_SECURITY_INFORMATION
&& present
)
751 req_sd
.dacl_len
= sd
->dacl_len
;
755 reply
->sd_len
= sizeof(req_sd
) + req_sd
.owner_len
+ req_sd
.group_len
+
756 req_sd
.sacl_len
+ req_sd
.dacl_len
;
757 if (reply
->sd_len
<= get_reply_max_size())
759 char *ptr
= set_reply_data_size(reply
->sd_len
);
761 memcpy( ptr
, &req_sd
, sizeof(req_sd
) );
762 ptr
+= sizeof(req_sd
);
763 memcpy( ptr
, owner
, req_sd
.owner_len
);
764 ptr
+= req_sd
.owner_len
;
765 memcpy( ptr
, group
, req_sd
.group_len
);
766 ptr
+= req_sd
.group_len
;
767 memcpy( ptr
, sacl
, req_sd
.sacl_len
);
768 ptr
+= req_sd
.sacl_len
;
769 memcpy( ptr
, dacl
, req_sd
.dacl_len
);
772 set_error(STATUS_BUFFER_TOO_SMALL
);
776 release_object( obj
);
780 struct enum_handle_info
783 struct handle_info
*handle
;
786 static int enum_handles( struct process
*process
, void *user
)
788 struct enum_handle_info
*info
= user
;
789 struct handle_table
*table
= process
->handles
;
790 struct handle_entry
*entry
;
791 struct handle_info
*handle
;
797 for (i
= 0, entry
= table
->entries
; i
<= table
->last
; i
++, entry
++)
799 if (!entry
->ptr
) continue;
805 assert( info
->count
);
806 handle
= info
->handle
++;
807 handle
->owner
= process
->id
;
808 handle
->handle
= index_to_handle(i
);
809 handle
->access
= entry
->access
& ~RESERVED_ALL
;
816 DECL_HANDLER(get_system_handles
)
818 struct enum_handle_info info
;
819 struct handle_info
*handle
;
820 data_size_t max_handles
= get_reply_max_size() / sizeof(*handle
);
824 enum_processes( enum_handles
, &info
);
825 reply
->count
= info
.count
;
827 if (max_handles
< info
.count
)
828 set_error( STATUS_BUFFER_TOO_SMALL
);
829 else if ((handle
= set_reply_data_size( info
.count
* sizeof(*handle
) )))
831 info
.handle
= handle
;
832 enum_processes( enum_handles
, &info
);