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"
37 #ifdef HAVE_SYS_POLL_H
40 #ifdef HAVE_LINUX_MAJOR_H
41 #include <linux/major.h>
43 #ifdef HAVE_SYS_STATVFS_H
44 #include <sys/statvfs.h>
48 * Solaris defines its system list in sys/list.h.
49 * This need to be workaround it here.
52 #define list_next SYSLIST_NEXT
53 #define list_prev SYSLIST_PREV
54 #define list_head SYSLIST_HEAD
55 #define list_tail SYSLIST_TAIL
56 #define list_move_tail SYSLIST_MOVE_TAIL
57 #define list_remove SYSLIST_REMOVE
67 #ifdef HAVE_SYS_PARAM_H
68 #include <sys/param.h>
70 #ifdef HAVE_SYS_MOUNT_H
71 #include <sys/mount.h>
73 #ifdef HAVE_SYS_STATFS_H
74 #include <sys/statfs.h>
76 #ifdef HAVE_SYS_SYSCTL_H
77 #include <sys/sysctl.h>
79 #ifdef HAVE_SYS_EVENT_H
80 #include <sys/event.h>
89 #include <sys/types.h>
91 #ifdef HAVE_SYS_SYSCALL_H
92 #include <sys/syscall.h>
96 #define WIN32_NO_STATUS
103 #include "winternl.h"
104 #include "winioctl.h"
106 #if defined(HAVE_SYS_EPOLL_H) && defined(HAVE_EPOLL_CREATE)
107 # include <sys/epoll.h>
109 #elif defined(linux) && defined(__i386__) && defined(HAVE_STDINT_H)
111 # define EPOLLIN POLLIN
112 # define EPOLLOUT POLLOUT
113 # define EPOLLERR POLLERR
114 # define EPOLLHUP POLLHUP
115 # define EPOLL_CTL_ADD 1
116 # define EPOLL_CTL_DEL 2
117 # define EPOLL_CTL_MOD 3
119 typedef union epoll_data
133 static inline int epoll_create( int size
)
135 return syscall( 254 /*NR_epoll_create*/, size
);
138 static inline int epoll_ctl( int epfd
, int op
, int fd
, const struct epoll_event
*event
)
140 return syscall( 255 /*NR_epoll_ctl*/, epfd
, op
, fd
, event
);
143 static inline int epoll_wait( int epfd
, struct epoll_event
*events
, int maxevents
, int timeout
)
145 return syscall( 256 /*NR_epoll_wait*/, epfd
, events
, maxevents
, timeout
);
148 #endif /* linux && __i386__ && HAVE_STDINT_H */
150 #if defined(HAVE_PORT_H) && defined(HAVE_PORT_CREATE)
152 # define USE_EVENT_PORTS
153 #endif /* HAVE_PORT_H && HAVE_PORT_CREATE */
155 /* Because of the stupid Posix locking semantics, we need to keep
156 * track of all file descriptors referencing a given file, and not
157 * close a single one until all the locks are gone (sigh).
160 /* file descriptor object */
162 /* closed_fd is used to keep track of the unix fd belonging to a closed fd object */
165 struct list entry
; /* entry in inode closed list */
166 int unix_fd
; /* the unix file descriptor */
167 char unlink
[1]; /* name to unlink on close (if any) */
172 struct object obj
; /* object header */
173 const struct fd_ops
*fd_ops
; /* file descriptor operations */
174 struct inode
*inode
; /* inode that this fd belongs to */
175 struct list inode_entry
; /* entry in inode fd list */
176 struct closed_fd
*closed
; /* structure to store the unix fd at destroy time */
177 struct object
*user
; /* object using this file descriptor */
178 struct list locks
; /* list of locks on this fd */
179 unsigned int access
; /* file access (FILE_READ_DATA etc.) */
180 unsigned int options
; /* file options (FILE_DELETE_ON_CLOSE, FILE_SYNCHRONOUS...) */
181 unsigned int sharing
; /* file sharing mode */
182 char *unix_name
; /* unix file name */
183 int unix_fd
; /* unix file descriptor */
184 unsigned int no_fd_status
;/* status to return when unix_fd is -1 */
185 unsigned int cacheable
:1;/* can the fd be cached on the client side? */
186 unsigned int signaled
:1; /* is the fd signaled? */
187 unsigned int fs_locks
:1; /* can we use filesystem locks for this fd? */
188 int poll_index
; /* index of fd in poll array */
189 struct async_queue
*read_q
; /* async readers of this fd */
190 struct async_queue
*write_q
; /* async writers of this fd */
191 struct async_queue
*wait_q
; /* other async waiters of this fd */
192 struct completion
*completion
; /* completion object attached to this fd */
193 apc_param_t comp_key
; /* completion key to set in completion events */
196 static void fd_dump( struct object
*obj
, int verbose
);
197 static void fd_destroy( struct object
*obj
);
199 static const struct object_ops fd_ops
=
201 sizeof(struct fd
), /* size */
203 no_get_type
, /* get_type */
204 no_add_queue
, /* add_queue */
205 NULL
, /* remove_queue */
207 NULL
, /* satisfied */
208 no_signal
, /* signal */
209 no_get_fd
, /* get_fd */
210 no_map_access
, /* map_access */
211 default_get_sd
, /* get_sd */
212 default_set_sd
, /* set_sd */
213 no_lookup_name
, /* lookup_name */
214 no_open_file
, /* open_file */
215 no_close_handle
, /* close_handle */
216 fd_destroy
/* destroy */
221 #define DEVICE_HASH_SIZE 7
222 #define INODE_HASH_SIZE 17
226 struct object obj
; /* object header */
227 struct list entry
; /* entry in device hash list */
228 dev_t dev
; /* device number */
229 int removable
; /* removable device? (or -1 if unknown) */
230 struct list inode_hash
[INODE_HASH_SIZE
]; /* inodes hash table */
233 static void device_dump( struct object
*obj
, int verbose
);
234 static void device_destroy( struct object
*obj
);
236 static const struct object_ops device_ops
=
238 sizeof(struct device
), /* size */
239 device_dump
, /* dump */
240 no_get_type
, /* get_type */
241 no_add_queue
, /* add_queue */
242 NULL
, /* remove_queue */
244 NULL
, /* satisfied */
245 no_signal
, /* signal */
246 no_get_fd
, /* get_fd */
247 no_map_access
, /* map_access */
248 default_get_sd
, /* get_sd */
249 default_set_sd
, /* set_sd */
250 no_lookup_name
, /* lookup_name */
251 no_open_file
, /* open_file */
252 no_close_handle
, /* close_handle */
253 device_destroy
/* destroy */
260 struct object obj
; /* object header */
261 struct list entry
; /* inode hash list entry */
262 struct device
*device
; /* device containing this inode */
263 ino_t ino
; /* inode number */
264 struct list open
; /* list of open file descriptors */
265 struct list locks
; /* list of file locks */
266 struct list closed
; /* list of file descriptors to close at destroy time */
269 static void inode_dump( struct object
*obj
, int verbose
);
270 static void inode_destroy( struct object
*obj
);
272 static const struct object_ops inode_ops
=
274 sizeof(struct inode
), /* size */
275 inode_dump
, /* dump */
276 no_get_type
, /* get_type */
277 no_add_queue
, /* add_queue */
278 NULL
, /* remove_queue */
280 NULL
, /* satisfied */
281 no_signal
, /* signal */
282 no_get_fd
, /* get_fd */
283 no_map_access
, /* map_access */
284 default_get_sd
, /* get_sd */
285 default_set_sd
, /* set_sd */
286 no_lookup_name
, /* lookup_name */
287 no_open_file
, /* open_file */
288 no_close_handle
, /* close_handle */
289 inode_destroy
/* destroy */
292 /* file lock object */
296 struct object obj
; /* object header */
297 struct fd
*fd
; /* fd owning this lock */
298 struct list fd_entry
; /* entry in list of locks on a given fd */
299 struct list inode_entry
; /* entry in inode list of locks */
300 int shared
; /* shared lock? */
301 file_pos_t start
; /* locked region is interval [start;end) */
303 struct process
*process
; /* process owning this lock */
304 struct list proc_entry
; /* entry in list of locks owned by the process */
307 static void file_lock_dump( struct object
*obj
, int verbose
);
308 static int file_lock_signaled( struct object
*obj
, struct wait_queue_entry
*entry
);
310 static const struct object_ops file_lock_ops
=
312 sizeof(struct file_lock
), /* size */
313 file_lock_dump
, /* dump */
314 no_get_type
, /* get_type */
315 add_queue
, /* add_queue */
316 remove_queue
, /* remove_queue */
317 file_lock_signaled
, /* signaled */
318 no_satisfied
, /* satisfied */
319 no_signal
, /* signal */
320 no_get_fd
, /* get_fd */
321 no_map_access
, /* map_access */
322 default_get_sd
, /* get_sd */
323 default_set_sd
, /* set_sd */
324 no_lookup_name
, /* lookup_name */
325 no_open_file
, /* open_file */
326 no_close_handle
, /* close_handle */
327 no_destroy
/* destroy */
331 #define OFF_T_MAX (~((file_pos_t)1 << (8*sizeof(off_t)-1)))
332 #define FILE_POS_T_MAX (~(file_pos_t)0)
334 static file_pos_t max_unix_offset
= OFF_T_MAX
;
336 #define DUMP_LONG_LONG(val) do { \
337 if (sizeof(val) > sizeof(unsigned long) && (val) > ~0UL) \
338 fprintf( stderr, "%lx%08lx", (unsigned long)((unsigned long long)(val) >> 32), (unsigned long)(val) ); \
340 fprintf( stderr, "%lx", (unsigned long)(val) ); \
345 /****************************************************************/
346 /* timeouts support */
350 struct list entry
; /* entry in sorted timeout list */
351 timeout_t when
; /* timeout expiry (absolute time) */
352 timeout_callback callback
; /* callback function */
353 void *private; /* callback private data */
356 static struct list timeout_list
= LIST_INIT(timeout_list
); /* sorted timeouts list */
357 timeout_t current_time
;
359 static inline void set_current_time(void)
361 static const timeout_t ticks_1601_to_1970
= (timeout_t
)86400 * (369 * 365 + 89) * TICKS_PER_SEC
;
363 gettimeofday( &now
, NULL
);
364 current_time
= (timeout_t
)now
.tv_sec
* TICKS_PER_SEC
+ now
.tv_usec
* 10 + ticks_1601_to_1970
;
367 /* add a timeout user */
368 struct timeout_user
*add_timeout_user( timeout_t when
, timeout_callback func
, void *private )
370 struct timeout_user
*user
;
373 if (!(user
= mem_alloc( sizeof(*user
) ))) return NULL
;
374 user
->when
= (when
> 0) ? when
: current_time
- when
;
375 user
->callback
= func
;
376 user
->private = private;
378 /* Now insert it in the linked list */
380 LIST_FOR_EACH( ptr
, &timeout_list
)
382 struct timeout_user
*timeout
= LIST_ENTRY( ptr
, struct timeout_user
, entry
);
383 if (timeout
->when
>= user
->when
) break;
385 list_add_before( ptr
, &user
->entry
);
389 /* remove a timeout user */
390 void remove_timeout_user( struct timeout_user
*user
)
392 list_remove( &user
->entry
);
396 /* return a text description of a timeout for debugging purposes */
397 const char *get_timeout_str( timeout_t timeout
)
399 static char buffer
[64];
402 if (!timeout
) return "0";
403 if (timeout
== TIMEOUT_INFINITE
) return "infinite";
405 if (timeout
< 0) /* relative */
407 secs
= -timeout
/ TICKS_PER_SEC
;
408 nsecs
= -timeout
% TICKS_PER_SEC
;
409 sprintf( buffer
, "+%ld.%07ld", secs
, nsecs
);
413 secs
= (timeout
- current_time
) / TICKS_PER_SEC
;
414 nsecs
= (timeout
- current_time
) % TICKS_PER_SEC
;
417 nsecs
+= TICKS_PER_SEC
;
421 sprintf( buffer
, "%x%08x (+%ld.%07ld)",
422 (unsigned int)(timeout
>> 32), (unsigned int)timeout
, secs
, nsecs
);
424 sprintf( buffer
, "%x%08x (-%ld.%07ld)",
425 (unsigned int)(timeout
>> 32), (unsigned int)timeout
,
426 -(secs
+ 1), TICKS_PER_SEC
- nsecs
);
432 /****************************************************************/
435 static struct fd
**poll_users
; /* users array */
436 static struct pollfd
*pollfd
; /* poll fd array */
437 static int nb_users
; /* count of array entries actually in use */
438 static int active_users
; /* current number of active users */
439 static int allocated_users
; /* count of allocated entries in the array */
440 static struct fd
**freelist
; /* list of free entries in the array */
442 static int get_next_timeout(void);
444 static inline void fd_poll_event( struct fd
*fd
, int event
)
446 fd
->fd_ops
->poll_event( fd
, event
);
451 static int epoll_fd
= -1;
453 static inline void init_epoll(void)
455 epoll_fd
= epoll_create( 128 );
458 /* set the events that epoll waits for on this fd; helper for set_fd_events */
459 static inline void set_fd_epoll_events( struct fd
*fd
, int user
, int events
)
461 struct epoll_event ev
;
464 if (epoll_fd
== -1) return;
466 if (events
== -1) /* stop waiting on this fd completely */
468 if (pollfd
[user
].fd
== -1) return; /* already removed */
471 else if (pollfd
[user
].fd
== -1)
473 if (pollfd
[user
].events
) return; /* stopped waiting on it, don't restart */
478 if (pollfd
[user
].events
== events
) return; /* nothing to do */
483 memset(&ev
.data
, 0, sizeof(ev
.data
));
486 if (epoll_ctl( epoll_fd
, ctl
, fd
->unix_fd
, &ev
) == -1)
488 if (errno
== ENOMEM
) /* not enough memory, give up on epoll */
493 else perror( "epoll_ctl" ); /* should not happen */
497 static inline void remove_epoll_user( struct fd
*fd
, int user
)
499 if (epoll_fd
== -1) return;
501 if (pollfd
[user
].fd
!= -1)
503 struct epoll_event dummy
;
504 epoll_ctl( epoll_fd
, EPOLL_CTL_DEL
, fd
->unix_fd
, &dummy
);
508 static inline void main_loop_epoll(void)
511 struct epoll_event events
[128];
513 assert( POLLIN
== EPOLLIN
);
514 assert( POLLOUT
== EPOLLOUT
);
515 assert( POLLERR
== EPOLLERR
);
516 assert( POLLHUP
== EPOLLHUP
);
518 if (epoll_fd
== -1) return;
522 timeout
= get_next_timeout();
524 if (!active_users
) break; /* last user removed by a timeout */
525 if (epoll_fd
== -1) break; /* an error occurred with epoll */
527 ret
= epoll_wait( epoll_fd
, events
, sizeof(events
)/sizeof(events
[0]), timeout
);
530 /* put the events into the pollfd array first, like poll does */
531 for (i
= 0; i
< ret
; i
++)
533 int user
= events
[i
].data
.u32
;
534 pollfd
[user
].revents
= events
[i
].events
;
537 /* read events from the pollfd array, as set_fd_events may modify them */
538 for (i
= 0; i
< ret
; i
++)
540 int user
= events
[i
].data
.u32
;
541 if (pollfd
[user
].revents
) fd_poll_event( poll_users
[user
], pollfd
[user
].revents
);
546 #elif defined(HAVE_KQUEUE)
548 static int kqueue_fd
= -1;
550 static inline void init_epoll(void)
552 #ifdef __APPLE__ /* kqueue support is broken in Mac OS < 10.5 */
555 size_t len
= sizeof(release
);
558 mib
[1] = KERN_OSRELEASE
;
559 if (sysctl( mib
, 2, release
, &len
, NULL
, 0 ) == -1) return;
560 if (atoi(release
) < 9) return;
562 kqueue_fd
= kqueue();
565 static inline void set_fd_epoll_events( struct fd
*fd
, int user
, int events
)
569 if (kqueue_fd
== -1) return;
571 EV_SET( &ev
[0], fd
->unix_fd
, EVFILT_READ
, 0, NOTE_LOWAT
, 1, (void *)user
);
572 EV_SET( &ev
[1], fd
->unix_fd
, EVFILT_WRITE
, 0, NOTE_LOWAT
, 1, (void *)user
);
574 if (events
== -1) /* stop waiting on this fd completely */
576 if (pollfd
[user
].fd
== -1) return; /* already removed */
577 ev
[0].flags
|= EV_DELETE
;
578 ev
[1].flags
|= EV_DELETE
;
580 else if (pollfd
[user
].fd
== -1)
582 if (pollfd
[user
].events
) return; /* stopped waiting on it, don't restart */
583 ev
[0].flags
|= EV_ADD
| ((events
& POLLIN
) ? EV_ENABLE
: EV_DISABLE
);
584 ev
[1].flags
|= EV_ADD
| ((events
& POLLOUT
) ? EV_ENABLE
: EV_DISABLE
);
588 if (pollfd
[user
].events
== events
) return; /* nothing to do */
589 ev
[0].flags
|= (events
& POLLIN
) ? EV_ENABLE
: EV_DISABLE
;
590 ev
[1].flags
|= (events
& POLLOUT
) ? EV_ENABLE
: EV_DISABLE
;
593 if (kevent( kqueue_fd
, ev
, 2, NULL
, 0, NULL
) == -1)
595 if (errno
== ENOMEM
) /* not enough memory, give up on kqueue */
600 else perror( "kevent" ); /* should not happen */
604 static inline void remove_epoll_user( struct fd
*fd
, int user
)
606 if (kqueue_fd
== -1) return;
608 if (pollfd
[user
].fd
!= -1)
612 EV_SET( &ev
[0], fd
->unix_fd
, EVFILT_READ
, EV_DELETE
, 0, 0, 0 );
613 EV_SET( &ev
[1], fd
->unix_fd
, EVFILT_WRITE
, EV_DELETE
, 0, 0, 0 );
614 kevent( kqueue_fd
, ev
, 2, NULL
, 0, NULL
);
618 static inline void main_loop_epoll(void)
621 struct kevent events
[128];
623 if (kqueue_fd
== -1) return;
627 timeout
= get_next_timeout();
629 if (!active_users
) break; /* last user removed by a timeout */
630 if (kqueue_fd
== -1) break; /* an error occurred with kqueue */
636 ts
.tv_sec
= timeout
/ 1000;
637 ts
.tv_nsec
= (timeout
% 1000) * 1000000;
638 ret
= kevent( kqueue_fd
, NULL
, 0, events
, sizeof(events
)/sizeof(events
[0]), &ts
);
640 else ret
= kevent( kqueue_fd
, NULL
, 0, events
, sizeof(events
)/sizeof(events
[0]), NULL
);
644 /* put the events into the pollfd array first, like poll does */
645 for (i
= 0; i
< ret
; i
++)
647 long user
= (long)events
[i
].udata
;
648 pollfd
[user
].revents
= 0;
650 for (i
= 0; i
< ret
; i
++)
652 long user
= (long)events
[i
].udata
;
653 if (events
[i
].filter
== EVFILT_READ
) pollfd
[user
].revents
|= POLLIN
;
654 else if (events
[i
].filter
== EVFILT_WRITE
) pollfd
[user
].revents
|= POLLOUT
;
655 if (events
[i
].flags
& EV_EOF
) pollfd
[user
].revents
|= POLLHUP
;
656 if (events
[i
].flags
& EV_ERROR
) pollfd
[user
].revents
|= POLLERR
;
659 /* read events from the pollfd array, as set_fd_events may modify them */
660 for (i
= 0; i
< ret
; i
++)
662 long user
= (long)events
[i
].udata
;
663 if (pollfd
[user
].revents
) fd_poll_event( poll_users
[user
], pollfd
[user
].revents
);
664 pollfd
[user
].revents
= 0;
669 #elif defined(USE_EVENT_PORTS)
671 static int port_fd
= -1;
673 static inline void init_epoll(void)
675 port_fd
= port_create();
678 static inline void set_fd_epoll_events( struct fd
*fd
, int user
, int events
)
682 if (port_fd
== -1) return;
684 if (events
== -1) /* stop waiting on this fd completely */
686 if (pollfd
[user
].fd
== -1) return; /* already removed */
687 port_dissociate( port_fd
, PORT_SOURCE_FD
, fd
->unix_fd
);
689 else if (pollfd
[user
].fd
== -1)
691 if (pollfd
[user
].events
) return; /* stopped waiting on it, don't restart */
692 ret
= port_associate( port_fd
, PORT_SOURCE_FD
, fd
->unix_fd
, events
, (void *)user
);
696 if (pollfd
[user
].events
== events
) return; /* nothing to do */
697 ret
= port_associate( port_fd
, PORT_SOURCE_FD
, fd
->unix_fd
, events
, (void *)user
);
702 if (errno
== ENOMEM
) /* not enough memory, give up on port_associate */
707 else perror( "port_associate" ); /* should not happen */
711 static inline void remove_epoll_user( struct fd
*fd
, int user
)
713 if (port_fd
== -1) return;
715 if (pollfd
[user
].fd
!= -1)
717 port_dissociate( port_fd
, PORT_SOURCE_FD
, fd
->unix_fd
);
721 static inline void main_loop_epoll(void)
723 int i
, nget
, ret
, timeout
;
724 port_event_t events
[128];
726 if (port_fd
== -1) return;
730 timeout
= get_next_timeout();
733 if (!active_users
) break; /* last user removed by a timeout */
734 if (port_fd
== -1) break; /* an error occurred with event completion */
740 ts
.tv_sec
= timeout
/ 1000;
741 ts
.tv_nsec
= (timeout
% 1000) * 1000000;
742 ret
= port_getn( port_fd
, events
, sizeof(events
)/sizeof(events
[0]), &nget
, &ts
);
744 else ret
= port_getn( port_fd
, events
, sizeof(events
)/sizeof(events
[0]), &nget
, NULL
);
746 if (ret
== -1) break; /* an error occurred with event completion */
750 /* put the events into the pollfd array first, like poll does */
751 for (i
= 0; i
< nget
; i
++)
753 long user
= (long)events
[i
].portev_user
;
754 pollfd
[user
].revents
= events
[i
].portev_events
;
757 /* read events from the pollfd array, as set_fd_events may modify them */
758 for (i
= 0; i
< nget
; i
++)
760 long user
= (long)events
[i
].portev_user
;
761 if (pollfd
[user
].revents
) fd_poll_event( poll_users
[user
], pollfd
[user
].revents
);
762 /* if we are still interested, reassociate the fd */
763 if (pollfd
[user
].fd
!= -1) {
764 port_associate( port_fd
, PORT_SOURCE_FD
, pollfd
[user
].fd
, pollfd
[user
].events
, (void *)user
);
770 #else /* HAVE_KQUEUE */
772 static inline void init_epoll(void) { }
773 static inline void set_fd_epoll_events( struct fd
*fd
, int user
, int events
) { }
774 static inline void remove_epoll_user( struct fd
*fd
, int user
) { }
775 static inline void main_loop_epoll(void) { }
777 #endif /* USE_EPOLL */
780 /* add a user in the poll array and return its index, or -1 on failure */
781 static int add_poll_user( struct fd
*fd
)
786 ret
= freelist
- poll_users
;
787 freelist
= (struct fd
**)poll_users
[ret
];
791 if (nb_users
== allocated_users
)
793 struct fd
**newusers
;
794 struct pollfd
*newpoll
;
795 int new_count
= allocated_users
? (allocated_users
+ allocated_users
/ 2) : 16;
796 if (!(newusers
= realloc( poll_users
, new_count
* sizeof(*poll_users
) ))) return -1;
797 if (!(newpoll
= realloc( pollfd
, new_count
* sizeof(*pollfd
) )))
800 poll_users
= newusers
;
805 poll_users
= newusers
;
807 if (!allocated_users
) init_epoll();
808 allocated_users
= new_count
;
813 pollfd
[ret
].events
= 0;
814 pollfd
[ret
].revents
= 0;
815 poll_users
[ret
] = fd
;
820 /* remove a user from the poll list */
821 static void remove_poll_user( struct fd
*fd
, int user
)
824 assert( poll_users
[user
] == fd
);
826 remove_epoll_user( fd
, user
);
827 pollfd
[user
].fd
= -1;
828 pollfd
[user
].events
= 0;
829 pollfd
[user
].revents
= 0;
830 poll_users
[user
] = (struct fd
*)freelist
;
831 freelist
= &poll_users
[user
];
835 /* process pending timeouts and return the time until the next timeout, in milliseconds */
836 static int get_next_timeout(void)
838 if (!list_empty( &timeout_list
))
840 struct list expired_list
, *ptr
;
842 /* first remove all expired timers from the list */
844 list_init( &expired_list
);
845 while ((ptr
= list_head( &timeout_list
)) != NULL
)
847 struct timeout_user
*timeout
= LIST_ENTRY( ptr
, struct timeout_user
, entry
);
849 if (timeout
->when
<= current_time
)
851 list_remove( &timeout
->entry
);
852 list_add_tail( &expired_list
, &timeout
->entry
);
857 /* now call the callback for all the removed timers */
859 while ((ptr
= list_head( &expired_list
)) != NULL
)
861 struct timeout_user
*timeout
= LIST_ENTRY( ptr
, struct timeout_user
, entry
);
862 list_remove( &timeout
->entry
);
863 timeout
->callback( timeout
->private );
867 if ((ptr
= list_head( &timeout_list
)) != NULL
)
869 struct timeout_user
*timeout
= LIST_ENTRY( ptr
, struct timeout_user
, entry
);
870 int diff
= (timeout
->when
- current_time
+ 9999) / 10000;
871 if (diff
< 0) diff
= 0;
875 return -1; /* no pending timeouts */
878 /* server main poll() loop */
884 server_start_time
= current_time
;
887 /* fall through to normal poll loop */
891 timeout
= get_next_timeout();
893 if (!active_users
) break; /* last user removed by a timeout */
895 ret
= poll( pollfd
, nb_users
, timeout
);
900 for (i
= 0; i
< nb_users
; i
++)
902 if (pollfd
[i
].revents
)
904 fd_poll_event( poll_users
[i
], pollfd
[i
].revents
);
913 /****************************************************************/
914 /* device functions */
916 static struct list device_hash
[DEVICE_HASH_SIZE
];
918 static int is_device_removable( dev_t dev
, int unix_fd
)
920 #if defined(linux) && defined(HAVE_FSTATFS)
923 /* check for floppy disk */
924 if (major(dev
) == FLOPPY_MAJOR
) return 1;
926 if (fstatfs( unix_fd
, &stfs
) == -1) return 0;
927 return (stfs
.f_type
== 0x9660 || /* iso9660 */
928 stfs
.f_type
== 0x9fa1 || /* supermount */
929 stfs
.f_type
== 0x15013346); /* udf */
930 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) || defined(__APPLE__)
933 if (fstatfs( unix_fd
, &stfs
) == -1) return 0;
934 return (!strcmp("cd9660", stfs
.f_fstypename
) || !strcmp("udf", stfs
.f_fstypename
));
935 #elif defined(__NetBSD__)
938 if (fstatvfs( unix_fd
, &stfs
) == -1) return 0;
939 return (!strcmp("cd9660", stfs
.f_fstypename
) || !strcmp("udf", stfs
.f_fstypename
));
941 # include <sys/dkio.h>
942 # include <sys/vtoc.h>
943 struct dk_cinfo dkinf
;
944 if (ioctl( unix_fd
, DKIOCINFO
, &dkinf
) == -1) return 0;
945 return (dkinf
.dki_ctype
== DKC_CDROM
||
946 dkinf
.dki_ctype
== DKC_NCRFLOPPY
||
947 dkinf
.dki_ctype
== DKC_SMSFLOPPY
||
948 dkinf
.dki_ctype
== DKC_INTEL82072
||
949 dkinf
.dki_ctype
== DKC_INTEL82077
);
955 /* retrieve the device object for a given fd, creating it if needed */
956 static struct device
*get_device( dev_t dev
, int unix_fd
)
958 struct device
*device
;
959 unsigned int i
, hash
= dev
% DEVICE_HASH_SIZE
;
961 if (device_hash
[hash
].next
)
963 LIST_FOR_EACH_ENTRY( device
, &device_hash
[hash
], struct device
, entry
)
964 if (device
->dev
== dev
) return (struct device
*)grab_object( device
);
966 else list_init( &device_hash
[hash
] );
968 /* not found, create it */
970 if (unix_fd
== -1) return NULL
;
971 if ((device
= alloc_object( &device_ops
)))
974 device
->removable
= is_device_removable( dev
, unix_fd
);
975 for (i
= 0; i
< INODE_HASH_SIZE
; i
++) list_init( &device
->inode_hash
[i
] );
976 list_add_head( &device_hash
[hash
], &device
->entry
);
981 static void device_dump( struct object
*obj
, int verbose
)
983 struct device
*device
= (struct device
*)obj
;
984 fprintf( stderr
, "Device dev=" );
985 DUMP_LONG_LONG( device
->dev
);
986 fprintf( stderr
, "\n" );
989 static void device_destroy( struct object
*obj
)
991 struct device
*device
= (struct device
*)obj
;
994 for (i
= 0; i
< INODE_HASH_SIZE
; i
++)
995 assert( list_empty(&device
->inode_hash
[i
]) );
997 list_remove( &device
->entry
); /* remove it from the hash table */
1001 /****************************************************************/
1002 /* inode functions */
1004 /* close all pending file descriptors in the closed list */
1005 static void inode_close_pending( struct inode
*inode
, int keep_unlinks
)
1007 struct list
*ptr
= list_head( &inode
->closed
);
1011 struct closed_fd
*fd
= LIST_ENTRY( ptr
, struct closed_fd
, entry
);
1012 struct list
*next
= list_next( &inode
->closed
, ptr
);
1014 if (fd
->unix_fd
!= -1)
1016 close( fd
->unix_fd
);
1019 if (!keep_unlinks
|| !fd
->unlink
[0]) /* get rid of it unless there's an unlink pending on that file */
1028 static void inode_dump( struct object
*obj
, int verbose
)
1030 struct inode
*inode
= (struct inode
*)obj
;
1031 fprintf( stderr
, "Inode device=%p ino=", inode
->device
);
1032 DUMP_LONG_LONG( inode
->ino
);
1033 fprintf( stderr
, "\n" );
1036 static void inode_destroy( struct object
*obj
)
1038 struct inode
*inode
= (struct inode
*)obj
;
1041 assert( list_empty(&inode
->open
) );
1042 assert( list_empty(&inode
->locks
) );
1044 list_remove( &inode
->entry
);
1046 while ((ptr
= list_head( &inode
->closed
)))
1048 struct closed_fd
*fd
= LIST_ENTRY( ptr
, struct closed_fd
, entry
);
1050 if (fd
->unix_fd
!= -1) close( fd
->unix_fd
);
1053 /* make sure it is still the same file */
1055 if (!stat( fd
->unlink
, &st
) && st
.st_dev
== inode
->device
->dev
&& st
.st_ino
== inode
->ino
)
1057 if (S_ISDIR(st
.st_mode
)) rmdir( fd
->unlink
);
1058 else unlink( fd
->unlink
);
1063 release_object( inode
->device
);
1066 /* retrieve the inode object for a given fd, creating it if needed */
1067 static struct inode
*get_inode( dev_t dev
, ino_t ino
, int unix_fd
)
1069 struct device
*device
;
1070 struct inode
*inode
;
1071 unsigned int hash
= ino
% INODE_HASH_SIZE
;
1073 if (!(device
= get_device( dev
, unix_fd
))) return NULL
;
1075 LIST_FOR_EACH_ENTRY( inode
, &device
->inode_hash
[hash
], struct inode
, entry
)
1077 if (inode
->ino
== ino
)
1079 release_object( device
);
1080 return (struct inode
*)grab_object( inode
);
1084 /* not found, create it */
1085 if ((inode
= alloc_object( &inode_ops
)))
1087 inode
->device
= device
;
1089 list_init( &inode
->open
);
1090 list_init( &inode
->locks
);
1091 list_init( &inode
->closed
);
1092 list_add_head( &device
->inode_hash
[hash
], &inode
->entry
);
1094 else release_object( device
);
1099 /* add fd to the inode list of file descriptors to close */
1100 static void inode_add_closed_fd( struct inode
*inode
, struct closed_fd
*fd
)
1102 if (!list_empty( &inode
->locks
))
1104 list_add_head( &inode
->closed
, &fd
->entry
);
1106 else if (fd
->unlink
[0]) /* close the fd but keep the structure around for unlink */
1108 if (fd
->unix_fd
!= -1) close( fd
->unix_fd
);
1110 list_add_head( &inode
->closed
, &fd
->entry
);
1112 else /* no locks on this inode and no unlink, get rid of the fd */
1114 if (fd
->unix_fd
!= -1) close( fd
->unix_fd
);
1120 /****************************************************************/
1121 /* file lock functions */
1123 static void file_lock_dump( struct object
*obj
, int verbose
)
1125 struct file_lock
*lock
= (struct file_lock
*)obj
;
1126 fprintf( stderr
, "Lock %s fd=%p proc=%p start=",
1127 lock
->shared
? "shared" : "excl", lock
->fd
, lock
->process
);
1128 DUMP_LONG_LONG( lock
->start
);
1129 fprintf( stderr
, " end=" );
1130 DUMP_LONG_LONG( lock
->end
);
1131 fprintf( stderr
, "\n" );
1134 static int file_lock_signaled( struct object
*obj
, struct wait_queue_entry
*entry
)
1136 struct file_lock
*lock
= (struct file_lock
*)obj
;
1137 /* lock is signaled if it has lost its owner */
1138 return !lock
->process
;
1141 /* set (or remove) a Unix lock if possible for the given range */
1142 static int set_unix_lock( struct fd
*fd
, file_pos_t start
, file_pos_t end
, int type
)
1146 if (!fd
->fs_locks
) return 1; /* no fs locks possible for this fd */
1149 if (start
== end
) return 1; /* can't set zero-byte lock */
1150 if (start
> max_unix_offset
) return 1; /* ignore it */
1152 fl
.l_whence
= SEEK_SET
;
1154 if (!end
|| end
> max_unix_offset
) fl
.l_len
= 0;
1155 else fl
.l_len
= end
- start
;
1156 if (fcntl( fd
->unix_fd
, F_SETLK
, &fl
) != -1) return 1;
1161 /* check whether locks work at all on this file system */
1162 if (fcntl( fd
->unix_fd
, F_GETLK
, &fl
) != -1)
1164 set_error( STATUS_FILE_LOCK_CONFLICT
);
1170 /* no locking on this fs, just ignore it */
1174 set_error( STATUS_FILE_LOCK_CONFLICT
);
1177 /* this can happen if we try to set a write lock on a read-only file */
1178 /* we just ignore that error */
1179 if (fl
.l_type
== F_WRLCK
) return 1;
1180 set_error( STATUS_ACCESS_DENIED
);
1186 /* this can happen if off_t is 64-bit but the kernel only supports 32-bit */
1187 /* in that case we shrink the limit and retry */
1188 if (max_unix_offset
> INT_MAX
)
1190 max_unix_offset
= INT_MAX
;
1201 /* check if interval [start;end) overlaps the lock */
1202 static inline int lock_overlaps( struct file_lock
*lock
, file_pos_t start
, file_pos_t end
)
1204 if (lock
->end
&& start
>= lock
->end
) return 0;
1205 if (end
&& lock
->start
>= end
) return 0;
1209 /* remove Unix locks for all bytes in the specified area that are no longer locked */
1210 static void remove_unix_locks( struct fd
*fd
, file_pos_t start
, file_pos_t end
)
1218 } *first
, *cur
, *next
, *buffer
;
1223 if (!fd
->inode
) return;
1224 if (!fd
->fs_locks
) return;
1225 if (start
== end
|| start
> max_unix_offset
) return;
1226 if (!end
|| end
> max_unix_offset
) end
= max_unix_offset
+ 1;
1228 /* count the number of locks overlapping the specified area */
1230 LIST_FOR_EACH( ptr
, &fd
->inode
->locks
)
1232 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, inode_entry
);
1233 if (lock
->start
== lock
->end
) continue;
1234 if (lock_overlaps( lock
, start
, end
)) count
++;
1237 if (!count
) /* no locks at all, we can unlock everything */
1239 set_unix_lock( fd
, start
, end
, F_UNLCK
);
1243 /* allocate space for the list of holes */
1244 /* max. number of holes is number of locks + 1 */
1246 if (!(buffer
= malloc( sizeof(*buffer
) * (count
+1) ))) return;
1250 first
->start
= start
;
1254 /* build a sorted list of unlocked holes in the specified area */
1256 LIST_FOR_EACH( ptr
, &fd
->inode
->locks
)
1258 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, inode_entry
);
1259 if (lock
->start
== lock
->end
) continue;
1260 if (!lock_overlaps( lock
, start
, end
)) continue;
1262 /* go through all the holes touched by this lock */
1263 for (cur
= first
; cur
; cur
= cur
->next
)
1265 if (cur
->end
<= lock
->start
) continue; /* hole is before start of lock */
1266 if (lock
->end
&& cur
->start
>= lock
->end
) break; /* hole is after end of lock */
1268 /* now we know that lock is overlapping hole */
1270 if (cur
->start
>= lock
->start
) /* lock starts before hole, shrink from start */
1272 cur
->start
= lock
->end
;
1273 if (cur
->start
&& cur
->start
< cur
->end
) break; /* done with this lock */
1274 /* now hole is empty, remove it */
1275 if (cur
->next
) cur
->next
->prev
= cur
->prev
;
1276 if (cur
->prev
) cur
->prev
->next
= cur
->next
;
1277 else if (!(first
= cur
->next
)) goto done
; /* no more holes at all */
1279 else if (!lock
->end
|| cur
->end
<= lock
->end
) /* lock larger than hole, shrink from end */
1281 cur
->end
= lock
->start
;
1282 assert( cur
->start
< cur
->end
);
1284 else /* lock is in the middle of hole, split hole in two */
1287 next
->next
= cur
->next
;
1289 next
->start
= lock
->end
;
1290 next
->end
= cur
->end
;
1291 cur
->end
= lock
->start
;
1292 assert( next
->start
< next
->end
);
1293 assert( cur
->end
< next
->start
);
1295 break; /* done with this lock */
1300 /* clear Unix locks for all the holes */
1302 for (cur
= first
; cur
; cur
= cur
->next
)
1303 set_unix_lock( fd
, cur
->start
, cur
->end
, F_UNLCK
);
1309 /* create a new lock on a fd */
1310 static struct file_lock
*add_lock( struct fd
*fd
, int shared
, file_pos_t start
, file_pos_t end
)
1312 struct file_lock
*lock
;
1314 if (!(lock
= alloc_object( &file_lock_ops
))) return NULL
;
1315 lock
->shared
= shared
;
1316 lock
->start
= start
;
1319 lock
->process
= current
->process
;
1321 /* now try to set a Unix lock */
1322 if (!set_unix_lock( lock
->fd
, lock
->start
, lock
->end
, lock
->shared
? F_RDLCK
: F_WRLCK
))
1324 release_object( lock
);
1327 list_add_tail( &fd
->locks
, &lock
->fd_entry
);
1328 list_add_tail( &fd
->inode
->locks
, &lock
->inode_entry
);
1329 list_add_tail( &lock
->process
->locks
, &lock
->proc_entry
);
1333 /* remove an existing lock */
1334 static void remove_lock( struct file_lock
*lock
, int remove_unix
)
1336 struct inode
*inode
= lock
->fd
->inode
;
1338 list_remove( &lock
->fd_entry
);
1339 list_remove( &lock
->inode_entry
);
1340 list_remove( &lock
->proc_entry
);
1341 if (remove_unix
) remove_unix_locks( lock
->fd
, lock
->start
, lock
->end
);
1342 if (list_empty( &inode
->locks
)) inode_close_pending( inode
, 1 );
1343 lock
->process
= NULL
;
1344 wake_up( &lock
->obj
, 0 );
1345 release_object( lock
);
1348 /* remove all locks owned by a given process */
1349 void remove_process_locks( struct process
*process
)
1353 while ((ptr
= list_head( &process
->locks
)))
1355 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, proc_entry
);
1356 remove_lock( lock
, 1 ); /* this removes it from the list */
1360 /* remove all locks on a given fd */
1361 static void remove_fd_locks( struct fd
*fd
)
1363 file_pos_t start
= FILE_POS_T_MAX
, end
= 0;
1366 while ((ptr
= list_head( &fd
->locks
)))
1368 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, fd_entry
);
1369 if (lock
->start
< start
) start
= lock
->start
;
1370 if (!lock
->end
|| lock
->end
> end
) end
= lock
->end
- 1;
1371 remove_lock( lock
, 0 );
1373 if (start
< end
) remove_unix_locks( fd
, start
, end
+ 1 );
1376 /* add a lock on an fd */
1377 /* returns handle to wait on */
1378 obj_handle_t
lock_fd( struct fd
*fd
, file_pos_t start
, file_pos_t count
, int shared
, int wait
)
1381 file_pos_t end
= start
+ count
;
1383 if (!fd
->inode
) /* not a regular file */
1385 set_error( STATUS_INVALID_DEVICE_REQUEST
);
1389 /* don't allow wrapping locks */
1390 if (end
&& end
< start
)
1392 set_error( STATUS_INVALID_PARAMETER
);
1396 /* check if another lock on that file overlaps the area */
1397 LIST_FOR_EACH( ptr
, &fd
->inode
->locks
)
1399 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, inode_entry
);
1400 if (!lock_overlaps( lock
, start
, end
)) continue;
1401 if (shared
&& (lock
->shared
|| lock
->fd
== fd
)) continue;
1405 set_error( STATUS_FILE_LOCK_CONFLICT
);
1408 set_error( STATUS_PENDING
);
1409 return alloc_handle( current
->process
, lock
, SYNCHRONIZE
, 0 );
1412 /* not found, add it */
1413 if (add_lock( fd
, shared
, start
, end
)) return 0;
1414 if (get_error() == STATUS_FILE_LOCK_CONFLICT
)
1416 /* Unix lock conflict -> tell client to wait and retry */
1417 if (wait
) set_error( STATUS_PENDING
);
1422 /* remove a lock on an fd */
1423 void unlock_fd( struct fd
*fd
, file_pos_t start
, file_pos_t count
)
1426 file_pos_t end
= start
+ count
;
1428 /* find an existing lock with the exact same parameters */
1429 LIST_FOR_EACH( ptr
, &fd
->locks
)
1431 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, fd_entry
);
1432 if ((lock
->start
== start
) && (lock
->end
== end
))
1434 remove_lock( lock
, 1 );
1438 set_error( STATUS_FILE_LOCK_CONFLICT
);
1442 /****************************************************************/
1443 /* file descriptor functions */
1445 static void fd_dump( struct object
*obj
, int verbose
)
1447 struct fd
*fd
= (struct fd
*)obj
;
1448 fprintf( stderr
, "Fd unix_fd=%d user=%p options=%08x", fd
->unix_fd
, fd
->user
, fd
->options
);
1449 if (fd
->inode
) fprintf( stderr
, " inode=%p unlink='%s'", fd
->inode
, fd
->closed
->unlink
);
1450 fprintf( stderr
, "\n" );
1453 static void fd_destroy( struct object
*obj
)
1455 struct fd
*fd
= (struct fd
*)obj
;
1457 free_async_queue( fd
->read_q
);
1458 free_async_queue( fd
->write_q
);
1459 free_async_queue( fd
->wait_q
);
1461 if (fd
->completion
) release_object( fd
->completion
);
1462 remove_fd_locks( fd
);
1463 free( fd
->unix_name
);
1464 list_remove( &fd
->inode_entry
);
1465 if (fd
->poll_index
!= -1) remove_poll_user( fd
, fd
->poll_index
);
1468 inode_add_closed_fd( fd
->inode
, fd
->closed
);
1469 release_object( fd
->inode
);
1471 else /* no inode, close it right away */
1473 if (fd
->unix_fd
!= -1) close( fd
->unix_fd
);
1477 /* check if the desired access is possible without violating */
1478 /* the sharing mode of other opens of the same file */
1479 static unsigned int check_sharing( struct fd
*fd
, unsigned int access
, unsigned int sharing
,
1480 unsigned int open_flags
, unsigned int options
)
1482 /* only a few access bits are meaningful wrt sharing */
1483 const unsigned int read_access
= FILE_READ_DATA
| FILE_EXECUTE
;
1484 const unsigned int write_access
= FILE_WRITE_DATA
| FILE_APPEND_DATA
;
1485 const unsigned int all_access
= read_access
| write_access
| DELETE
;
1487 unsigned int existing_sharing
= FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
;
1488 unsigned int existing_access
= 0;
1491 fd
->access
= access
;
1492 fd
->sharing
= sharing
;
1494 LIST_FOR_EACH( ptr
, &fd
->inode
->open
)
1496 struct fd
*fd_ptr
= LIST_ENTRY( ptr
, struct fd
, inode_entry
);
1499 /* if access mode is 0, sharing mode is ignored */
1500 if (fd_ptr
->access
& all_access
) existing_sharing
&= fd_ptr
->sharing
;
1501 existing_access
|= fd_ptr
->access
;
1505 if (((access
& read_access
) && !(existing_sharing
& FILE_SHARE_READ
)) ||
1506 ((access
& write_access
) && !(existing_sharing
& FILE_SHARE_WRITE
)) ||
1507 ((access
& DELETE
) && !(existing_sharing
& FILE_SHARE_DELETE
)))
1508 return STATUS_SHARING_VIOLATION
;
1509 if (((existing_access
& FILE_MAPPING_WRITE
) && !(sharing
& FILE_SHARE_WRITE
)) ||
1510 ((existing_access
& FILE_MAPPING_IMAGE
) && (access
& FILE_WRITE_DATA
)))
1511 return STATUS_SHARING_VIOLATION
;
1512 if ((existing_access
& FILE_MAPPING_IMAGE
) && (options
& FILE_DELETE_ON_CLOSE
))
1513 return STATUS_CANNOT_DELETE
;
1514 if ((existing_access
& FILE_MAPPING_ACCESS
) && (open_flags
& O_TRUNC
))
1515 return STATUS_USER_MAPPED_FILE
;
1516 if (!(access
& all_access
))
1517 return 0; /* if access mode is 0, sharing mode is ignored (except for mappings) */
1518 if (((existing_access
& read_access
) && !(sharing
& FILE_SHARE_READ
)) ||
1519 ((existing_access
& write_access
) && !(sharing
& FILE_SHARE_WRITE
)) ||
1520 ((existing_access
& DELETE
) && !(sharing
& FILE_SHARE_DELETE
)))
1521 return STATUS_SHARING_VIOLATION
;
1525 /* set the events that select waits for on this fd */
1526 void set_fd_events( struct fd
*fd
, int events
)
1528 int user
= fd
->poll_index
;
1529 assert( poll_users
[user
] == fd
);
1531 set_fd_epoll_events( fd
, user
, events
);
1533 if (events
== -1) /* stop waiting on this fd completely */
1535 pollfd
[user
].fd
= -1;
1536 pollfd
[user
].events
= POLLERR
;
1537 pollfd
[user
].revents
= 0;
1539 else if (pollfd
[user
].fd
!= -1 || !pollfd
[user
].events
)
1541 pollfd
[user
].fd
= fd
->unix_fd
;
1542 pollfd
[user
].events
= events
;
1546 /* prepare an fd for unmounting its corresponding device */
1547 static inline void unmount_fd( struct fd
*fd
)
1549 assert( fd
->inode
);
1551 async_wake_up( fd
->read_q
, STATUS_VOLUME_DISMOUNTED
);
1552 async_wake_up( fd
->write_q
, STATUS_VOLUME_DISMOUNTED
);
1554 if (fd
->poll_index
!= -1) set_fd_events( fd
, -1 );
1556 if (fd
->unix_fd
!= -1) close( fd
->unix_fd
);
1559 fd
->no_fd_status
= STATUS_VOLUME_DISMOUNTED
;
1560 fd
->closed
->unix_fd
= -1;
1561 fd
->closed
->unlink
[0] = 0;
1563 /* stop using Unix locks on this fd (existing locks have been removed by close) */
1567 /* allocate an fd object, without setting the unix fd yet */
1568 static struct fd
*alloc_fd_object(void)
1570 struct fd
*fd
= alloc_object( &fd_ops
);
1572 if (!fd
) return NULL
;
1582 fd
->unix_name
= NULL
;
1586 fd
->poll_index
= -1;
1590 fd
->completion
= NULL
;
1591 list_init( &fd
->inode_entry
);
1592 list_init( &fd
->locks
);
1594 if ((fd
->poll_index
= add_poll_user( fd
)) == -1)
1596 release_object( fd
);
1602 /* allocate a pseudo fd object, for objects that need to behave like files but don't have a unix fd */
1603 struct fd
*alloc_pseudo_fd( const struct fd_ops
*fd_user_ops
, struct object
*user
, unsigned int options
)
1605 struct fd
*fd
= alloc_object( &fd_ops
);
1607 if (!fd
) return NULL
;
1609 fd
->fd_ops
= fd_user_ops
;
1614 fd
->options
= options
;
1616 fd
->unix_name
= NULL
;
1621 fd
->poll_index
= -1;
1625 fd
->completion
= NULL
;
1626 fd
->no_fd_status
= STATUS_BAD_DEVICE_TYPE
;
1627 list_init( &fd
->inode_entry
);
1628 list_init( &fd
->locks
);
1632 /* duplicate an fd object for a different user */
1633 struct fd
*dup_fd_object( struct fd
*orig
, unsigned int access
, unsigned int sharing
, unsigned int options
)
1636 struct fd
*fd
= alloc_fd_object();
1638 if (!fd
) return NULL
;
1640 fd
->options
= options
;
1641 fd
->cacheable
= orig
->cacheable
;
1643 if (orig
->unix_name
)
1645 if (!(fd
->unix_name
= mem_alloc( strlen(orig
->unix_name
) + 1 ))) goto failed
;
1646 strcpy( fd
->unix_name
, orig
->unix_name
);
1651 struct closed_fd
*closed
= mem_alloc( sizeof(*closed
) );
1652 if (!closed
) goto failed
;
1653 if ((fd
->unix_fd
= dup( orig
->unix_fd
)) == -1)
1659 closed
->unix_fd
= fd
->unix_fd
;
1660 closed
->unlink
[0] = 0;
1661 fd
->closed
= closed
;
1662 fd
->inode
= (struct inode
*)grab_object( orig
->inode
);
1663 list_add_head( &fd
->inode
->open
, &fd
->inode_entry
);
1664 if ((err
= check_sharing( fd
, access
, sharing
, 0, options
)))
1670 else if ((fd
->unix_fd
= dup( orig
->unix_fd
)) == -1)
1678 release_object( fd
);
1682 /* find an existing fd object that can be reused for a mapping */
1683 struct fd
*get_fd_object_for_mapping( struct fd
*fd
, unsigned int access
, unsigned int sharing
)
1687 if (!fd
->inode
) return NULL
;
1689 LIST_FOR_EACH_ENTRY( fd_ptr
, &fd
->inode
->open
, struct fd
, inode_entry
)
1690 if (fd_ptr
->access
== access
&& fd_ptr
->sharing
== sharing
)
1691 return (struct fd
*)grab_object( fd_ptr
);
1696 /* set the status to return when the fd has no associated unix fd */
1697 void set_no_fd_status( struct fd
*fd
, unsigned int status
)
1699 fd
->no_fd_status
= status
;
1702 /* sets the user of an fd that previously had no user */
1703 void set_fd_user( struct fd
*fd
, const struct fd_ops
*user_ops
, struct object
*user
)
1705 assert( fd
->fd_ops
== NULL
);
1706 fd
->fd_ops
= user_ops
;
1710 static char *dup_fd_name( struct fd
*root
, const char *name
)
1714 if (!root
) return strdup( name
);
1715 if (!root
->unix_name
) return NULL
;
1718 if (name
[0] == '.' && (!name
[1] || name
[1] == '/')) name
++;
1720 if ((ret
= malloc( strlen(root
->unix_name
) + strlen(name
) + 2 )))
1722 strcpy( ret
, root
->unix_name
);
1723 if (name
[0] && name
[0] != '/') strcat( ret
, "/" );
1724 strcat( ret
, name
);
1729 /* open() wrapper that returns a struct fd with no fd user set */
1730 struct fd
*open_fd( struct fd
*root
, const char *name
, int flags
, mode_t
*mode
, unsigned int access
,
1731 unsigned int sharing
, unsigned int options
)
1734 struct closed_fd
*closed_fd
;
1736 const char *unlink_name
= "";
1740 if (((options
& FILE_DELETE_ON_CLOSE
) && !(access
& DELETE
)) ||
1741 ((options
& FILE_DIRECTORY_FILE
) && (flags
& O_TRUNC
)))
1743 set_error( STATUS_INVALID_PARAMETER
);
1747 if (!(fd
= alloc_fd_object())) return NULL
;
1749 fd
->options
= options
;
1750 if (options
& FILE_DELETE_ON_CLOSE
) unlink_name
= name
;
1751 if (!(closed_fd
= mem_alloc( sizeof(*closed_fd
) + strlen(unlink_name
) )))
1753 release_object( fd
);
1759 if ((root_fd
= get_unix_fd( root
)) == -1) goto error
;
1760 if (fchdir( root_fd
) == -1)
1768 /* create the directory if needed */
1769 if ((options
& FILE_DIRECTORY_FILE
) && (flags
& O_CREAT
))
1771 if (mkdir( name
, *mode
) == -1)
1773 if (errno
!= EEXIST
|| (flags
& O_EXCL
))
1779 flags
&= ~(O_CREAT
| O_EXCL
| O_TRUNC
);
1782 if ((access
& FILE_UNIX_WRITE_ACCESS
) && !(options
& FILE_DIRECTORY_FILE
))
1784 if (access
& FILE_UNIX_READ_ACCESS
) rw_mode
= O_RDWR
;
1785 else rw_mode
= O_WRONLY
;
1787 else rw_mode
= O_RDONLY
;
1789 fd
->unix_name
= dup_fd_name( root
, name
);
1791 if ((fd
->unix_fd
= open( name
, rw_mode
| (flags
& ~O_TRUNC
), *mode
)) == -1)
1793 /* if we tried to open a directory for write access, retry read-only */
1794 if (errno
== EISDIR
)
1796 if ((access
& FILE_UNIX_WRITE_ACCESS
) || (flags
& O_CREAT
))
1797 fd
->unix_fd
= open( name
, O_RDONLY
| (flags
& ~(O_TRUNC
| O_CREAT
| O_EXCL
)), *mode
);
1800 if (fd
->unix_fd
== -1)
1807 closed_fd
->unix_fd
= fd
->unix_fd
;
1808 closed_fd
->unlink
[0] = 0;
1809 fstat( fd
->unix_fd
, &st
);
1812 /* only bother with an inode for normal files and directories */
1813 if (S_ISREG(st
.st_mode
) || S_ISDIR(st
.st_mode
))
1816 struct inode
*inode
= get_inode( st
.st_dev
, st
.st_ino
, fd
->unix_fd
);
1820 /* we can close the fd because there are no others open on the same file,
1821 * otherwise we wouldn't have failed to allocate a new inode
1826 fd
->closed
= closed_fd
;
1827 fd
->cacheable
= !inode
->device
->removable
;
1828 list_add_head( &inode
->open
, &fd
->inode_entry
);
1830 /* check directory options */
1831 if ((options
& FILE_DIRECTORY_FILE
) && !S_ISDIR(st
.st_mode
))
1833 release_object( fd
);
1834 set_error( STATUS_NOT_A_DIRECTORY
);
1837 if ((options
& FILE_NON_DIRECTORY_FILE
) && S_ISDIR(st
.st_mode
))
1839 release_object( fd
);
1840 set_error( STATUS_FILE_IS_A_DIRECTORY
);
1843 if ((err
= check_sharing( fd
, access
, sharing
, flags
, options
)))
1845 release_object( fd
);
1849 strcpy( closed_fd
->unlink
, unlink_name
);
1850 if (flags
& O_TRUNC
)
1852 if (S_ISDIR(st
.st_mode
))
1854 release_object( fd
);
1855 set_error( STATUS_OBJECT_NAME_COLLISION
);
1858 ftruncate( fd
->unix_fd
, 0 );
1861 else /* special file */
1863 if (options
& FILE_DIRECTORY_FILE
)
1865 set_error( STATUS_NOT_A_DIRECTORY
);
1868 if (unlink_name
[0]) /* we can't unlink special files */
1870 set_error( STATUS_INVALID_PARAMETER
);
1879 release_object( fd
);
1881 if (root_fd
!= -1) fchdir( server_dir_fd
); /* go back to the server dir */
1885 /* create an fd for an anonymous file */
1886 /* if the function fails the unix fd is closed */
1887 struct fd
*create_anonymous_fd( const struct fd_ops
*fd_user_ops
, int unix_fd
, struct object
*user
,
1888 unsigned int options
)
1890 struct fd
*fd
= alloc_fd_object();
1894 set_fd_user( fd
, fd_user_ops
, user
);
1895 fd
->unix_fd
= unix_fd
;
1896 fd
->options
= options
;
1903 /* retrieve the object that is using an fd */
1904 void *get_fd_user( struct fd
*fd
)
1909 /* retrieve the opening options for the fd */
1910 unsigned int get_fd_options( struct fd
*fd
)
1915 /* retrieve the unix fd for an object */
1916 int get_unix_fd( struct fd
*fd
)
1918 if (fd
->unix_fd
== -1) set_error( fd
->no_fd_status
);
1922 /* check if two file descriptors point to the same file */
1923 int is_same_file_fd( struct fd
*fd1
, struct fd
*fd2
)
1925 return fd1
->inode
== fd2
->inode
;
1928 /* allow the fd to be cached (can't be reset once set) */
1929 void allow_fd_caching( struct fd
*fd
)
1934 /* check if fd is on a removable device */
1935 int is_fd_removable( struct fd
*fd
)
1937 return (fd
->inode
&& fd
->inode
->device
->removable
);
1940 /* set or clear the fd signaled state */
1941 void set_fd_signaled( struct fd
*fd
, int signaled
)
1943 fd
->signaled
= signaled
;
1944 if (signaled
) wake_up( fd
->user
, 0 );
1947 /* set or clear the fd signaled state */
1948 int is_fd_signaled( struct fd
*fd
)
1950 return fd
->signaled
;
1953 /* handler for close_handle that refuses to close fd-associated handles in other processes */
1954 int fd_close_handle( struct object
*obj
, struct process
*process
, obj_handle_t handle
)
1956 return (!current
|| current
->process
== process
);
1959 /* check if events are pending and if yes return which one(s) */
1960 int check_fd_events( struct fd
*fd
, int events
)
1964 if (fd
->unix_fd
== -1) return POLLERR
;
1965 if (fd
->inode
) return events
; /* regular files are always signaled */
1967 pfd
.fd
= fd
->unix_fd
;
1968 pfd
.events
= events
;
1969 if (poll( &pfd
, 1, 0 ) <= 0) return 0;
1973 /* default signaled() routine for objects that poll() on an fd */
1974 int default_fd_signaled( struct object
*obj
, struct wait_queue_entry
*entry
)
1976 struct fd
*fd
= get_obj_fd( obj
);
1977 int ret
= fd
->signaled
;
1978 release_object( fd
);
1982 /* default map_access() routine for objects that behave like an fd */
1983 unsigned int default_fd_map_access( struct object
*obj
, unsigned int access
)
1985 if (access
& GENERIC_READ
) access
|= FILE_GENERIC_READ
;
1986 if (access
& GENERIC_WRITE
) access
|= FILE_GENERIC_WRITE
;
1987 if (access
& GENERIC_EXECUTE
) access
|= FILE_GENERIC_EXECUTE
;
1988 if (access
& GENERIC_ALL
) access
|= FILE_ALL_ACCESS
;
1989 return access
& ~(GENERIC_READ
| GENERIC_WRITE
| GENERIC_EXECUTE
| GENERIC_ALL
);
1992 int default_fd_get_poll_events( struct fd
*fd
)
1996 if (async_waiting( fd
->read_q
)) events
|= POLLIN
;
1997 if (async_waiting( fd
->write_q
)) events
|= POLLOUT
;
2001 /* default handler for poll() events */
2002 void default_poll_event( struct fd
*fd
, int event
)
2004 if (event
& (POLLIN
| POLLERR
| POLLHUP
)) async_wake_up( fd
->read_q
, STATUS_ALERTED
);
2005 if (event
& (POLLOUT
| POLLERR
| POLLHUP
)) async_wake_up( fd
->write_q
, STATUS_ALERTED
);
2007 /* if an error occurred, stop polling this fd to avoid busy-looping */
2008 if (event
& (POLLERR
| POLLHUP
)) set_fd_events( fd
, -1 );
2009 else if (!fd
->inode
) set_fd_events( fd
, fd
->fd_ops
->get_poll_events( fd
) );
2012 struct async
*fd_queue_async( struct fd
*fd
, const async_data_t
*data
, int type
)
2014 struct async_queue
*queue
;
2015 struct async
*async
;
2019 case ASYNC_TYPE_READ
:
2020 if (!fd
->read_q
&& !(fd
->read_q
= create_async_queue( fd
))) return NULL
;
2023 case ASYNC_TYPE_WRITE
:
2024 if (!fd
->write_q
&& !(fd
->write_q
= create_async_queue( fd
))) return NULL
;
2025 queue
= fd
->write_q
;
2027 case ASYNC_TYPE_WAIT
:
2028 if (!fd
->wait_q
&& !(fd
->wait_q
= create_async_queue( fd
))) return NULL
;
2036 if ((async
= create_async( current
, queue
, data
)) && type
!= ASYNC_TYPE_WAIT
)
2039 set_fd_events( fd
, fd
->fd_ops
->get_poll_events( fd
) );
2040 else /* regular files are always ready for read and write */
2041 async_wake_up( queue
, STATUS_ALERTED
);
2046 void fd_async_wake_up( struct fd
*fd
, int type
, unsigned int status
)
2050 case ASYNC_TYPE_READ
:
2051 async_wake_up( fd
->read_q
, status
);
2053 case ASYNC_TYPE_WRITE
:
2054 async_wake_up( fd
->write_q
, status
);
2056 case ASYNC_TYPE_WAIT
:
2057 async_wake_up( fd
->wait_q
, status
);
2064 void fd_reselect_async( struct fd
*fd
, struct async_queue
*queue
)
2066 fd
->fd_ops
->reselect_async( fd
, queue
);
2069 void no_fd_queue_async( struct fd
*fd
, const async_data_t
*data
, int type
, int count
)
2071 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2074 void default_fd_queue_async( struct fd
*fd
, const async_data_t
*data
, int type
, int count
)
2076 struct async
*async
;
2078 if ((async
= fd_queue_async( fd
, data
, type
)))
2080 release_object( async
);
2081 set_error( STATUS_PENDING
);
2085 /* default reselect_async() fd routine */
2086 void default_fd_reselect_async( struct fd
*fd
, struct async_queue
*queue
)
2088 if (queue
!= fd
->wait_q
)
2090 int poll_events
= fd
->fd_ops
->get_poll_events( fd
);
2091 int events
= check_fd_events( fd
, poll_events
);
2092 if (events
) fd
->fd_ops
->poll_event( fd
, events
);
2093 else set_fd_events( fd
, poll_events
);
2097 /* default cancel_async() fd routine */
2098 void default_fd_cancel_async( struct fd
*fd
, struct process
*process
, struct thread
*thread
, client_ptr_t iosb
)
2102 n
+= async_wake_up_by( fd
->read_q
, process
, thread
, iosb
, STATUS_CANCELLED
);
2103 n
+= async_wake_up_by( fd
->write_q
, process
, thread
, iosb
, STATUS_CANCELLED
);
2104 n
+= async_wake_up_by( fd
->wait_q
, process
, thread
, iosb
, STATUS_CANCELLED
);
2106 set_error( STATUS_NOT_FOUND
);
2109 /* default flush() routine */
2110 void no_flush( struct fd
*fd
, struct event
**event
)
2112 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2115 static inline int is_valid_mounted_device( struct stat
*st
)
2117 #if defined(linux) || defined(__sun__)
2118 return S_ISBLK( st
->st_mode
);
2120 /* disks are char devices on *BSD */
2121 return S_ISCHR( st
->st_mode
);
2125 /* close all Unix file descriptors on a device to allow unmounting it */
2126 static void unmount_device( struct fd
*device_fd
)
2130 struct device
*device
;
2131 struct inode
*inode
;
2133 int unix_fd
= get_unix_fd( device_fd
);
2135 if (unix_fd
== -1) return;
2137 if (fstat( unix_fd
, &st
) == -1 || !is_valid_mounted_device( &st
))
2139 set_error( STATUS_INVALID_PARAMETER
);
2143 if (!(device
= get_device( st
.st_rdev
, -1 ))) return;
2145 for (i
= 0; i
< INODE_HASH_SIZE
; i
++)
2147 LIST_FOR_EACH_ENTRY( inode
, &device
->inode_hash
[i
], struct inode
, entry
)
2149 LIST_FOR_EACH_ENTRY( fd
, &inode
->open
, struct fd
, inode_entry
)
2153 inode_close_pending( inode
, 0 );
2156 /* remove it from the hash table */
2157 list_remove( &device
->entry
);
2158 list_init( &device
->entry
);
2159 release_object( device
);
2162 obj_handle_t
no_fd_ioctl( struct fd
*fd
, ioctl_code_t code
, const async_data_t
*async
,
2163 int blocking
, const void *data
, data_size_t size
)
2165 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2169 /* default ioctl() routine */
2170 obj_handle_t
default_fd_ioctl( struct fd
*fd
, ioctl_code_t code
, const async_data_t
*async
,
2171 int blocking
, const void *data
, data_size_t size
)
2175 case FSCTL_DISMOUNT_VOLUME
:
2176 unmount_device( fd
);
2179 set_error( STATUS_NOT_SUPPORTED
);
2184 /* same as get_handle_obj but retrieve the struct fd associated to the object */
2185 static struct fd
*get_handle_fd_obj( struct process
*process
, obj_handle_t handle
,
2186 unsigned int access
)
2188 struct fd
*fd
= NULL
;
2191 if ((obj
= get_handle_obj( process
, handle
, access
, NULL
)))
2193 fd
= get_obj_fd( obj
);
2194 release_object( obj
);
2199 struct completion
*fd_get_completion( struct fd
*fd
, apc_param_t
*p_key
)
2201 *p_key
= fd
->comp_key
;
2202 return fd
->completion
? (struct completion
*)grab_object( fd
->completion
) : NULL
;
2205 void fd_copy_completion( struct fd
*src
, struct fd
*dst
)
2207 assert( !dst
->completion
);
2208 dst
->completion
= fd_get_completion( src
, &dst
->comp_key
);
2211 /* flush a file buffers */
2212 DECL_HANDLER(flush_file
)
2214 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 );
2215 struct event
* event
= NULL
;
2219 fd
->fd_ops
->flush( fd
, &event
);
2222 reply
->event
= alloc_handle( current
->process
, event
, SYNCHRONIZE
, 0 );
2224 release_object( fd
);
2228 /* open a file object */
2229 DECL_HANDLER(open_file_object
)
2231 struct unicode_str name
;
2232 struct directory
*root
= NULL
;
2233 struct object
*obj
, *result
;
2235 get_req_unicode_str( &name
);
2236 if (req
->rootdir
&& !(root
= get_directory_obj( current
->process
, req
->rootdir
, 0 )))
2239 if ((obj
= open_object_dir( root
, &name
, req
->attributes
, NULL
)))
2241 if ((result
= obj
->ops
->open_file( obj
, req
->access
, req
->sharing
, req
->options
)))
2243 reply
->handle
= alloc_handle( current
->process
, result
, req
->access
, req
->attributes
);
2244 release_object( result
);
2246 release_object( obj
);
2249 if (root
) release_object( root
);
2252 /* get the Unix name from a file handle */
2253 DECL_HANDLER(get_handle_unix_name
)
2257 if ((fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 )))
2261 data_size_t name_len
= strlen( fd
->unix_name
);
2262 reply
->name_len
= name_len
;
2263 if (name_len
<= get_reply_max_size()) set_reply_data( fd
->unix_name
, name_len
);
2264 else set_error( STATUS_BUFFER_OVERFLOW
);
2266 else set_error( STATUS_OBJECT_TYPE_MISMATCH
);
2267 release_object( fd
);
2271 /* get a Unix fd to access a file */
2272 DECL_HANDLER(get_handle_fd
)
2276 if ((fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 )))
2278 int unix_fd
= get_unix_fd( fd
);
2281 reply
->type
= fd
->fd_ops
->get_fd_type( fd
);
2282 reply
->cacheable
= fd
->cacheable
;
2283 reply
->options
= fd
->options
;
2284 reply
->access
= get_handle_access( current
->process
, req
->handle
);
2285 send_client_fd( current
->process
, unix_fd
, req
->handle
);
2287 release_object( fd
);
2291 /* perform an ioctl on a file */
2294 unsigned int access
= (req
->code
>> 14) & (FILE_READ_DATA
|FILE_WRITE_DATA
);
2295 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->async
.handle
, access
);
2299 reply
->wait
= fd
->fd_ops
->ioctl( fd
, req
->code
, &req
->async
, req
->blocking
,
2300 get_req_data(), get_req_data_size() );
2301 reply
->options
= fd
->options
;
2302 release_object( fd
);
2306 /* create / reschedule an async I/O */
2307 DECL_HANDLER(register_async
)
2309 unsigned int access
;
2314 case ASYNC_TYPE_READ
:
2315 access
= FILE_READ_DATA
;
2317 case ASYNC_TYPE_WRITE
:
2318 access
= FILE_WRITE_DATA
;
2321 set_error( STATUS_INVALID_PARAMETER
);
2325 if ((fd
= get_handle_fd_obj( current
->process
, req
->async
.handle
, access
)))
2327 if (get_unix_fd( fd
) != -1) fd
->fd_ops
->queue_async( fd
, &req
->async
, req
->type
, req
->count
);
2328 release_object( fd
);
2332 /* cancels all async I/O */
2333 DECL_HANDLER(cancel_async
)
2335 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 );
2336 struct thread
*thread
= req
->only_thread
? current
: NULL
;
2340 if (get_unix_fd( fd
) != -1) fd
->fd_ops
->cancel_async( fd
, current
->process
, thread
, req
->iosb
);
2341 release_object( fd
);
2345 /* attach completion object to a fd */
2346 DECL_HANDLER(set_completion_info
)
2348 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 );
2352 if (!(fd
->options
& (FILE_SYNCHRONOUS_IO_ALERT
| FILE_SYNCHRONOUS_IO_NONALERT
)) && !fd
->completion
)
2354 fd
->completion
= get_completion_obj( current
->process
, req
->chandle
, IO_COMPLETION_MODIFY_STATE
);
2355 fd
->comp_key
= req
->ckey
;
2357 else set_error( STATUS_INVALID_PARAMETER
);
2358 release_object( fd
);
2362 /* push new completion msg into a completion queue attached to the fd */
2363 DECL_HANDLER(add_fd_completion
)
2365 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 );
2369 add_completion( fd
->completion
, fd
->comp_key
, req
->cvalue
, req
->status
, req
->information
);
2370 release_object( fd
);