server: Add infrastructure for ioctl server request.
[wine] / server / file.h
1 /*
2  * Server-side file definitions
3  *
4  * Copyright (C) 2003 Alexandre Julliard
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #ifndef __WINE_SERVER_FILE_H
22 #define __WINE_SERVER_FILE_H
23
24 #include "object.h"
25
26 struct fd;
27 struct async_queue;
28
29 typedef unsigned __int64 file_pos_t;
30
31 /* operations valid on file descriptor objects */
32 struct fd_ops
33 {
34     /* get the events we want to poll() for on this object */
35     int  (*get_poll_events)(struct fd *);
36     /* a poll() event occurred */
37     void (*poll_event)(struct fd *,int event);
38     /* flush the object buffers */
39     void (*flush)(struct fd *, struct event **);
40     /* get file information */
41     enum server_fd_type (*get_fd_type)(struct fd *fd);
42     /* perform an ioctl on the file */
43     void (*ioctl)(struct fd *fd, unsigned int code, const async_data_t *async,
44                   const void *data, data_size_t size);
45     /* queue an async operation */
46     void (*queue_async)(struct fd *, const async_data_t *data, int type, int count);
47     /* selected events for async i/o need an update */
48     void (*reselect_async)( struct fd *, struct async_queue *queue );
49     /* cancel an async operation */
50     void (*cancel_async)(struct fd *);
51 };
52
53 /* file descriptor functions */
54
55 extern struct fd *alloc_pseudo_fd( const struct fd_ops *fd_user_ops, struct object *user );
56 extern struct fd *open_fd( const char *name, int flags, mode_t *mode, unsigned int access,
57                            unsigned int sharing, unsigned int options );
58 extern struct fd *create_anonymous_fd( const struct fd_ops *fd_user_ops,
59                                        int unix_fd, struct object *user, unsigned int options );
60 extern void *get_fd_user( struct fd *fd );
61 extern void set_fd_user( struct fd *fd, const struct fd_ops *ops, struct object *user );
62 extern unsigned int get_fd_options( struct fd *fd );
63 extern int get_unix_fd( struct fd *fd );
64 extern int is_same_file_fd( struct fd *fd1, struct fd *fd2 );
65 extern int is_fd_removable( struct fd *fd );
66 extern int fd_close_handle( struct object *obj, struct process *process, obj_handle_t handle );
67 extern void fd_poll_event( struct fd *fd, int event );
68 extern int check_fd_events( struct fd *fd, int events );
69 extern void set_fd_events( struct fd *fd, int events );
70 extern obj_handle_t lock_fd( struct fd *fd, file_pos_t offset, file_pos_t count, int shared, int wait );
71 extern void unlock_fd( struct fd *fd, file_pos_t offset, file_pos_t count );
72 extern void set_fd_signaled( struct fd *fd, int signaled );
73
74 extern int default_fd_signaled( struct object *obj, struct thread *thread );
75 extern int default_fd_get_poll_events( struct fd *fd );
76 extern void default_poll_event( struct fd *fd, int event );
77 extern struct async *fd_queue_async( struct fd *fd, const async_data_t *data, int type, int count );
78 extern void fd_async_wake_up( struct fd *fd, int type, unsigned int status );
79 extern void fd_reselect_async( struct fd *fd, struct async_queue *queue );
80 extern void default_fd_ioctl( struct fd *fd, unsigned int code, const async_data_t *async,
81                               const void *data, data_size_t size );
82 extern void default_fd_queue_async( struct fd *fd, const async_data_t *data, int type, int count );
83 extern void default_fd_reselect_async( struct fd *fd, struct async_queue *queue );
84 extern void default_fd_cancel_async( struct fd *fd );
85 extern void no_flush( struct fd *fd, struct event **event );
86 extern void main_loop(void);
87 extern void remove_process_locks( struct process *process );
88
89 static inline struct fd *get_obj_fd( struct object *obj ) { return obj->ops->get_fd( obj ); }
90
91 /* timeout functions */
92
93 struct timeout_user;
94 extern struct timeval current_time;
95
96 typedef void (*timeout_callback)( void *private );
97
98 extern struct timeout_user *add_timeout_user( const struct timeval *when,
99                                               timeout_callback func, void *private );
100 extern void remove_timeout_user( struct timeout_user *user );
101 extern void add_timeout( struct timeval *when, int timeout );
102 /* return 1 if t1 is before t2 */
103 static inline int time_before( const struct timeval *t1, const struct timeval *t2 )
104 {
105     return ((t1->tv_sec < t2->tv_sec) ||
106             ((t1->tv_sec == t2->tv_sec) && (t1->tv_usec < t2->tv_usec)));
107 }
108
109 /* file functions */
110
111 extern struct file *get_file_obj( struct process *process, obj_handle_t handle,
112                                   unsigned int access );
113 extern int get_file_unix_fd( struct file *file );
114 extern int is_same_file( struct file *file1, struct file *file2 );
115 extern struct file *grab_file_unless_removable( struct file *file );
116 extern int grow_file( struct file *file, file_pos_t size );
117 extern struct file *create_temp_file( int access );
118 extern void file_set_error(void);
119
120 /* change notification functions */
121
122 extern void do_change_notify( int unix_fd );
123 extern void sigio_callback(void);
124 extern struct object *create_dir_obj( struct fd *fd );
125
126 /* serial port functions */
127
128 extern int is_serial_fd( struct fd *fd );
129 extern struct object *create_serial( struct fd *fd );
130
131 /* async I/O functions */
132 extern struct async_queue *create_async_queue( struct fd *fd );
133 extern void free_async_queue( struct async_queue *queue );
134 extern struct async *create_async( struct thread *thread, struct async_queue *queue,
135                                    const async_data_t *data );
136 extern void async_set_timeout( struct async *async, const struct timeval *timeout,
137                                unsigned int status );
138 extern void async_set_result( struct object *obj, unsigned int status );
139 extern int async_waiting( struct async_queue *queue );
140 extern void async_wake_up( struct async_queue *queue, unsigned int status );
141
142 /* access rights that require Unix read permission */
143 #define FILE_UNIX_READ_ACCESS (FILE_READ_DATA|FILE_READ_ATTRIBUTES|FILE_READ_EA)
144
145 /* access rights that require Unix write permission */
146 #define FILE_UNIX_WRITE_ACCESS (FILE_WRITE_DATA|FILE_WRITE_ATTRIBUTES|FILE_WRITE_EA)
147
148 #endif  /* __WINE_SERVER_FILE_H */