widl: Add support for function parameter flags to SLTG typelib generator.
[wine.git] / server / file.h
blob7f2d16378636eab49f9f57c5dcd894401913a343
1 /*
2 * Server-side file definitions
4 * Copyright (C) 2003 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 #ifndef __WINE_SERVER_FILE_H
22 #define __WINE_SERVER_FILE_H
24 #include <sys/types.h>
26 #include "object.h"
28 struct fd;
29 struct mapping;
30 struct async_queue;
31 struct completion;
33 /* server-side representation of I/O status block */
34 struct iosb
36 struct object obj; /* object header */
37 unsigned int status; /* resulting status (or STATUS_PENDING) */
38 data_size_t result; /* size of result (input or output depending on the type) */
39 data_size_t in_size; /* size of input data */
40 void *in_data; /* input data */
41 data_size_t out_size; /* size of output data */
42 void *out_data; /* output data */
45 struct async_queue
47 struct list queue; /* queue of async objects */
50 /* operations valid on file descriptor objects */
51 struct fd_ops
53 /* get the events we want to poll() for on this object */
54 int (*get_poll_events)(struct fd *);
55 /* a poll() event occurred */
56 void (*poll_event)(struct fd *,int event);
57 /* get file information */
58 enum server_fd_type (*get_fd_type)(struct fd *fd);
59 /* perform a read on the file */
60 void (*read)(struct fd *, struct async *, file_pos_t );
61 /* perform a write on the file */
62 void (*write)(struct fd *, struct async *, file_pos_t );
63 /* flush the object buffers */
64 void (*flush)(struct fd *, struct async *);
65 /* query file info */
66 void (*get_file_info)( struct fd *, obj_handle_t, unsigned int );
67 /* query volume info */
68 void (*get_volume_info)( struct fd *, struct async *, unsigned int );
69 /* perform an ioctl on the file */
70 void (*ioctl)(struct fd *fd, ioctl_code_t code, struct async *async );
71 /* cancel an async operation */
72 void (*cancel_async)(struct fd *fd, struct async *async);
73 /* queue an async operation */
74 void (*queue_async)(struct fd *, struct async *async, int type, int count);
75 /* selected events for async i/o need an update */
76 void (*reselect_async)( struct fd *, struct async_queue *queue );
79 /* file descriptor functions */
81 extern struct fd *alloc_pseudo_fd( const struct fd_ops *fd_user_ops, struct object *user,
82 unsigned int options );
83 extern struct fd *open_fd( struct fd *root, const char *name, struct unicode_str nt_name,
84 int flags, mode_t *mode, unsigned int access,
85 unsigned int sharing, unsigned int options );
86 extern struct fd *create_anonymous_fd( const struct fd_ops *fd_user_ops,
87 int unix_fd, struct object *user, unsigned int options );
88 extern struct fd *dup_fd_object( struct fd *orig, unsigned int access, unsigned int sharing,
89 unsigned int options );
90 extern struct fd *get_fd_object_for_mapping( struct fd *fd, unsigned int access, unsigned int sharing );
91 extern void *get_fd_user( struct fd *fd );
92 extern void set_fd_user( struct fd *fd, const struct fd_ops *ops, struct object *user );
93 extern unsigned int get_fd_options( struct fd *fd );
94 extern unsigned int get_fd_comp_flags( struct fd *fd );
95 extern int is_fd_overlapped( struct fd *fd );
96 extern int get_unix_fd( struct fd *fd );
97 extern client_ptr_t get_fd_map_address( struct fd *fd );
98 extern void set_fd_map_address( struct fd *fd, client_ptr_t addr, mem_size_t size );
99 extern int is_same_file_fd( struct fd *fd1, struct fd *fd2 );
100 extern int is_fd_removable( struct fd *fd );
101 extern int check_fd_events( struct fd *fd, int events );
102 extern void set_fd_events( struct fd *fd, int events );
103 extern obj_handle_t lock_fd( struct fd *fd, file_pos_t offset, file_pos_t count, int shared, int wait );
104 extern void unlock_fd( struct fd *fd, file_pos_t offset, file_pos_t count );
105 extern void allow_fd_caching( struct fd *fd );
106 extern void set_fd_signaled( struct fd *fd, int signaled );
107 extern char *dup_fd_name( struct fd *root, const char *name ) __WINE_DEALLOC(free) __WINE_MALLOC;
108 extern void get_nt_name( struct fd *fd, struct unicode_str *name );
110 extern int default_fd_signaled( struct object *obj, struct wait_queue_entry *entry );
111 extern int default_fd_get_poll_events( struct fd *fd );
112 extern void default_poll_event( struct fd *fd, int event );
113 extern void fd_cancel_async( struct fd *fd, struct async *async );
114 extern void fd_queue_async( struct fd *fd, struct async *async, int type );
115 extern void fd_async_wake_up( struct fd *fd, int type, unsigned int status );
116 extern void fd_reselect_async( struct fd *fd, struct async_queue *queue );
117 extern void no_fd_read( struct fd *fd, struct async *async, file_pos_t pos );
118 extern void no_fd_write( struct fd *fd, struct async *async, file_pos_t pos );
119 extern void no_fd_flush( struct fd *fd, struct async *async );
120 extern void no_fd_get_file_info( struct fd *fd, obj_handle_t handle, unsigned int info_class );
121 extern void default_fd_get_file_info( struct fd *fd, obj_handle_t handle, unsigned int info_class );
122 extern void no_fd_get_volume_info( struct fd *fd, struct async *async, unsigned int info_class );
123 extern void no_fd_ioctl( struct fd *fd, ioctl_code_t code, struct async *async );
124 extern void default_fd_ioctl( struct fd *fd, ioctl_code_t code, struct async *async );
125 extern void default_fd_cancel_async( struct fd *fd, struct async *async );
126 extern void no_fd_queue_async( struct fd *fd, struct async *async, int type, int count );
127 extern void default_fd_queue_async( struct fd *fd, struct async *async, int type, int count );
128 extern void default_fd_reselect_async( struct fd *fd, struct async_queue *queue );
129 extern void main_loop(void);
130 extern void remove_process_locks( struct process *process );
132 static inline struct fd *get_obj_fd( struct object *obj ) { return obj->ops->get_fd( obj ); }
134 /* timeout functions */
136 struct timeout_user;
137 extern timeout_t current_time;
138 extern timeout_t monotonic_time;
139 extern struct _KUSER_SHARED_DATA *user_shared_data;
141 #define TICKS_PER_SEC 10000000
143 typedef void (*timeout_callback)( void *private );
145 static inline abstime_t timeout_to_abstime( timeout_t timeout )
147 return timeout > 0 ? timeout : timeout - monotonic_time;
150 static inline timeout_t abstime_to_timeout( abstime_t abstime )
152 if (abstime > 0) return abstime;
153 return -abstime < monotonic_time ? 0 : abstime + monotonic_time;
156 extern void set_current_time( void );
157 extern struct timeout_user *add_timeout_user( timeout_t when, timeout_callback func, void *private );
158 extern void remove_timeout_user( struct timeout_user *user );
159 extern const char *get_timeout_str( timeout_t timeout );
161 /* file functions */
163 extern struct file *get_file_obj( struct process *process, obj_handle_t handle,
164 unsigned int access );
165 extern int get_file_unix_fd( struct file *file );
166 extern struct file *create_file_for_fd( int fd, unsigned int access, unsigned int sharing );
167 extern struct file *create_file_for_fd_obj( struct fd *fd, unsigned int access, unsigned int sharing );
168 extern void file_set_error(void);
169 extern struct security_descriptor *mode_to_sd( mode_t mode, const struct sid *user, const struct sid *group );
170 extern mode_t sd_to_mode( const struct security_descriptor *sd, const struct sid *owner );
171 extern int is_file_executable( const char *name );
173 /* file mapping functions */
175 struct memory_view;
177 extern void init_memory(void);
178 extern int grow_file( int unix_fd, file_pos_t new_size );
179 extern void free_map_addr( client_ptr_t base, mem_size_t size );
180 extern struct memory_view *find_mapped_view( struct process *process, client_ptr_t base );
181 extern struct memory_view *get_exe_view( struct process *process );
182 extern struct file *get_view_file( const struct memory_view *view, unsigned int access, unsigned int sharing );
183 extern const pe_image_info_t *get_view_image_info( const struct memory_view *view, client_ptr_t *base );
184 extern int get_view_nt_name( const struct memory_view *view, struct unicode_str *name );
185 extern void free_mapped_views( struct process *process );
186 extern int get_page_size(void);
187 extern struct mapping *create_fd_mapping( struct object *root, const struct unicode_str *name, struct fd *fd,
188 unsigned int attr, const struct security_descriptor *sd );
189 extern struct object *create_user_data_mapping( struct object *root, const struct unicode_str *name,
190 unsigned int attr, const struct security_descriptor *sd );
192 /* device functions */
194 extern struct object *create_named_pipe_device( struct object *root, const struct unicode_str *name,
195 unsigned int attr, const struct security_descriptor *sd );
196 extern struct object *create_mailslot_device( struct object *root, const struct unicode_str *name,
197 unsigned int attr, const struct security_descriptor *sd );
198 extern struct object *create_console_device( struct object *root, const struct unicode_str *name,
199 unsigned int attr, const struct security_descriptor *sd );
200 extern struct object *create_socket_device( struct object *root, const struct unicode_str *name,
201 unsigned int attr, const struct security_descriptor *sd );
202 extern struct object *create_unix_device( struct object *root, const struct unicode_str *name,
203 unsigned int attr, const struct security_descriptor *sd, const char *unix_path );
205 /* change notification functions */
207 extern void do_change_notify( int unix_fd );
208 extern void sigio_callback(void);
209 extern struct object *create_dir_obj( struct fd *fd, unsigned int access, mode_t mode );
210 extern struct dir *get_dir_obj( struct process *process, obj_handle_t handle, unsigned int access );
212 /* completion */
214 extern struct completion *get_completion_obj( struct process *process, obj_handle_t handle, unsigned int access );
215 extern void add_completion( struct completion *completion, apc_param_t ckey, apc_param_t cvalue,
216 unsigned int status, apc_param_t information );
218 /* serial port functions */
220 extern int is_serial_fd( struct fd *fd );
221 extern struct object *create_serial( struct fd *fd );
223 /* async I/O functions */
225 typedef void (*async_completion_callback)( void *private );
227 extern void free_async_queue( struct async_queue *queue );
228 extern struct async *create_async( struct fd *fd, struct thread *thread, const async_data_t *data, struct iosb *iosb );
229 extern struct async *create_request_async( struct fd *fd, unsigned int comp_flags, const async_data_t *data );
230 extern obj_handle_t async_handoff( struct async *async, data_size_t *result, int force_blocking );
231 extern void queue_async( struct async_queue *queue, struct async *async );
232 extern void async_set_timeout( struct async *async, timeout_t timeout, unsigned int status );
233 extern void async_set_result( struct object *obj, unsigned int status, apc_param_t total );
234 extern void async_set_completion_callback( struct async *async, async_completion_callback func, void *private );
235 extern void async_set_unknown_status( struct async *async );
236 extern void set_async_pending( struct async *async );
237 extern void async_set_initial_status( struct async *async, unsigned int status );
238 extern void async_wake_obj( struct async *async );
239 extern int async_waiting( struct async_queue *queue );
240 extern int async_queue_has_waiting_asyncs( struct async_queue *queue );
241 extern void async_terminate( struct async *async, unsigned int status );
242 extern void async_request_complete( struct async *async, unsigned int status, data_size_t result,
243 data_size_t out_size, void *out_data );
244 extern void async_request_complete_alloc( struct async *async, unsigned int status, data_size_t result,
245 data_size_t out_size, const void *out_data );
246 extern void async_wake_up( struct async_queue *queue, unsigned int status );
247 extern struct completion *fd_get_completion( struct fd *fd, apc_param_t *p_key );
248 extern void fd_copy_completion( struct fd *src, struct fd *dst );
249 extern struct iosb *async_get_iosb( struct async *async );
250 extern struct thread *async_get_thread( struct async *async );
251 extern struct async *find_pending_async( struct async_queue *queue );
252 extern void cancel_process_asyncs( struct process *process );
253 extern void cancel_terminating_thread_asyncs( struct thread *thread );
254 extern int async_close_obj_handle( struct object *obj, struct process *process, obj_handle_t handle );
256 static inline void init_async_queue( struct async_queue *queue )
258 list_init( &queue->queue );
261 static inline int async_queued( struct async_queue *queue )
263 return !list_empty( &queue->queue );
267 /* access rights that require Unix read permission */
268 #define FILE_UNIX_READ_ACCESS (FILE_READ_DATA|FILE_READ_ATTRIBUTES|FILE_READ_EA)
270 /* access rights that require Unix write permission */
271 #define FILE_UNIX_WRITE_ACCESS (FILE_WRITE_DATA|FILE_APPEND_DATA|FILE_WRITE_ATTRIBUTES|FILE_WRITE_EA)
273 /* magic file access rights for mappings */
274 #define FILE_MAPPING_IMAGE 0x80000000 /* set for SEC_IMAGE mappings */
275 #define FILE_MAPPING_WRITE 0x40000000 /* set for writable shared mappings */
276 #define FILE_MAPPING_ACCESS 0x20000000 /* set for all mappings */
278 #endif /* __WINE_SERVER_FILE_H */