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
32 #ifdef HAVE_SYS_POLL_H
37 #include <sys/types.h>
47 /* Because of the stupid Posix locking semantics, we need to keep
48 * track of all file descriptors referencing a given file, and not
49 * close a single one until all the locks are gone (sigh).
52 /* file descriptor object */
54 /* closed_fd is used to keep track of the unix fd belonging to a closed fd object */
57 struct closed_fd
*next
; /* next fd in close list */
58 int fd
; /* the unix file descriptor */
63 struct object obj
; /* object header */
64 const struct fd_ops
*fd_ops
; /* file descriptor operations */
65 struct inode
*inode
; /* inode that this fd belongs to */
66 struct list inode_entry
; /* entry in inode fd list */
67 struct closed_fd
*closed
; /* structure to store the unix fd at destroy time */
68 struct object
*user
; /* object using this file descriptor */
69 struct list locks
; /* list of locks on this fd */
70 int unix_fd
; /* unix file descriptor */
71 int poll_index
; /* index of fd in poll array */
74 static void fd_dump( struct object
*obj
, int verbose
);
75 static void fd_destroy( struct object
*obj
);
77 static const struct object_ops fd_ops
=
79 sizeof(struct fd
), /* size */
81 no_add_queue
, /* add_queue */
82 NULL
, /* remove_queue */
85 no_get_fd
, /* get_fd */
86 fd_destroy
/* destroy */
93 struct object obj
; /* object header */
94 struct list entry
; /* inode hash list entry */
95 unsigned int hash
; /* hashing code */
96 dev_t dev
; /* device number */
97 ino_t ino
; /* inode number */
98 struct list open
; /* list of open file descriptors */
99 struct list locks
; /* list of file locks */
100 struct closed_fd
*closed
; /* list of file descriptors to close at destroy time */
103 static void inode_dump( struct object
*obj
, int verbose
);
104 static void inode_destroy( struct object
*obj
);
106 static const struct object_ops inode_ops
=
108 sizeof(struct inode
), /* size */
109 inode_dump
, /* dump */
110 no_add_queue
, /* add_queue */
111 NULL
, /* remove_queue */
113 NULL
, /* satisfied */
114 no_get_fd
, /* get_fd */
115 inode_destroy
/* destroy */
118 /* file lock object */
122 struct object obj
; /* object header */
123 struct fd
*fd
; /* fd owning this lock */
124 struct list fd_entry
; /* entry in list of locks on a given fd */
125 struct list inode_entry
; /* entry in inode list of locks */
126 int shared
; /* shared lock? */
127 file_pos_t start
; /* locked region is interval [start;end) */
129 struct process
*process
; /* process owning this lock */
130 struct list proc_entry
; /* entry in list of locks owned by the process */
133 static void file_lock_dump( struct object
*obj
, int verbose
);
134 static int file_lock_signaled( struct object
*obj
, struct thread
*thread
);
136 static const struct object_ops file_lock_ops
=
138 sizeof(struct file_lock
), /* size */
139 file_lock_dump
, /* dump */
140 add_queue
, /* add_queue */
141 remove_queue
, /* remove_queue */
142 file_lock_signaled
, /* signaled */
143 no_satisfied
, /* satisfied */
144 no_get_fd
, /* get_fd */
145 no_destroy
/* destroy */
149 #define OFF_T_MAX (~((file_pos_t)1 << (8*sizeof(off_t)-1)))
150 #define FILE_POS_T_MAX (~(file_pos_t)0)
152 static file_pos_t max_unix_offset
= OFF_T_MAX
;
154 #define DUMP_LONG_LONG(val) do { \
155 if (sizeof(val) > sizeof(unsigned long) && (val) > ~0UL) \
156 fprintf( stderr, "%lx%08lx", (unsigned long)((val) >> 32), (unsigned long)(val) ); \
158 fprintf( stderr, "%lx", (unsigned long)(val) ); \
163 /****************************************************************/
164 /* timeouts support */
168 struct timeout_user
*next
; /* next in sorted timeout list */
169 struct timeout_user
*prev
; /* prev in sorted timeout list */
170 struct timeval when
; /* timeout expiry (absolute time) */
171 timeout_callback callback
; /* callback function */
172 void *private; /* callback private data */
175 static struct timeout_user
*timeout_head
; /* sorted timeouts list head */
176 static struct timeout_user
*timeout_tail
; /* sorted timeouts list tail */
178 /* add a timeout user */
179 struct timeout_user
*add_timeout_user( struct timeval
*when
, timeout_callback func
, void *private )
181 struct timeout_user
*user
;
182 struct timeout_user
*pos
;
184 if (!(user
= mem_alloc( sizeof(*user
) ))) return NULL
;
186 user
->callback
= func
;
187 user
->private = private;
189 /* Now insert it in the linked list */
191 for (pos
= timeout_head
; pos
; pos
= pos
->next
)
192 if (!time_before( &pos
->when
, when
)) break;
194 if (pos
) /* insert it before 'pos' */
196 if ((user
->prev
= pos
->prev
)) user
->prev
->next
= user
;
197 else timeout_head
= user
;
201 else /* insert it at the tail */
204 if (timeout_tail
) timeout_tail
->next
= user
;
205 else timeout_head
= user
;
206 user
->prev
= timeout_tail
;
212 /* remove a timeout user */
213 void remove_timeout_user( struct timeout_user
*user
)
215 if (user
->next
) user
->next
->prev
= user
->prev
;
216 else timeout_tail
= user
->prev
;
217 if (user
->prev
) user
->prev
->next
= user
->next
;
218 else timeout_head
= user
->next
;
222 /* add a timeout in milliseconds to an absolute time */
223 void add_timeout( struct timeval
*when
, int timeout
)
227 long sec
= timeout
/ 1000;
228 if ((when
->tv_usec
+= (timeout
- 1000*sec
) * 1000) >= 1000000)
230 when
->tv_usec
-= 1000000;
237 /* handle the next expired timeout */
238 inline static void handle_timeout(void)
240 struct timeout_user
*user
= timeout_head
;
241 timeout_head
= user
->next
;
242 if (user
->next
) user
->next
->prev
= user
->prev
;
243 else timeout_tail
= user
->prev
;
244 user
->callback( user
->private );
249 /****************************************************************/
252 static struct fd
**poll_users
; /* users array */
253 static struct pollfd
*pollfd
; /* poll fd array */
254 static int nb_users
; /* count of array entries actually in use */
255 static int active_users
; /* current number of active users */
256 static int allocated_users
; /* count of allocated entries in the array */
257 static struct fd
**freelist
; /* list of free entries in the array */
259 /* add a user in the poll array and return its index, or -1 on failure */
260 static int add_poll_user( struct fd
*fd
)
265 ret
= freelist
- poll_users
;
266 freelist
= (struct fd
**)poll_users
[ret
];
270 if (nb_users
== allocated_users
)
272 struct fd
**newusers
;
273 struct pollfd
*newpoll
;
274 int new_count
= allocated_users
? (allocated_users
+ allocated_users
/ 2) : 16;
275 if (!(newusers
= realloc( poll_users
, new_count
* sizeof(*poll_users
) ))) return -1;
276 if (!(newpoll
= realloc( pollfd
, new_count
* sizeof(*pollfd
) )))
279 poll_users
= newusers
;
284 poll_users
= newusers
;
286 allocated_users
= new_count
;
291 pollfd
[ret
].events
= 0;
292 pollfd
[ret
].revents
= 0;
293 poll_users
[ret
] = fd
;
298 /* remove a user from the poll list */
299 static void remove_poll_user( struct fd
*fd
, int user
)
302 assert( poll_users
[user
] == fd
);
303 pollfd
[user
].fd
= -1;
304 pollfd
[user
].events
= 0;
305 pollfd
[user
].revents
= 0;
306 poll_users
[user
] = (struct fd
*)freelist
;
307 freelist
= &poll_users
[user
];
312 /* server main poll() loop */
323 gettimeofday( &now
, NULL
);
326 if (!time_before( &now
, &timeout_head
->when
)) handle_timeout();
329 diff
= (timeout_head
->when
.tv_sec
- now
.tv_sec
) * 1000
330 + (timeout_head
->when
.tv_usec
- now
.tv_usec
) / 1000;
334 if (!active_users
) break; /* last user removed by a timeout */
336 ret
= poll( pollfd
, nb_users
, diff
);
340 for (i
= 0; i
< nb_users
; i
++)
342 if (pollfd
[i
].revents
)
344 fd_poll_event( poll_users
[i
], pollfd
[i
].revents
);
353 /****************************************************************/
354 /* inode functions */
358 static struct list inode_hash
[HASH_SIZE
];
360 /* close all pending file descriptors in the closed list */
361 static void inode_close_pending( struct inode
*inode
)
363 while (inode
->closed
)
365 struct closed_fd
*fd
= inode
->closed
;
366 inode
->closed
= fd
->next
;
373 static void inode_dump( struct object
*obj
, int verbose
)
375 struct inode
*inode
= (struct inode
*)obj
;
376 fprintf( stderr
, "Inode dev=" );
377 DUMP_LONG_LONG( inode
->dev
);
378 fprintf( stderr
, " ino=" );
379 DUMP_LONG_LONG( inode
->ino
);
380 fprintf( stderr
, "\n" );
383 static void inode_destroy( struct object
*obj
)
385 struct inode
*inode
= (struct inode
*)obj
;
387 assert( list_empty(&inode
->open
) );
388 assert( list_empty(&inode
->locks
) );
390 list_remove( &inode
->entry
);
391 inode_close_pending( inode
);
394 /* retrieve the inode object for a given fd, creating it if needed */
395 static struct inode
*get_inode( dev_t dev
, ino_t ino
)
399 unsigned int hash
= (dev
^ ino
) % HASH_SIZE
;
401 if (inode_hash
[hash
].next
)
403 LIST_FOR_EACH( ptr
, &inode_hash
[hash
] )
405 inode
= LIST_ENTRY( ptr
, struct inode
, entry
);
406 if (inode
->dev
== dev
&& inode
->ino
== ino
)
407 return (struct inode
*)grab_object( inode
);
410 else list_init( &inode_hash
[hash
] );
412 /* not found, create it */
413 if ((inode
= alloc_object( &inode_ops
)))
418 inode
->closed
= NULL
;
419 list_init( &inode
->open
);
420 list_init( &inode
->locks
);
421 list_add_head( &inode_hash
[hash
], &inode
->entry
);
426 /* add fd to the indoe list of file descriptors to close */
427 static void inode_add_closed_fd( struct inode
*inode
, struct closed_fd
*fd
)
429 if (!list_empty( &inode
->locks
))
431 fd
->next
= inode
->closed
;
434 else /* no locks on this inode, we can close the fd right away */
442 /****************************************************************/
443 /* file lock functions */
445 static void file_lock_dump( struct object
*obj
, int verbose
)
447 struct file_lock
*lock
= (struct file_lock
*)obj
;
448 fprintf( stderr
, "Lock %s fd=%p proc=%p start=",
449 lock
->shared
? "shared" : "excl", lock
->fd
, lock
->process
);
450 DUMP_LONG_LONG( lock
->start
);
451 fprintf( stderr
, " end=" );
452 DUMP_LONG_LONG( lock
->end
);
453 fprintf( stderr
, "\n" );
456 static int file_lock_signaled( struct object
*obj
, struct thread
*thread
)
458 struct file_lock
*lock
= (struct file_lock
*)obj
;
459 /* lock is signaled if it has lost its owner */
460 return !lock
->process
;
463 /* set (or remove) a Unix lock if possible for the given range */
464 static int set_unix_lock( const struct fd
*fd
, file_pos_t start
, file_pos_t end
, int type
)
470 if (start
== end
) return 1; /* can't set zero-byte lock */
471 if (start
> max_unix_offset
) return 1; /* ignore it */
473 fl
.l_whence
= SEEK_SET
;
475 if (!end
|| end
> max_unix_offset
) fl
.l_len
= 0;
476 else fl
.l_len
= end
- start
;
477 if (fcntl( fd
->unix_fd
, F_SETLK
, &fl
) != -1) return 1;
483 /* no locking on this fs, just ignore it */
487 set_error( STATUS_FILE_LOCK_CONFLICT
);
490 /* this can happen if we try to set a write lock on a read-only file */
491 /* we just ignore that error */
492 if (fl
.l_type
== F_WRLCK
) return 1;
493 set_error( STATUS_ACCESS_DENIED
);
497 /* this can happen if off_t is 64-bit but the kernel only supports 32-bit */
498 /* in that case we shrink the limit and retry */
499 if (max_unix_offset
> INT_MAX
)
501 max_unix_offset
= INT_MAX
;
512 /* check if interval [start;end) overlaps the lock */
513 inline static int lock_overlaps( struct file_lock
*lock
, file_pos_t start
, file_pos_t end
)
515 if (lock
->end
&& start
>= lock
->end
) return 0;
516 if (end
&& lock
->start
>= end
) return 0;
520 /* remove Unix locks for all bytes in the specified area that are no longer locked */
521 static void remove_unix_locks( const struct fd
*fd
, file_pos_t start
, file_pos_t end
)
529 } *first
, *cur
, *next
, *buffer
;
534 if (!fd
->inode
) return;
535 if (start
== end
|| start
> max_unix_offset
) return;
536 if (!end
|| end
> max_unix_offset
) end
= max_unix_offset
+ 1;
538 /* count the number of locks overlapping the specified area */
540 LIST_FOR_EACH( ptr
, &fd
->inode
->locks
)
542 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, inode_entry
);
543 if (lock
->start
== lock
->end
) continue;
544 if (lock_overlaps( lock
, start
, end
)) count
++;
547 if (!count
) /* no locks at all, we can unlock everything */
549 set_unix_lock( fd
, start
, end
, F_UNLCK
);
553 /* allocate space for the list of holes */
554 /* max. number of holes is number of locks + 1 */
556 if (!(buffer
= malloc( sizeof(*buffer
) * (count
+1) ))) return;
560 first
->start
= start
;
564 /* build a sorted list of unlocked holes in the specified area */
566 LIST_FOR_EACH( ptr
, &fd
->inode
->locks
)
568 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, inode_entry
);
569 if (lock
->start
== lock
->end
) continue;
570 if (!lock_overlaps( lock
, start
, end
)) continue;
572 /* go through all the holes touched by this lock */
573 for (cur
= first
; cur
; cur
= cur
->next
)
575 if (cur
->end
<= lock
->start
) continue; /* hole is before start of lock */
576 if (lock
->end
&& cur
->start
>= lock
->end
) break; /* hole is after end of lock */
578 /* now we know that lock is overlapping hole */
580 if (cur
->start
>= lock
->start
) /* lock starts before hole, shrink from start */
582 cur
->start
= lock
->end
;
583 if (cur
->start
&& cur
->start
< cur
->end
) break; /* done with this lock */
584 /* now hole is empty, remove it */
585 if (cur
->next
) cur
->next
->prev
= cur
->prev
;
586 if (cur
->prev
) cur
->prev
->next
= cur
->next
;
587 else if (!(first
= cur
->next
)) goto done
; /* no more holes at all */
589 else if (!lock
->end
|| cur
->end
<= lock
->end
) /* lock larger than hole, shrink from end */
591 cur
->end
= lock
->start
;
592 assert( cur
->start
< cur
->end
);
594 else /* lock is in the middle of hole, split hole in two */
597 next
->next
= cur
->next
;
599 next
->start
= lock
->end
;
600 next
->end
= cur
->end
;
601 cur
->end
= lock
->start
;
602 assert( next
->start
< next
->end
);
603 assert( cur
->end
< next
->start
);
605 break; /* done with this lock */
610 /* clear Unix locks for all the holes */
612 for (cur
= first
; cur
; cur
= cur
->next
)
613 set_unix_lock( fd
, cur
->start
, cur
->end
, F_UNLCK
);
619 /* create a new lock on a fd */
620 static struct file_lock
*add_lock( struct fd
*fd
, int shared
, file_pos_t start
, file_pos_t end
)
622 struct file_lock
*lock
;
624 if (!fd
->inode
) /* not a regular file */
626 set_error( STATUS_INVALID_HANDLE
);
630 if (!(lock
= alloc_object( &file_lock_ops
))) return NULL
;
631 lock
->shared
= shared
;
635 lock
->process
= current
->process
;
637 /* now try to set a Unix lock */
638 if (!set_unix_lock( lock
->fd
, lock
->start
, lock
->end
, lock
->shared
? F_RDLCK
: F_WRLCK
))
640 release_object( lock
);
643 list_add_head( &fd
->locks
, &lock
->fd_entry
);
644 list_add_head( &fd
->inode
->locks
, &lock
->inode_entry
);
645 list_add_head( &lock
->process
->locks
, &lock
->proc_entry
);
649 /* remove an existing lock */
650 static void remove_lock( struct file_lock
*lock
, int remove_unix
)
652 struct inode
*inode
= lock
->fd
->inode
;
654 list_remove( &lock
->fd_entry
);
655 list_remove( &lock
->inode_entry
);
656 list_remove( &lock
->proc_entry
);
657 if (remove_unix
) remove_unix_locks( lock
->fd
, lock
->start
, lock
->end
);
658 if (list_empty( &inode
->locks
)) inode_close_pending( inode
);
659 lock
->process
= NULL
;
660 wake_up( &lock
->obj
, 0 );
661 release_object( lock
);
664 /* remove all locks owned by a given process */
665 void remove_process_locks( struct process
*process
)
669 while ((ptr
= list_head( &process
->locks
)))
671 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, proc_entry
);
672 remove_lock( lock
, 1 ); /* this removes it from the list */
676 /* remove all locks on a given fd */
677 static void remove_fd_locks( struct fd
*fd
)
679 file_pos_t start
= FILE_POS_T_MAX
, end
= 0;
682 while ((ptr
= list_head( &fd
->locks
)))
684 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, fd_entry
);
685 if (lock
->start
< start
) start
= lock
->start
;
686 if (!lock
->end
|| lock
->end
> end
) end
= lock
->end
- 1;
687 remove_lock( lock
, 0 );
689 if (start
< end
) remove_unix_locks( fd
, start
, end
+ 1 );
692 /* add a lock on an fd */
693 /* returns handle to wait on */
694 obj_handle_t
lock_fd( struct fd
*fd
, file_pos_t start
, file_pos_t count
, int shared
, int wait
)
697 file_pos_t end
= start
+ count
;
699 /* don't allow wrapping locks */
700 if (end
&& end
< start
)
702 set_error( STATUS_INVALID_PARAMETER
);
706 /* check if another lock on that file overlaps the area */
707 LIST_FOR_EACH( ptr
, &fd
->inode
->locks
)
709 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, inode_entry
);
710 if (!lock_overlaps( lock
, start
, end
)) continue;
711 if (lock
->shared
&& shared
) continue;
715 set_error( STATUS_FILE_LOCK_CONFLICT
);
718 set_error( STATUS_PENDING
);
719 return alloc_handle( current
->process
, lock
, SYNCHRONIZE
, 0 );
722 /* not found, add it */
723 if (add_lock( fd
, shared
, start
, end
)) return 0;
724 if (get_error() == STATUS_FILE_LOCK_CONFLICT
)
726 /* Unix lock conflict -> tell client to wait and retry */
727 if (wait
) set_error( STATUS_PENDING
);
732 /* remove a lock on an fd */
733 void unlock_fd( struct fd
*fd
, file_pos_t start
, file_pos_t count
)
736 file_pos_t end
= start
+ count
;
738 /* find an existing lock with the exact same parameters */
739 LIST_FOR_EACH( ptr
, &fd
->locks
)
741 struct file_lock
*lock
= LIST_ENTRY( ptr
, struct file_lock
, fd_entry
);
742 if ((lock
->start
== start
) && (lock
->end
== end
))
744 remove_lock( lock
, 1 );
748 set_error( STATUS_FILE_LOCK_CONFLICT
);
752 /****************************************************************/
753 /* file descriptor functions */
755 static void fd_dump( struct object
*obj
, int verbose
)
757 struct fd
*fd
= (struct fd
*)obj
;
758 fprintf( stderr
, "Fd unix_fd=%d user=%p\n", fd
->unix_fd
, fd
->user
);
761 static void fd_destroy( struct object
*obj
)
763 struct fd
*fd
= (struct fd
*)obj
;
765 remove_fd_locks( fd
);
766 list_remove( &fd
->inode_entry
);
767 if (fd
->poll_index
!= -1) remove_poll_user( fd
, fd
->poll_index
);
770 inode_add_closed_fd( fd
->inode
, fd
->closed
);
771 release_object( fd
->inode
);
773 else /* no inode, close it right away */
775 if (fd
->unix_fd
!= -1) close( fd
->unix_fd
);
779 /* set the events that select waits for on this fd */
780 void set_fd_events( struct fd
*fd
, int events
)
782 int user
= fd
->poll_index
;
783 assert( poll_users
[user
] == fd
);
784 if (events
== -1) /* stop waiting on this fd completely */
786 pollfd
[user
].fd
= -1;
787 pollfd
[user
].events
= POLLERR
;
788 pollfd
[user
].revents
= 0;
790 else if (pollfd
[user
].fd
!= -1 || !pollfd
[user
].events
)
792 pollfd
[user
].fd
= fd
->unix_fd
;
793 pollfd
[user
].events
= events
;
797 /* allocate an fd object, without setting the unix fd yet */
798 struct fd
*alloc_fd( const struct fd_ops
*fd_user_ops
, struct object
*user
)
800 struct fd
*fd
= alloc_object( &fd_ops
);
802 if (!fd
) return NULL
;
804 fd
->fd_ops
= fd_user_ops
;
810 list_init( &fd
->inode_entry
);
811 list_init( &fd
->locks
);
813 if ((fd
->poll_index
= add_poll_user( fd
)) == -1)
815 release_object( fd
);
821 /* open() wrapper using a struct fd */
822 /* the fd must have been created with alloc_fd */
823 /* on error the fd object is released */
824 struct fd
*open_fd( struct fd
*fd
, const char *name
, int flags
, mode_t
*mode
)
827 struct closed_fd
*closed_fd
;
829 assert( fd
->unix_fd
== -1 );
831 if (!(closed_fd
= mem_alloc( sizeof(*closed_fd
) )))
833 release_object( fd
);
836 if ((fd
->unix_fd
= open( name
, flags
, *mode
)) == -1)
839 release_object( fd
);
843 closed_fd
->fd
= fd
->unix_fd
;
844 fstat( fd
->unix_fd
, &st
);
847 if (S_ISREG(st
.st_mode
)) /* only bother with an inode for normal files */
849 struct inode
*inode
= get_inode( st
.st_dev
, st
.st_ino
);
853 /* we can close the fd because there are no others open on the same file,
854 * otherwise we wouldn't have failed to allocate a new inode
856 release_object( fd
);
861 fd
->closed
= closed_fd
;
862 list_add_head( &inode
->open
, &fd
->inode_entry
);
871 /* create an fd for an anonymous file */
872 /* if the function fails the unix fd is closed */
873 struct fd
*create_anonymous_fd( const struct fd_ops
*fd_user_ops
, int unix_fd
, struct object
*user
)
875 struct fd
*fd
= alloc_fd( fd_user_ops
, user
);
879 fd
->unix_fd
= unix_fd
;
886 /* retrieve the object that is using an fd */
887 void *get_fd_user( struct fd
*fd
)
892 /* retrieve the unix fd for an object */
893 int get_unix_fd( struct fd
*fd
)
898 /* callback for event happening in the main poll() loop */
899 void fd_poll_event( struct fd
*fd
, int event
)
901 return fd
->fd_ops
->poll_event( fd
, event
);
904 /* check if events are pending and if yes return which one(s) */
905 int check_fd_events( struct fd
*fd
, int events
)
909 pfd
.fd
= fd
->unix_fd
;
911 if (poll( &pfd
, 1, 0 ) <= 0) return 0;
915 /* default add_queue() routine for objects that poll() on an fd */
916 int default_fd_add_queue( struct object
*obj
, struct wait_queue_entry
*entry
)
918 struct fd
*fd
= get_obj_fd( obj
);
921 if (!obj
->head
) /* first on the queue */
922 set_fd_events( fd
, fd
->fd_ops
->get_poll_events( fd
) );
923 add_queue( obj
, entry
);
924 release_object( fd
);
928 /* default remove_queue() routine for objects that poll() on an fd */
929 void default_fd_remove_queue( struct object
*obj
, struct wait_queue_entry
*entry
)
931 struct fd
*fd
= get_obj_fd( obj
);
934 remove_queue( obj
, entry
);
935 if (!obj
->head
) /* last on the queue is gone */
936 set_fd_events( fd
, 0 );
937 release_object( obj
);
938 release_object( fd
);
941 /* default signaled() routine for objects that poll() on an fd */
942 int default_fd_signaled( struct object
*obj
, struct thread
*thread
)
944 struct fd
*fd
= get_obj_fd( obj
);
945 int events
= fd
->fd_ops
->get_poll_events( fd
);
946 int ret
= check_fd_events( fd
, events
) != 0;
949 set_fd_events( fd
, 0 ); /* stop waiting on select() if we are signaled */
951 set_fd_events( fd
, events
); /* restart waiting on poll() if we are no longer signaled */
953 release_object( fd
);
957 /* default handler for poll() events */
958 void default_poll_event( struct fd
*fd
, int event
)
960 /* an error occurred, stop polling this fd to avoid busy-looping */
961 if (event
& (POLLERR
| POLLHUP
)) set_fd_events( fd
, -1 );
962 wake_up( fd
->user
, 0 );
965 /* default flush() routine */
966 int no_flush( struct fd
*fd
, struct event
**event
)
968 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
972 /* default get_file_info() routine */
973 int no_get_file_info( struct fd
*fd
, struct get_file_info_reply
*info
, int *flags
)
975 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
977 return FD_TYPE_INVALID
;
980 /* default queue_async() routine */
981 void no_queue_async( struct fd
*fd
, void* ptr
, unsigned int status
, int type
, int count
)
983 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
986 /* same as get_handle_obj but retrieve the struct fd associated to the object */
987 static struct fd
*get_handle_fd_obj( struct process
*process
, obj_handle_t handle
,
988 unsigned int access
)
990 struct fd
*fd
= NULL
;
993 if ((obj
= get_handle_obj( process
, handle
, access
, NULL
)))
995 fd
= get_obj_fd( obj
);
996 release_object( obj
);
1001 /* flush a file buffers */
1002 DECL_HANDLER(flush_file
)
1004 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 );
1005 struct event
* event
= NULL
;
1009 fd
->fd_ops
->flush( fd
, &event
);
1012 reply
->event
= alloc_handle( current
->process
, event
, SYNCHRONIZE
, 0 );
1014 release_object( fd
);
1018 /* get a Unix fd to access a file */
1019 DECL_HANDLER(get_handle_fd
)
1024 reply
->type
= FD_TYPE_INVALID
;
1026 if ((fd
= get_handle_fd_obj( current
->process
, req
->handle
, req
->access
)))
1028 int unix_fd
= get_handle_unix_fd( current
->process
, req
->handle
, req
->access
);
1029 if (unix_fd
!= -1) reply
->fd
= unix_fd
;
1030 else if (!get_error())
1032 unix_fd
= fd
->unix_fd
;
1033 if (unix_fd
!= -1) send_client_fd( current
->process
, unix_fd
, req
->handle
);
1035 reply
->type
= fd
->fd_ops
->get_file_info( fd
, NULL
, &reply
->flags
);
1036 release_object( fd
);
1038 else /* check for console handle (FIXME: should be done in the client) */
1042 if ((obj
= get_handle_obj( current
->process
, req
->handle
, req
->access
, NULL
)))
1044 if (is_console_object( obj
)) reply
->type
= FD_TYPE_CONSOLE
;
1045 release_object( obj
);
1050 /* get a file information */
1051 DECL_HANDLER(get_file_info
)
1053 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 );
1058 fd
->fd_ops
->get_file_info( fd
, reply
, &flags
);
1059 release_object( fd
);
1063 /* create / reschedule an async I/O */
1064 DECL_HANDLER(register_async
)
1066 struct fd
*fd
= get_handle_fd_obj( current
->process
, req
->handle
, 0 );
1069 * The queue_async method must do the following:
1071 * 1. Get the async_queue for the request of given type.
1072 * 2. Call find_async() to look for the specific client request in the queue (=> NULL if not found).
1073 * 3. If status is STATUS_PENDING:
1074 * a) If no async request found in step 2 (new request): call create_async() to initialize one.
1075 * b) Set request's status to STATUS_PENDING.
1076 * c) If the "queue" field of the async request is NULL: call async_insert() to put it into the queue.
1078 * If the async request was found in step 2, destroy it by calling destroy_async().
1079 * 4. Carry out any operations necessary to adjust the object's poll events
1080 * Usually: set_elect_events (obj, obj->ops->get_poll_events()).
1082 * See also the implementations in file.c, serial.c, and sock.c.
1087 fd
->fd_ops
->queue_async( fd
, req
->overlapped
, req
->status
, req
->type
, req
->count
);
1088 release_object( fd
);