ntdll: Add RtlDosPathNameToRelativeNtPathName_U.
[wine.git] / server / handle.c
blob38ad80da26710bebbe30745788ac66ba712ba5ae
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 /* get/set the handle reserved flags */
524 /* return the old flags (or -1 on error) */
525 static int set_handle_flags( struct process *process, obj_handle_t handle, int mask, int flags )
527 struct handle_entry *entry;
528 unsigned int old_access;
530 if (get_magic_handle( handle ))
532 /* we can retrieve but not set info for magic handles */
533 if (mask) set_error( STATUS_ACCESS_DENIED );
534 return 0;
536 if (!(entry = get_handle( process, handle )))
538 set_error( STATUS_INVALID_HANDLE );
539 return -1;
541 old_access = entry->access;
542 mask = (mask << RESERVED_SHIFT) & RESERVED_ALL;
543 flags = (flags << RESERVED_SHIFT) & mask;
544 entry->access = (entry->access & ~mask) | flags;
545 return (old_access & RESERVED_ALL) >> RESERVED_SHIFT;
548 /* duplicate a handle */
549 obj_handle_t duplicate_handle( struct process *src, obj_handle_t src_handle, struct process *dst,
550 unsigned int access, unsigned int attr, unsigned int options )
552 obj_handle_t res;
553 struct handle_entry *entry;
554 unsigned int src_access;
555 struct object *obj = get_handle_obj( src, src_handle, 0, NULL );
557 if (!obj) return 0;
558 if ((entry = get_handle( src, src_handle )))
559 src_access = entry->access;
560 else /* pseudo-handle, give it full access */
561 src_access = obj->ops->map_access( obj, GENERIC_ALL );
562 src_access &= ~RESERVED_ALL;
564 if (options & DUPLICATE_SAME_ACCESS)
565 access = src_access;
566 else
567 access = obj->ops->map_access( obj, access ) & ~RESERVED_ALL;
569 /* asking for the more access rights than src_access? */
570 if (access & ~src_access)
572 if ((current->token && !check_object_access( current->token, obj, &access )) ||
573 !check_object_access( dst->token, obj, &access ))
575 release_object( obj );
576 return 0;
579 if (options & DUPLICATE_MAKE_GLOBAL)
580 res = alloc_global_handle( obj, access );
581 else
582 res = alloc_handle_no_access_check( dst, obj, access, attr );
584 else
586 if (options & DUPLICATE_MAKE_GLOBAL)
587 res = alloc_global_handle_no_access_check( obj, access );
588 else if ((options & DUPLICATE_CLOSE_SOURCE) && src == dst &&
589 entry && !(entry->access & RESERVED_CLOSE_PROTECT))
591 if (attr & OBJ_INHERIT) access |= RESERVED_INHERIT;
592 entry->access = access;
593 res = src_handle;
595 else
596 res = alloc_handle_entry( dst, obj, access, attr );
599 release_object( obj );
600 return res;
603 /* open a new handle to an existing object */
604 obj_handle_t open_object( struct process *process, obj_handle_t parent, unsigned int access,
605 const struct object_ops *ops, const struct unicode_str *name,
606 unsigned int attributes )
608 obj_handle_t handle = 0;
609 struct object *obj, *root = NULL;
611 if (name->len >= 65534)
613 set_error( STATUS_OBJECT_NAME_INVALID );
614 return 0;
617 if (parent)
619 if (name->len)
620 root = get_directory_obj( process, parent );
621 else /* opening the object itself can work for non-directories too */
622 root = get_handle_obj( process, parent, 0, NULL );
623 if (!root) return 0;
626 if ((obj = open_named_object( root, ops, name, attributes )))
628 handle = alloc_handle( process, obj, access, attributes );
629 release_object( obj );
631 if (root) release_object( root );
632 return handle;
635 /* return the size of the handle table of a given process */
636 unsigned int get_handle_table_count( struct process *process )
638 if (!process->handles) return 0;
639 return process->handles->count;
642 /* close a handle */
643 DECL_HANDLER(close_handle)
645 unsigned int err = close_handle( current->process, req->handle );
646 set_error( err );
649 /* set a handle information */
650 DECL_HANDLER(set_handle_info)
652 reply->old_flags = set_handle_flags( current->process, req->handle, req->mask, req->flags );
655 /* duplicate a handle */
656 DECL_HANDLER(dup_handle)
658 struct process *src, *dst = NULL;
660 reply->handle = 0;
661 if ((src = get_process_from_handle( req->src_process, PROCESS_DUP_HANDLE )))
663 if (req->options & DUPLICATE_MAKE_GLOBAL)
665 reply->handle = duplicate_handle( src, req->src_handle, NULL,
666 req->access, req->attributes, req->options );
668 else if ((dst = get_process_from_handle( req->dst_process, PROCESS_DUP_HANDLE )))
670 reply->handle = duplicate_handle( src, req->src_handle, dst,
671 req->access, req->attributes, req->options );
672 release_object( dst );
674 /* close the handle no matter what happened */
675 if ((req->options & DUPLICATE_CLOSE_SOURCE) && (src != dst || req->src_handle != reply->handle))
676 close_handle( src, req->src_handle );
677 release_object( src );
681 DECL_HANDLER(get_object_info)
683 struct object *obj;
685 if (!(obj = get_handle_obj( current->process, req->handle, 0, NULL ))) return;
687 reply->access = get_handle_access( current->process, req->handle );
688 reply->ref_count = obj->refcount;
689 reply->handle_count = obj->handle_count;
690 release_object( obj );
693 DECL_HANDLER(get_object_name)
695 struct object *obj;
696 WCHAR *name;
698 if (!(obj = get_handle_obj( current->process, req->handle, 0, NULL ))) return;
700 if ((name = obj->ops->get_full_name( obj, &reply->total )))
701 set_reply_data_ptr( name, min( reply->total, get_reply_max_size() ));
702 release_object( obj );
705 DECL_HANDLER(set_security_object)
707 data_size_t sd_size = get_req_data_size();
708 const struct security_descriptor *sd = get_req_data();
709 struct object *obj;
710 unsigned int access = 0;
712 if (!sd_is_valid( sd, sd_size ))
714 set_error( STATUS_ACCESS_VIOLATION );
715 return;
718 if (req->security_info & OWNER_SECURITY_INFORMATION ||
719 req->security_info & GROUP_SECURITY_INFORMATION ||
720 req->security_info & LABEL_SECURITY_INFORMATION)
721 access |= WRITE_OWNER;
722 if (req->security_info & SACL_SECURITY_INFORMATION)
723 access |= ACCESS_SYSTEM_SECURITY;
724 if (req->security_info & DACL_SECURITY_INFORMATION)
725 access |= WRITE_DAC;
727 if (!(obj = get_handle_obj( current->process, req->handle, access, NULL ))) return;
729 obj->ops->set_sd( obj, sd, req->security_info );
730 release_object( obj );
733 DECL_HANDLER(get_security_object)
735 const struct security_descriptor *sd;
736 struct object *obj;
737 unsigned int access = READ_CONTROL;
738 struct security_descriptor req_sd;
739 int present;
740 const struct sid *owner, *group;
741 const struct acl *sacl, *dacl;
742 struct acl *label_acl = NULL;
744 if (req->security_info & SACL_SECURITY_INFORMATION)
745 access |= ACCESS_SYSTEM_SECURITY;
747 if (!(obj = get_handle_obj( current->process, req->handle, access, NULL ))) return;
749 sd = obj->ops->get_sd( obj );
750 if (sd)
752 req_sd.control = sd->control & ~SE_SELF_RELATIVE;
754 owner = sd_get_owner( sd );
755 if (req->security_info & OWNER_SECURITY_INFORMATION)
756 req_sd.owner_len = sd->owner_len;
757 else
758 req_sd.owner_len = 0;
760 group = sd_get_group( sd );
761 if (req->security_info & GROUP_SECURITY_INFORMATION)
762 req_sd.group_len = sd->group_len;
763 else
764 req_sd.group_len = 0;
766 sacl = sd_get_sacl( sd, &present );
767 if (req->security_info & SACL_SECURITY_INFORMATION && present)
768 req_sd.sacl_len = sd->sacl_len;
769 else if (req->security_info & LABEL_SECURITY_INFORMATION && present && sacl)
771 if (!(label_acl = extract_security_labels( sacl ))) goto done;
772 req_sd.sacl_len = label_acl->size;
773 sacl = label_acl;
775 else
776 req_sd.sacl_len = 0;
778 dacl = sd_get_dacl( sd, &present );
779 if (req->security_info & DACL_SECURITY_INFORMATION && present)
780 req_sd.dacl_len = sd->dacl_len;
781 else
782 req_sd.dacl_len = 0;
784 reply->sd_len = sizeof(req_sd) + req_sd.owner_len + req_sd.group_len +
785 req_sd.sacl_len + req_sd.dacl_len;
786 if (reply->sd_len <= get_reply_max_size())
788 char *ptr = set_reply_data_size(reply->sd_len);
790 memcpy( ptr, &req_sd, sizeof(req_sd) );
791 ptr += sizeof(req_sd);
792 memcpy( ptr, owner, req_sd.owner_len );
793 ptr += req_sd.owner_len;
794 memcpy( ptr, group, req_sd.group_len );
795 ptr += req_sd.group_len;
796 memcpy( ptr, sacl, req_sd.sacl_len );
797 ptr += req_sd.sacl_len;
798 memcpy( ptr, dacl, req_sd.dacl_len );
800 else
801 set_error(STATUS_BUFFER_TOO_SMALL);
804 done:
805 release_object( obj );
806 free( label_acl );
809 struct enum_handle_info
811 unsigned int count;
812 struct handle_info *handle;
815 static int enum_handles( struct process *process, void *user )
817 struct enum_handle_info *info = user;
818 struct handle_table *table = process->handles;
819 struct handle_entry *entry;
820 struct handle_info *handle;
821 unsigned int i;
823 if (!table)
824 return 0;
826 for (i = 0, entry = table->entries; i <= table->last; i++, entry++)
828 if (!entry->ptr) continue;
829 if (!info->handle)
831 info->count++;
832 continue;
834 assert( info->count );
835 handle = info->handle++;
836 handle->owner = process->id;
837 handle->handle = index_to_handle(i);
838 handle->access = entry->access & ~RESERVED_ALL;
839 handle->type = entry->ptr->ops->type->index;
840 handle->attributes = 0;
841 if (entry->access & RESERVED_INHERIT) handle->attributes |= OBJ_INHERIT;
842 if (entry->access & RESERVED_CLOSE_PROTECT) handle->attributes |= OBJ_PROTECT_CLOSE;
843 info->count--;
846 return 0;
849 DECL_HANDLER(get_system_handles)
851 struct enum_handle_info info;
852 struct handle_info *handle;
853 data_size_t max_handles = get_reply_max_size() / sizeof(*handle);
855 info.handle = NULL;
856 info.count = 0;
857 enum_processes( enum_handles, &info );
858 reply->count = info.count;
860 if (max_handles < info.count)
861 set_error( STATUS_BUFFER_TOO_SMALL );
862 else if ((handle = set_reply_data_size( info.count * sizeof(*handle) )))
864 info.handle = handle;
865 enum_processes( enum_handles, &info );
869 DECL_HANDLER(make_temporary)
871 struct object *obj;
873 if (!(obj = get_handle_obj( current->process, req->handle, 0, NULL ))) return;
875 if (obj->is_permanent)
877 make_object_temporary( obj );
878 release_object( obj );
880 release_object( obj );
883 DECL_HANDLER(compare_objects)
885 struct object *obj1, *obj2;
887 if (!(obj1 = get_handle_obj( current->process, req->first, 0, NULL ))) return;
888 if (!(obj2 = get_handle_obj( current->process, req->second, 0, NULL )))
890 release_object( obj1 );
891 return;
894 if (obj1 != obj2) set_error( STATUS_NOT_SAME_OBJECT );
896 release_object( obj2 );
897 release_object( obj1 );