Added a separate set_handle_cached_fd request instead of abusing

set_handle_info for that.
oldstable
Alexandre Julliard 2005-08-23 18:43:50 +00:00
parent 73cb76542f
commit 38502f70eb
8 changed files with 62 additions and 19 deletions

View File

@ -71,7 +71,6 @@ NTSTATUS WINAPI NtQueryObject(IN HANDLE handle,
req->handle = handle; req->handle = handle;
req->flags = 0; req->flags = 0;
req->mask = 0; req->mask = 0;
req->fd = -1;
status = wine_server_call( req ); status = wine_server_call( req );
if (status == STATUS_SUCCESS) if (status == STATUS_SUCCESS)
{ {
@ -118,7 +117,6 @@ NTSTATUS WINAPI NtSetInformationObject(IN HANDLE handle,
req->handle = handle; req->handle = handle;
req->flags = 0; req->flags = 0;
req->mask = HANDLE_FLAG_INHERIT | HANDLE_FLAG_PROTECT_FROM_CLOSE; req->mask = HANDLE_FLAG_INHERIT | HANDLE_FLAG_PROTECT_FROM_CLOSE;
req->fd = -1;
if (p->InheritHandle) req->flags |= HANDLE_FLAG_INHERIT; if (p->InheritHandle) req->flags |= HANDLE_FLAG_INHERIT;
if (p->ProtectFromClose) req->flags |= HANDLE_FLAG_PROTECT_FROM_CLOSE; if (p->ProtectFromClose) req->flags |= HANDLE_FLAG_PROTECT_FROM_CLOSE;
status = wine_server_call( req ); status = wine_server_call( req );

View File

@ -428,11 +428,9 @@ inline static int store_cached_fd( int *fd, obj_handle_t handle )
{ {
int ret; int ret;
SERVER_START_REQ( set_handle_info ) SERVER_START_REQ( set_handle_cached_fd )
{ {
req->handle = handle; req->handle = handle;
req->flags = 0;
req->mask = 0;
req->fd = *fd; req->fd = *fd;
if (!(ret = wine_server_call( req ))) if (!(ret = wine_server_call( req )))
{ {

View File

@ -529,12 +529,24 @@ struct set_handle_info_request
obj_handle_t handle; obj_handle_t handle;
int flags; int flags;
int mask; int mask;
int fd;
}; };
struct set_handle_info_reply struct set_handle_info_reply
{ {
struct reply_header __header; struct reply_header __header;
int old_flags; int old_flags;
};
struct set_handle_cached_fd_request
{
struct request_header __header;
obj_handle_t handle;
int fd;
};
struct set_handle_cached_fd_reply
{
struct reply_header __header;
int cur_fd; int cur_fd;
}; };
@ -3585,6 +3597,7 @@ enum request
REQ_get_apc, REQ_get_apc,
REQ_close_handle, REQ_close_handle,
REQ_set_handle_info, REQ_set_handle_info,
REQ_set_handle_cached_fd,
REQ_dup_handle, REQ_dup_handle,
REQ_open_process, REQ_open_process,
REQ_open_thread, REQ_open_thread,
@ -3796,6 +3809,7 @@ union generic_request
struct get_apc_request get_apc_request; struct get_apc_request get_apc_request;
struct close_handle_request close_handle_request; struct close_handle_request close_handle_request;
struct set_handle_info_request set_handle_info_request; struct set_handle_info_request set_handle_info_request;
struct set_handle_cached_fd_request set_handle_cached_fd_request;
struct dup_handle_request dup_handle_request; struct dup_handle_request dup_handle_request;
struct open_process_request open_process_request; struct open_process_request open_process_request;
struct open_thread_request open_thread_request; struct open_thread_request open_thread_request;
@ -4005,6 +4019,7 @@ union generic_reply
struct get_apc_reply get_apc_reply; struct get_apc_reply get_apc_reply;
struct close_handle_reply close_handle_reply; struct close_handle_reply close_handle_reply;
struct set_handle_info_reply set_handle_info_reply; struct set_handle_info_reply set_handle_info_reply;
struct set_handle_cached_fd_reply set_handle_cached_fd_reply;
struct dup_handle_reply dup_handle_reply; struct dup_handle_reply dup_handle_reply;
struct open_process_reply open_process_reply; struct open_process_reply open_process_reply;
struct open_thread_reply open_thread_reply; struct open_thread_reply open_thread_reply;
@ -4190,6 +4205,6 @@ union generic_reply
struct set_mailslot_info_reply set_mailslot_info_reply; struct set_mailslot_info_reply set_mailslot_info_reply;
}; };
#define SERVER_PROTOCOL_VERSION 189 #define SERVER_PROTOCOL_VERSION 190
#endif /* __WINE_WINE_SERVER_PROTOCOL_H */ #endif /* __WINE_WINE_SERVER_PROTOCOL_H */

View File

@ -425,6 +425,17 @@ int get_handle_unix_fd( struct process *process, obj_handle_t handle, unsigned i
return entry->fd; return entry->fd;
} }
/* set the cached fd for a handle if not set already, and return the current value */
static int set_handle_unix_fd( struct process *process, obj_handle_t handle, int fd )
{
struct handle_entry *entry;
if (!(entry = get_handle( process, handle ))) return -1;
/* if no current fd set it, otherwise return current fd */
if (entry->fd == -1) entry->fd = fd;
return entry->fd;
}
/* remove the cached fd and return it */ /* remove the cached fd and return it */
int flush_cached_fd( struct process *process, obj_handle_t handle ) int flush_cached_fd( struct process *process, obj_handle_t handle )
{ {
@ -460,7 +471,7 @@ obj_handle_t find_inherited_handle( struct process *process, const struct object
/* get/set the handle reserved flags */ /* get/set the handle reserved flags */
/* return the old flags (or -1 on error) */ /* return the old flags (or -1 on error) */
int set_handle_info( struct process *process, obj_handle_t handle, int mask, int flags, int *fd ) static int set_handle_flags( struct process *process, obj_handle_t handle, int mask, int flags )
{ {
struct handle_entry *entry; struct handle_entry *entry;
unsigned int old_access; unsigned int old_access;
@ -476,9 +487,6 @@ int set_handle_info( struct process *process, obj_handle_t handle, int mask, int
mask = (mask << RESERVED_SHIFT) & RESERVED_ALL; mask = (mask << RESERVED_SHIFT) & RESERVED_ALL;
flags = (flags << RESERVED_SHIFT) & mask; flags = (flags << RESERVED_SHIFT) & mask;
entry->access = (entry->access & ~mask) | flags; entry->access = (entry->access & ~mask) | flags;
/* if no current fd set it, otherwise return current fd */
if (entry->fd == -1) entry->fd = *fd;
*fd = entry->fd;
return (old_access & RESERVED_ALL) >> RESERVED_SHIFT; return (old_access & RESERVED_ALL) >> RESERVED_SHIFT;
} }
@ -544,13 +552,17 @@ DECL_HANDLER(close_handle)
/* set a handle information */ /* set a handle information */
DECL_HANDLER(set_handle_info) DECL_HANDLER(set_handle_info)
{
reply->old_flags = set_handle_flags( current->process, req->handle, req->mask, req->flags );
}
/* set the cached file descriptor of a handle */
DECL_HANDLER(set_handle_cached_fd)
{ {
int fd = req->fd; int fd = req->fd;
if (handle_is_global(req->handle)) fd = -1; /* no fd cache for global handles */ if (handle_is_global(req->handle)) fd = -1; /* no fd cache for global handles */
reply->old_flags = set_handle_info( current->process, req->handle, reply->cur_fd = set_handle_unix_fd( current->process, req->handle, fd );
req->mask, req->flags, &fd );
reply->cur_fd = fd;
} }
/* duplicate a handle */ /* duplicate a handle */

View File

@ -40,7 +40,6 @@ extern struct object *get_handle_obj( struct process *process, obj_handle_t hand
unsigned int access, const struct object_ops *ops ); unsigned int access, const struct object_ops *ops );
extern unsigned int get_handle_access( struct process *process, obj_handle_t handle ); extern unsigned int get_handle_access( struct process *process, obj_handle_t handle );
extern int get_handle_unix_fd( struct process *process, obj_handle_t handle, unsigned int access ); extern int get_handle_unix_fd( struct process *process, obj_handle_t handle, unsigned int access );
extern int set_handle_info( struct process *process, obj_handle_t handle, int mask, int flags, int *fd );
extern obj_handle_t duplicate_handle( struct process *src, obj_handle_t src_handle, struct process *dst, extern obj_handle_t duplicate_handle( struct process *src, obj_handle_t src_handle, struct process *dst,
unsigned int access, int inherit, int options ); unsigned int access, int inherit, int options );
extern obj_handle_t open_object( const struct namespace *namespace, const WCHAR *name, size_t len, extern obj_handle_t open_object( const struct namespace *namespace, const WCHAR *name, size_t len,

View File

@ -437,9 +437,16 @@ enum apc_type { APC_NONE, APC_USER, APC_TIMER, APC_ASYNC_IO };
obj_handle_t handle; /* handle we are interested in */ obj_handle_t handle; /* handle we are interested in */
int flags; /* new handle flags */ int flags; /* new handle flags */
int mask; /* mask for flags to set */ int mask; /* mask for flags to set */
int fd; /* file descriptor or -1 */
@REPLY @REPLY
int old_flags; /* old flag value */ int old_flags; /* old flag value */
@END
/* Set the cached file descriptor of a handle */
@REQ(set_handle_cached_fd)
obj_handle_t handle; /* handle we are interested in */
int fd; /* file descriptor */
@REPLY
int cur_fd; /* current file descriptor */ int cur_fd; /* current file descriptor */
@END @END

View File

@ -124,6 +124,7 @@ DECL_HANDLER(queue_apc);
DECL_HANDLER(get_apc); DECL_HANDLER(get_apc);
DECL_HANDLER(close_handle); DECL_HANDLER(close_handle);
DECL_HANDLER(set_handle_info); DECL_HANDLER(set_handle_info);
DECL_HANDLER(set_handle_cached_fd);
DECL_HANDLER(dup_handle); DECL_HANDLER(dup_handle);
DECL_HANDLER(open_process); DECL_HANDLER(open_process);
DECL_HANDLER(open_thread); DECL_HANDLER(open_thread);
@ -334,6 +335,7 @@ static const req_handler req_handlers[REQ_NB_REQUESTS] =
(req_handler)req_get_apc, (req_handler)req_get_apc,
(req_handler)req_close_handle, (req_handler)req_close_handle,
(req_handler)req_set_handle_info, (req_handler)req_set_handle_info,
(req_handler)req_set_handle_cached_fd,
(req_handler)req_dup_handle, (req_handler)req_dup_handle,
(req_handler)req_open_process, (req_handler)req_open_process,
(req_handler)req_open_thread, (req_handler)req_open_thread,

View File

@ -828,13 +828,22 @@ static void dump_set_handle_info_request( const struct set_handle_info_request *
{ {
fprintf( stderr, " handle=%p,", req->handle ); fprintf( stderr, " handle=%p,", req->handle );
fprintf( stderr, " flags=%d,", req->flags ); fprintf( stderr, " flags=%d,", req->flags );
fprintf( stderr, " mask=%d,", req->mask ); fprintf( stderr, " mask=%d", req->mask );
fprintf( stderr, " fd=%d", req->fd );
} }
static void dump_set_handle_info_reply( const struct set_handle_info_reply *req ) static void dump_set_handle_info_reply( const struct set_handle_info_reply *req )
{ {
fprintf( stderr, " old_flags=%d,", req->old_flags ); fprintf( stderr, " old_flags=%d", req->old_flags );
}
static void dump_set_handle_cached_fd_request( const struct set_handle_cached_fd_request *req )
{
fprintf( stderr, " handle=%p,", req->handle );
fprintf( stderr, " fd=%d", req->fd );
}
static void dump_set_handle_cached_fd_reply( const struct set_handle_cached_fd_reply *req )
{
fprintf( stderr, " cur_fd=%d", req->cur_fd ); fprintf( stderr, " cur_fd=%d", req->cur_fd );
} }
@ -3100,6 +3109,7 @@ static const dump_func req_dumpers[REQ_NB_REQUESTS] = {
(dump_func)dump_get_apc_request, (dump_func)dump_get_apc_request,
(dump_func)dump_close_handle_request, (dump_func)dump_close_handle_request,
(dump_func)dump_set_handle_info_request, (dump_func)dump_set_handle_info_request,
(dump_func)dump_set_handle_cached_fd_request,
(dump_func)dump_dup_handle_request, (dump_func)dump_dup_handle_request,
(dump_func)dump_open_process_request, (dump_func)dump_open_process_request,
(dump_func)dump_open_thread_request, (dump_func)dump_open_thread_request,
@ -3307,6 +3317,7 @@ static const dump_func reply_dumpers[REQ_NB_REQUESTS] = {
(dump_func)dump_get_apc_reply, (dump_func)dump_get_apc_reply,
(dump_func)dump_close_handle_reply, (dump_func)dump_close_handle_reply,
(dump_func)dump_set_handle_info_reply, (dump_func)dump_set_handle_info_reply,
(dump_func)dump_set_handle_cached_fd_reply,
(dump_func)dump_dup_handle_reply, (dump_func)dump_dup_handle_reply,
(dump_func)dump_open_process_reply, (dump_func)dump_open_process_reply,
(dump_func)dump_open_thread_reply, (dump_func)dump_open_thread_reply,
@ -3514,6 +3525,7 @@ static const char * const req_names[REQ_NB_REQUESTS] = {
"get_apc", "get_apc",
"close_handle", "close_handle",
"set_handle_info", "set_handle_info",
"set_handle_cached_fd",
"dup_handle", "dup_handle",
"open_process", "open_process",
"open_thread", "open_thread",