msvcr90: Add tests for mbstowcs and wcstombs with a negative count.
[wine.git] / server / device.c
blob22ade88e0e6dadb3ea91a1daeb8755982dd84d04
1 /*
2 * Server-side device support
4 * Copyright (C) 2007 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 <fcntl.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <stdarg.h>
30 #include "ntstatus.h"
31 #define WIN32_NO_STATUS
32 #include "windef.h"
33 #include "winternl.h"
34 #include "ddk/wdm.h"
36 #include "object.h"
37 #include "file.h"
38 #include "handle.h"
39 #include "request.h"
40 #include "process.h"
42 /* IRP object */
44 struct irp_call
46 struct object obj; /* object header */
47 struct list dev_entry; /* entry in device queue */
48 struct list mgr_entry; /* entry in manager queue */
49 struct device_file *file; /* file containing this irp */
50 struct thread *thread; /* thread that queued the irp */
51 client_ptr_t user_arg; /* user arg used to identify the request */
52 struct async *async; /* pending async op */
53 unsigned int status; /* resulting status (or STATUS_PENDING) */
54 irp_params_t params; /* irp parameters */
55 data_size_t result; /* size of result (input or output depending on the type) */
56 data_size_t in_size; /* size of input data */
57 void *in_data; /* input data */
58 data_size_t out_size; /* size of output data */
59 void *out_data; /* output data */
62 static void irp_call_dump( struct object *obj, int verbose );
63 static int irp_call_signaled( struct object *obj, struct wait_queue_entry *entry );
64 static void irp_call_destroy( struct object *obj );
66 static const struct object_ops irp_call_ops =
68 sizeof(struct irp_call), /* size */
69 irp_call_dump, /* dump */
70 no_get_type, /* get_type */
71 add_queue, /* add_queue */
72 remove_queue, /* remove_queue */
73 irp_call_signaled, /* signaled */
74 no_satisfied, /* satisfied */
75 no_signal, /* signal */
76 no_get_fd, /* get_fd */
77 no_map_access, /* map_access */
78 default_get_sd, /* get_sd */
79 default_set_sd, /* set_sd */
80 no_lookup_name, /* lookup_name */
81 no_link_name, /* link_name */
82 NULL, /* unlink_name */
83 no_open_file, /* open_file */
84 no_close_handle, /* close_handle */
85 irp_call_destroy /* destroy */
89 /* device manager (a list of devices managed by the same client process) */
91 struct device_manager
93 struct object obj; /* object header */
94 struct list devices; /* list of devices */
95 struct list requests; /* list of pending irps across all devices */
98 static void device_manager_dump( struct object *obj, int verbose );
99 static int device_manager_signaled( struct object *obj, struct wait_queue_entry *entry );
100 static void device_manager_destroy( struct object *obj );
102 static const struct object_ops device_manager_ops =
104 sizeof(struct device_manager), /* size */
105 device_manager_dump, /* dump */
106 no_get_type, /* get_type */
107 add_queue, /* add_queue */
108 remove_queue, /* remove_queue */
109 device_manager_signaled, /* signaled */
110 no_satisfied, /* satisfied */
111 no_signal, /* signal */
112 no_get_fd, /* get_fd */
113 no_map_access, /* map_access */
114 default_get_sd, /* get_sd */
115 default_set_sd, /* set_sd */
116 no_lookup_name, /* lookup_name */
117 no_link_name, /* link_name */
118 NULL, /* unlink_name */
119 no_open_file, /* open_file */
120 no_close_handle, /* close_handle */
121 device_manager_destroy /* destroy */
125 /* device (a single device object) */
127 struct device
129 struct object obj; /* object header */
130 struct device_manager *manager; /* manager for this device (or NULL if deleted) */
131 char *unix_path; /* path to unix device if any */
132 client_ptr_t user_ptr; /* opaque ptr for client side */
133 struct list entry; /* entry in device manager list */
134 struct list files; /* list of open files */
137 static void device_dump( struct object *obj, int verbose );
138 static struct object_type *device_get_type( struct object *obj );
139 static void device_destroy( struct object *obj );
140 static struct object *device_open_file( struct object *obj, unsigned int access,
141 unsigned int sharing, unsigned int options );
143 static const struct object_ops device_ops =
145 sizeof(struct device), /* size */
146 device_dump, /* dump */
147 device_get_type, /* get_type */
148 no_add_queue, /* add_queue */
149 NULL, /* remove_queue */
150 NULL, /* signaled */
151 no_satisfied, /* satisfied */
152 no_signal, /* signal */
153 no_get_fd, /* get_fd */
154 default_fd_map_access, /* map_access */
155 default_get_sd, /* get_sd */
156 default_set_sd, /* set_sd */
157 no_lookup_name, /* lookup_name */
158 directory_link_name, /* link_name */
159 default_unlink_name, /* unlink_name */
160 device_open_file, /* open_file */
161 no_close_handle, /* close_handle */
162 device_destroy /* destroy */
166 /* device file (an open file handle to a device) */
168 struct device_file
170 struct object obj; /* object header */
171 struct device *device; /* device for this file */
172 struct fd *fd; /* file descriptor for irp */
173 client_ptr_t user_ptr; /* opaque ptr for client side */
174 struct list entry; /* entry in device list */
175 struct list requests; /* list of pending irp requests */
178 static void device_file_dump( struct object *obj, int verbose );
179 static struct fd *device_file_get_fd( struct object *obj );
180 static int device_file_close_handle( struct object *obj, struct process *process, obj_handle_t handle );
181 static void device_file_destroy( struct object *obj );
182 static enum server_fd_type device_file_get_fd_type( struct fd *fd );
183 static obj_handle_t device_file_read( struct fd *fd, const async_data_t *async_data, int blocking,
184 file_pos_t pos );
185 static obj_handle_t device_file_write( struct fd *fd, const async_data_t *async_data, int blocking,
186 file_pos_t pos, data_size_t *written );
187 static obj_handle_t device_file_flush( struct fd *fd, const async_data_t *async_data, int blocking );
188 static obj_handle_t device_file_ioctl( struct fd *fd, ioctl_code_t code, const async_data_t *async_data,
189 int blocking );
191 static const struct object_ops device_file_ops =
193 sizeof(struct device_file), /* size */
194 device_file_dump, /* dump */
195 no_get_type, /* get_type */
196 add_queue, /* add_queue */
197 remove_queue, /* remove_queue */
198 default_fd_signaled, /* signaled */
199 no_satisfied, /* satisfied */
200 no_signal, /* signal */
201 device_file_get_fd, /* get_fd */
202 default_fd_map_access, /* map_access */
203 default_get_sd, /* get_sd */
204 default_set_sd, /* set_sd */
205 no_lookup_name, /* lookup_name */
206 no_link_name, /* link_name */
207 NULL, /* unlink_name */
208 no_open_file, /* open_file */
209 device_file_close_handle, /* close_handle */
210 device_file_destroy /* destroy */
213 static const struct fd_ops device_file_fd_ops =
215 default_fd_get_poll_events, /* get_poll_events */
216 default_poll_event, /* poll_event */
217 device_file_get_fd_type, /* get_fd_type */
218 device_file_read, /* read */
219 device_file_write, /* write */
220 device_file_flush, /* flush */
221 device_file_ioctl, /* ioctl */
222 default_fd_queue_async, /* queue_async */
223 default_fd_reselect_async, /* reselect_async */
224 default_fd_cancel_async /* cancel_async */
228 static void irp_call_dump( struct object *obj, int verbose )
230 struct irp_call *irp = (struct irp_call *)obj;
231 fprintf( stderr, "IRP call file=%p\n", irp->file );
234 static int irp_call_signaled( struct object *obj, struct wait_queue_entry *entry )
236 struct irp_call *irp = (struct irp_call *)obj;
238 return !irp->file; /* file is cleared once the irp has completed */
241 static void irp_call_destroy( struct object *obj )
243 struct irp_call *irp = (struct irp_call *)obj;
245 free( irp->in_data );
246 free( irp->out_data );
247 if (irp->async)
249 async_terminate( irp->async, STATUS_CANCELLED );
250 release_object( irp->async );
252 if (irp->file) release_object( irp->file );
253 if (irp->thread) release_object( irp->thread );
256 static struct irp_call *create_irp( struct device_file *file, const irp_params_t *params,
257 const void *in_data, data_size_t in_size, data_size_t out_size )
259 struct irp_call *irp;
261 if (!file->device->manager) /* it has been deleted */
263 set_error( STATUS_FILE_DELETED );
264 return NULL;
267 if ((irp = alloc_object( &irp_call_ops )))
269 irp->file = (struct device_file *)grab_object( file );
270 irp->thread = NULL;
271 irp->async = NULL;
272 irp->params = *params;
273 irp->status = STATUS_PENDING;
274 irp->result = 0;
275 irp->in_size = in_size;
276 irp->in_data = NULL;
277 irp->out_size = out_size;
278 irp->out_data = NULL;
280 if (irp->in_size && !(irp->in_data = memdup( in_data, in_size )))
282 release_object( irp );
283 irp = NULL;
286 return irp;
289 static void set_irp_result( struct irp_call *irp, unsigned int status,
290 const void *out_data, data_size_t out_size, data_size_t result )
292 struct device_file *file = irp->file;
294 if (!file) return; /* already finished */
296 /* FIXME: handle the STATUS_PENDING case */
297 irp->status = status;
298 irp->result = result;
299 irp->out_size = min( irp->out_size, out_size );
300 if (irp->out_size && !(irp->out_data = memdup( out_data, irp->out_size )))
301 irp->out_size = 0;
302 irp->file = NULL;
303 if (irp->async)
305 if (result) status = STATUS_ALERTED;
306 async_terminate( irp->async, status );
307 release_object( irp->async );
308 irp->async = NULL;
310 wake_up( &irp->obj, 0 );
312 if (status != STATUS_ALERTED)
314 /* remove it from the device queue */
315 /* (for STATUS_ALERTED this will be done in get_irp_result) */
316 list_remove( &irp->dev_entry );
317 release_object( irp ); /* no longer on the device queue */
319 release_object( file );
323 static void device_dump( struct object *obj, int verbose )
325 fputs( "Device\n", stderr );
328 static struct object_type *device_get_type( struct object *obj )
330 static const WCHAR name[] = {'D','e','v','i','c','e'};
331 static const struct unicode_str str = { name, sizeof(name) };
332 return get_object_type( &str );
335 static void device_destroy( struct object *obj )
337 struct device *device = (struct device *)obj;
339 assert( list_empty( &device->files ));
341 free( device->unix_path );
342 if (device->manager) list_remove( &device->entry );
345 static void add_irp_to_queue( struct device_file *file, struct irp_call *irp, struct thread *thread )
347 struct device_manager *manager = file->device->manager;
349 assert( manager );
351 grab_object( irp ); /* grab reference for queued irp */
352 irp->thread = thread ? (struct thread *)grab_object( thread ) : NULL;
353 list_add_tail( &file->requests, &irp->dev_entry );
354 list_add_tail( &manager->requests, &irp->mgr_entry );
355 if (list_head( &manager->requests ) == &irp->mgr_entry) wake_up( &manager->obj, 0 ); /* first one */
358 static struct object *device_open_file( struct object *obj, unsigned int access,
359 unsigned int sharing, unsigned int options )
361 struct device *device = (struct device *)obj;
362 struct device_file *file;
364 if (!(file = alloc_object( &device_file_ops ))) return NULL;
366 file->device = (struct device *)grab_object( device );
367 file->user_ptr = 0;
368 list_init( &file->requests );
369 list_add_tail( &device->files, &file->entry );
370 if (device->unix_path)
372 mode_t mode = 0666;
373 access = file->obj.ops->map_access( &file->obj, access );
374 file->fd = open_fd( NULL, device->unix_path, O_NONBLOCK | O_LARGEFILE,
375 &mode, access, sharing, options );
376 if (file->fd) set_fd_user( file->fd, &device_file_fd_ops, &file->obj );
378 else file->fd = alloc_pseudo_fd( &device_file_fd_ops, &file->obj, 0 );
380 if (!file->fd)
382 release_object( file );
383 return NULL;
386 if (device->manager)
388 struct irp_call *irp;
389 irp_params_t params;
391 memset( &params, 0, sizeof(params) );
392 params.create.major = IRP_MJ_CREATE;
393 params.create.access = access;
394 params.create.sharing = sharing;
395 params.create.options = options;
396 params.create.device = file->device->user_ptr;
398 if ((irp = create_irp( file, &params, NULL, 0, 0 )))
400 add_irp_to_queue( file, irp, NULL );
401 release_object( irp );
404 return &file->obj;
407 static void device_file_dump( struct object *obj, int verbose )
409 struct device_file *file = (struct device_file *)obj;
411 fprintf( stderr, "File on device %p\n", file->device );
414 static struct fd *device_file_get_fd( struct object *obj )
416 struct device_file *file = (struct device_file *)obj;
418 return (struct fd *)grab_object( file->fd );
421 static int device_file_close_handle( struct object *obj, struct process *process, obj_handle_t handle )
423 struct device_file *file = (struct device_file *)obj;
425 if (file->device->manager && obj->handle_count == 1) /* last handle */
427 struct irp_call *irp;
428 irp_params_t params;
430 memset( &params, 0, sizeof(params) );
431 params.close.major = IRP_MJ_CLOSE;
432 params.close.file = file->user_ptr;
434 if ((irp = create_irp( file, &params, NULL, 0, 0 )))
436 add_irp_to_queue( file, irp, NULL );
437 release_object( irp );
440 return 1;
443 static void device_file_destroy( struct object *obj )
445 struct device_file *file = (struct device_file *)obj;
446 struct irp_call *irp, *next;
448 LIST_FOR_EACH_ENTRY_SAFE( irp, next, &file->requests, struct irp_call, dev_entry )
450 list_remove( &irp->dev_entry );
451 release_object( irp ); /* no longer on the device queue */
453 if (file->fd) release_object( file->fd );
454 list_remove( &file->entry );
455 release_object( file->device );
458 static struct irp_call *find_irp_call( struct device_file *file, struct thread *thread,
459 client_ptr_t user_arg )
461 struct irp_call *irp;
463 LIST_FOR_EACH_ENTRY( irp, &file->requests, struct irp_call, dev_entry )
464 if (irp->thread == thread && irp->user_arg == user_arg) return irp;
466 set_error( STATUS_INVALID_PARAMETER );
467 return NULL;
470 static void set_file_user_ptr( struct device_file *file, client_ptr_t ptr )
472 struct irp_call *irp;
474 if (file->user_ptr == ptr) return; /* nothing to do */
476 file->user_ptr = ptr;
478 /* update already queued irps */
480 LIST_FOR_EACH_ENTRY( irp, &file->requests, struct irp_call, dev_entry )
482 switch (irp->params.major)
484 case IRP_MJ_CLOSE: irp->params.close.file = ptr; break;
485 case IRP_MJ_READ: irp->params.read.file = ptr; break;
486 case IRP_MJ_WRITE: irp->params.write.file = ptr; break;
487 case IRP_MJ_FLUSH_BUFFERS: irp->params.flush.file = ptr; break;
488 case IRP_MJ_DEVICE_CONTROL: irp->params.ioctl.file = ptr; break;
493 /* queue an irp to the device */
494 static obj_handle_t queue_irp( struct device_file *file, struct irp_call *irp,
495 const async_data_t *async_data, int blocking )
497 obj_handle_t handle = 0;
499 if (blocking && !(handle = alloc_handle( current->process, irp, SYNCHRONIZE, 0 ))) return 0;
501 if (!(irp->async = fd_queue_async( file->fd, async_data, ASYNC_TYPE_WAIT )))
503 if (handle) close_handle( current->process, handle );
504 return 0;
506 irp->user_arg = async_data->arg;
507 add_irp_to_queue( file, irp, current );
508 set_error( STATUS_PENDING );
509 return handle;
512 static enum server_fd_type device_file_get_fd_type( struct fd *fd )
514 return FD_TYPE_DEVICE;
517 static obj_handle_t device_file_read( struct fd *fd, const async_data_t *async_data, int blocking,
518 file_pos_t pos )
520 struct device_file *file = get_fd_user( fd );
521 struct irp_call *irp;
522 obj_handle_t handle;
523 irp_params_t params;
525 memset( &params, 0, sizeof(params) );
526 params.read.major = IRP_MJ_READ;
527 params.read.key = 0;
528 params.read.pos = pos;
529 params.read.file = file->user_ptr;
531 irp = create_irp( file, &params, NULL, 0, get_reply_max_size() );
532 if (!irp) return 0;
534 handle = queue_irp( file, irp, async_data, blocking );
535 release_object( irp );
536 return handle;
539 static obj_handle_t device_file_write( struct fd *fd, const async_data_t *async_data, int blocking,
540 file_pos_t pos, data_size_t *written )
542 struct device_file *file = get_fd_user( fd );
543 struct irp_call *irp;
544 obj_handle_t handle;
545 irp_params_t params;
547 memset( &params, 0, sizeof(params) );
548 params.write.major = IRP_MJ_WRITE;
549 params.write.key = 0;
550 params.write.pos = pos;
551 params.write.file = file->user_ptr;
553 irp = create_irp( file, &params, get_req_data(), get_req_data_size(), 0 );
554 if (!irp) return 0;
556 handle = queue_irp( file, irp, async_data, blocking );
557 release_object( irp );
558 return handle;
561 static obj_handle_t device_file_flush( struct fd *fd, const async_data_t *async_data, int blocking )
563 struct device_file *file = get_fd_user( fd );
564 struct irp_call *irp;
565 obj_handle_t handle;
566 irp_params_t params;
568 memset( &params, 0, sizeof(params) );
569 params.flush.major = IRP_MJ_FLUSH_BUFFERS;
570 params.flush.file = file->user_ptr;
572 irp = create_irp( file, &params, NULL, 0, 0 );
573 if (!irp) return 0;
575 handle = queue_irp( file, irp, async_data, blocking );
576 release_object( irp );
577 return handle;
580 static obj_handle_t device_file_ioctl( struct fd *fd, ioctl_code_t code, const async_data_t *async_data,
581 int blocking )
583 struct device_file *file = get_fd_user( fd );
584 struct irp_call *irp;
585 obj_handle_t handle;
586 irp_params_t params;
588 memset( &params, 0, sizeof(params) );
589 params.ioctl.major = IRP_MJ_DEVICE_CONTROL;
590 params.ioctl.code = code;
591 params.ioctl.file = file->user_ptr;
593 irp = create_irp( file, &params, get_req_data(), get_req_data_size(),
594 get_reply_max_size() );
595 if (!irp) return 0;
597 handle = queue_irp( file, irp, async_data, blocking );
598 release_object( irp );
599 return handle;
602 static struct device *create_device( struct object *root, const struct unicode_str *name,
603 struct device_manager *manager, unsigned int attr )
605 struct device *device;
607 if ((device = create_named_object( root, &device_ops, name, attr, NULL )))
609 if (get_error() != STATUS_OBJECT_NAME_EXISTS)
611 /* initialize it if it didn't already exist */
612 device->unix_path = NULL;
613 device->manager = manager;
614 list_add_tail( &manager->devices, &device->entry );
615 list_init( &device->files );
618 return device;
621 struct device *create_unix_device( struct object *root, const struct unicode_str *name,
622 const char *unix_path )
624 struct device *device;
626 if ((device = create_named_object( root, &device_ops, name, 0, NULL )))
628 device->unix_path = strdup( unix_path );
629 device->manager = NULL; /* no manager, requests go straight to the Unix device */
630 list_init( &device->files );
631 make_object_static( &device->obj );
633 return device;
637 /* terminate requests when the underlying device is deleted */
638 static void delete_file( struct device_file *file )
640 struct irp_call *irp, *next;
642 /* terminate all pending requests */
643 LIST_FOR_EACH_ENTRY_SAFE( irp, next, &file->requests, struct irp_call, dev_entry )
645 list_remove( &irp->mgr_entry );
646 set_irp_result( irp, STATUS_FILE_DELETED, NULL, 0, 0 );
650 static void delete_device( struct device *device )
652 struct device_file *file, *next;
654 if (!device->manager) return; /* already deleted */
656 LIST_FOR_EACH_ENTRY_SAFE( file, next, &device->files, struct device_file, entry )
657 delete_file( file );
659 unlink_named_object( &device->obj );
660 list_remove( &device->entry );
661 device->manager = NULL;
665 static void device_manager_dump( struct object *obj, int verbose )
667 fprintf( stderr, "Device manager\n" );
670 static int device_manager_signaled( struct object *obj, struct wait_queue_entry *entry )
672 struct device_manager *manager = (struct device_manager *)obj;
674 return !list_empty( &manager->requests );
677 static void device_manager_destroy( struct object *obj )
679 struct device_manager *manager = (struct device_manager *)obj;
680 struct list *ptr;
682 while ((ptr = list_head( &manager->devices )))
684 struct device *device = LIST_ENTRY( ptr, struct device, entry );
685 delete_device( device );
689 static struct device_manager *create_device_manager(void)
691 struct device_manager *manager;
693 if ((manager = alloc_object( &device_manager_ops )))
695 list_init( &manager->devices );
696 list_init( &manager->requests );
698 return manager;
702 /* create a device manager */
703 DECL_HANDLER(create_device_manager)
705 struct device_manager *manager = create_device_manager();
707 if (manager)
709 reply->handle = alloc_handle( current->process, manager, req->access, req->attributes );
710 release_object( manager );
715 /* create a device */
716 DECL_HANDLER(create_device)
718 struct device *device;
719 struct unicode_str name = get_req_unicode_str();
720 struct device_manager *manager;
721 struct object *root = NULL;
723 if (!(manager = (struct device_manager *)get_handle_obj( current->process, req->manager,
724 0, &device_manager_ops )))
725 return;
727 if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir )))
729 release_object( manager );
730 return;
733 if ((device = create_device( root, &name, manager, req->attributes )))
735 device->user_ptr = req->user_ptr;
736 reply->handle = alloc_handle( current->process, device, req->access, req->attributes );
737 release_object( device );
740 if (root) release_object( root );
741 release_object( manager );
745 /* delete a device */
746 DECL_HANDLER(delete_device)
748 struct device *device;
750 if ((device = (struct device *)get_handle_obj( current->process, req->handle, 0, &device_ops )))
752 delete_device( device );
753 release_object( device );
758 /* retrieve the next pending device irp request */
759 DECL_HANDLER(get_next_device_request)
761 struct irp_call *irp;
762 struct device_manager *manager;
763 struct list *ptr;
765 reply->params.major = IRP_MJ_MAXIMUM_FUNCTION + 1;
767 if (!(manager = (struct device_manager *)get_handle_obj( current->process, req->manager,
768 0, &device_manager_ops )))
769 return;
771 if (req->prev)
773 if ((irp = (struct irp_call *)get_handle_obj( current->process, req->prev, 0, &irp_call_ops )))
775 set_irp_result( irp, req->status, NULL, 0, 0 );
776 close_handle( current->process, req->prev ); /* avoid an extra round-trip for close */
777 release_object( irp );
779 clear_error();
782 if ((ptr = list_head( &manager->requests )))
784 irp = LIST_ENTRY( ptr, struct irp_call, mgr_entry );
785 if (irp->thread)
787 reply->client_pid = get_process_id( irp->thread->process );
788 reply->client_tid = get_thread_id( irp->thread );
790 reply->params = irp->params;
791 reply->in_size = irp->in_size;
792 reply->out_size = irp->out_size;
793 if (irp->in_size > get_reply_max_size()) set_error( STATUS_BUFFER_OVERFLOW );
794 else if ((reply->next = alloc_handle( current->process, irp, 0, 0 )))
796 set_reply_data_ptr( irp->in_data, irp->in_size );
797 irp->in_data = NULL;
798 irp->in_size = 0;
799 list_remove( &irp->mgr_entry );
800 list_init( &irp->mgr_entry );
803 else set_error( STATUS_PENDING );
805 release_object( manager );
809 /* store results of an async irp */
810 DECL_HANDLER(set_irp_result)
812 struct irp_call *irp;
814 if ((irp = (struct irp_call *)get_handle_obj( current->process, req->handle, 0, &irp_call_ops )))
816 if (irp->file) set_file_user_ptr( irp->file, req->file_ptr );
817 set_irp_result( irp, req->status, get_req_data(), get_req_data_size(), req->size );
818 close_handle( current->process, req->handle ); /* avoid an extra round-trip for close */
819 release_object( irp );
824 /* retrieve results of an async irp */
825 DECL_HANDLER(get_irp_result)
827 struct device_file *file;
828 struct irp_call *irp;
830 if (!(file = (struct device_file *)get_handle_obj( current->process, req->handle,
831 0, &device_file_ops )))
832 return;
834 if ((irp = find_irp_call( file, current, req->user_arg )))
836 if (irp->out_data)
838 data_size_t size = min( irp->out_size, get_reply_max_size() );
839 if (size)
841 set_reply_data_ptr( irp->out_data, size );
842 irp->out_data = NULL;
845 reply->size = irp->result;
846 set_error( irp->status );
847 list_remove( &irp->dev_entry );
848 release_object( irp ); /* no longer on the device queue */
850 release_object( file );