Added fallback syscalls for epoll functions.
[wine/wine-kai.git] / server / fd.c
blob926b7c0c997efe192cf2e5bb3307f254c2c56922
1 /*
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "config.h"
24 #include <assert.h>
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <limits.h>
28 #include <signal.h>
29 #include <stdarg.h>
30 #include <stdio.h>
31 #include <string.h>
32 #include <stdlib.h>
33 #ifdef HAVE_SYS_POLL_H
34 #include <sys/poll.h>
35 #endif
36 #ifdef HAVE_STDINT_H
37 #include <stdint.h>
38 #endif
39 #include <sys/stat.h>
40 #include <sys/time.h>
41 #include <sys/types.h>
42 #include <unistd.h>
44 #include "object.h"
45 #include "file.h"
46 #include "handle.h"
47 #include "process.h"
48 #include "request.h"
50 #include "winbase.h"
51 #include "winreg.h"
52 #include "winternl.h"
54 #if defined(HAVE_SYS_EPOLL_H) && defined(HAVE_EPOLL_CREATE)
55 # include <sys/epoll.h>
56 # define USE_EPOLL
57 #elif defined(linux) && defined(__i386__) && defined(HAVE_STDINT_H)
58 # define USE_EPOLL
59 # define EPOLLIN POLLIN
60 # define EPOLLOUT POLLOUT
61 # define EPOLLERR POLLERR
62 # define EPOLLHUP POLLHUP
63 # define EPOLL_CTL_ADD 1
64 # define EPOLL_CTL_DEL 2
65 # define EPOLL_CTL_MOD 3
67 typedef union epoll_data
69 void *ptr;
70 int fd;
71 uint32_t u32;
72 uint64_t u64;
73 } epoll_data_t;
75 struct epoll_event
77 uint32_t events;
78 epoll_data_t data;
81 #define SYSCALL_RET(ret) do { \
82 if (ret < 0) { errno = -ret; ret = -1; } \
83 return ret; \
84 } while(0)
86 static inline int epoll_create( int size )
88 int ret;
89 __asm__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
90 : "=a" (ret) : "0" (254 /*NR_epoll_create*/), "g" (size) );
91 SYSCALL_RET(ret);
94 static inline int epoll_ctl( int epfd, int op, int fd, const struct epoll_event *event )
96 int ret;
97 __asm__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
98 : "=a" (ret)
99 : "0" (255 /*NR_epoll_ctl*/), "g" (epfd), "c" (op), "d" (fd), "S" (event), "m" (*event) );
100 SYSCALL_RET(ret);
103 static inline int epoll_wait( int epfd, struct epoll_event *events, int maxevents, int timeout )
105 int ret;
106 __asm__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
107 : "=a" (ret)
108 : "0" (256 /*NR_epoll_wait*/), "g" (epfd), "c" (events), "d" (maxevents), "S" (timeout)
109 : "memory" );
110 SYSCALL_RET(ret);
112 #undef SYSCALL_RET
114 #endif /* linux && __i386__ && HAVE_STDINT_H */
117 /* Because of the stupid Posix locking semantics, we need to keep
118 * track of all file descriptors referencing a given file, and not
119 * close a single one until all the locks are gone (sigh).
122 /* file descriptor object */
124 /* closed_fd is used to keep track of the unix fd belonging to a closed fd object */
125 struct closed_fd
127 struct list entry; /* entry in inode closed list */
128 int fd; /* the unix file descriptor */
129 char unlink[1]; /* name to unlink on close (if any) */
132 struct fd
134 struct object obj; /* object header */
135 const struct fd_ops *fd_ops; /* file descriptor operations */
136 struct inode *inode; /* inode that this fd belongs to */
137 struct list inode_entry; /* entry in inode fd list */
138 struct closed_fd *closed; /* structure to store the unix fd at destroy time */
139 struct object *user; /* object using this file descriptor */
140 struct list locks; /* list of locks on this fd */
141 unsigned int access; /* file access (GENERIC_READ/WRITE) */
142 unsigned int sharing; /* file sharing mode */
143 int unix_fd; /* unix file descriptor */
144 int fs_locks; /* can we use filesystem locks for this fd? */
145 int poll_index; /* index of fd in poll array */
148 static void fd_dump( struct object *obj, int verbose );
149 static void fd_destroy( struct object *obj );
151 static const struct object_ops fd_ops =
153 sizeof(struct fd), /* size */
154 fd_dump, /* dump */
155 no_add_queue, /* add_queue */
156 NULL, /* remove_queue */
157 NULL, /* signaled */
158 NULL, /* satisfied */
159 no_get_fd, /* get_fd */
160 fd_destroy /* destroy */
163 /* inode object */
165 struct inode
167 struct object obj; /* object header */
168 struct list entry; /* inode hash list entry */
169 unsigned int hash; /* hashing code */
170 dev_t dev; /* device number */
171 ino_t ino; /* inode number */
172 struct list open; /* list of open file descriptors */
173 struct list locks; /* list of file locks */
174 struct list closed; /* list of file descriptors to close at destroy time */
177 static void inode_dump( struct object *obj, int verbose );
178 static void inode_destroy( struct object *obj );
180 static const struct object_ops inode_ops =
182 sizeof(struct inode), /* size */
183 inode_dump, /* dump */
184 no_add_queue, /* add_queue */
185 NULL, /* remove_queue */
186 NULL, /* signaled */
187 NULL, /* satisfied */
188 no_get_fd, /* get_fd */
189 inode_destroy /* destroy */
192 /* file lock object */
194 struct file_lock
196 struct object obj; /* object header */
197 struct fd *fd; /* fd owning this lock */
198 struct list fd_entry; /* entry in list of locks on a given fd */
199 struct list inode_entry; /* entry in inode list of locks */
200 int shared; /* shared lock? */
201 file_pos_t start; /* locked region is interval [start;end) */
202 file_pos_t end;
203 struct process *process; /* process owning this lock */
204 struct list proc_entry; /* entry in list of locks owned by the process */
207 static void file_lock_dump( struct object *obj, int verbose );
208 static int file_lock_signaled( struct object *obj, struct thread *thread );
210 static const struct object_ops file_lock_ops =
212 sizeof(struct file_lock), /* size */
213 file_lock_dump, /* dump */
214 add_queue, /* add_queue */
215 remove_queue, /* remove_queue */
216 file_lock_signaled, /* signaled */
217 no_satisfied, /* satisfied */
218 no_get_fd, /* get_fd */
219 no_destroy /* destroy */
223 #define OFF_T_MAX (~((file_pos_t)1 << (8*sizeof(off_t)-1)))
224 #define FILE_POS_T_MAX (~(file_pos_t)0)
226 static file_pos_t max_unix_offset = OFF_T_MAX;
228 #define DUMP_LONG_LONG(val) do { \
229 if (sizeof(val) > sizeof(unsigned long) && (val) > ~0UL) \
230 fprintf( stderr, "%lx%08lx", (unsigned long)((val) >> 32), (unsigned long)(val) ); \
231 else \
232 fprintf( stderr, "%lx", (unsigned long)(val) ); \
233 } while (0)
237 /****************************************************************/
238 /* timeouts support */
240 struct timeout_user
242 struct list entry; /* entry in sorted timeout list */
243 struct timeval when; /* timeout expiry (absolute time) */
244 timeout_callback callback; /* callback function */
245 void *private; /* callback private data */
248 static struct list timeout_list = LIST_INIT(timeout_list); /* sorted timeouts list */
250 /* add a timeout user */
251 struct timeout_user *add_timeout_user( struct timeval *when, timeout_callback func, void *private )
253 struct timeout_user *user;
254 struct list *ptr;
256 if (!(user = mem_alloc( sizeof(*user) ))) return NULL;
257 user->when = *when;
258 user->callback = func;
259 user->private = private;
261 /* Now insert it in the linked list */
263 LIST_FOR_EACH( ptr, &timeout_list )
265 struct timeout_user *timeout = LIST_ENTRY( ptr, struct timeout_user, entry );
266 if (!time_before( &timeout->when, when )) break;
268 list_add_before( ptr, &user->entry );
269 return user;
272 /* remove a timeout user */
273 void remove_timeout_user( struct timeout_user *user )
275 list_remove( &user->entry );
276 free( user );
279 /* add a timeout in milliseconds to an absolute time */
280 void add_timeout( struct timeval *when, int timeout )
282 if (timeout)
284 long sec = timeout / 1000;
285 if ((when->tv_usec += (timeout - 1000*sec) * 1000) >= 1000000)
287 when->tv_usec -= 1000000;
288 when->tv_sec++;
290 when->tv_sec += sec;
295 /****************************************************************/
296 /* poll support */
298 static struct fd **poll_users; /* users array */
299 static struct pollfd *pollfd; /* poll fd array */
300 static int nb_users; /* count of array entries actually in use */
301 static int active_users; /* current number of active users */
302 static int allocated_users; /* count of allocated entries in the array */
303 static struct fd **freelist; /* list of free entries in the array */
305 #ifdef USE_EPOLL
307 static int epoll_fd;
308 static struct epoll_event *epoll_events;
310 /* set the events that epoll waits for on this fd; helper for set_fd_events */
311 static inline void set_fd_epoll_events( struct fd *fd, int user, int events )
313 struct epoll_event ev;
314 int ctl;
316 if (epoll_fd == -1) return;
318 if (events == -1) /* stop waiting on this fd completely */
320 if (pollfd[user].fd == -1) return; /* already removed */
321 ctl = EPOLL_CTL_DEL;
323 else if (pollfd[user].fd == -1)
325 if (pollfd[user].events) return; /* stopped waiting on it, don't restart */
326 ctl = EPOLL_CTL_ADD;
328 else
330 if (pollfd[user].events == events) return; /* nothing to do */
331 ctl = EPOLL_CTL_MOD;
334 ev.events = events;
335 ev.data.u32 = user;
337 if (epoll_ctl( epoll_fd, ctl, fd->unix_fd, &ev ) == -1)
339 if (errno == ENOMEM) /* not enough memory, give up on epoll */
341 close( epoll_fd );
342 epoll_fd = -1;
344 else perror( "epoll_ctl" ); /* should not happen */
348 #else /* USE_EPOLL */
350 static inline void set_fd_epoll_events( struct fd *fd, int user, int events )
354 #endif /* USE_EPOLL */
357 /* add a user in the poll array and return its index, or -1 on failure */
358 static int add_poll_user( struct fd *fd )
360 int ret;
361 if (freelist)
363 ret = freelist - poll_users;
364 freelist = (struct fd **)poll_users[ret];
366 else
368 if (nb_users == allocated_users)
370 struct fd **newusers;
371 struct pollfd *newpoll;
372 int new_count = allocated_users ? (allocated_users + allocated_users / 2) : 16;
373 if (!(newusers = realloc( poll_users, new_count * sizeof(*poll_users) ))) return -1;
374 if (!(newpoll = realloc( pollfd, new_count * sizeof(*pollfd) )))
376 if (allocated_users)
377 poll_users = newusers;
378 else
379 free( newusers );
380 return -1;
382 poll_users = newusers;
383 pollfd = newpoll;
384 #ifdef USE_EPOLL
385 if (!allocated_users) epoll_fd = epoll_create( new_count );
386 if (epoll_fd != -1)
388 struct epoll_event *new_events;
389 if (!(new_events = realloc( epoll_events, new_count * sizeof(*epoll_events) )))
390 return -1;
391 epoll_events = new_events;
393 #endif
394 allocated_users = new_count;
396 ret = nb_users++;
398 pollfd[ret].fd = -1;
399 pollfd[ret].events = 0;
400 pollfd[ret].revents = 0;
401 poll_users[ret] = fd;
402 active_users++;
403 return ret;
406 /* remove a user from the poll list */
407 static void remove_poll_user( struct fd *fd, int user )
409 assert( user >= 0 );
410 assert( poll_users[user] == fd );
412 #ifdef USE_EPOLL
413 if (epoll_fd != -1 && pollfd[user].fd != -1)
415 struct epoll_event dummy;
416 epoll_ctl( epoll_fd, EPOLL_CTL_DEL, fd->unix_fd, &dummy );
418 #endif
419 pollfd[user].fd = -1;
420 pollfd[user].events = 0;
421 pollfd[user].revents = 0;
422 poll_users[user] = (struct fd *)freelist;
423 freelist = &poll_users[user];
424 active_users--;
427 /* process pending timeouts and return the time until the next timeout, in milliseconds */
428 static int get_next_timeout(void)
430 if (!list_empty( &timeout_list ))
432 struct list expired_list, *ptr;
433 struct timeval now;
435 gettimeofday( &now, NULL );
437 /* first remove all expired timers from the list */
439 list_init( &expired_list );
440 while ((ptr = list_head( &timeout_list )) != NULL)
442 struct timeout_user *timeout = LIST_ENTRY( ptr, struct timeout_user, entry );
444 if (!time_before( &now, &timeout->when ))
446 list_remove( &timeout->entry );
447 list_add_tail( &expired_list, &timeout->entry );
449 else break;
452 /* now call the callback for all the removed timers */
454 while ((ptr = list_head( &expired_list )) != NULL)
456 struct timeout_user *timeout = LIST_ENTRY( ptr, struct timeout_user, entry );
457 list_remove( &timeout->entry );
458 timeout->callback( timeout->private );
459 free( timeout );
462 if ((ptr = list_head( &timeout_list )) != NULL)
464 struct timeout_user *timeout = LIST_ENTRY( ptr, struct timeout_user, entry );
465 int diff = (timeout->when.tv_sec - now.tv_sec) * 1000
466 + (timeout->when.tv_usec - now.tv_usec) / 1000;
467 if (diff < 0) diff = 0;
468 return diff;
471 return -1; /* no pending timeouts */
474 /* server main poll() loop */
475 void main_loop(void)
477 int i, ret, timeout;
479 #ifdef USE_EPOLL
480 assert( POLLIN == EPOLLIN );
481 assert( POLLOUT == EPOLLOUT );
482 assert( POLLERR == EPOLLERR );
483 assert( POLLHUP == EPOLLHUP );
485 if (epoll_fd != -1)
487 while (active_users)
489 timeout = get_next_timeout();
491 if (!active_users) break; /* last user removed by a timeout */
492 if (epoll_fd == -1) break; /* an error occurred with epoll */
494 ret = epoll_wait( epoll_fd, epoll_events, allocated_users, timeout );
496 /* put the events into the pollfd array first, like poll does */
497 for (i = 0; i < ret; i++)
499 int user = epoll_events[i].data.u32;
500 pollfd[user].revents = epoll_events[i].events;
503 /* read events from the pollfd array, as set_fd_events may modify them */
504 for (i = 0; i < ret; i++)
506 int user = epoll_events[i].data.u32;
507 if (pollfd[user].revents) fd_poll_event( poll_users[user], pollfd[user].revents );
511 /* fall through to normal poll loop */
512 #endif /* USE_EPOLL */
514 while (active_users)
516 timeout = get_next_timeout();
518 if (!active_users) break; /* last user removed by a timeout */
520 ret = poll( pollfd, nb_users, timeout );
521 if (ret > 0)
523 for (i = 0; i < nb_users; i++)
525 if (pollfd[i].revents)
527 fd_poll_event( poll_users[i], pollfd[i].revents );
528 if (!--ret) break;
536 /****************************************************************/
537 /* inode functions */
539 #define HASH_SIZE 37
541 static struct list inode_hash[HASH_SIZE];
543 /* close all pending file descriptors in the closed list */
544 static void inode_close_pending( struct inode *inode )
546 struct list *ptr = list_head( &inode->closed );
548 while (ptr)
550 struct closed_fd *fd = LIST_ENTRY( ptr, struct closed_fd, entry );
551 struct list *next = list_next( &inode->closed, ptr );
553 if (fd->fd != -1)
555 close( fd->fd );
556 fd->fd = -1;
558 if (!fd->unlink) /* get rid of it unless there's an unlink pending on that file */
560 list_remove( ptr );
561 free( fd );
563 ptr = next;
568 static void inode_dump( struct object *obj, int verbose )
570 struct inode *inode = (struct inode *)obj;
571 fprintf( stderr, "Inode dev=" );
572 DUMP_LONG_LONG( inode->dev );
573 fprintf( stderr, " ino=" );
574 DUMP_LONG_LONG( inode->ino );
575 fprintf( stderr, "\n" );
578 static void inode_destroy( struct object *obj )
580 struct inode *inode = (struct inode *)obj;
581 struct list *ptr;
583 assert( list_empty(&inode->open) );
584 assert( list_empty(&inode->locks) );
586 list_remove( &inode->entry );
588 while ((ptr = list_head( &inode->closed )))
590 struct closed_fd *fd = LIST_ENTRY( ptr, struct closed_fd, entry );
591 list_remove( ptr );
592 if (fd->fd != -1) close( fd->fd );
593 if (fd->unlink[0])
595 /* make sure it is still the same file */
596 struct stat st;
597 if (!stat( fd->unlink, &st ) && st.st_dev == inode->dev && st.st_ino == inode->ino)
599 if (S_ISDIR(st.st_mode)) rmdir( fd->unlink );
600 else unlink( fd->unlink );
603 free( fd );
607 /* retrieve the inode object for a given fd, creating it if needed */
608 static struct inode *get_inode( dev_t dev, ino_t ino )
610 struct list *ptr;
611 struct inode *inode;
612 unsigned int hash = (dev ^ ino) % HASH_SIZE;
614 if (inode_hash[hash].next)
616 LIST_FOR_EACH( ptr, &inode_hash[hash] )
618 inode = LIST_ENTRY( ptr, struct inode, entry );
619 if (inode->dev == dev && inode->ino == ino)
620 return (struct inode *)grab_object( inode );
623 else list_init( &inode_hash[hash] );
625 /* not found, create it */
626 if ((inode = alloc_object( &inode_ops )))
628 inode->hash = hash;
629 inode->dev = dev;
630 inode->ino = ino;
631 list_init( &inode->open );
632 list_init( &inode->locks );
633 list_init( &inode->closed );
634 list_add_head( &inode_hash[hash], &inode->entry );
636 return inode;
639 /* add fd to the indoe list of file descriptors to close */
640 static void inode_add_closed_fd( struct inode *inode, struct closed_fd *fd )
642 if (!list_empty( &inode->locks ))
644 list_add_head( &inode->closed, &fd->entry );
646 else if (fd->unlink[0]) /* close the fd but keep the structure around for unlink */
648 close( fd->fd );
649 fd->fd = -1;
650 list_add_head( &inode->closed, &fd->entry );
652 else /* no locks on this inode and no unlink, get rid of the fd */
654 close( fd->fd );
655 free( fd );
660 /****************************************************************/
661 /* file lock functions */
663 static void file_lock_dump( struct object *obj, int verbose )
665 struct file_lock *lock = (struct file_lock *)obj;
666 fprintf( stderr, "Lock %s fd=%p proc=%p start=",
667 lock->shared ? "shared" : "excl", lock->fd, lock->process );
668 DUMP_LONG_LONG( lock->start );
669 fprintf( stderr, " end=" );
670 DUMP_LONG_LONG( lock->end );
671 fprintf( stderr, "\n" );
674 static int file_lock_signaled( struct object *obj, struct thread *thread )
676 struct file_lock *lock = (struct file_lock *)obj;
677 /* lock is signaled if it has lost its owner */
678 return !lock->process;
681 /* set (or remove) a Unix lock if possible for the given range */
682 static int set_unix_lock( struct fd *fd, file_pos_t start, file_pos_t end, int type )
684 struct flock fl;
686 if (!fd->fs_locks) return 1; /* no fs locks possible for this fd */
687 for (;;)
689 if (start == end) return 1; /* can't set zero-byte lock */
690 if (start > max_unix_offset) return 1; /* ignore it */
691 fl.l_type = type;
692 fl.l_whence = SEEK_SET;
693 fl.l_start = start;
694 if (!end || end > max_unix_offset) fl.l_len = 0;
695 else fl.l_len = end - start;
696 if (fcntl( fd->unix_fd, F_SETLK, &fl ) != -1) return 1;
698 switch(errno)
700 case EACCES:
701 /* check whether locks work at all on this file system */
702 if (fcntl( fd->unix_fd, F_GETLK, &fl ) != -1)
704 set_error( STATUS_FILE_LOCK_CONFLICT );
705 return 0;
707 /* fall through */
708 case EIO:
709 case ENOLCK:
710 /* no locking on this fs, just ignore it */
711 fd->fs_locks = 0;
712 return 1;
713 case EAGAIN:
714 set_error( STATUS_FILE_LOCK_CONFLICT );
715 return 0;
716 case EBADF:
717 /* this can happen if we try to set a write lock on a read-only file */
718 /* we just ignore that error */
719 if (fl.l_type == F_WRLCK) return 1;
720 set_error( STATUS_ACCESS_DENIED );
721 return 0;
722 #ifdef EOVERFLOW
723 case EOVERFLOW:
724 #endif
725 case EINVAL:
726 /* this can happen if off_t is 64-bit but the kernel only supports 32-bit */
727 /* in that case we shrink the limit and retry */
728 if (max_unix_offset > INT_MAX)
730 max_unix_offset = INT_MAX;
731 break; /* retry */
733 /* fall through */
734 default:
735 file_set_error();
736 return 0;
741 /* check if interval [start;end) overlaps the lock */
742 inline static int lock_overlaps( struct file_lock *lock, file_pos_t start, file_pos_t end )
744 if (lock->end && start >= lock->end) return 0;
745 if (end && lock->start >= end) return 0;
746 return 1;
749 /* remove Unix locks for all bytes in the specified area that are no longer locked */
750 static void remove_unix_locks( struct fd *fd, file_pos_t start, file_pos_t end )
752 struct hole
754 struct hole *next;
755 struct hole *prev;
756 file_pos_t start;
757 file_pos_t end;
758 } *first, *cur, *next, *buffer;
760 struct list *ptr;
761 int count = 0;
763 if (!fd->inode) return;
764 if (!fd->fs_locks) return;
765 if (start == end || start > max_unix_offset) return;
766 if (!end || end > max_unix_offset) end = max_unix_offset + 1;
768 /* count the number of locks overlapping the specified area */
770 LIST_FOR_EACH( ptr, &fd->inode->locks )
772 struct file_lock *lock = LIST_ENTRY( ptr, struct file_lock, inode_entry );
773 if (lock->start == lock->end) continue;
774 if (lock_overlaps( lock, start, end )) count++;
777 if (!count) /* no locks at all, we can unlock everything */
779 set_unix_lock( fd, start, end, F_UNLCK );
780 return;
783 /* allocate space for the list of holes */
784 /* max. number of holes is number of locks + 1 */
786 if (!(buffer = malloc( sizeof(*buffer) * (count+1) ))) return;
787 first = buffer;
788 first->next = NULL;
789 first->prev = NULL;
790 first->start = start;
791 first->end = end;
792 next = first + 1;
794 /* build a sorted list of unlocked holes in the specified area */
796 LIST_FOR_EACH( ptr, &fd->inode->locks )
798 struct file_lock *lock = LIST_ENTRY( ptr, struct file_lock, inode_entry );
799 if (lock->start == lock->end) continue;
800 if (!lock_overlaps( lock, start, end )) continue;
802 /* go through all the holes touched by this lock */
803 for (cur = first; cur; cur = cur->next)
805 if (cur->end <= lock->start) continue; /* hole is before start of lock */
806 if (lock->end && cur->start >= lock->end) break; /* hole is after end of lock */
808 /* now we know that lock is overlapping hole */
810 if (cur->start >= lock->start) /* lock starts before hole, shrink from start */
812 cur->start = lock->end;
813 if (cur->start && cur->start < cur->end) break; /* done with this lock */
814 /* now hole is empty, remove it */
815 if (cur->next) cur->next->prev = cur->prev;
816 if (cur->prev) cur->prev->next = cur->next;
817 else if (!(first = cur->next)) goto done; /* no more holes at all */
819 else if (!lock->end || cur->end <= lock->end) /* lock larger than hole, shrink from end */
821 cur->end = lock->start;
822 assert( cur->start < cur->end );
824 else /* lock is in the middle of hole, split hole in two */
826 next->prev = cur;
827 next->next = cur->next;
828 cur->next = next;
829 next->start = lock->end;
830 next->end = cur->end;
831 cur->end = lock->start;
832 assert( next->start < next->end );
833 assert( cur->end < next->start );
834 next++;
835 break; /* done with this lock */
840 /* clear Unix locks for all the holes */
842 for (cur = first; cur; cur = cur->next)
843 set_unix_lock( fd, cur->start, cur->end, F_UNLCK );
845 done:
846 free( buffer );
849 /* create a new lock on a fd */
850 static struct file_lock *add_lock( struct fd *fd, int shared, file_pos_t start, file_pos_t end )
852 struct file_lock *lock;
854 if (!fd->inode) /* not a regular file */
856 set_error( STATUS_INVALID_HANDLE );
857 return NULL;
860 if (!(lock = alloc_object( &file_lock_ops ))) return NULL;
861 lock->shared = shared;
862 lock->start = start;
863 lock->end = end;
864 lock->fd = fd;
865 lock->process = current->process;
867 /* now try to set a Unix lock */
868 if (!set_unix_lock( lock->fd, lock->start, lock->end, lock->shared ? F_RDLCK : F_WRLCK ))
870 release_object( lock );
871 return NULL;
873 list_add_head( &fd->locks, &lock->fd_entry );
874 list_add_head( &fd->inode->locks, &lock->inode_entry );
875 list_add_head( &lock->process->locks, &lock->proc_entry );
876 return lock;
879 /* remove an existing lock */
880 static void remove_lock( struct file_lock *lock, int remove_unix )
882 struct inode *inode = lock->fd->inode;
884 list_remove( &lock->fd_entry );
885 list_remove( &lock->inode_entry );
886 list_remove( &lock->proc_entry );
887 if (remove_unix) remove_unix_locks( lock->fd, lock->start, lock->end );
888 if (list_empty( &inode->locks )) inode_close_pending( inode );
889 lock->process = NULL;
890 wake_up( &lock->obj, 0 );
891 release_object( lock );
894 /* remove all locks owned by a given process */
895 void remove_process_locks( struct process *process )
897 struct list *ptr;
899 while ((ptr = list_head( &process->locks )))
901 struct file_lock *lock = LIST_ENTRY( ptr, struct file_lock, proc_entry );
902 remove_lock( lock, 1 ); /* this removes it from the list */
906 /* remove all locks on a given fd */
907 static void remove_fd_locks( struct fd *fd )
909 file_pos_t start = FILE_POS_T_MAX, end = 0;
910 struct list *ptr;
912 while ((ptr = list_head( &fd->locks )))
914 struct file_lock *lock = LIST_ENTRY( ptr, struct file_lock, fd_entry );
915 if (lock->start < start) start = lock->start;
916 if (!lock->end || lock->end > end) end = lock->end - 1;
917 remove_lock( lock, 0 );
919 if (start < end) remove_unix_locks( fd, start, end + 1 );
922 /* add a lock on an fd */
923 /* returns handle to wait on */
924 obj_handle_t lock_fd( struct fd *fd, file_pos_t start, file_pos_t count, int shared, int wait )
926 struct list *ptr;
927 file_pos_t end = start + count;
929 /* don't allow wrapping locks */
930 if (end && end < start)
932 set_error( STATUS_INVALID_PARAMETER );
933 return 0;
936 /* check if another lock on that file overlaps the area */
937 LIST_FOR_EACH( ptr, &fd->inode->locks )
939 struct file_lock *lock = LIST_ENTRY( ptr, struct file_lock, inode_entry );
940 if (!lock_overlaps( lock, start, end )) continue;
941 if (lock->shared && shared) continue;
942 /* found one */
943 if (!wait)
945 set_error( STATUS_FILE_LOCK_CONFLICT );
946 return 0;
948 set_error( STATUS_PENDING );
949 return alloc_handle( current->process, lock, SYNCHRONIZE, 0 );
952 /* not found, add it */
953 if (add_lock( fd, shared, start, end )) return 0;
954 if (get_error() == STATUS_FILE_LOCK_CONFLICT)
956 /* Unix lock conflict -> tell client to wait and retry */
957 if (wait) set_error( STATUS_PENDING );
959 return 0;
962 /* remove a lock on an fd */
963 void unlock_fd( struct fd *fd, file_pos_t start, file_pos_t count )
965 struct list *ptr;
966 file_pos_t end = start + count;
968 /* find an existing lock with the exact same parameters */
969 LIST_FOR_EACH( ptr, &fd->locks )
971 struct file_lock *lock = LIST_ENTRY( ptr, struct file_lock, fd_entry );
972 if ((lock->start == start) && (lock->end == end))
974 remove_lock( lock, 1 );
975 return;
978 set_error( STATUS_FILE_LOCK_CONFLICT );
982 /****************************************************************/
983 /* file descriptor functions */
985 static void fd_dump( struct object *obj, int verbose )
987 struct fd *fd = (struct fd *)obj;
988 fprintf( stderr, "Fd unix_fd=%d user=%p unlink='%s'\n",
989 fd->unix_fd, fd->user, fd->closed->unlink );
992 static void fd_destroy( struct object *obj )
994 struct fd *fd = (struct fd *)obj;
996 remove_fd_locks( fd );
997 list_remove( &fd->inode_entry );
998 if (fd->poll_index != -1) remove_poll_user( fd, fd->poll_index );
999 if (fd->inode)
1001 inode_add_closed_fd( fd->inode, fd->closed );
1002 release_object( fd->inode );
1004 else /* no inode, close it right away */
1006 if (fd->unix_fd != -1) close( fd->unix_fd );
1010 /* set the events that select waits for on this fd */
1011 void set_fd_events( struct fd *fd, int events )
1013 int user = fd->poll_index;
1014 assert( poll_users[user] == fd );
1016 set_fd_epoll_events( fd, user, events );
1018 if (events == -1) /* stop waiting on this fd completely */
1020 pollfd[user].fd = -1;
1021 pollfd[user].events = POLLERR;
1022 pollfd[user].revents = 0;
1024 else if (pollfd[user].fd != -1 || !pollfd[user].events)
1026 pollfd[user].fd = fd->unix_fd;
1027 pollfd[user].events = events;
1031 /* allocate an fd object, without setting the unix fd yet */
1032 struct fd *alloc_fd( const struct fd_ops *fd_user_ops, struct object *user )
1034 struct fd *fd = alloc_object( &fd_ops );
1036 if (!fd) return NULL;
1038 fd->fd_ops = fd_user_ops;
1039 fd->user = user;
1040 fd->inode = NULL;
1041 fd->closed = NULL;
1042 fd->access = 0;
1043 fd->sharing = 0;
1044 fd->unix_fd = -1;
1045 fd->fs_locks = 1;
1046 fd->poll_index = -1;
1047 list_init( &fd->inode_entry );
1048 list_init( &fd->locks );
1050 if ((fd->poll_index = add_poll_user( fd )) == -1)
1052 release_object( fd );
1053 return NULL;
1055 return fd;
1058 /* check if the desired access is possible without violating */
1059 /* the sharing mode of other opens of the same file */
1060 static int check_sharing( struct fd *fd, unsigned int access, unsigned int sharing )
1062 unsigned int existing_sharing = FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE;
1063 unsigned int existing_access = 0;
1064 int unlink = 0;
1065 struct list *ptr;
1067 /* if access mode is 0, sharing mode is ignored */
1068 if (!access) sharing = existing_sharing;
1069 fd->access = access;
1070 fd->sharing = sharing;
1072 LIST_FOR_EACH( ptr, &fd->inode->open )
1074 struct fd *fd_ptr = LIST_ENTRY( ptr, struct fd, inode_entry );
1075 if (fd_ptr != fd)
1077 existing_sharing &= fd_ptr->sharing;
1078 existing_access |= fd_ptr->access;
1079 if (fd_ptr->closed->unlink[0]) unlink = 1;
1083 if ((access & GENERIC_READ) && !(existing_sharing & FILE_SHARE_READ)) return 0;
1084 if ((access & GENERIC_WRITE) && !(existing_sharing & FILE_SHARE_WRITE)) return 0;
1085 if ((existing_access & GENERIC_READ) && !(sharing & FILE_SHARE_READ)) return 0;
1086 if ((existing_access & GENERIC_WRITE) && !(sharing & FILE_SHARE_WRITE)) return 0;
1087 if (fd->closed->unlink[0] && !(existing_sharing & FILE_SHARE_DELETE)) return 0;
1088 if (unlink && !(sharing & FILE_SHARE_DELETE)) return 0;
1089 return 1;
1092 /* open() wrapper using a struct fd */
1093 /* the fd must have been created with alloc_fd */
1094 /* on error the fd object is released */
1095 struct fd *open_fd( struct fd *fd, const char *name, int flags, mode_t *mode,
1096 unsigned int access, unsigned int sharing, unsigned int options )
1098 struct stat st;
1099 struct closed_fd *closed_fd;
1100 const char *unlink_name = "";
1102 assert( fd->unix_fd == -1 );
1104 if (options & FILE_DELETE_ON_CLOSE) unlink_name = name;
1105 if (!(closed_fd = mem_alloc( sizeof(*closed_fd) + strlen(unlink_name) )))
1107 release_object( fd );
1108 return NULL;
1110 /* create the directory if needed */
1111 if ((options & FILE_DIRECTORY_FILE) && (flags & O_CREAT))
1113 if (mkdir( name, 0777 ) == -1)
1115 if (errno != EEXIST || (flags & O_EXCL))
1117 file_set_error();
1118 release_object( fd );
1119 free( closed_fd );
1120 return NULL;
1123 flags &= ~(O_CREAT | O_EXCL | O_TRUNC);
1125 if ((fd->unix_fd = open( name, flags & ~O_TRUNC, *mode )) == -1)
1127 file_set_error();
1128 release_object( fd );
1129 free( closed_fd );
1130 return NULL;
1132 closed_fd->fd = fd->unix_fd;
1133 closed_fd->unlink[0] = 0;
1134 fstat( fd->unix_fd, &st );
1135 *mode = st.st_mode;
1137 /* only bother with an inode for normal files and directories */
1138 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
1140 struct inode *inode = get_inode( st.st_dev, st.st_ino );
1142 if (!inode)
1144 /* we can close the fd because there are no others open on the same file,
1145 * otherwise we wouldn't have failed to allocate a new inode
1147 goto error;
1149 fd->inode = inode;
1150 fd->closed = closed_fd;
1151 list_add_head( &inode->open, &fd->inode_entry );
1153 /* check directory options */
1154 if ((options & FILE_DIRECTORY_FILE) && !S_ISDIR(st.st_mode))
1156 release_object( fd );
1157 set_error( STATUS_NOT_A_DIRECTORY );
1158 return NULL;
1160 if ((options & FILE_NON_DIRECTORY_FILE) && S_ISDIR(st.st_mode))
1162 release_object( fd );
1163 set_error( STATUS_FILE_IS_A_DIRECTORY );
1164 return NULL;
1166 if (!check_sharing( fd, access, sharing ))
1168 release_object( fd );
1169 set_error( STATUS_SHARING_VIOLATION );
1170 return NULL;
1172 strcpy( closed_fd->unlink, unlink_name );
1173 if (flags & O_TRUNC) ftruncate( fd->unix_fd, 0 );
1175 else /* special file */
1177 if (options & FILE_DIRECTORY_FILE)
1179 set_error( STATUS_NOT_A_DIRECTORY );
1180 goto error;
1182 if (unlink_name[0]) /* we can't unlink special files */
1184 set_error( STATUS_INVALID_PARAMETER );
1185 goto error;
1187 free( closed_fd );
1189 return fd;
1191 error:
1192 release_object( fd );
1193 free( closed_fd );
1194 return NULL;
1197 /* create an fd for an anonymous file */
1198 /* if the function fails the unix fd is closed */
1199 struct fd *create_anonymous_fd( const struct fd_ops *fd_user_ops, int unix_fd, struct object *user )
1201 struct fd *fd = alloc_fd( fd_user_ops, user );
1203 if (fd)
1205 fd->unix_fd = unix_fd;
1206 return fd;
1208 close( unix_fd );
1209 return NULL;
1212 /* retrieve the object that is using an fd */
1213 void *get_fd_user( struct fd *fd )
1215 return fd->user;
1218 /* retrieve the unix fd for an object */
1219 int get_unix_fd( struct fd *fd )
1221 return fd->unix_fd;
1224 /* check if two file descriptors point to the same file */
1225 int is_same_file_fd( struct fd *fd1, struct fd *fd2 )
1227 return fd1->inode == fd2->inode;
1230 /* callback for event happening in the main poll() loop */
1231 void fd_poll_event( struct fd *fd, int event )
1233 return fd->fd_ops->poll_event( fd, event );
1236 /* check if events are pending and if yes return which one(s) */
1237 int check_fd_events( struct fd *fd, int events )
1239 struct pollfd pfd;
1241 pfd.fd = fd->unix_fd;
1242 pfd.events = events;
1243 if (poll( &pfd, 1, 0 ) <= 0) return 0;
1244 return pfd.revents;
1247 /* default add_queue() routine for objects that poll() on an fd */
1248 int default_fd_add_queue( struct object *obj, struct wait_queue_entry *entry )
1250 struct fd *fd = get_obj_fd( obj );
1252 if (!fd) return 0;
1253 if (!obj->head) /* first on the queue */
1254 set_fd_events( fd, fd->fd_ops->get_poll_events( fd ) );
1255 add_queue( obj, entry );
1256 release_object( fd );
1257 return 1;
1260 /* default remove_queue() routine for objects that poll() on an fd */
1261 void default_fd_remove_queue( struct object *obj, struct wait_queue_entry *entry )
1263 struct fd *fd = get_obj_fd( obj );
1265 grab_object( obj );
1266 remove_queue( obj, entry );
1267 if (!obj->head) /* last on the queue is gone */
1268 set_fd_events( fd, 0 );
1269 release_object( obj );
1270 release_object( fd );
1273 /* default signaled() routine for objects that poll() on an fd */
1274 int default_fd_signaled( struct object *obj, struct thread *thread )
1276 struct fd *fd = get_obj_fd( obj );
1277 int events = fd->fd_ops->get_poll_events( fd );
1278 int ret = check_fd_events( fd, events ) != 0;
1280 if (ret)
1281 set_fd_events( fd, 0 ); /* stop waiting on select() if we are signaled */
1282 else if (obj->head)
1283 set_fd_events( fd, events ); /* restart waiting on poll() if we are no longer signaled */
1285 release_object( fd );
1286 return ret;
1289 /* default handler for poll() events */
1290 void default_poll_event( struct fd *fd, int event )
1292 /* an error occurred, stop polling this fd to avoid busy-looping */
1293 if (event & (POLLERR | POLLHUP)) set_fd_events( fd, -1 );
1294 wake_up( fd->user, 0 );
1297 /* default flush() routine */
1298 int no_flush( struct fd *fd, struct event **event )
1300 set_error( STATUS_OBJECT_TYPE_MISMATCH );
1301 return 0;
1304 /* default get_file_info() routine */
1305 int no_get_file_info( struct fd *fd )
1307 set_error( STATUS_OBJECT_TYPE_MISMATCH );
1308 return 0;
1311 /* default queue_async() routine */
1312 void no_queue_async( struct fd *fd, void* ptr, unsigned int status, int type, int count )
1314 set_error( STATUS_OBJECT_TYPE_MISMATCH );
1317 /* same as get_handle_obj but retrieve the struct fd associated to the object */
1318 static struct fd *get_handle_fd_obj( struct process *process, obj_handle_t handle,
1319 unsigned int access )
1321 struct fd *fd = NULL;
1322 struct object *obj;
1324 if ((obj = get_handle_obj( process, handle, access, NULL )))
1326 fd = get_obj_fd( obj );
1327 release_object( obj );
1329 return fd;
1332 /* flush a file buffers */
1333 DECL_HANDLER(flush_file)
1335 struct fd *fd = get_handle_fd_obj( current->process, req->handle, 0 );
1336 struct event * event = NULL;
1338 if (fd)
1340 fd->fd_ops->flush( fd, &event );
1341 if( event )
1343 reply->event = alloc_handle( current->process, event, SYNCHRONIZE, 0 );
1345 release_object( fd );
1349 /* get a Unix fd to access a file */
1350 DECL_HANDLER(get_handle_fd)
1352 struct fd *fd;
1354 reply->fd = -1;
1356 if ((fd = get_handle_fd_obj( current->process, req->handle, req->access )))
1358 int unix_fd = get_handle_unix_fd( current->process, req->handle, req->access );
1359 if (unix_fd != -1) reply->fd = unix_fd;
1360 else if (!get_error())
1362 assert( fd->unix_fd != -1 );
1363 send_client_fd( current->process, fd->unix_fd, req->handle );
1365 reply->flags = fd->fd_ops->get_file_info( fd );
1366 release_object( fd );
1370 /* create / reschedule an async I/O */
1371 DECL_HANDLER(register_async)
1373 struct fd *fd = get_handle_fd_obj( current->process, req->handle, 0 );
1376 * The queue_async method must do the following:
1378 * 1. Get the async_queue for the request of given type.
1379 * 2. Call find_async() to look for the specific client request in the queue (=> NULL if not found).
1380 * 3. If status is STATUS_PENDING:
1381 * a) If no async request found in step 2 (new request): call create_async() to initialize one.
1382 * b) Set request's status to STATUS_PENDING.
1383 * c) If the "queue" field of the async request is NULL: call async_insert() to put it into the queue.
1384 * Otherwise:
1385 * If the async request was found in step 2, destroy it by calling destroy_async().
1386 * 4. Carry out any operations necessary to adjust the object's poll events
1387 * Usually: set_elect_events (obj, obj->ops->get_poll_events()).
1389 * See also the implementations in file.c, serial.c, and sock.c.
1392 if (fd)
1394 fd->fd_ops->queue_async( fd, req->overlapped, req->status, req->type, req->count );
1395 release_object( fd );