2 * Server-side file descriptor management
4 * Copyright (C) 2000, 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
23 #include "wine/port.h"
38 #ifdef HAVE_SYS_POLL_H
41 #ifdef HAVE_LINUX_MAJOR_H
42 #include <linux/major.h>
44 #ifdef HAVE_SYS_STATVFS_H
45 #include <sys/statvfs.h>
48 /* Work around a conflict with Solaris' system list defined in sys/list.h. */
50 #define list_next SYSLIST_NEXT
51 #define list_prev SYSLIST_PREV
52 #define list_head SYSLIST_HEAD
53 #define list_tail SYSLIST_TAIL
54 #define list_move_tail SYSLIST_MOVE_TAIL
55 #define list_remove SYSLIST_REMOVE
65 #ifdef HAVE_SYS_PARAM_H
66 #include <sys/param.h>
68 #ifdef HAVE_SYS_MOUNT_H
69 #include <sys/mount.h>
71 #ifdef HAVE_SYS_STATFS_H
72 #include <sys/statfs.h>
74 #ifdef HAVE_SYS_SYSCTL_H
75 #include <sys/sysctl.h>
77 #ifdef HAVE_SYS_EVENT_H
78 #include <sys/event.h>
88 #include <sys/mkdev.h>
89 #elif defined(MAJOR_IN_SYSMACROS)
90 #include <sys/sysmacros.h>
92 #include <sys/types.h>
94 #ifdef HAVE_SYS_SYSCALL_H
95 #include <sys/syscall.h>
99 #define WIN32_NO_STATUS
106 #include "winternl.h"
107 #include "winioctl.h"
110 #if defined(HAVE_SYS_EPOLL_H) && defined(HAVE_EPOLL_CREATE)
111 # include <sys/epoll.h>
113 #elif defined(linux) && defined(__i386__) && defined(HAVE_STDINT_H)
115 # define EPOLLIN POLLIN
116 # define EPOLLOUT POLLOUT
117 # define EPOLLERR POLLERR
118 # define EPOLLHUP POLLHUP
119 # define EPOLL_CTL_ADD 1
120 # define EPOLL_CTL_DEL 2
121 # define EPOLL_CTL_MOD 3
123 typedef union epoll_data
137 static inline int epoll_create( int size
)
139 return syscall( 254 /*NR_epoll_create*/, size
);
142 static inline int epoll_ctl( int epfd
, int op
, int fd
, const struct epoll_event
*event
)
144 return syscall( 255 /*NR_epoll_ctl*/, epfd
, op
, fd
, event
);
147 static inline int epoll_wait( int epfd
, struct epoll_event
*events
, int maxevents
, int timeout
)
149 return syscall( 256 /*NR_epoll_wait*/, epfd
, events
, maxevents
, timeout
);
152 #endif /* linux && __i386__ && HAVE_STDINT_H */
154 #if defined(HAVE_PORT_H) && defined(HAVE_PORT_CREATE)
156 # define USE_EVENT_PORTS
157 #endif /* HAVE_PORT_H && HAVE_PORT_CREATE */
159 /* Because of the stupid Posix locking semantics, we need to keep
160 * track of all file descriptors referencing a given file, and not
161 * close a single one until all the locks are gone (sigh).
164 /* file descriptor object */
166 /* closed_fd is used to keep track of the unix fd belonging to a closed fd object */
169 struct list entry
; /* entry in inode closed list */
170 int unix_fd
; /* the unix file descriptor */
171 int unlink
; /* whether to unlink on close: -1 - implicit FILE_DELETE_ON_CLOSE, 1 - explicit disposition */
172 char *unix_name
; /* name to unlink on close, points to parent fd unix_name */
177 struct object obj
; /* object header */
178 const struct fd_ops
*fd_ops
; /* file descriptor operations */
179 struct inode
*inode
; /* inode that this fd belongs to */
180 struct list inode_entry
; /* entry in inode fd list */
181 struct closed_fd
*closed
; /* structure to store the unix fd at destroy time */
182 struct object
*user
; /* object using this file descriptor */
183 struct list locks
; /* list of locks on this fd */
184 unsigned int access
; /* file access (FILE_READ_DATA etc.) */
185 unsigned int options
; /* file options (FILE_DELETE_ON_CLOSE, FILE_SYNCHRONOUS...) */
186 unsigned int sharing
; /* file sharing mode */
187 char *unix_name
; /* unix file name */
188 int unix_fd
; /* unix file descriptor */
189 unsigned int no_fd_status
;/* status to return when unix_fd is -1 */
190 unsigned int cacheable
:1;/* can the fd be cached on the client side? */
191 unsigned int signaled
:1; /* is the fd signaled? */
192 unsigned int fs_locks
:1; /* can we use filesystem locks for this fd? */
193 int poll_index
; /* index of fd in poll array */
194 struct async_queue read_q
; /* async readers of this fd */
195 struct async_queue write_q
; /* async writers of this fd */
196 struct async_queue wait_q
; /* other async waiters of this fd */
197 struct completion
*completion
; /* completion object attached to this fd */
198 apc_param_t comp_key
; /* completion key to set in completion events */
199 unsigned int comp_flags
; /* completion flags */
202 static void fd_dump( struct object
*obj
, int verbose
);
203 static void fd_destroy( struct object
*obj
);
205 static const struct object_ops fd_ops
=
207 sizeof(struct fd
), /* size */
209 no_get_type
, /* get_type */
210 no_add_queue
, /* add_queue */
211 NULL
, /* remove_queue */
213 NULL
, /* satisfied */
214 no_signal
, /* signal */
215 no_get_fd
, /* get_fd */
216 no_map_access
, /* map_access */
217 default_get_sd
, /* get_sd */
218 default_set_sd
, /* set_sd */
219 no_lookup_name
, /* lookup_name */
220 no_link_name
, /* link_name */
221 NULL
, /* unlink_name */
222 no_open_file
, /* open_file */
223 no_kernel_obj_list
, /* get_kernel_obj_list */
224 no_close_handle
, /* close_handle */
225 fd_destroy
/* destroy */
230 #define DEVICE_HASH_SIZE 7
231 #define INODE_HASH_SIZE 17
235 struct object obj
; /* object header */
236 struct list entry
; /* entry in device hash list */
237 dev_t dev
; /* device number */
238 int removable
; /* removable device? (or -1 if unknown) */
239 struct list inode_hash
[INODE_HASH_SIZE
]; /* inodes hash table */
242 static void device_dump( struct object
*obj
, int verbose
);
243 static void device_destroy( struct object
*obj
);
245 static const struct object_ops device_ops
=
247 sizeof(struct device
), /* size */
248 device_dump
, /* dump */
249 no_get_type
, /* get_type */
250 no_add_queue
, /* add_queue */
251 NULL
, /* remove_queue */
253 NULL
, /* satisfied */
254 no_signal
, /* signal */
255 no_get_fd
, /* get_fd */
256 no_map_access
, /* map_access */
257 default_get_sd
, /* get_sd */
258 default_set_sd
, /* set_sd */
259 no_lookup_name
, /* lookup_name */
260 no_link_name
, /* link_name */
261 NULL
, /* unlink_name */
262 no_open_file
, /* open_file */
263 no_kernel_obj_list
, /* get_kernel_obj_list */
264 no_close_handle
, /* close_handle */
265 device_destroy
/* destroy */
272 struct object obj
; /* object header */
273 struct list entry
; /* inode hash list entry */
274 struct device
*device
; /* device containing this inode */
275 ino_t ino
; /* inode number */
276 struct list open
; /* list of open file descriptors */
277 struct list locks
; /* list of file locks */
278 struct list closed
; /* list of file descriptors to close at destroy time */
281 static void inode_dump( struct object
*obj
, int verbose
);
282 static void inode_destroy( struct object
*obj
);
284 static const struct object_ops inode_ops
=
286 sizeof(struct inode
), /* size */
287 inode_dump
, /* dump */
288 no_get_type
, /* get_type */
289 no_add_queue
, /* add_queue */
290 NULL
, /* remove_queue */
292 NULL
, /* satisfied */
293 no_signal
, /* signal */
294 no_get_fd
, /* get_fd */
295 no_map_access
, /* map_access */
296 default_get_sd
, /* get_sd */
297 default_set_sd
, /* set_sd */
298 no_lookup_name
, /* lookup_name */
299 no_link_name
, /* link_name */
300 NULL
, /* unlink_name */
301 no_open_file
, /* open_file */
302 no_kernel_obj_list
, /* get_kernel_obj_list */
303 no_close_handle
, /* close_handle */
304 inode_destroy
/* destroy */
307 /* file lock object */
311 struct object obj
; /* object header */
312 struct fd
*fd
; /* fd owning this lock */
313 struct list fd_entry
; /* entry in list of locks on a given fd */
314 struct list inode_entry
; /* entry in inode list of locks */
315 int shared
; /* shared lock? */
316 file_pos_t start
; /* locked region is interval [start;end) */
318 struct process
*process
; /* process owning this lock */
319 struct list proc_entry
; /* entry in list of locks owned by the process */
322 static void file_lock_dump( struct object
*obj
, int verbose
);
323 static int file_lock_signaled( struct object
*obj
, struct wait_queue_entry
*entry
);
325 static const struct object_ops file_lock_ops
=
327 sizeof(struct file_lock
), /* size */
328 file_lock_dump
, /* dump */
329 no_get_type
, /* get_type */
330 add_queue
, /* add_queue */
331 remove_queue
, /* remove_queue */
332 file_lock_signaled
, /* signaled */
333 no_satisfied
, /* satisfied */
334 no_signal
, /* signal */
335 no_get_fd
, /* get_fd */
336 no_map_access
, /* map_access */
337 default_get_sd
, /* get_sd */
338 default_set_sd
, /* set_sd */
339 no_lookup_name
, /* lookup_name */
340 no_link_name
, /* link_name */
341 NULL
, /* unlink_name */
342 no_open_file
, /* open_file */
343 no_kernel_obj_list
, /* get_kernel_obj_list */
344 no_close_handle
, /* close_handle */
345 no_destroy
/* destroy */
349 #define OFF_T_MAX (~((file_pos_t)1 << (8*sizeof(off_t)-1)))
350 #define FILE_POS_T_MAX (~(file_pos_t)0)
352 static file_pos_t max_unix_offset
= OFF_T_MAX
;
354 #define DUMP_LONG_LONG(val) do { \
355 if (sizeof(val) > sizeof(unsigned long) && (val) > ~0UL) \
356 fprintf( stderr, "%lx%08lx", (unsigned long)((unsigned long long)(val) >> 32), (unsigned long)(val) ); \
358 fprintf( stderr, "%lx", (unsigned long)(val) ); \
363 /****************************************************************/
364 /* timeouts support */
368 struct list entry
; /* entry in sorted timeout list */
369 abstime_t when
; /* timeout expiry */
370 timeout_callback callback
; /* callback function */
371 void *private; /* callback private data */
374 static struct list abs_timeout_list
= LIST_INIT(abs_timeout_list
); /* sorted absolute timeouts list */
375 static struct list rel_timeout_list
= LIST_INIT(rel_timeout_list
); /* sorted relative timeouts list */
376 timeout_t current_time
;
377 timeout_t monotonic_time
;
379 struct _KUSER_SHARED_DATA
*user_shared_data
= NULL
;
380 static const int user_shared_data_timeout
= 16;
382 static void set_user_shared_data_time(void)
384 timeout_t tick_count
= monotonic_time
/ 10000;
386 /* on X86 there should be total store order guarantees, so volatile is enough
387 * to ensure the stores aren't reordered by the compiler, and then they will
388 * always be seen in-order from other CPUs. On other archs, we need atomic
389 * intrinsics to guarantee that. */
390 #if defined(__i386__) || defined(__x86_64__)
391 user_shared_data
->SystemTime
.High2Time
= current_time
>> 32;
392 user_shared_data
->SystemTime
.LowPart
= current_time
;
393 user_shared_data
->SystemTime
.High1Time
= current_time
>> 32;
395 user_shared_data
->InterruptTime
.High2Time
= monotonic_time
>> 32;
396 user_shared_data
->InterruptTime
.LowPart
= monotonic_time
;
397 user_shared_data
->InterruptTime
.High1Time
= monotonic_time
>> 32;
399 user_shared_data
->TickCount
.High2Time
= tick_count
>> 32;
400 user_shared_data
->TickCount
.LowPart
= tick_count
;
401 user_shared_data
->TickCount
.High1Time
= tick_count
>> 32;
402 *(volatile ULONG
*)&user_shared_data
->TickCountLowDeprecated
= tick_count
;
404 __atomic_store_n(&user_shared_data
->SystemTime
.High2Time
, current_time
>> 32, __ATOMIC_SEQ_CST
);
405 __atomic_store_n(&user_shared_data
->SystemTime
.LowPart
, current_time
, __ATOMIC_SEQ_CST
);
406 __atomic_store_n(&user_shared_data
->SystemTime
.High1Time
, current_time
>> 32, __ATOMIC_SEQ_CST
);
408 __atomic_store_n(&user_shared_data
->InterruptTime
.High2Time
, monotonic_time
>> 32, __ATOMIC_SEQ_CST
);
409 __atomic_store_n(&user_shared_data
->InterruptTime
.LowPart
, monotonic_time
, __ATOMIC_SEQ_CST
);
410 __atomic_store_n(&user_shared_data
->InterruptTime
.High1Time
, monotonic_time
>> 32, __ATOMIC_SEQ_CST
);
412 __atomic_store_n(&user_shared_data
->TickCount
.High2Time
, tick_count
>> 32, __ATOMIC_SEQ_CST
);
413 __atomic_store_n(&user_shared_data
->TickCount
.LowPart
, tick_count
, __ATOMIC_SEQ_CST
);
414 __atomic_store_n(&user_shared_data
->TickCount
.High1Time
, tick_count
>> 32, __ATOMIC_SEQ_CST
);
415 __atomic_store_n(&user_shared_data
->TickCountLowDeprecated
, tick_count
, __ATOMIC_SEQ_CST
);
419 void set_current_time(void)
421 static const timeout_t ticks_1601_to_1970
= (timeout_t
)86400 * (369 * 365 + 89) * TICKS_PER_SEC
;
423 gettimeofday( &now
, NULL
);
424 current_time
= (timeout_t
)now
.tv_sec
* TICKS_PER_SEC
+ now
.tv_usec
* 10 + ticks_1601_to_1970
;
425 monotonic_time
= monotonic_counter();
426 if (user_shared_data
) set_user_shared_data_time();
429 /* add a timeout user */
430 struct timeout_user
*add_timeout_user( timeout_t when
, timeout_callback func
, void *private )
432 struct timeout_user
*user
;
435 if (!(user
= mem_alloc( sizeof(*user
) ))) return NULL
;
436 user
->when
= timeout_to_abstime( when
);
437 user
->callback
= func
;
438 user
->private = private;
440 /* Now insert it in the linked list */
444 LIST_FOR_EACH( ptr
, &abs_timeout_list
)
446 struct timeout_user
*timeout
= LIST_ENTRY( ptr
, struct timeout_user
, entry
);
447 if (timeout
->when
>= user
->when
) break;
452 LIST_FOR_EACH( ptr
, &rel_timeout_list
)
454 struct timeout_user
*timeout
= LIST_ENTRY( ptr
, struct timeout_user
, entry
);
455 if (timeout
->when
<= user
->when
) break;
458 list_add_before( ptr
, &user
->entry
);
462 /* remove a timeout user */
463 void remove_timeout_user( struct timeout_user
*user
)
465 list_remove( &user
->entry
);
469 /* return a text description of a timeout for debugging purposes */
470 const char *get_timeout_str( timeout_t timeout
)
472 static char buffer
[64];
475 if (!timeout
) return "0";
476 if (timeout
== TIMEOUT_INFINITE
) return "infinite";
478 if (timeout
< 0) /* relative */
480 secs
= -timeout
/ TICKS_PER_SEC
;
481 nsecs
= -timeout
% TICKS_PER_SEC
;
482 sprintf( buffer
, "+%ld.%07ld", secs
, nsecs
);
486 secs
= (timeout
- current_time
) / TICKS_PER_SEC
;
487 nsecs
= (timeout
- current_time
) % TICKS_PER_SEC
;
490 nsecs
+= TICKS_PER_SEC
;
494 sprintf( buffer
, "%x%08x (+%ld.%07ld)",
495 (unsigned int)(timeout
>> 32), (unsigned int)timeout
, secs
, nsecs
);
497 sprintf( buffer
, "%x%08x (-%ld.%07ld)",
498 (unsigned int)(timeout
>> 32), (unsigned int)timeout
,
499 -(secs
+ 1), TICKS_PER_SEC
- nsecs
);
505 /****************************************************************/
508 static struct fd
**poll_users
; /* users array */
509 static struct pollfd
*pollfd
; /* poll fd array */
510 static int nb_users
; /* count of array entries actually in use */
511 static int active_users
; /* current number of active users */
512 static int allocated_users
; /* count of allocated entries in the array */
513 static struct fd
**freelist
; /* list of free entries in the array */
515 static int get_next_timeout(void);
517 static inline void fd_poll_event( struct fd
*fd
, int event
)
519 fd
->fd_ops
->poll_event( fd
, event
);
524 static int epoll_fd
= -1;
526 static inline void init_epoll(void)
528 epoll_fd
= epoll_create( 128 );
531 /* set the events that epoll waits for on this fd; helper for set_fd_events */
532 static inline void set_fd_epoll_events( struct fd
*fd
, int user
, int events
)
534 struct epoll_event ev
;
537 if (epoll_fd
== -1) return;
539 if (events
== -1) /* stop waiting on this fd completely */
541 if (pollfd
[user
].fd
== -1) return; /* already removed */
544 else if (pollfd
[user
].fd
== -1)
546 if (pollfd
[user
].events
) return; /* stopped waiting on it, don't restart */
551 if (pollfd
[user
].events
== events
) return; /* nothing to do */
556 memset(&ev
.data
, 0, sizeof(ev
.data
));
559 if (epoll_ctl( epoll_fd
, ctl
, fd
->unix_fd
, &ev
) == -1)
561 if (errno
== ENOMEM
) /* not enough memory, give up on epoll */
566 else perror( "epoll_ctl" ); /* should not happen */
570 static inline void remove_epoll_user( struct fd
*fd
, int user
)
572 if (epoll_fd
== -1) return;
574 if (pollfd
[user
].fd
!= -1)
576 struct epoll_event dummy
;
577 epoll_ctl( epoll_fd
, EPOLL_CTL_DEL
, fd
->unix_fd
, &dummy
);
581 static inline void main_loop_epoll(void)
584 struct epoll_event events
[128];
586 assert( POLLIN
== EPOLLIN
);
587 assert( POLLOUT
== EPOLLOUT
);
588 assert( POLLERR
== EPOLLERR
);
589 assert( POLLHUP
== EPOLLHUP
);
591 if (epoll_fd
== -1) return;
595 timeout
= get_next_timeout();
597 if (!active_users
) break; /* last user removed by a timeout */
598 if (epoll_fd
== -1) break; /* an error occurred with epoll */
600 ret
= epoll_wait( epoll_fd
, events
, ARRAY_SIZE( events
), timeout
);
603 /* put the events into the pollfd array first, like poll does */
604 for (i
= 0; i
< ret
; i
++)
606 int user
= events
[i
].data
.u32
;
607 pollfd
[user
].revents
= events
[i
].events
;
610 /* read events from the pollfd array, as set_fd_events may modify them */
611 for (i
= 0; i
< ret
; i
++)
613 int user
= events
[i
].data
.u32
;
614 if (pollfd
[user
].revents
) fd_poll_event( poll_users
[user
], pollfd
[user
].revents
);
619 #elif defined(HAVE_KQUEUE)
621 static int kqueue_fd
= -1;
623 static inline void init_epoll(void)
625 #ifdef __APPLE__ /* kqueue support is broken in Mac OS < 10.5 */
628 size_t len
= sizeof(release
);
631 mib
[1] = KERN_OSRELEASE
;
632 if (sysctl( mib
, 2, release
, &len
, NULL
, 0 ) == -1) return;
633 if (atoi(release
) < 9) return;
635 kqueue_fd
= kqueue();
638 static inline void set_fd_epoll_events( struct fd
*fd
, int user
, int events
)
642 if (kqueue_fd
== -1) return;
644 EV_SET( &ev
[0], fd
->unix_fd
, EVFILT_READ
, 0, NOTE_LOWAT
, 1, (void *)(long)user
);
645 EV_SET( &ev
[1], fd
->unix_fd
, EVFILT_WRITE
, 0, NOTE_LOWAT
, 1, (void *)(long)user
);
647 if (events
== -1) /* stop waiting on this fd completely */
649 if (pollfd
[user
].fd
== -1) return; /* already removed */
650 ev
[0].flags
|= EV_DELETE
;
651 ev
[1].flags
|= EV_DELETE
;
653 else if (pollfd
[user
].fd
== -1)
655 if (pollfd
[user
].events
) return; /* stopped waiting on it, don't restart */
656 ev
[0].flags
|= EV_ADD
| ((events
& POLLIN
) ? EV_ENABLE
: EV_DISABLE
);
657 ev
[1].flags
|= EV_ADD
| ((events
& POLLOUT
) ? EV_ENABLE
: EV_DISABLE
);
661 if (pollfd
[user
].events
== events
) return; /* nothing to do */
662 ev
[0].flags
|= (events
& POLLIN
) ? EV_ENABLE
: EV_DISABLE
;
663 ev
[1].flags
|= (events
& POLLOUT
) ? EV_ENABLE
: EV_DISABLE
;
666 if (kevent( kqueue_fd
, ev
, 2, NULL
, 0, NULL
) == -1)
668 if (errno
== ENOMEM
) /* not enough memory, give up on kqueue */
673 else perror( "kevent" ); /* should not happen */
677 static inline void remove_epoll_user( struct fd
*fd
, int user
)
679 if (kqueue_fd
== -1) return;
681 if (pollfd
[user
].fd
!= -1)
685 EV_SET( &ev
[0], fd
->unix_fd
, EVFILT_READ
, EV_DELETE
, 0, 0, 0 );
686 EV_SET( &ev
[1], fd
->unix_fd
, EVFILT_WRITE
, EV_DELETE
, 0, 0, 0 );
687 kevent( kqueue_fd
, ev
, 2, NULL
, 0, NULL
);
691 static inline void main_loop_epoll(void)
694 struct kevent events
[128];
696 if (kqueue_fd
== -1) return;
700 timeout
= get_next_timeout();
702 if (!active_users
) break; /* last user removed by a timeout */
703 if (kqueue_fd
== -1) break; /* an error occurred with kqueue */
709 ts
.tv_sec
= timeout
/ 1000;
710 ts
.tv_nsec
= (timeout
% 1000) * 1000000;
711 ret
= kevent( kqueue_fd
, NULL
, 0, events
, ARRAY_SIZE( events
), &ts
);
713 else ret
= kevent( kqueue_fd
, NULL
, 0, events
, ARRAY_SIZE( events
), NULL
);
717 /* put the events into the pollfd array first, like poll does */
718 for (i
= 0; i
< ret
; i
++)
720 long user
= (long)events
[i
].udata
;
721 pollfd
[user
].revents
= 0;
723 for (i
= 0; i
< ret
; i
++)
725 long user
= (long)events
[i
].udata
;
726 if (events
[i
].filter
== EVFILT_READ
) pollfd
[user
].revents
|= POLLIN
;
727 else if (events
[i
].filter
== EVFILT_WRITE
) pollfd
[user
].revents
|= POLLOUT
;
728 if (events
[i
].flags
& EV_EOF
) pollfd
[user
].revents
|= POLLHUP
;
729 if (events
[i
].flags
& EV_ERROR
) pollfd
[user
].revents
|= POLLERR
;
732 /* read events from the pollfd array, as set_fd_events may modify them */
733 for (i
= 0; i
< ret
; i
++)
735 long user
= (long)events
[i
].udata
;
736 if (pollfd
[user
].revents
) fd_poll_event( poll_users
[user
], pollfd
[user
].revents
);
737 pollfd
[user
].revents
= 0;
742 #elif defined(USE_EVENT_PORTS)
744 static int port_fd
= -1;
746 static inline void init_epoll(void)
748 port_fd
= port_create();
751 static inline void set_fd_epoll_events( struct fd
*fd
, int user
, int events
)
755 if (port_fd
== -1) return;
757 if (events
== -1) /* stop waiting on this fd completely */
759 if (pollfd
[user
].fd
== -1) return; /* already removed */
760 port_dissociate( port_fd
, PORT_SOURCE_FD
, fd
->unix_fd
);
762 else if (pollfd
[user
].fd
== -1)
764 if (pollfd
[user
].events
) return; /* stopped waiting on it, don't restart */
765 ret
= port_associate( port_fd
, PORT_SOURCE_FD
, fd
->unix_fd
, events
, (void *)user
);
769 if (pollfd
[user
].events
== events
) return; /* nothing to do */
770 ret
= port_associate( port_fd
, PORT_SOURCE_FD
, fd
->unix_fd
, events
, (void *)user
);
775 if (errno
== ENOMEM
) /* not enough memory, give up on port_associate */
780 else perror( "port_associate" ); /* should not happen */
784 static inline void remove_epoll_user( struct fd
*fd
, int user
)
786 if (port_fd
== -1) return;
788 if (pollfd
[user
].fd
!= -1)
790 port_dissociate( port_fd
, PORT_SOURCE_FD
, fd
->unix_fd
);
794 static inline void main_loop_epoll(void)
796 int i
, nget
, ret
, timeout
;
797 port_event_t events
[128];
799 if (port_fd
== -1) return;
803 timeout
= get_next_timeout();
806 if (!active_users
) break; /* last user removed by a timeout */
807 if (port_fd
== -1) break; /* an error occurred with event completion */
813 ts
.tv_sec
= timeout
/ 1000;
814 ts
.tv_nsec
= (timeout
% 1000) * 1000000;
815 ret
= port_getn( port_fd
, events
, ARRAY_SIZE( events
), &nget
, &ts
);
817 else ret
= port_getn( port_fd
, events
, ARRAY_SIZE( events
), &nget
, NULL
);
819 if (ret
== -1) break; /* an error occurred with event completion */
823 /* put the events into the pollfd array first, like poll does */
824 for (i
= 0; i
< nget
; i
++)
826 long user
= (long)events
[i
].portev_user
;
827 pollfd
[user
].revents
= events
[i
].portev_events
;
830 /* read events from the pollfd array, as set_fd_events may modify them */
831 for (i
= 0; i
< nget
; i
++)
833 long user
= (long)events
[i
].portev_user
;
834 if (pollfd
[user
].revents
) fd_poll_event( poll_users
[user
], pollfd
[user
].revents
);
835 /* if we are still interested, reassociate the fd */
836 if (pollfd
[user
].fd
!= -1) {
837 port_associate( port_fd
, PORT_SOURCE_FD
, pollfd
[user
].fd
, pollfd
[user
].events
, (void *)user
);
843 #else /* HAVE_KQUEUE */
845 static inline void init_epoll(void) { }
846 static inline void set_fd_epoll_events( struct fd
*fd
, int user
, int events
) { }
847 static inline void remove_epoll_user( struct fd
*fd
, int user
) { }
848 static inline void main_loop_epoll(void) { }
850 #endif /* USE_EPOLL */
853 /* add a user in the poll array and return its index, or -1 on failure */
854 static int add_poll_user( struct fd
*fd
)
859 ret
= freelist
- poll_users
;
860 freelist
= (struct fd
**)poll_users
[ret
];
864 if (nb_users
== allocated_users
)
866 struct fd
**newusers
;
867 struct pollfd
*newpoll
;
868 int new_count
= allocated_users
? (allocated_users
+ allocated_users
/ 2) : 16;
869 if (!(newusers
= realloc( poll_users
, new_count
* sizeof(*poll_users
) ))) return -1;
870 if (!(newpoll
= realloc( pollfd
, new_count
* sizeof(*pollfd
) )))
873 poll_users
= newusers
;
878 poll_users
= newusers
;
880 if (!allocated_users
) init_epoll();
881 allocated_users
= new_count
;
886 pollfd
[ret
].events
= 0;
887 pollfd
[ret
].revents
= 0;
888 poll_users
[ret
] = fd
;
893 /* remove a user from the poll list */
894 static void remove_poll_user( struct fd
*fd
, int user
)
897 assert( poll_users
[user
] == fd
);
899 remove_epoll_user( fd
, user
);
900 pollfd
[user
].fd
= -1;
901 pollfd
[user
].events
= 0;
902 pollfd
[user
].revents
= 0;
903 poll_users
[user
] = (struct fd
*)freelist
;
904 freelist
= &poll_users
[user
];
908 /* process pending timeouts and return the time until the next timeout, in milliseconds */
909 static int get_next_timeout(void)
911 int ret
= user_shared_data
? user_shared_data_timeout
: -1;
913 if (!list_empty( &abs_timeout_list
) || !list_empty( &rel_timeout_list
))
915 struct list expired_list
, *ptr
;
917 /* first remove all expired timers from the list */
919 list_init( &expired_list
);
920 while ((ptr
= list_head( &abs_timeout_list
)) != NULL
)
922 struct timeout_user
*timeout
= LIST_ENTRY( ptr
, struct timeout_user
, entry
);
924 if (timeout
->when
<= current_time
)
926 list_remove( &timeout
->entry
);
927 list_add_tail( &expired_list
, &timeout
->entry
);
931 while ((ptr
= list_head( &rel_timeout_list
)) != NULL
)
933 struct timeout_user
*timeout
= LIST_ENTRY( ptr
, struct timeout_user
, entry
);
935 if (-timeout
->when
<= monotonic_time
)
937 list_remove( &timeout
->entry
);
938 list_add_tail( &expired_list
, &timeout
->entry
);
943 /* now call the callback for all the removed timers */
945 while ((ptr
= list_head( &expired_list
)) != NULL
)
947 struct timeout_user
*timeout
= LIST_ENTRY( ptr
, struct timeout_user
, entry
);
948 list_remove( &timeout
->entry
);
949 timeout
->callback( timeout
->private );
953 if ((ptr
= list_head( &abs_timeout_list
)) != NULL
)
955 struct timeout_user
*timeout
= LIST_ENTRY( ptr
, struct timeout_user
, entry
);
956 int diff
= (timeout
->when
- current_time
+ 9999) / 10000;
957 if (diff
< 0) diff
= 0;
958 if (ret
== -1 || diff
< ret
) ret
= diff
;
961 if ((ptr
= list_head( &rel_timeout_list
)) != NULL
)
963 struct timeout_user
*timeout
= LIST_ENTRY( ptr
, struct timeout_user
, entry
);
964 int diff
= (-timeout
->when
- monotonic_time
+ 9999) / 10000;
965 if (diff
< 0) diff
= 0;
966 if (ret
== -1 || diff
< ret
) ret
= diff
;
972 /* server main poll() loop */
978 server_start_time
= current_time
;
981 /* fall through to normal poll loop */
985 timeout
= get_next_timeout();
987 if (!active_users
) break; /* last user removed by a timeout */
989 ret
= poll( pollfd
, nb_users
, timeout
);
994 for (i
= 0; i
< nb_users
; i
++)
996 if (pollfd
[i
].revents
)
998 fd_poll_event( poll_users
[i
], pollfd
[i
].revents
);
1007 /****************************************************************/
1008 /* device functions */
1010 static struct list device_hash
[DEVICE_HASH_SIZE
];
1012 static int is_device_removable( dev_t dev
, int unix_fd
)
1014 #if defined(linux) && defined(HAVE_FSTATFS)
1017 /* check for floppy disk */
1018 if (major(dev
) == FLOPPY_MAJOR
) return 1;
1020 if (fstatfs( unix_fd
, &stfs
) == -1) return 0;
1021 return (stfs
.f_type
== 0x9660 || /* iso9660 */
1022 stfs
.f_type
== 0x9fa1 || /* supermount */
1023 stfs
.f_type
== 0x15013346); /* udf */
1024 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) || defined(__APPLE__)
1027 if (fstatfs( unix_fd
, &stfs
) == -1) return 0;
1028 return (!strcmp("cd9660", stfs
.f_fstypename
) || !strcmp("udf", stfs
.f_fstypename
));
1029 #elif defined(__NetBSD__)
1030 struct statvfs stfs
;
1032 if (fstatvfs( unix_fd
, &stfs
) == -1) return 0;
1033 return (!strcmp("cd9660", stfs
.f_fstypename
) || !strcmp("udf", stfs
.f_fstypename
));
1035 # include <sys/dkio.h>
1036 # include <sys/vtoc.h>
1037 struct dk_cinfo dkinf
;
1038 if (ioctl( unix_fd
, DKIOCINFO
, &dkinf
) == -1) return 0;
1039 return (dkinf
.dki_ctype
== DKC_CDROM
||
1040 dkinf
.dki_ctype
== DKC_NCRFLOPPY
||
1041 dkinf
.dki_ctype
== DKC_SMSFLOPPY
||
1042 dkinf
.dki_ctype
== DKC_INTEL82072
||
1043 dkinf
.dki_ctype
== DKC_INTEL82077
);
1049 /* retrieve the device object for a given fd, creating it if needed */
1050 static struct device
*get_device( dev_t dev
, int unix_fd
)
1052 struct device
*device
;
1053 unsigned int i
, hash
= dev
% DEVICE_HASH_SIZE
;
1055 if (device_hash
[hash
].next
)
1057 LIST_FOR_EACH_ENTRY( device
, &device_hash
[hash
], struct device
, entry
)
1058 if (device
->dev
== dev
) return (struct device
*)grab_object( device
);
1060 else list_init( &device_hash
[hash
] );
1062 /* not found, create it */
1064 if (unix_fd
== -1) return NULL
;
1065 if ((device
= alloc_object( &device_ops
)))
1068 device
->removable
= is_device_removable( dev
, unix_fd
);
1069 for (i
= 0; i
< INODE_HASH_SIZE
; i
++) list_init( &device
->inode_hash
[i
] );
1070 list_add_head( &device_hash
[hash
], &device
->entry
);
1075 static void device_dump( struct object
*obj
, int verbose
)
1077 struct device
*device
= (struct device
*)obj
;
1078 fprintf( stderr
, "Device dev=" );
1079 DUMP_LONG_LONG( device
->dev
);
1080 fprintf( stderr
, "\n" );
1083 static void device_destroy( struct object
*obj
)
1085 struct device
*device
= (struct device
*)obj
;
1088 for (i
= 0; i
< INODE_HASH_SIZE
; i
++)
1089 assert( list_empty(&device
->inode_hash
[i
]) );
1091 list_remove( &device
->entry
); /* remove it from the hash table */
1095 /****************************************************************/
1096 /* inode functions */
1098 /* close all pending file descriptors in the closed list */
1099 static void inode_close_pending( struct inode
*inode
, int keep_unlinks
)
1101 struct list
*ptr
= list_head( &inode
->closed
);
1105 struct closed_fd
*fd
= LIST_ENTRY( ptr
, struct closed_fd
, entry
);
1106 struct list
*next
= list_next( &inode
->closed
, ptr
);
1108 if (fd
->unix_fd
!= -1)
1110 close( fd
->unix_fd
);
1113 if (!keep_unlinks
|| !fd
->unlink
) /* get rid of it unless there's an unlink pending on that file */
1116 free( fd
->unix_name
);
1123 static void inode_dump( struct object
*obj
, int verbose
)
1125 struct inode
*inode
= (struct inode
*)obj
;
1126 fprintf( stderr
, "Inode device=%p ino=", inode
->device
);
1127 DUMP_LONG_LONG( inode
->ino
);
1128 fprintf( stderr
, "\n" );
1131 static void inode_destroy( struct object
*obj
)
1133 struct inode
*inode
= (struct inode
*)obj
;
1136 assert( list_empty(&inode
->open
) );
1137 assert( list_empty(&inode
->locks
) );
1139 list_remove( &inode
->entry
);
1141 while ((ptr
= list_head( &inode
->closed
)))
1143 struct closed_fd
*fd
= LIST_ENTRY( ptr
, struct closed_fd
, entry
);
1145 if (fd
->unix_fd
!= -1) close( fd
->unix_fd
);
1148 /* make sure it is still the same file */
1150 if (!stat( fd
->unix_name
, &st
) && st
.st_dev
== inode
->device
->dev
&& st
.st_ino
== inode
->ino
)
1152 if (S_ISDIR(st
.st_mode
)) rmdir( fd
->unix_name
);
1153 else unlink( fd
->unix_name
);
1156 free( fd
->unix_name
);
1159 release_object( inode
->device
);
1162 /* retrieve the inode object for a given fd, creating it if needed */
1163 static struct inode
*get_inode( dev_t dev
, ino_t ino
, int unix_fd
)
1165 struct device
*device
;
1166 struct inode
*inode
;
1167 unsigned int hash
= ino
% INODE_HASH_SIZE
;
1169 if (!(device
= get_device( dev
, unix_fd
))) return NULL
;
1171 LIST_FOR_EACH_ENTRY( inode
, &device
->inode_hash
[hash
], struct inode
, entry
)
1173 if (inode
->ino
== ino
)
1175 release_object( device
);
1176 return (struct inode
*)grab_object( inode
);
1180 /* not found, create it */
1181 if ((inode
= alloc_object( &inode_ops
)))
1183 inode
->device
= device
;
1185 list_init( &inode
->open
);
1186 list_init( &inode
->locks
);
1187 list_init( &inode
->closed
);
1188 list_add_head( &device
->inode_hash
[hash
], &inode
->entry
);
1190 else release_object( device
);
1195 /* add fd to the inode list of file descriptors to close */
1196 static void inode_add_closed_fd( struct inode
*inode
, struct closed_fd
*fd
)
1198 if (!list_empty( &inode
->locks
))
1200 list_add_head( &inode
->closed
, &fd
->entry
);
1202 else if (fd
->unlink
) /* close the fd but keep the structure around for unlink */
1204 if (fd
->unix_fd
!= -1) close( fd
->unix_fd
);
1206 list_add_head( &inode
->closed
, &fd
->entry
);
1208 else /* no locks on this inode and no unlink, get rid of the fd */
1210 if (fd
->unix_fd
!= -1) close( fd
->unix_fd
);
1211 free( fd
->unix_name
);
1217 /****************************************************************/
1218 /* file lock functions */
1220 static void file_lock_dump( struct object
*obj
, int verbose
)
1222 struct file_lock
*lock
= (struct file_lock
*)obj
;
1223 fprintf( stderr
, "Lock %s fd=%p proc=%p start=",
1224 lock
->shared
? "shared" : "excl", lock
->fd
, lock
->process
);
1225 DUMP_LONG_LONG( lock
->start
);
1226 fprintf( stderr
, " end=" );
1227 DUMP_LONG_LONG( lock
->end
);
1228 fprintf( stderr
, "\n" );
1231 static int file_lock_signaled( struct object
*obj
, struct wait_queue_entry
*entry
)
1233 struct file_lock
*lock
= (struct file_lock
*)obj
;
1234 /* lock is signaled if it has lost its owner */
1235 return !lock
->process
;
1238 /* set (or remove) a Unix lock if possible for the given range */
1239 static int set_unix_lock( struct fd
*fd
, file_pos_t start
, file_pos_t end
, int type
)
1243 if (!fd
->fs_locks
) return 1; /* no fs locks possible for this fd */
1246 if (start
== end
) return 1; /* can't set zero-byte lock */
1247 if (start
> max_unix_offset
) return 1; /* ignore it */
1249 fl
.l_whence
= SEEK_SET
;
1251 if (!end
|| end
> max_unix_offset
) fl
.l_len
= 0;
1252 else fl
.l_len
= end
- start
;
1253 if (fcntl( fd
->unix_fd
, F_SETLK
, &fl
) != -1) return 1;
1258 /* check whether locks work at all on this file system */
1259 if (fcntl( fd
->unix_fd
, F_GETLK
, &fl
) != -1)
1261 set_error( STATUS_FILE_LOCK_CONFLICT
);
1268 /* no locking on this fs, just ignore it */
1272 set_error( STATUS_FILE_LOCK_CONFLICT
);
1275 /* this can happen if we try to set a write lock on a read-only file */
1276 /* try to at least grab a read lock */
1277 if (fl
.l_type
== F_WRLCK
)
1282 set_error( STATUS_ACCESS_DENIED
);
1288 /* this can happen if off_t is 64-bit but the kernel only supports 32-bit */
1289 /* in that case we shrink the limit and retry */
1290 if (max_unix_offset
> INT_MAX
)
1292 max_unix_offset
= INT_MAX
;
1303 /* check if interval [start;end) overlaps the lock */
1304 static inline int lock_overlaps( struct file_lock
*lock
, file_pos_t start
, file_pos_t end
)
1306 if (lock
->end
&& start
>= lock
->end
) return 0;
1307 if (end
&& lock
->start
>= end
) return 0;
1311 /* remove Unix locks for all bytes in the specified area that are no longer locked */
1312 static void remove_unix_locks( struct fd
*fd
, file_pos_t start
, file_pos_t end
)
1320 } *first
, *cur
, *next
, *buffer
;
1325 if (!fd
->inode
) return;
1326 if (!fd
->fs_locks
) return;
1327 if (start
== end
|| start
> max_unix_offset
) return;
1328 if (!end
|| end
> max_unix_offset
) end
= max_unix_offset
+ 1;
1330 /* count the number of locks overlapping the specified area */
1332 LIST_FOR_EACH( ptr
, &fd
->inode
->locks
)
1334 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, inode_entry
);
1335 if (lock
->start
== lock
->end
) continue;
1336 if (lock_overlaps( lock
, start
, end
)) count
++;
1339 if (!count
) /* no locks at all, we can unlock everything */
1341 set_unix_lock( fd
, start
, end
, F_UNLCK
);
1345 /* allocate space for the list of holes */
1346 /* max. number of holes is number of locks + 1 */
1348 if (!(buffer
= malloc( sizeof(*buffer
) * (count
+1) ))) return;
1352 first
->start
= start
;
1356 /* build a sorted list of unlocked holes in the specified area */
1358 LIST_FOR_EACH( ptr
, &fd
->inode
->locks
)
1360 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, inode_entry
);
1361 if (lock
->start
== lock
->end
) continue;
1362 if (!lock_overlaps( lock
, start
, end
)) continue;
1364 /* go through all the holes touched by this lock */
1365 for (cur
= first
; cur
; cur
= cur
->next
)
1367 if (cur
->end
<= lock
->start
) continue; /* hole is before start of lock */
1368 if (lock
->end
&& cur
->start
>= lock
->end
) break; /* hole is after end of lock */
1370 /* now we know that lock is overlapping hole */
1372 if (cur
->start
>= lock
->start
) /* lock starts before hole, shrink from start */
1374 cur
->start
= lock
->end
;
1375 if (cur
->start
&& cur
->start
< cur
->end
) break; /* done with this lock */
1376 /* now hole is empty, remove it */
1377 if (cur
->next
) cur
->next
->prev
= cur
->prev
;
1378 if (cur
->prev
) cur
->prev
->next
= cur
->next
;
1379 else if (!(first
= cur
->next
)) goto done
; /* no more holes at all */
1381 else if (!lock
->end
|| cur
->end
<= lock
->end
) /* lock larger than hole, shrink from end */
1383 cur
->end
= lock
->start
;
1384 assert( cur
->start
< cur
->end
);
1386 else /* lock is in the middle of hole, split hole in two */
1389 next
->next
= cur
->next
;
1391 next
->start
= lock
->end
;
1392 next
->end
= cur
->end
;
1393 cur
->end
= lock
->start
;
1394 assert( next
->start
< next
->end
);
1395 assert( cur
->end
< next
->start
);
1397 break; /* done with this lock */
1402 /* clear Unix locks for all the holes */
1404 for (cur
= first
; cur
; cur
= cur
->next
)
1405 set_unix_lock( fd
, cur
->start
, cur
->end
, F_UNLCK
);
1411 /* create a new lock on a fd */
1412 static struct file_lock
*add_lock( struct fd
*fd
, int shared
, file_pos_t start
, file_pos_t end
)
1414 struct file_lock
*lock
;
1416 if (!(lock
= alloc_object( &file_lock_ops
))) return NULL
;
1417 lock
->shared
= shared
;
1418 lock
->start
= start
;
1421 lock
->process
= current
->process
;
1423 /* now try to set a Unix lock */
1424 if (!set_unix_lock( lock
->fd
, lock
->start
, lock
->end
, lock
->shared
? F_RDLCK
: F_WRLCK
))
1426 release_object( lock
);
1429 list_add_tail( &fd
->locks
, &lock
->fd_entry
);
1430 list_add_tail( &fd
->inode
->locks
, &lock
->inode_entry
);
1431 list_add_tail( &lock
->process
->locks
, &lock
->proc_entry
);
1435 /* remove an existing lock */
1436 static void remove_lock( struct file_lock
*lock
, int remove_unix
)
1438 struct inode
*inode
= lock
->fd
->inode
;
1440 list_remove( &lock
->fd_entry
);
1441 list_remove( &lock
->inode_entry
);
1442 list_remove( &lock
->proc_entry
);
1443 if (remove_unix
) remove_unix_locks( lock
->fd
, lock
->start
, lock
->end
);
1444 if (list_empty( &inode
->locks
)) inode_close_pending( inode
, 1 );
1445 lock
->process
= NULL
;
1446 wake_up( &lock
->obj
, 0 );
1447 release_object( lock
);
1450 /* remove all locks owned by a given process */
1451 void remove_process_locks( struct process
*process
)
1455 while ((ptr
= list_head( &process
->locks
)))
1457 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, proc_entry
);
1458 remove_lock( lock
, 1 ); /* this removes it from the list */
1462 /* remove all locks on a given fd */
1463 static void remove_fd_locks( struct fd
*fd
)
1465 file_pos_t start
= FILE_POS_T_MAX
, end
= 0;
1468 while ((ptr
= list_head( &fd
->locks
)))
1470 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, fd_entry
);
1471 if (lock
->start
< start
) start
= lock
->start
;
1472 if (!lock
->end
|| lock
->end
> end
) end
= lock
->end
- 1;
1473 remove_lock( lock
, 0 );
1475 if (start
< end
) remove_unix_locks( fd
, start
, end
+ 1 );
1478 /* add a lock on an fd */
1479 /* returns handle to wait on */
1480 obj_handle_t
lock_fd( struct fd
*fd
, file_pos_t start
, file_pos_t count
, int shared
, int wait
)
1483 file_pos_t end
= start
+ count
;
1485 if (!fd
->inode
) /* not a regular file */
1487 set_error( STATUS_INVALID_DEVICE_REQUEST
);
1491 /* don't allow wrapping locks */
1492 if (end
&& end
< start
)
1494 set_error( STATUS_INVALID_PARAMETER
);
1498 /* check if another lock on that file overlaps the area */
1499 LIST_FOR_EACH( ptr
, &fd
->inode
->locks
)
1501 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, inode_entry
);
1502 if (!lock_overlaps( lock
, start
, end
)) continue;
1503 if (shared
&& (lock
->shared
|| lock
->fd
== fd
)) continue;
1507 set_error( STATUS_FILE_LOCK_CONFLICT
);
1510 set_error( STATUS_PENDING
);
1511 return alloc_handle( current
->process
, lock
, SYNCHRONIZE
, 0 );
1514 /* not found, add it */
1515 if (add_lock( fd
, shared
, start
, end
)) return 0;
1516 if (get_error() == STATUS_FILE_LOCK_CONFLICT
)
1518 /* Unix lock conflict -> tell client to wait and retry */
1519 if (wait
) set_error( STATUS_PENDING
);
1524 /* remove a lock on an fd */
1525 void unlock_fd( struct fd
*fd
, file_pos_t start
, file_pos_t count
)
1528 file_pos_t end
= start
+ count
;
1530 /* find an existing lock with the exact same parameters */
1531 LIST_FOR_EACH( ptr
, &fd
->locks
)
1533 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, fd_entry
);
1534 if ((lock
->start
== start
) && (lock
->end
== end
))
1536 remove_lock( lock
, 1 );
1540 set_error( STATUS_FILE_LOCK_CONFLICT
);
1544 /****************************************************************/
1545 /* file descriptor functions */
1547 static void fd_dump( struct object
*obj
, int verbose
)
1549 struct fd
*fd
= (struct fd
*)obj
;
1550 fprintf( stderr
, "Fd unix_fd=%d user=%p options=%08x", fd
->unix_fd
, fd
->user
, fd
->options
);
1551 if (fd
->inode
) fprintf( stderr
, " inode=%p unlink=%d", fd
->inode
, fd
->closed
->unlink
);
1552 fprintf( stderr
, "\n" );
1555 static void fd_destroy( struct object
*obj
)
1557 struct fd
*fd
= (struct fd
*)obj
;
1559 free_async_queue( &fd
->read_q
);
1560 free_async_queue( &fd
->write_q
);
1561 free_async_queue( &fd
->wait_q
);
1563 if (fd
->completion
) release_object( fd
->completion
);
1564 remove_fd_locks( fd
);
1565 list_remove( &fd
->inode_entry
);
1566 if (fd
->poll_index
!= -1) remove_poll_user( fd
, fd
->poll_index
);
1569 inode_add_closed_fd( fd
->inode
, fd
->closed
);
1570 release_object( fd
->inode
);
1572 else /* no inode, close it right away */
1574 if (fd
->unix_fd
!= -1) close( fd
->unix_fd
);
1575 free( fd
->unix_name
);
1579 /* check if the desired access is possible without violating */
1580 /* the sharing mode of other opens of the same file */
1581 static unsigned int check_sharing( struct fd
*fd
, unsigned int access
, unsigned int sharing
,
1582 unsigned int open_flags
, unsigned int options
)
1584 /* only a few access bits are meaningful wrt sharing */
1585 const unsigned int read_access
= FILE_READ_DATA
| FILE_EXECUTE
;
1586 const unsigned int write_access
= FILE_WRITE_DATA
| FILE_APPEND_DATA
;
1587 const unsigned int all_access
= read_access
| write_access
| DELETE
;
1589 unsigned int existing_sharing
= FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
;
1590 unsigned int existing_access
= 0;
1593 fd
->access
= access
;
1594 fd
->sharing
= sharing
;
1596 LIST_FOR_EACH( ptr
, &fd
->inode
->open
)
1598 struct fd
*fd_ptr
= LIST_ENTRY( ptr
, struct fd
, inode_entry
);
1601 /* if access mode is 0, sharing mode is ignored */
1602 if (fd_ptr
->access
& all_access
) existing_sharing
&= fd_ptr
->sharing
;
1603 existing_access
|= fd_ptr
->access
;
1607 if (((access
& read_access
) && !(existing_sharing
& FILE_SHARE_READ
)) ||
1608 ((access
& write_access
) && !(existing_sharing
& FILE_SHARE_WRITE
)) ||
1609 ((access
& DELETE
) && !(existing_sharing
& FILE_SHARE_DELETE
)))
1610 return STATUS_SHARING_VIOLATION
;
1611 if (((existing_access
& FILE_MAPPING_WRITE
) && !(sharing
& FILE_SHARE_WRITE
)) ||
1612 ((existing_access
& FILE_MAPPING_IMAGE
) && (access
& FILE_WRITE_DATA
)))
1613 return STATUS_SHARING_VIOLATION
;
1614 if ((existing_access
& FILE_MAPPING_IMAGE
) && (options
& FILE_DELETE_ON_CLOSE
))
1615 return STATUS_CANNOT_DELETE
;
1616 if ((existing_access
& FILE_MAPPING_ACCESS
) && (open_flags
& O_TRUNC
))
1617 return STATUS_USER_MAPPED_FILE
;
1618 if (!(access
& all_access
))
1619 return 0; /* if access mode is 0, sharing mode is ignored (except for mappings) */
1620 if (((existing_access
& read_access
) && !(sharing
& FILE_SHARE_READ
)) ||
1621 ((existing_access
& write_access
) && !(sharing
& FILE_SHARE_WRITE
)) ||
1622 ((existing_access
& DELETE
) && !(sharing
& FILE_SHARE_DELETE
)))
1623 return STATUS_SHARING_VIOLATION
;
1627 /* set the events that select waits for on this fd */
1628 void set_fd_events( struct fd
*fd
, int events
)
1630 int user
= fd
->poll_index
;
1631 assert( poll_users
[user
] == fd
);
1633 set_fd_epoll_events( fd
, user
, events
);
1635 if (events
== -1) /* stop waiting on this fd completely */
1637 pollfd
[user
].fd
= -1;
1638 pollfd
[user
].events
= POLLERR
;
1639 pollfd
[user
].revents
= 0;
1641 else if (pollfd
[user
].fd
!= -1 || !pollfd
[user
].events
)
1643 pollfd
[user
].fd
= fd
->unix_fd
;
1644 pollfd
[user
].events
= events
;
1648 /* prepare an fd for unmounting its corresponding device */
1649 static inline void unmount_fd( struct fd
*fd
)
1651 assert( fd
->inode
);
1653 async_wake_up( &fd
->read_q
, STATUS_VOLUME_DISMOUNTED
);
1654 async_wake_up( &fd
->write_q
, STATUS_VOLUME_DISMOUNTED
);
1656 if (fd
->poll_index
!= -1) set_fd_events( fd
, -1 );
1658 if (fd
->unix_fd
!= -1) close( fd
->unix_fd
);
1661 fd
->no_fd_status
= STATUS_VOLUME_DISMOUNTED
;
1662 fd
->closed
->unix_fd
= -1;
1663 fd
->closed
->unlink
= 0;
1665 /* stop using Unix locks on this fd (existing locks have been removed by close) */
1669 /* allocate an fd object, without setting the unix fd yet */
1670 static struct fd
*alloc_fd_object(void)
1672 struct fd
*fd
= alloc_object( &fd_ops
);
1674 if (!fd
) return NULL
;
1684 fd
->unix_name
= NULL
;
1688 fd
->poll_index
= -1;
1689 fd
->completion
= NULL
;
1691 init_async_queue( &fd
->read_q
);
1692 init_async_queue( &fd
->write_q
);
1693 init_async_queue( &fd
->wait_q
);
1694 list_init( &fd
->inode_entry
);
1695 list_init( &fd
->locks
);
1697 if ((fd
->poll_index
= add_poll_user( fd
)) == -1)
1699 release_object( fd
);
1705 /* allocate a pseudo fd object, for objects that need to behave like files but don't have a unix fd */
1706 struct fd
*alloc_pseudo_fd( const struct fd_ops
*fd_user_ops
, struct object
*user
, unsigned int options
)
1708 struct fd
*fd
= alloc_object( &fd_ops
);
1710 if (!fd
) return NULL
;
1712 fd
->fd_ops
= fd_user_ops
;
1717 fd
->options
= options
;
1719 fd
->unix_name
= NULL
;
1724 fd
->poll_index
= -1;
1725 fd
->completion
= NULL
;
1727 fd
->no_fd_status
= STATUS_BAD_DEVICE_TYPE
;
1728 init_async_queue( &fd
->read_q
);
1729 init_async_queue( &fd
->write_q
);
1730 init_async_queue( &fd
->wait_q
);
1731 list_init( &fd
->inode_entry
);
1732 list_init( &fd
->locks
);
1736 /* duplicate an fd object for a different user */
1737 struct fd
*dup_fd_object( struct fd
*orig
, unsigned int access
, unsigned int sharing
, unsigned int options
)
1740 struct fd
*fd
= alloc_fd_object();
1742 if (!fd
) return NULL
;
1744 fd
->options
= options
;
1745 fd
->cacheable
= orig
->cacheable
;
1747 if (orig
->unix_name
)
1749 if (!(fd
->unix_name
= mem_alloc( strlen(orig
->unix_name
) + 1 ))) goto failed
;
1750 strcpy( fd
->unix_name
, orig
->unix_name
);
1755 struct closed_fd
*closed
= mem_alloc( sizeof(*closed
) );
1756 if (!closed
) goto failed
;
1757 if ((fd
->unix_fd
= dup( orig
->unix_fd
)) == -1)
1763 closed
->unix_fd
= fd
->unix_fd
;
1765 closed
->unix_name
= fd
->unix_name
;
1766 fd
->closed
= closed
;
1767 fd
->inode
= (struct inode
*)grab_object( orig
->inode
);
1768 list_add_head( &fd
->inode
->open
, &fd
->inode_entry
);
1769 if ((err
= check_sharing( fd
, access
, sharing
, 0, options
)))
1775 else if ((fd
->unix_fd
= dup( orig
->unix_fd
)) == -1)
1783 release_object( fd
);
1787 /* find an existing fd object that can be reused for a mapping */
1788 struct fd
*get_fd_object_for_mapping( struct fd
*fd
, unsigned int access
, unsigned int sharing
)
1792 if (!fd
->inode
) return NULL
;
1794 LIST_FOR_EACH_ENTRY( fd_ptr
, &fd
->inode
->open
, struct fd
, inode_entry
)
1795 if (fd_ptr
->access
== access
&& fd_ptr
->sharing
== sharing
)
1796 return (struct fd
*)grab_object( fd_ptr
);
1801 /* sets the user of an fd that previously had no user */
1802 void set_fd_user( struct fd
*fd
, const struct fd_ops
*user_ops
, struct object
*user
)
1804 assert( fd
->fd_ops
== NULL
);
1805 fd
->fd_ops
= user_ops
;
1809 char *dup_fd_name( struct fd
*root
, const char *name
)
1813 if (!root
) return strdup( name
);
1814 if (!root
->unix_name
) return NULL
;
1817 if (name
[0] == '.' && (!name
[1] || name
[1] == '/')) name
++;
1819 if ((ret
= malloc( strlen(root
->unix_name
) + strlen(name
) + 2 )))
1821 strcpy( ret
, root
->unix_name
);
1822 if (name
[0] && name
[0] != '/') strcat( ret
, "/" );
1823 strcat( ret
, name
);
1828 /* open() wrapper that returns a struct fd with no fd user set */
1829 struct fd
*open_fd( struct fd
*root
, const char *name
, int flags
, mode_t
*mode
, unsigned int access
,
1830 unsigned int sharing
, unsigned int options
)
1833 struct closed_fd
*closed_fd
;
1839 if (((options
& FILE_DELETE_ON_CLOSE
) && !(access
& DELETE
)) ||
1840 ((options
& FILE_DIRECTORY_FILE
) && (flags
& O_TRUNC
)))
1842 set_error( STATUS_INVALID_PARAMETER
);
1846 if (!(fd
= alloc_fd_object())) return NULL
;
1848 fd
->options
= options
;
1849 if (!(closed_fd
= mem_alloc( sizeof(*closed_fd
) )))
1851 release_object( fd
);
1857 if ((root_fd
= get_unix_fd( root
)) == -1) goto error
;
1858 if (fchdir( root_fd
) == -1)
1866 /* create the directory if needed */
1867 if ((options
& FILE_DIRECTORY_FILE
) && (flags
& O_CREAT
))
1869 if (mkdir( name
, *mode
) == -1)
1871 if (errno
!= EEXIST
|| (flags
& O_EXCL
))
1877 flags
&= ~(O_CREAT
| O_EXCL
| O_TRUNC
);
1880 if ((access
& FILE_UNIX_WRITE_ACCESS
) && !(options
& FILE_DIRECTORY_FILE
))
1882 if (access
& FILE_UNIX_READ_ACCESS
) rw_mode
= O_RDWR
;
1883 else rw_mode
= O_WRONLY
;
1885 else rw_mode
= O_RDONLY
;
1887 if ((fd
->unix_fd
= open( name
, rw_mode
| (flags
& ~O_TRUNC
), *mode
)) == -1)
1889 /* if we tried to open a directory for write access, retry read-only */
1890 if (errno
== EISDIR
)
1892 if ((access
& FILE_UNIX_WRITE_ACCESS
) || (flags
& O_CREAT
))
1893 fd
->unix_fd
= open( name
, O_RDONLY
| (flags
& ~(O_TRUNC
| O_CREAT
| O_EXCL
)), *mode
);
1896 if (fd
->unix_fd
== -1)
1903 fd
->unix_name
= NULL
;
1904 if ((path
= dup_fd_name( root
, name
)))
1906 fd
->unix_name
= realpath( path
, NULL
);
1910 closed_fd
->unix_fd
= fd
->unix_fd
;
1911 closed_fd
->unlink
= 0;
1912 closed_fd
->unix_name
= fd
->unix_name
;
1913 fstat( fd
->unix_fd
, &st
);
1916 /* only bother with an inode for normal files and directories */
1917 if (S_ISREG(st
.st_mode
) || S_ISDIR(st
.st_mode
))
1920 struct inode
*inode
= get_inode( st
.st_dev
, st
.st_ino
, fd
->unix_fd
);
1924 /* we can close the fd because there are no others open on the same file,
1925 * otherwise we wouldn't have failed to allocate a new inode
1930 fd
->closed
= closed_fd
;
1931 fd
->cacheable
= !inode
->device
->removable
;
1932 list_add_head( &inode
->open
, &fd
->inode_entry
);
1935 /* check directory options */
1936 if ((options
& FILE_DIRECTORY_FILE
) && !S_ISDIR(st
.st_mode
))
1938 set_error( STATUS_NOT_A_DIRECTORY
);
1941 if ((options
& FILE_NON_DIRECTORY_FILE
) && S_ISDIR(st
.st_mode
))
1943 set_error( STATUS_FILE_IS_A_DIRECTORY
);
1946 if ((err
= check_sharing( fd
, access
, sharing
, flags
, options
)))
1952 /* can't unlink files if we don't have permission to access */
1953 if ((options
& FILE_DELETE_ON_CLOSE
) && !(flags
& O_CREAT
) &&
1954 !(st
.st_mode
& (S_IWUSR
| S_IWGRP
| S_IWOTH
)))
1956 set_error( STATUS_CANNOT_DELETE
);
1960 fd
->closed
->unlink
= (options
& FILE_DELETE_ON_CLOSE
) ? -1 : 0;
1961 if (flags
& O_TRUNC
)
1963 if (S_ISDIR(st
.st_mode
))
1965 set_error( STATUS_OBJECT_NAME_COLLISION
);
1968 ftruncate( fd
->unix_fd
, 0 );
1971 else /* special file */
1973 if (options
& FILE_DELETE_ON_CLOSE
) /* we can't unlink special files */
1975 set_error( STATUS_INVALID_PARAMETER
);
1981 if (root_fd
!= -1) fchdir( server_dir_fd
); /* go back to the server dir */
1985 release_object( fd
);
1987 if (root_fd
!= -1) fchdir( server_dir_fd
); /* go back to the server dir */
1991 /* create an fd for an anonymous file */
1992 /* if the function fails the unix fd is closed */
1993 struct fd
*create_anonymous_fd( const struct fd_ops
*fd_user_ops
, int unix_fd
, struct object
*user
,
1994 unsigned int options
)
1996 struct fd
*fd
= alloc_fd_object();
2000 set_fd_user( fd
, fd_user_ops
, user
);
2001 fd
->unix_fd
= unix_fd
;
2002 fd
->options
= options
;
2009 /* retrieve the object that is using an fd */
2010 void *get_fd_user( struct fd
*fd
)
2015 /* retrieve the opening options for the fd */
2016 unsigned int get_fd_options( struct fd
*fd
)
2021 /* check if fd is in overlapped mode */
2022 int is_fd_overlapped( struct fd
*fd
)
2024 return !(fd
->options
& (FILE_SYNCHRONOUS_IO_ALERT
| FILE_SYNCHRONOUS_IO_NONALERT
));
2027 /* retrieve the unix fd for an object */
2028 int get_unix_fd( struct fd
*fd
)
2030 if (fd
->unix_fd
== -1) set_error( fd
->no_fd_status
);
2034 /* check if two file descriptors point to the same file */
2035 int is_same_file_fd( struct fd
*fd1
, struct fd
*fd2
)
2037 return fd1
->inode
== fd2
->inode
;
2040 /* allow the fd to be cached (can't be reset once set) */
2041 void allow_fd_caching( struct fd
*fd
)
2046 /* check if fd is on a removable device */
2047 int is_fd_removable( struct fd
*fd
)
2049 return (fd
->inode
&& fd
->inode
->device
->removable
);
2052 /* set or clear the fd signaled state */
2053 void set_fd_signaled( struct fd
*fd
, int signaled
)
2055 if (fd
->comp_flags
& FILE_SKIP_SET_EVENT_ON_HANDLE
) return;
2056 fd
->signaled
= signaled
;
2057 if (signaled
) wake_up( fd
->user
, 0 );
2060 /* check if fd is signaled */
2061 int is_fd_signaled( struct fd
*fd
)
2063 return fd
->signaled
;
2066 /* handler for close_handle that refuses to close fd-associated handles in other processes */
2067 int fd_close_handle( struct object
*obj
, struct process
*process
, obj_handle_t handle
)
2069 return (!current
|| current
->process
== process
);
2072 /* check if events are pending and if yes return which one(s) */
2073 int check_fd_events( struct fd
*fd
, int events
)
2077 if (fd
->unix_fd
== -1) return POLLERR
;
2078 if (fd
->inode
) return events
; /* regular files are always signaled */
2080 pfd
.fd
= fd
->unix_fd
;
2081 pfd
.events
= events
;
2082 if (poll( &pfd
, 1, 0 ) <= 0) return 0;
2086 /* default signaled() routine for objects that poll() on an fd */
2087 int default_fd_signaled( struct object
*obj
, struct wait_queue_entry
*entry
)
2089 struct fd
*fd
= get_obj_fd( obj
);
2090 int ret
= fd
->signaled
;
2091 release_object( fd
);
2095 /* default map_access() routine for objects that behave like an fd */
2096 unsigned int default_fd_map_access( struct object
*obj
, unsigned int access
)
2098 if (access
& GENERIC_READ
) access
|= FILE_GENERIC_READ
;
2099 if (access
& GENERIC_WRITE
) access
|= FILE_GENERIC_WRITE
;
2100 if (access
& GENERIC_EXECUTE
) access
|= FILE_GENERIC_EXECUTE
;
2101 if (access
& GENERIC_ALL
) access
|= FILE_ALL_ACCESS
;
2102 return access
& ~(GENERIC_READ
| GENERIC_WRITE
| GENERIC_EXECUTE
| GENERIC_ALL
);
2105 int default_fd_get_poll_events( struct fd
*fd
)
2109 if (async_waiting( &fd
->read_q
)) events
|= POLLIN
;
2110 if (async_waiting( &fd
->write_q
)) events
|= POLLOUT
;
2114 /* default handler for poll() events */
2115 void default_poll_event( struct fd
*fd
, int event
)
2117 if (event
& (POLLIN
| POLLERR
| POLLHUP
)) async_wake_up( &fd
->read_q
, STATUS_ALERTED
);
2118 if (event
& (POLLOUT
| POLLERR
| POLLHUP
)) async_wake_up( &fd
->write_q
, STATUS_ALERTED
);
2120 /* if an error occurred, stop polling this fd to avoid busy-looping */
2121 if (event
& (POLLERR
| POLLHUP
)) set_fd_events( fd
, -1 );
2122 else if (!fd
->inode
) set_fd_events( fd
, fd
->fd_ops
->get_poll_events( fd
) );
2125 void fd_queue_async( struct fd
*fd
, struct async
*async
, int type
)
2127 struct async_queue
*queue
;
2131 case ASYNC_TYPE_READ
:
2132 queue
= &fd
->read_q
;
2134 case ASYNC_TYPE_WRITE
:
2135 queue
= &fd
->write_q
;
2137 case ASYNC_TYPE_WAIT
:
2138 queue
= &fd
->wait_q
;
2145 queue_async( queue
, async
);
2147 if (type
!= ASYNC_TYPE_WAIT
)
2150 set_fd_events( fd
, fd
->fd_ops
->get_poll_events( fd
) );
2151 else /* regular files are always ready for read and write */
2152 async_wake_up( queue
, STATUS_ALERTED
);
2156 void fd_async_wake_up( struct fd
*fd
, int type
, unsigned int status
)
2160 case ASYNC_TYPE_READ
:
2161 async_wake_up( &fd
->read_q
, status
);
2163 case ASYNC_TYPE_WRITE
:
2164 async_wake_up( &fd
->write_q
, status
);
2166 case ASYNC_TYPE_WAIT
:
2167 async_wake_up( &fd
->wait_q
, status
);
2174 void fd_reselect_async( struct fd
*fd
, struct async_queue
*queue
)
2176 fd
->fd_ops
->reselect_async( fd
, queue
);
2179 void no_fd_queue_async( struct fd
*fd
, struct async
*async
, int type
, int count
)
2181 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2184 void default_fd_queue_async( struct fd
*fd
, struct async
*async
, int type
, int count
)
2186 fd_queue_async( fd
, async
, type
);
2187 set_error( STATUS_PENDING
);
2190 /* default reselect_async() fd routine */
2191 void default_fd_reselect_async( struct fd
*fd
, struct async_queue
*queue
)
2193 if (queue
== &fd
->read_q
|| queue
== &fd
->write_q
)
2195 int poll_events
= fd
->fd_ops
->get_poll_events( fd
);
2196 int events
= check_fd_events( fd
, poll_events
);
2197 if (events
) fd
->fd_ops
->poll_event( fd
, events
);
2198 else set_fd_events( fd
, poll_events
);
2202 static inline int is_valid_mounted_device( struct stat
*st
)
2204 #if defined(linux) || defined(__sun__)
2205 return S_ISBLK( st
->st_mode
);
2207 /* disks are char devices on *BSD */
2208 return S_ISCHR( st
->st_mode
);
2212 /* close all Unix file descriptors on a device to allow unmounting it */
2213 static void unmount_device( struct fd
*device_fd
)
2217 struct device
*device
;
2218 struct inode
*inode
;
2220 int unix_fd
= get_unix_fd( device_fd
);
2222 if (unix_fd
== -1) return;
2224 if (fstat( unix_fd
, &st
) == -1 || !is_valid_mounted_device( &st
))
2226 set_error( STATUS_INVALID_PARAMETER
);
2230 if (!(device
= get_device( st
.st_rdev
, -1 ))) return;
2232 for (i
= 0; i
< INODE_HASH_SIZE
; i
++)
2234 LIST_FOR_EACH_ENTRY( inode
, &device
->inode_hash
[i
], struct inode
, entry
)
2236 LIST_FOR_EACH_ENTRY( fd
, &inode
->open
, struct fd
, inode_entry
)
2240 inode_close_pending( inode
, 0 );
2243 /* remove it from the hash table */
2244 list_remove( &device
->entry
);
2245 list_init( &device
->entry
);
2246 release_object( device
);
2249 /* default read() routine */
2250 int no_fd_read( struct fd
*fd
, struct async
*async
, file_pos_t pos
)
2252 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2256 /* default write() routine */
2257 int no_fd_write( struct fd
*fd
, struct async
*async
, file_pos_t pos
)
2259 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2263 /* default flush() routine */
2264 int no_fd_flush( struct fd
*fd
, struct async
*async
)
2266 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2270 /* default get_file_info() routine */
2271 void no_fd_get_file_info( struct fd
*fd
, obj_handle_t handle
, unsigned int info_class
)
2273 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2276 /* default get_file_info() routine */
2277 void default_fd_get_file_info( struct fd
*fd
, obj_handle_t handle
, unsigned int info_class
)
2281 case FileAccessInformation
:
2283 FILE_ACCESS_INFORMATION info
;
2284 if (get_reply_max_size() < sizeof(info
))
2286 set_error( STATUS_INFO_LENGTH_MISMATCH
);
2289 info
.AccessFlags
= get_handle_access( current
->process
, handle
);
2290 set_reply_data( &info
, sizeof(info
) );
2293 case FileModeInformation
:
2295 FILE_MODE_INFORMATION info
;
2296 if (get_reply_max_size() < sizeof(info
))
2298 set_error( STATUS_INFO_LENGTH_MISMATCH
);
2301 info
.Mode
= fd
->options
& ( FILE_WRITE_THROUGH
2302 | FILE_SEQUENTIAL_ONLY
2303 | FILE_NO_INTERMEDIATE_BUFFERING
2304 | FILE_SYNCHRONOUS_IO_ALERT
2305 | FILE_SYNCHRONOUS_IO_NONALERT
);
2306 set_reply_data( &info
, sizeof(info
) );
2309 case FileIoCompletionNotificationInformation
:
2311 FILE_IO_COMPLETION_NOTIFICATION_INFORMATION info
;
2312 if (get_reply_max_size() < sizeof(info
))
2314 set_error( STATUS_INFO_LENGTH_MISMATCH
);
2317 info
.Flags
= fd
->comp_flags
;
2318 set_reply_data( &info
, sizeof(info
) );
2322 set_error( STATUS_NOT_IMPLEMENTED
);
2326 /* default get_volume_info() routine */
2327 void no_fd_get_volume_info( struct fd
*fd
, unsigned int info_class
)
2329 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2332 /* default ioctl() routine */
2333 int no_fd_ioctl( struct fd
*fd
, ioctl_code_t code
, struct async
*async
)
2335 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2339 /* default ioctl() routine */
2340 int default_fd_ioctl( struct fd
*fd
, ioctl_code_t code
, struct async
*async
)
2344 case FSCTL_DISMOUNT_VOLUME
:
2345 unmount_device( fd
);
2348 set_error( STATUS_NOT_SUPPORTED
);
2353 /* same as get_handle_obj but retrieve the struct fd associated to the object */
2354 static struct fd
*get_handle_fd_obj( struct process
*process
, obj_handle_t handle
,
2355 unsigned int access
)
2357 struct fd
*fd
= NULL
;
2360 if ((obj
= get_handle_obj( process
, handle
, access
, NULL
)))
2362 fd
= get_obj_fd( obj
);
2363 release_object( obj
);
2368 static int is_dir_empty( int fd
)
2374 if ((fd
= dup( fd
)) == -1)
2377 if (!(dir
= fdopendir( fd
)))
2384 while (empty
&& (de
= readdir( dir
)))
2386 if (!strcmp( de
->d_name
, "." ) || !strcmp( de
->d_name
, ".." )) continue;
2393 /* set disposition for the fd */
2394 static void set_fd_disposition( struct fd
*fd
, int unlink
)
2400 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2404 if (fd
->unix_fd
== -1)
2406 set_error( fd
->no_fd_status
);
2412 if (fstat( fd
->unix_fd
, &st
) == -1)
2417 if (S_ISREG( st
.st_mode
)) /* can't unlink files we don't have permission to write */
2419 if (!(st
.st_mode
& (S_IWUSR
| S_IWGRP
| S_IWOTH
)))
2421 set_error( STATUS_CANNOT_DELETE
);
2425 else if (S_ISDIR( st
.st_mode
)) /* can't remove non-empty directories */
2427 switch (is_dir_empty( fd
->unix_fd
))
2433 set_error( STATUS_DIRECTORY_NOT_EMPTY
);
2437 else /* can't unlink special files */
2439 set_error( STATUS_INVALID_PARAMETER
);
2444 fd
->closed
->unlink
= unlink
? 1 : 0;
2445 if (fd
->options
& FILE_DELETE_ON_CLOSE
)
2446 fd
->closed
->unlink
= -1;
2449 /* set new name for the fd */
2450 static void set_fd_name( struct fd
*fd
, struct fd
*root
, const char *nameptr
,
2451 data_size_t len
, int create_link
, int replace
)
2453 struct inode
*inode
;
2454 struct stat st
, st2
;
2457 if (!fd
->inode
|| !fd
->unix_name
)
2459 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2462 if (fd
->unix_fd
== -1)
2464 set_error( fd
->no_fd_status
);
2468 if (!len
|| ((nameptr
[0] == '/') ^ !root
))
2470 set_error( STATUS_OBJECT_PATH_SYNTAX_BAD
);
2473 if (!(name
= mem_alloc( len
+ 1 ))) return;
2474 memcpy( name
, nameptr
, len
);
2479 char *combined_name
= dup_fd_name( root
, name
);
2482 set_error( STATUS_NO_MEMORY
);
2486 name
= combined_name
;
2489 /* when creating a hard link, source cannot be a dir */
2490 if (create_link
&& !fstat( fd
->unix_fd
, &st
) && S_ISDIR( st
.st_mode
))
2492 set_error( STATUS_FILE_IS_A_DIRECTORY
);
2496 if (!stat( name
, &st
))
2498 if (!fstat( fd
->unix_fd
, &st2
) && st
.st_ino
== st2
.st_ino
&& st
.st_dev
== st2
.st_dev
)
2500 if (create_link
&& !replace
) set_error( STATUS_OBJECT_NAME_COLLISION
);
2507 set_error( STATUS_OBJECT_NAME_COLLISION
);
2511 /* can't replace directories or special files */
2512 if (!S_ISREG( st
.st_mode
))
2514 set_error( STATUS_ACCESS_DENIED
);
2518 /* can't replace an opened file */
2519 if ((inode
= get_inode( st
.st_dev
, st
.st_ino
, -1 )))
2521 int is_empty
= list_empty( &inode
->open
);
2522 release_object( inode
);
2525 set_error( STATUS_ACCESS_DENIED
);
2530 /* link() expects that the target doesn't exist */
2531 /* rename() cannot replace files with directories */
2532 if (create_link
|| S_ISDIR( st2
.st_mode
))
2544 if (link( fd
->unix_name
, name
))
2550 if (rename( fd
->unix_name
, name
))
2556 if (is_file_executable( fd
->unix_name
) != is_file_executable( name
) && !fstat( fd
->unix_fd
, &st
))
2558 if (is_file_executable( name
))
2559 /* set executable bit where read bit is set */
2560 st
.st_mode
|= (st
.st_mode
& 0444) >> 2;
2562 st
.st_mode
&= ~0111;
2563 fchmod( fd
->unix_fd
, st
.st_mode
);
2566 free( fd
->unix_name
);
2567 fd
->closed
->unix_name
= fd
->unix_name
= realpath( name
, NULL
);
2570 set_error( STATUS_NO_MEMORY
);
2577 struct completion
*fd_get_completion( struct fd
*fd
, apc_param_t
*p_key
)
2579 *p_key
= fd
->comp_key
;
2580 return fd
->completion
? (struct completion
*)grab_object( fd
->completion
) : NULL
;
2583 void fd_copy_completion( struct fd
*src
, struct fd
*dst
)
2585 assert( !dst
->completion
);
2586 dst
->completion
= fd_get_completion( src
, &dst
->comp_key
);
2587 dst
->comp_flags
= src
->comp_flags
;
2590 /* flush a file buffers */
2593 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->async
.handle
, 0 );
2594 struct async
*async
;
2598 if ((async
= create_request_async( fd
, fd
->comp_flags
, &req
->async
)))
2600 reply
->event
= async_handoff( async
, fd
->fd_ops
->flush( fd
, async
), NULL
, 1 );
2601 release_object( async
);
2603 release_object( fd
);
2606 /* query file info */
2607 DECL_HANDLER(get_file_info
)
2609 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 );
2613 fd
->fd_ops
->get_file_info( fd
, req
->handle
, req
->info_class
);
2614 release_object( fd
);
2618 /* query volume info */
2619 DECL_HANDLER(get_volume_info
)
2621 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 );
2625 fd
->fd_ops
->get_volume_info( fd
, req
->info_class
);
2626 release_object( fd
);
2630 /* open a file object */
2631 DECL_HANDLER(open_file_object
)
2633 struct unicode_str name
= get_req_unicode_str();
2634 struct object
*obj
, *result
, *root
= NULL
;
2636 if (req
->rootdir
&& !(root
= get_handle_obj( current
->process
, req
->rootdir
, 0, NULL
))) return;
2638 obj
= open_named_object( root
, NULL
, &name
, req
->attributes
);
2639 if (root
) release_object( root
);
2642 if ((result
= obj
->ops
->open_file( obj
, req
->access
, req
->sharing
, req
->options
)))
2644 reply
->handle
= alloc_handle( current
->process
, result
, req
->access
, req
->attributes
);
2645 release_object( result
);
2647 release_object( obj
);
2650 /* get the Unix name from a file handle */
2651 DECL_HANDLER(get_handle_unix_name
)
2655 if ((fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 )))
2659 data_size_t name_len
= strlen( fd
->unix_name
);
2660 reply
->name_len
= name_len
;
2661 if (name_len
<= get_reply_max_size()) set_reply_data( fd
->unix_name
, name_len
);
2662 else set_error( STATUS_BUFFER_OVERFLOW
);
2664 else set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2665 release_object( fd
);
2669 /* get a Unix fd to access a file */
2670 DECL_HANDLER(get_handle_fd
)
2674 if ((fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 )))
2676 int unix_fd
= get_unix_fd( fd
);
2677 reply
->cacheable
= fd
->cacheable
;
2680 reply
->type
= fd
->fd_ops
->get_fd_type( fd
);
2681 reply
->options
= fd
->options
;
2682 reply
->access
= get_handle_access( current
->process
, req
->handle
);
2683 send_client_fd( current
->process
, unix_fd
, req
->handle
);
2685 release_object( fd
);
2689 /* perform a read on a file object */
2692 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->async
.handle
, FILE_READ_DATA
);
2693 struct async
*async
;
2697 if ((async
= create_request_async( fd
, fd
->comp_flags
, &req
->async
)))
2699 reply
->wait
= async_handoff( async
, fd
->fd_ops
->read( fd
, async
, req
->pos
), NULL
, 0 );
2700 reply
->options
= fd
->options
;
2701 release_object( async
);
2703 release_object( fd
);
2706 /* perform a write on a file object */
2709 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->async
.handle
, FILE_WRITE_DATA
);
2710 struct async
*async
;
2714 if ((async
= create_request_async( fd
, fd
->comp_flags
, &req
->async
)))
2716 reply
->wait
= async_handoff( async
, fd
->fd_ops
->write( fd
, async
, req
->pos
), &reply
->size
, 0 );
2717 reply
->options
= fd
->options
;
2718 release_object( async
);
2720 release_object( fd
);
2723 /* perform an ioctl on a file */
2726 unsigned int access
= (req
->code
>> 14) & (FILE_READ_DATA
|FILE_WRITE_DATA
);
2727 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->async
.handle
, access
);
2728 struct async
*async
;
2732 if ((async
= create_request_async( fd
, fd
->comp_flags
, &req
->async
)))
2734 reply
->wait
= async_handoff( async
, fd
->fd_ops
->ioctl( fd
, req
->code
, async
), NULL
, 0 );
2735 reply
->options
= fd
->options
;
2736 release_object( async
);
2738 release_object( fd
);
2741 /* create / reschedule an async I/O */
2742 DECL_HANDLER(register_async
)
2744 unsigned int access
;
2745 struct async
*async
;
2750 case ASYNC_TYPE_READ
:
2751 access
= FILE_READ_DATA
;
2753 case ASYNC_TYPE_WRITE
:
2754 access
= FILE_WRITE_DATA
;
2757 set_error( STATUS_INVALID_PARAMETER
);
2761 if ((fd
= get_handle_fd_obj( current
->process
, req
->async
.handle
, access
)))
2763 if (get_unix_fd( fd
) != -1 && (async
= create_async( fd
, current
, &req
->async
, NULL
)))
2765 fd
->fd_ops
->queue_async( fd
, async
, req
->type
, req
->count
);
2766 release_object( async
);
2768 release_object( fd
);
2772 /* attach completion object to a fd */
2773 DECL_HANDLER(set_completion_info
)
2775 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 );
2779 if (is_fd_overlapped( fd
) && !fd
->completion
)
2781 fd
->completion
= get_completion_obj( current
->process
, req
->chandle
, IO_COMPLETION_MODIFY_STATE
);
2782 fd
->comp_key
= req
->ckey
;
2784 else set_error( STATUS_INVALID_PARAMETER
);
2785 release_object( fd
);
2789 /* push new completion msg into a completion queue attached to the fd */
2790 DECL_HANDLER(add_fd_completion
)
2792 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 );
2795 if (fd
->completion
&& (req
->async
|| !(fd
->comp_flags
& FILE_SKIP_COMPLETION_PORT_ON_SUCCESS
)))
2796 add_completion( fd
->completion
, fd
->comp_key
, req
->cvalue
, req
->status
, req
->information
);
2797 release_object( fd
);
2801 /* set fd completion information */
2802 DECL_HANDLER(set_fd_completion_mode
)
2804 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 );
2807 if (is_fd_overlapped( fd
))
2809 if (req
->flags
& FILE_SKIP_SET_EVENT_ON_HANDLE
)
2810 set_fd_signaled( fd
, 0 );
2811 /* removing flags is not allowed */
2812 fd
->comp_flags
|= req
->flags
& ( FILE_SKIP_COMPLETION_PORT_ON_SUCCESS
2813 | FILE_SKIP_SET_EVENT_ON_HANDLE
2814 | FILE_SKIP_SET_USER_EVENT_ON_FAST_IO
);
2817 set_error( STATUS_INVALID_PARAMETER
);
2818 release_object( fd
);
2822 /* set fd disposition information */
2823 DECL_HANDLER(set_fd_disp_info
)
2825 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, DELETE
);
2828 set_fd_disposition( fd
, req
->unlink
);
2829 release_object( fd
);
2833 /* set fd name information */
2834 DECL_HANDLER(set_fd_name_info
)
2836 struct fd
*fd
, *root_fd
= NULL
;
2842 if (!(root
= get_dir_obj( current
->process
, req
->rootdir
, 0 ))) return;
2843 root_fd
= get_obj_fd( (struct object
*)root
);
2844 release_object( root
);
2845 if (!root_fd
) return;
2848 if ((fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 )))
2850 set_fd_name( fd
, root_fd
, get_req_data(), get_req_data_size(), req
->link
, req
->replace
);
2851 release_object( fd
);
2853 if (root_fd
) release_object( root_fd
);