Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 2 | * fs/eventpoll.c (Efficient event retrieval implementation) |
| 3 | * Copyright (C) 2001,...,2009 Davide Libenzi |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | * |
| 10 | * Davide Libenzi <davidel@xmailserver.org> |
| 11 | * |
| 12 | */ |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/sched.h> |
| 17 | #include <linux/fs.h> |
| 18 | #include <linux/file.h> |
| 19 | #include <linux/signal.h> |
| 20 | #include <linux/errno.h> |
| 21 | #include <linux/mm.h> |
| 22 | #include <linux/slab.h> |
| 23 | #include <linux/poll.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/string.h> |
| 25 | #include <linux/list.h> |
| 26 | #include <linux/hash.h> |
| 27 | #include <linux/spinlock.h> |
| 28 | #include <linux/syscalls.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/rbtree.h> |
| 30 | #include <linux/wait.h> |
| 31 | #include <linux/eventpoll.h> |
| 32 | #include <linux/mount.h> |
| 33 | #include <linux/bitops.h> |
Arjan van de Ven | 144efe3 | 2006-03-23 03:00:32 -0800 | [diff] [blame] | 34 | #include <linux/mutex.h> |
Davide Libenzi | da66f7c | 2007-05-10 22:23:21 -0700 | [diff] [blame] | 35 | #include <linux/anon_inodes.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/uaccess.h> |
| 37 | #include <asm/system.h> |
| 38 | #include <asm/io.h> |
| 39 | #include <asm/mman.h> |
| 40 | #include <asm/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | /* |
| 43 | * LOCKING: |
| 44 | * There are three level of locking required by epoll : |
| 45 | * |
Arjan van de Ven | 144efe3 | 2006-03-23 03:00:32 -0800 | [diff] [blame] | 46 | * 1) epmutex (mutex) |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 47 | * 2) ep->mtx (mutex) |
| 48 | * 3) ep->lock (spinlock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | * |
| 50 | * The acquire order is the one listed above, from 1 to 3. |
| 51 | * We need a spinlock (ep->lock) because we manipulate objects |
| 52 | * from inside the poll callback, that might be triggered from |
| 53 | * a wake_up() that in turn might be called from IRQ context. |
| 54 | * So we can't sleep inside the poll callback and hence we need |
| 55 | * a spinlock. During the event transfer loop (from kernel to |
| 56 | * user space) we could end up sleeping due a copy_to_user(), so |
| 57 | * we need a lock that will allow us to sleep. This lock is a |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 58 | * mutex (ep->mtx). It is acquired during the event transfer loop, |
| 59 | * during epoll_ctl(EPOLL_CTL_DEL) and during eventpoll_release_file(). |
| 60 | * Then we also need a global mutex to serialize eventpoll_release_file() |
| 61 | * and ep_free(). |
| 62 | * This mutex is acquired by ep_free() during the epoll file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | * cleanup path and it is also acquired by eventpoll_release_file() |
| 64 | * if a file has been pushed inside an epoll set and it is then |
| 65 | * close()d without a previous call toepoll_ctl(EPOLL_CTL_DEL). |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 66 | * It is possible to drop the "ep->mtx" and to use the global |
| 67 | * mutex "epmutex" (together with "ep->lock") to have it working, |
| 68 | * but having "ep->mtx" will make the interface more scalable. |
Arjan van de Ven | 144efe3 | 2006-03-23 03:00:32 -0800 | [diff] [blame] | 69 | * Events that require holding "epmutex" are very rare, while for |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 70 | * normal operations the epoll private "ep->mtx" will guarantee |
| 71 | * a better scalability. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | */ |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | #define DEBUG_EPOLL 0 |
| 75 | |
| 76 | #if DEBUG_EPOLL > 0 |
| 77 | #define DPRINTK(x) printk x |
| 78 | #define DNPRINTK(n, x) do { if ((n) <= DEBUG_EPOLL) printk x; } while (0) |
| 79 | #else /* #if DEBUG_EPOLL > 0 */ |
| 80 | #define DPRINTK(x) (void) 0 |
| 81 | #define DNPRINTK(n, x) (void) 0 |
| 82 | #endif /* #if DEBUG_EPOLL > 0 */ |
| 83 | |
| 84 | #define DEBUG_EPI 0 |
| 85 | |
| 86 | #if DEBUG_EPI != 0 |
| 87 | #define EPI_SLAB_DEBUG (SLAB_DEBUG_FREE | SLAB_RED_ZONE /* | SLAB_POISON */) |
| 88 | #else /* #if DEBUG_EPI != 0 */ |
| 89 | #define EPI_SLAB_DEBUG 0 |
| 90 | #endif /* #if DEBUG_EPI != 0 */ |
| 91 | |
| 92 | /* Epoll private bits inside the event mask */ |
| 93 | #define EP_PRIVATE_BITS (EPOLLONESHOT | EPOLLET) |
| 94 | |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 95 | /* Maximum number of nesting allowed inside epoll sets */ |
| 96 | #define EP_MAX_NESTS 4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Davide Libenzi | e3306dd | 2005-09-27 21:45:33 -0700 | [diff] [blame] | 98 | /* Maximum msec timeout value storeable in a long int */ |
| 99 | #define EP_MAX_MSTIMEO min(1000ULL * MAX_SCHEDULE_TIMEOUT / HZ, (LONG_MAX - 999ULL) / HZ) |
| 100 | |
Davide Libenzi | b611967 | 2006-10-11 01:21:44 -0700 | [diff] [blame] | 101 | #define EP_MAX_EVENTS (INT_MAX / sizeof(struct epoll_event)) |
| 102 | |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 103 | #define EP_UNACTIVE_PTR ((void *) -1L) |
| 104 | |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 105 | #define EP_ITEM_COST (sizeof(struct epitem) + sizeof(struct eppoll_entry)) |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | struct epoll_filefd { |
| 108 | struct file *file; |
| 109 | int fd; |
| 110 | }; |
| 111 | |
| 112 | /* |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 113 | * Structure used to track possible nested calls, for too deep recursions |
| 114 | * and loop cycles. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | */ |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 116 | struct nested_call_node { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | struct list_head llink; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 118 | struct task_struct *task; |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 119 | void *cookie; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
| 122 | /* |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 123 | * This structure is used as collector for nested calls, to check for |
| 124 | * maximum recursion dept and loop cycles. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | */ |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 126 | struct nested_calls { |
| 127 | struct list_head tasks_call_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | spinlock_t lock; |
| 129 | }; |
| 130 | |
| 131 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | * Each file descriptor added to the eventpoll interface will |
Davide Libenzi | 6192bd5 | 2007-05-08 00:25:41 -0700 | [diff] [blame] | 133 | * have an entry of this type linked to the "rbr" RB tree. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | */ |
| 135 | struct epitem { |
Davide Libenzi | 67647d0 | 2007-05-15 01:40:52 -0700 | [diff] [blame] | 136 | /* RB tree node used to link this structure to the eventpoll RB tree */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | struct rb_node rbn; |
| 138 | |
| 139 | /* List header used to link this structure to the eventpoll ready list */ |
| 140 | struct list_head rdllink; |
| 141 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 142 | /* |
| 143 | * Works together "struct eventpoll"->ovflist in keeping the |
| 144 | * single linked chain of items. |
| 145 | */ |
| 146 | struct epitem *next; |
| 147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | /* The file descriptor information this item refers to */ |
| 149 | struct epoll_filefd ffd; |
| 150 | |
| 151 | /* Number of active wait queue attached to poll operations */ |
| 152 | int nwait; |
| 153 | |
| 154 | /* List containing poll wait queues */ |
| 155 | struct list_head pwqlist; |
| 156 | |
| 157 | /* The "container" of this item */ |
| 158 | struct eventpoll *ep; |
| 159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | /* List header used to link this item to the "struct file" items list */ |
| 161 | struct list_head fllink; |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 162 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 163 | /* The structure that describe the interested events and the source fd */ |
| 164 | struct epoll_event event; |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 165 | }; |
| 166 | |
| 167 | /* |
| 168 | * This structure is stored inside the "private_data" member of the file |
| 169 | * structure and rapresent the main data sructure for the eventpoll |
| 170 | * interface. |
| 171 | */ |
| 172 | struct eventpoll { |
| 173 | /* Protect the this structure access */ |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 174 | spinlock_t lock; |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 175 | |
| 176 | /* |
| 177 | * This mutex is used to ensure that files are not removed |
| 178 | * while epoll is using them. This is held during the event |
| 179 | * collection loop, the file cleanup path, the epoll file exit |
| 180 | * code and the ctl operations. |
| 181 | */ |
| 182 | struct mutex mtx; |
| 183 | |
| 184 | /* Wait queue used by sys_epoll_wait() */ |
| 185 | wait_queue_head_t wq; |
| 186 | |
| 187 | /* Wait queue used by file->poll() */ |
| 188 | wait_queue_head_t poll_wait; |
| 189 | |
| 190 | /* List of ready file descriptors */ |
| 191 | struct list_head rdllist; |
| 192 | |
Davide Libenzi | 67647d0 | 2007-05-15 01:40:52 -0700 | [diff] [blame] | 193 | /* RB tree root used to store monitored fd structs */ |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 194 | struct rb_root rbr; |
| 195 | |
| 196 | /* |
| 197 | * This is a single linked list that chains all the "struct epitem" that |
| 198 | * happened while transfering ready events to userspace w/out |
| 199 | * holding ->lock. |
| 200 | */ |
| 201 | struct epitem *ovflist; |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 202 | |
| 203 | /* The user that created the eventpoll descriptor */ |
| 204 | struct user_struct *user; |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 205 | }; |
| 206 | |
| 207 | /* Wait structure used by the poll hooks */ |
| 208 | struct eppoll_entry { |
| 209 | /* List header used to link this structure to the "struct epitem" */ |
| 210 | struct list_head llink; |
| 211 | |
| 212 | /* The "base" pointer is set to the container "struct epitem" */ |
| 213 | void *base; |
| 214 | |
| 215 | /* |
| 216 | * Wait queue item that will be linked to the target file wait |
| 217 | * queue head. |
| 218 | */ |
| 219 | wait_queue_t wait; |
| 220 | |
| 221 | /* The wait queue head that linked the "wait" wait queue item */ |
| 222 | wait_queue_head_t *whead; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | }; |
| 224 | |
| 225 | /* Wrapper struct used by poll queueing */ |
| 226 | struct ep_pqueue { |
| 227 | poll_table pt; |
| 228 | struct epitem *epi; |
| 229 | }; |
| 230 | |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 231 | /* Used by the ep_send_events() function as callback private data */ |
| 232 | struct ep_send_events_data { |
| 233 | int maxevents; |
| 234 | struct epoll_event __user *events; |
| 235 | }; |
| 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | /* |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 238 | * Configuration options available inside /proc/sys/fs/epoll/ |
| 239 | */ |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 240 | /* Maximum number of epoll watched descriptors, per user */ |
| 241 | static int max_user_watches __read_mostly; |
| 242 | |
| 243 | /* |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 244 | * This mutex is used to serialize ep_free() and eventpoll_release_file(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | */ |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 246 | static DEFINE_MUTEX(epmutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 248 | /* Used for safe wake up implementation */ |
| 249 | static struct nested_calls poll_safewake_ncalls; |
| 250 | |
| 251 | /* Used to call file's f_op->poll() under the nested calls boundaries */ |
| 252 | static struct nested_calls poll_readywalk_ncalls; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
| 254 | /* Slab cache used to allocate "struct epitem" */ |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 255 | static struct kmem_cache *epi_cache __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
| 257 | /* Slab cache used to allocate "struct eppoll_entry" */ |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 258 | static struct kmem_cache *pwq_cache __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 260 | #ifdef CONFIG_SYSCTL |
| 261 | |
| 262 | #include <linux/sysctl.h> |
| 263 | |
| 264 | static int zero; |
| 265 | |
| 266 | ctl_table epoll_table[] = { |
| 267 | { |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 268 | .procname = "max_user_watches", |
| 269 | .data = &max_user_watches, |
| 270 | .maxlen = sizeof(int), |
| 271 | .mode = 0644, |
| 272 | .proc_handler = &proc_dointvec_minmax, |
| 273 | .extra1 = &zero, |
| 274 | }, |
| 275 | { .ctl_name = 0 } |
| 276 | }; |
| 277 | #endif /* CONFIG_SYSCTL */ |
| 278 | |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 279 | |
Davide Libenzi | 67647d0 | 2007-05-15 01:40:52 -0700 | [diff] [blame] | 280 | /* Setup the structure that is used as key for the RB tree */ |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 281 | static inline void ep_set_ffd(struct epoll_filefd *ffd, |
| 282 | struct file *file, int fd) |
| 283 | { |
| 284 | ffd->file = file; |
| 285 | ffd->fd = fd; |
| 286 | } |
| 287 | |
Davide Libenzi | 67647d0 | 2007-05-15 01:40:52 -0700 | [diff] [blame] | 288 | /* Compare RB tree keys */ |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 289 | static inline int ep_cmp_ffd(struct epoll_filefd *p1, |
| 290 | struct epoll_filefd *p2) |
| 291 | { |
| 292 | return (p1->file > p2->file ? +1: |
| 293 | (p1->file < p2->file ? -1 : p1->fd - p2->fd)); |
| 294 | } |
| 295 | |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 296 | /* Tells us if the item is currently linked */ |
| 297 | static inline int ep_is_linked(struct list_head *p) |
| 298 | { |
| 299 | return !list_empty(p); |
| 300 | } |
| 301 | |
| 302 | /* Get the "struct epitem" from a wait queue pointer */ |
Davide Libenzi | cdac75e | 2008-04-29 00:58:34 -0700 | [diff] [blame] | 303 | static inline struct epitem *ep_item_from_wait(wait_queue_t *p) |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 304 | { |
| 305 | return container_of(p, struct eppoll_entry, wait)->base; |
| 306 | } |
| 307 | |
| 308 | /* Get the "struct epitem" from an epoll queue wrapper */ |
Davide Libenzi | cdac75e | 2008-04-29 00:58:34 -0700 | [diff] [blame] | 309 | static inline struct epitem *ep_item_from_epqueue(poll_table *p) |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 310 | { |
| 311 | return container_of(p, struct ep_pqueue, pt)->epi; |
| 312 | } |
| 313 | |
| 314 | /* Tells if the epoll_ctl(2) operation needs an event copy from userspace */ |
Davide Libenzi | 6192bd5 | 2007-05-08 00:25:41 -0700 | [diff] [blame] | 315 | static inline int ep_op_has_event(int op) |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 316 | { |
| 317 | return op != EPOLL_CTL_DEL; |
| 318 | } |
| 319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | /* Initialize the poll safe wake up structure */ |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 321 | static void ep_nested_calls_init(struct nested_calls *ncalls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | { |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 323 | INIT_LIST_HEAD(&ncalls->tasks_call_list); |
| 324 | spin_lock_init(&ncalls->lock); |
| 325 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 327 | /** |
| 328 | * ep_call_nested - Perform a bound (possibly) nested call, by checking |
| 329 | * that the recursion limit is not exceeded, and that |
| 330 | * the same nested call (by the meaning of same cookie) is |
| 331 | * no re-entered. |
| 332 | * |
| 333 | * @ncalls: Pointer to the nested_calls structure to be used for this call. |
| 334 | * @max_nests: Maximum number of allowed nesting calls. |
| 335 | * @nproc: Nested call core function pointer. |
| 336 | * @priv: Opaque data to be passed to the @nproc callback. |
| 337 | * @cookie: Cookie to be used to identify this nested call. |
| 338 | * |
| 339 | * Returns: Returns the code returned by the @nproc callback, or -1 if |
| 340 | * the maximum recursion limit has been exceeded. |
| 341 | */ |
| 342 | static int ep_call_nested(struct nested_calls *ncalls, int max_nests, |
| 343 | int (*nproc)(void *, void *, int), void *priv, |
| 344 | void *cookie) |
| 345 | { |
| 346 | int error, call_nests = 0; |
| 347 | unsigned long flags; |
| 348 | struct task_struct *this_task = current; |
| 349 | struct list_head *lsthead = &ncalls->tasks_call_list; |
| 350 | struct nested_call_node *tncur; |
| 351 | struct nested_call_node tnode; |
| 352 | |
| 353 | spin_lock_irqsave(&ncalls->lock, flags); |
| 354 | |
| 355 | /* |
| 356 | * Try to see if the current task is already inside this wakeup call. |
| 357 | * We use a list here, since the population inside this set is always |
| 358 | * very much limited. |
| 359 | */ |
| 360 | list_for_each_entry(tncur, lsthead, llink) { |
| 361 | if (tncur->task == this_task && |
| 362 | (tncur->cookie == cookie || ++call_nests > max_nests)) { |
| 363 | /* |
| 364 | * Ops ... loop detected or maximum nest level reached. |
| 365 | * We abort this wake by breaking the cycle itself. |
| 366 | */ |
| 367 | spin_unlock_irqrestore(&ncalls->lock, flags); |
| 368 | |
| 369 | return -1; |
| 370 | } |
| 371 | } |
| 372 | |
| 373 | /* Add the current task and cookie to the list */ |
| 374 | tnode.task = this_task; |
| 375 | tnode.cookie = cookie; |
| 376 | list_add(&tnode.llink, lsthead); |
| 377 | |
| 378 | spin_unlock_irqrestore(&ncalls->lock, flags); |
| 379 | |
| 380 | /* Call the nested function */ |
| 381 | error = (*nproc)(priv, cookie, call_nests); |
| 382 | |
| 383 | /* Remove the current task from the list */ |
| 384 | spin_lock_irqsave(&ncalls->lock, flags); |
| 385 | list_del(&tnode.llink); |
| 386 | spin_unlock_irqrestore(&ncalls->lock, flags); |
| 387 | |
| 388 | return error; |
| 389 | } |
| 390 | |
| 391 | static int ep_poll_wakeup_proc(void *priv, void *cookie, int call_nests) |
| 392 | { |
| 393 | wake_up_nested((wait_queue_head_t *) cookie, 1 + call_nests); |
| 394 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | } |
| 396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | /* |
| 398 | * Perform a safe wake up of the poll wait list. The problem is that |
| 399 | * with the new callback'd wake up system, it is possible that the |
| 400 | * poll callback is reentered from inside the call to wake_up() done |
| 401 | * on the poll wait queue head. The rule is that we cannot reenter the |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 402 | * wake up code from the same task more than EP_MAX_NESTS times, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | * and we cannot reenter the same wait queue head at all. This will |
| 404 | * enable to have a hierarchy of epoll file descriptor of no more than |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 405 | * EP_MAX_NESTS deep. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | */ |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 407 | static void ep_poll_safewake(wait_queue_head_t *wq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | { |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 409 | ep_call_nested(&poll_safewake_ncalls, EP_MAX_NESTS, |
| 410 | ep_poll_wakeup_proc, NULL, wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | } |
| 412 | |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 413 | /* |
| 414 | * This function unregister poll callbacks from the associated file descriptor. |
| 415 | * Since this must be called without holding "ep->lock" the atomic exchange trick |
| 416 | * will protect us from multiple unregister. |
| 417 | */ |
| 418 | static void ep_unregister_pollwait(struct eventpoll *ep, struct epitem *epi) |
| 419 | { |
| 420 | int nwait; |
| 421 | struct list_head *lsthead = &epi->pwqlist; |
| 422 | struct eppoll_entry *pwq; |
| 423 | |
| 424 | /* This is called without locks, so we need the atomic exchange */ |
| 425 | nwait = xchg(&epi->nwait, 0); |
| 426 | |
| 427 | if (nwait) { |
| 428 | while (!list_empty(lsthead)) { |
| 429 | pwq = list_first_entry(lsthead, struct eppoll_entry, llink); |
| 430 | |
| 431 | list_del_init(&pwq->llink); |
| 432 | remove_wait_queue(pwq->whead, &pwq->wait); |
| 433 | kmem_cache_free(pwq_cache, pwq); |
| 434 | } |
| 435 | } |
| 436 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 438 | /** |
| 439 | * ep_scan_ready_list - Scans the ready list in a way that makes possible for |
| 440 | * the scan code, to call f_op->poll(). Also allows for |
| 441 | * O(NumReady) performance. |
| 442 | * |
| 443 | * @ep: Pointer to the epoll private data structure. |
| 444 | * @sproc: Pointer to the scan callback. |
| 445 | * @priv: Private opaque data passed to the @sproc callback. |
| 446 | * |
| 447 | * Returns: The same integer error code returned by the @sproc callback. |
| 448 | */ |
| 449 | static int ep_scan_ready_list(struct eventpoll *ep, |
| 450 | int (*sproc)(struct eventpoll *, |
| 451 | struct list_head *, void *), |
| 452 | void *priv) |
| 453 | { |
| 454 | int error, pwake = 0; |
| 455 | unsigned long flags; |
| 456 | struct epitem *epi, *nepi; |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 457 | LIST_HEAD(txlist); |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 458 | |
| 459 | /* |
| 460 | * We need to lock this because we could be hit by |
| 461 | * eventpoll_release_file() and epoll_ctl(EPOLL_CTL_DEL). |
| 462 | */ |
| 463 | mutex_lock(&ep->mtx); |
| 464 | |
| 465 | /* |
| 466 | * Steal the ready list, and re-init the original one to the |
| 467 | * empty list. Also, set ep->ovflist to NULL so that events |
| 468 | * happening while looping w/out locks, are not lost. We cannot |
| 469 | * have the poll callback to queue directly on ep->rdllist, |
| 470 | * because we want the "sproc" callback to be able to do it |
| 471 | * in a lockless way. |
| 472 | */ |
| 473 | spin_lock_irqsave(&ep->lock, flags); |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 474 | list_splice_init(&ep->rdllist, &txlist); |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 475 | ep->ovflist = NULL; |
| 476 | spin_unlock_irqrestore(&ep->lock, flags); |
| 477 | |
| 478 | /* |
| 479 | * Now call the callback function. |
| 480 | */ |
| 481 | error = (*sproc)(ep, &txlist, priv); |
| 482 | |
| 483 | spin_lock_irqsave(&ep->lock, flags); |
| 484 | /* |
| 485 | * During the time we spent inside the "sproc" callback, some |
| 486 | * other events might have been queued by the poll callback. |
| 487 | * We re-insert them inside the main ready-list here. |
| 488 | */ |
| 489 | for (nepi = ep->ovflist; (epi = nepi) != NULL; |
| 490 | nepi = epi->next, epi->next = EP_UNACTIVE_PTR) { |
| 491 | /* |
| 492 | * We need to check if the item is already in the list. |
| 493 | * During the "sproc" callback execution time, items are |
| 494 | * queued into ->ovflist but the "txlist" might already |
| 495 | * contain them, and the list_splice() below takes care of them. |
| 496 | */ |
| 497 | if (!ep_is_linked(&epi->rdllink)) |
| 498 | list_add_tail(&epi->rdllink, &ep->rdllist); |
| 499 | } |
| 500 | /* |
| 501 | * We need to set back ep->ovflist to EP_UNACTIVE_PTR, so that after |
| 502 | * releasing the lock, events will be queued in the normal way inside |
| 503 | * ep->rdllist. |
| 504 | */ |
| 505 | ep->ovflist = EP_UNACTIVE_PTR; |
| 506 | |
| 507 | /* |
| 508 | * Quickly re-inject items left on "txlist". |
| 509 | */ |
| 510 | list_splice(&txlist, &ep->rdllist); |
| 511 | |
| 512 | if (!list_empty(&ep->rdllist)) { |
| 513 | /* |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 514 | * Wake up (if active) both the eventpoll wait list and |
| 515 | * the ->poll() wait list (delayed after we release the lock). |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 516 | */ |
| 517 | if (waitqueue_active(&ep->wq)) |
| 518 | wake_up_locked(&ep->wq); |
| 519 | if (waitqueue_active(&ep->poll_wait)) |
| 520 | pwake++; |
| 521 | } |
| 522 | spin_unlock_irqrestore(&ep->lock, flags); |
| 523 | |
| 524 | mutex_unlock(&ep->mtx); |
| 525 | |
| 526 | /* We have to call this outside the lock */ |
| 527 | if (pwake) |
| 528 | ep_poll_safewake(&ep->poll_wait); |
| 529 | |
| 530 | return error; |
| 531 | } |
| 532 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | /* |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 534 | * Removes a "struct epitem" from the eventpoll RB tree and deallocates |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 535 | * all the associated resources. Must be called with "mtx" held. |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 536 | */ |
| 537 | static int ep_remove(struct eventpoll *ep, struct epitem *epi) |
| 538 | { |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 539 | unsigned long flags; |
| 540 | struct file *file = epi->ffd.file; |
| 541 | |
| 542 | /* |
| 543 | * Removes poll wait queue hooks. We _have_ to do this without holding |
| 544 | * the "ep->lock" otherwise a deadlock might occur. This because of the |
| 545 | * sequence of the lock acquisition. Here we do "ep->lock" then the wait |
| 546 | * queue head lock when unregistering the wait queue. The wakeup callback |
| 547 | * will run by holding the wait queue head lock and will call our callback |
| 548 | * that will try to get "ep->lock". |
| 549 | */ |
| 550 | ep_unregister_pollwait(ep, epi); |
| 551 | |
| 552 | /* Remove the current item from the list of epoll hooks */ |
Jonathan Corbet | 6849991 | 2009-02-06 13:52:43 -0700 | [diff] [blame] | 553 | spin_lock(&file->f_lock); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 554 | if (ep_is_linked(&epi->fllink)) |
Davide Libenzi | 6192bd5 | 2007-05-08 00:25:41 -0700 | [diff] [blame] | 555 | list_del_init(&epi->fllink); |
Jonathan Corbet | 6849991 | 2009-02-06 13:52:43 -0700 | [diff] [blame] | 556 | spin_unlock(&file->f_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
Davide Libenzi | cdac75e | 2008-04-29 00:58:34 -0700 | [diff] [blame] | 558 | rb_erase(&epi->rbn, &ep->rbr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 560 | spin_lock_irqsave(&ep->lock, flags); |
| 561 | if (ep_is_linked(&epi->rdllink)) |
| 562 | list_del_init(&epi->rdllink); |
| 563 | spin_unlock_irqrestore(&ep->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 565 | /* At this point it is safe to free the eventpoll item */ |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 566 | kmem_cache_free(epi_cache, epi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 568 | atomic_dec(&ep->user->epoll_watches); |
| 569 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 570 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: ep_remove(%p, %p)\n", |
| 571 | current, ep, file)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 573 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | } |
| 575 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | static void ep_free(struct eventpoll *ep) |
| 577 | { |
| 578 | struct rb_node *rbp; |
| 579 | struct epitem *epi; |
| 580 | |
| 581 | /* We need to release all tasks waiting for these file */ |
| 582 | if (waitqueue_active(&ep->poll_wait)) |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 583 | ep_poll_safewake(&ep->poll_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | |
| 585 | /* |
| 586 | * We need to lock this because we could be hit by |
| 587 | * eventpoll_release_file() while we're freeing the "struct eventpoll". |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 588 | * We do not need to hold "ep->mtx" here because the epoll file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | * is on the way to be removed and no one has references to it |
| 590 | * anymore. The only hit might come from eventpoll_release_file() but |
Arjan van de Ven | 144efe3 | 2006-03-23 03:00:32 -0800 | [diff] [blame] | 591 | * holding "epmutex" is sufficent here. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | */ |
Arjan van de Ven | 144efe3 | 2006-03-23 03:00:32 -0800 | [diff] [blame] | 593 | mutex_lock(&epmutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
| 595 | /* |
| 596 | * Walks through the whole tree by unregistering poll callbacks. |
| 597 | */ |
| 598 | for (rbp = rb_first(&ep->rbr); rbp; rbp = rb_next(rbp)) { |
| 599 | epi = rb_entry(rbp, struct epitem, rbn); |
| 600 | |
| 601 | ep_unregister_pollwait(ep, epi); |
| 602 | } |
| 603 | |
| 604 | /* |
Davide Libenzi | 6192bd5 | 2007-05-08 00:25:41 -0700 | [diff] [blame] | 605 | * Walks through the whole tree by freeing each "struct epitem". At this |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | * point we are sure no poll callbacks will be lingering around, and also by |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 607 | * holding "epmutex" we can be sure that no file cleanup code will hit |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | * us during this operation. So we can avoid the lock on "ep->lock". |
| 609 | */ |
Stephen Hemminger | c80544d | 2007-10-18 03:07:05 -0700 | [diff] [blame] | 610 | while ((rbp = rb_first(&ep->rbr)) != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | epi = rb_entry(rbp, struct epitem, rbn); |
| 612 | ep_remove(ep, epi); |
| 613 | } |
| 614 | |
Arjan van de Ven | 144efe3 | 2006-03-23 03:00:32 -0800 | [diff] [blame] | 615 | mutex_unlock(&epmutex); |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 616 | mutex_destroy(&ep->mtx); |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 617 | free_uid(ep->user); |
Davide Libenzi | f0ee9aa | 2007-05-15 01:40:57 -0700 | [diff] [blame] | 618 | kfree(ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | } |
| 620 | |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 621 | static int ep_eventpoll_release(struct inode *inode, struct file *file) |
| 622 | { |
| 623 | struct eventpoll *ep = file->private_data; |
| 624 | |
Davide Libenzi | f0ee9aa | 2007-05-15 01:40:57 -0700 | [diff] [blame] | 625 | if (ep) |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 626 | ep_free(ep); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 627 | |
| 628 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: close() ep=%p\n", current, ep)); |
| 629 | return 0; |
| 630 | } |
| 631 | |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 632 | static int ep_read_events_proc(struct eventpoll *ep, struct list_head *head, |
| 633 | void *priv) |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 634 | { |
| 635 | struct epitem *epi, *tmp; |
| 636 | |
| 637 | list_for_each_entry_safe(epi, tmp, head, rdllink) { |
| 638 | if (epi->ffd.file->f_op->poll(epi->ffd.file, NULL) & |
| 639 | epi->event.events) |
| 640 | return POLLIN | POLLRDNORM; |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 641 | else { |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 642 | /* |
| 643 | * Item has been dropped into the ready list by the poll |
| 644 | * callback, but it's not actually ready, as far as |
| 645 | * caller requested events goes. We can remove it here. |
| 646 | */ |
| 647 | list_del_init(&epi->rdllink); |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 648 | } |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 649 | } |
| 650 | |
| 651 | return 0; |
| 652 | } |
| 653 | |
| 654 | static int ep_poll_readyevents_proc(void *priv, void *cookie, int call_nests) |
| 655 | { |
| 656 | return ep_scan_ready_list(priv, ep_read_events_proc, NULL); |
| 657 | } |
| 658 | |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 659 | static unsigned int ep_eventpoll_poll(struct file *file, poll_table *wait) |
| 660 | { |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 661 | int pollflags; |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 662 | struct eventpoll *ep = file->private_data; |
| 663 | |
| 664 | /* Insert inside our poll wait queue */ |
| 665 | poll_wait(file, &ep->poll_wait, wait); |
| 666 | |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 667 | /* |
| 668 | * Proceed to find out if wanted events are really available inside |
| 669 | * the ready list. This need to be done under ep_call_nested() |
| 670 | * supervision, since the call to f_op->poll() done on listed files |
| 671 | * could re-enter here. |
| 672 | */ |
| 673 | pollflags = ep_call_nested(&poll_readywalk_ncalls, EP_MAX_NESTS, |
| 674 | ep_poll_readyevents_proc, ep, ep); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 675 | |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 676 | return pollflags != -1 ? pollflags : 0; |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | /* File callbacks that implement the eventpoll file behaviour */ |
| 680 | static const struct file_operations eventpoll_fops = { |
| 681 | .release = ep_eventpoll_release, |
| 682 | .poll = ep_eventpoll_poll |
| 683 | }; |
| 684 | |
| 685 | /* Fast test to see if the file is an evenpoll file */ |
| 686 | static inline int is_file_epoll(struct file *f) |
| 687 | { |
| 688 | return f->f_op == &eventpoll_fops; |
| 689 | } |
| 690 | |
| 691 | /* |
| 692 | * This is called from eventpoll_release() to unlink files from the eventpoll |
| 693 | * interface. We need to have this facility to cleanup correctly files that are |
| 694 | * closed without being removed from the eventpoll interface. |
| 695 | */ |
| 696 | void eventpoll_release_file(struct file *file) |
| 697 | { |
| 698 | struct list_head *lsthead = &file->f_ep_links; |
| 699 | struct eventpoll *ep; |
| 700 | struct epitem *epi; |
| 701 | |
| 702 | /* |
Jonathan Corbet | 6849991 | 2009-02-06 13:52:43 -0700 | [diff] [blame] | 703 | * We don't want to get "file->f_lock" because it is not |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 704 | * necessary. It is not necessary because we're in the "struct file" |
| 705 | * cleanup path, and this means that noone is using this file anymore. |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 706 | * So, for example, epoll_ctl() cannot hit here since if we reach this |
Davide Libenzi | 67647d0 | 2007-05-15 01:40:52 -0700 | [diff] [blame] | 707 | * point, the file counter already went to zero and fget() would fail. |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 708 | * The only hit might come from ep_free() but by holding the mutex |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 709 | * will correctly serialize the operation. We do need to acquire |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 710 | * "ep->mtx" after "epmutex" because ep_remove() requires it when called |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 711 | * from anywhere but ep_free(). |
Jonathan Corbet | 6849991 | 2009-02-06 13:52:43 -0700 | [diff] [blame] | 712 | * |
| 713 | * Besides, ep_remove() acquires the lock, so we can't hold it here. |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 714 | */ |
| 715 | mutex_lock(&epmutex); |
| 716 | |
| 717 | while (!list_empty(lsthead)) { |
| 718 | epi = list_first_entry(lsthead, struct epitem, fllink); |
| 719 | |
| 720 | ep = epi->ep; |
| 721 | list_del_init(&epi->fllink); |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 722 | mutex_lock(&ep->mtx); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 723 | ep_remove(ep, epi); |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 724 | mutex_unlock(&ep->mtx); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | mutex_unlock(&epmutex); |
| 728 | } |
| 729 | |
| 730 | static int ep_alloc(struct eventpoll **pep) |
| 731 | { |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 732 | int error; |
| 733 | struct user_struct *user; |
| 734 | struct eventpoll *ep; |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 735 | |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 736 | user = get_current_user(); |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 737 | error = -ENOMEM; |
| 738 | ep = kzalloc(sizeof(*ep), GFP_KERNEL); |
| 739 | if (unlikely(!ep)) |
| 740 | goto free_uid; |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 741 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 742 | spin_lock_init(&ep->lock); |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 743 | mutex_init(&ep->mtx); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 744 | init_waitqueue_head(&ep->wq); |
| 745 | init_waitqueue_head(&ep->poll_wait); |
| 746 | INIT_LIST_HEAD(&ep->rdllist); |
| 747 | ep->rbr = RB_ROOT; |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 748 | ep->ovflist = EP_UNACTIVE_PTR; |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 749 | ep->user = user; |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 750 | |
| 751 | *pep = ep; |
| 752 | |
| 753 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: ep_alloc() ep=%p\n", |
| 754 | current, ep)); |
| 755 | return 0; |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 756 | |
| 757 | free_uid: |
| 758 | free_uid(user); |
| 759 | return error; |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 760 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | |
| 762 | /* |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 763 | * Search the file inside the eventpoll tree. The RB tree operations |
| 764 | * are protected by the "mtx" mutex, and ep_find() must be called with |
| 765 | * "mtx" held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | */ |
| 767 | static struct epitem *ep_find(struct eventpoll *ep, struct file *file, int fd) |
| 768 | { |
| 769 | int kcmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | struct rb_node *rbp; |
| 771 | struct epitem *epi, *epir = NULL; |
| 772 | struct epoll_filefd ffd; |
| 773 | |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 774 | ep_set_ffd(&ffd, file, fd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | for (rbp = ep->rbr.rb_node; rbp; ) { |
| 776 | epi = rb_entry(rbp, struct epitem, rbn); |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 777 | kcmp = ep_cmp_ffd(&ffd, &epi->ffd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | if (kcmp > 0) |
| 779 | rbp = rbp->rb_right; |
| 780 | else if (kcmp < 0) |
| 781 | rbp = rbp->rb_left; |
| 782 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | epir = epi; |
| 784 | break; |
| 785 | } |
| 786 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | |
| 788 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: ep_find(%p) -> %p\n", |
| 789 | current, file, epir)); |
| 790 | |
| 791 | return epir; |
| 792 | } |
| 793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | /* |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 795 | * This is the callback that is passed to the wait queue wakeup |
| 796 | * machanism. It is called by the stored file descriptors when they |
| 797 | * have events to report. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | */ |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 799 | static int ep_poll_callback(wait_queue_t *wait, unsigned mode, int sync, void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | { |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 801 | int pwake = 0; |
| 802 | unsigned long flags; |
| 803 | struct epitem *epi = ep_item_from_wait(wait); |
| 804 | struct eventpoll *ep = epi->ep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 806 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: poll_callback(%p) epi=%p ep=%p\n", |
| 807 | current, epi->ffd.file, epi, ep)); |
| 808 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 809 | spin_lock_irqsave(&ep->lock, flags); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 810 | |
| 811 | /* |
| 812 | * If the event mask does not contain any poll(2) event, we consider the |
| 813 | * descriptor to be disabled. This condition is likely the effect of the |
| 814 | * EPOLLONESHOT bit that disables the descriptor when an event is received, |
| 815 | * until the next EPOLL_CTL_MOD will be issued. |
| 816 | */ |
| 817 | if (!(epi->event.events & ~EP_PRIVATE_BITS)) |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 818 | goto out_unlock; |
| 819 | |
| 820 | /* |
| 821 | * If we are trasfering events to userspace, we can hold no locks |
| 822 | * (because we're accessing user memory, and because of linux f_op->poll() |
| 823 | * semantics). All the events that happens during that period of time are |
| 824 | * chained in ep->ovflist and requeued later on. |
| 825 | */ |
| 826 | if (unlikely(ep->ovflist != EP_UNACTIVE_PTR)) { |
| 827 | if (epi->next == EP_UNACTIVE_PTR) { |
| 828 | epi->next = ep->ovflist; |
| 829 | ep->ovflist = epi; |
| 830 | } |
| 831 | goto out_unlock; |
| 832 | } |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 833 | |
| 834 | /* If this file is already in the ready list we exit soon */ |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 835 | if (!ep_is_linked(&epi->rdllink)) |
| 836 | list_add_tail(&epi->rdllink, &ep->rdllist); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 837 | |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 838 | /* |
| 839 | * Wake up ( if active ) both the eventpoll wait list and the ->poll() |
| 840 | * wait list. |
| 841 | */ |
| 842 | if (waitqueue_active(&ep->wq)) |
Matthew Wilcox | 4a6e9e2c | 2007-08-30 16:10:22 -0400 | [diff] [blame] | 843 | wake_up_locked(&ep->wq); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 844 | if (waitqueue_active(&ep->poll_wait)) |
| 845 | pwake++; |
| 846 | |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 847 | out_unlock: |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 848 | spin_unlock_irqrestore(&ep->lock, flags); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 849 | |
| 850 | /* We have to call this outside the lock */ |
| 851 | if (pwake) |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 852 | ep_poll_safewake(&ep->poll_wait); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 853 | |
| 854 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | } |
| 856 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | /* |
| 858 | * This is the callback that is used to add our wait queue to the |
| 859 | * target file wakeup lists. |
| 860 | */ |
| 861 | static void ep_ptable_queue_proc(struct file *file, wait_queue_head_t *whead, |
| 862 | poll_table *pt) |
| 863 | { |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 864 | struct epitem *epi = ep_item_from_epqueue(pt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | struct eppoll_entry *pwq; |
| 866 | |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 867 | if (epi->nwait >= 0 && (pwq = kmem_cache_alloc(pwq_cache, GFP_KERNEL))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | init_waitqueue_func_entry(&pwq->wait, ep_poll_callback); |
| 869 | pwq->whead = whead; |
| 870 | pwq->base = epi; |
| 871 | add_wait_queue(whead, &pwq->wait); |
| 872 | list_add_tail(&pwq->llink, &epi->pwqlist); |
| 873 | epi->nwait++; |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 874 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | /* We have to signal that an error occurred */ |
| 876 | epi->nwait = -1; |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 877 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | } |
| 879 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | static void ep_rbtree_insert(struct eventpoll *ep, struct epitem *epi) |
| 881 | { |
| 882 | int kcmp; |
| 883 | struct rb_node **p = &ep->rbr.rb_node, *parent = NULL; |
| 884 | struct epitem *epic; |
| 885 | |
| 886 | while (*p) { |
| 887 | parent = *p; |
| 888 | epic = rb_entry(parent, struct epitem, rbn); |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 889 | kcmp = ep_cmp_ffd(&epi->ffd, &epic->ffd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | if (kcmp > 0) |
| 891 | p = &parent->rb_right; |
| 892 | else |
| 893 | p = &parent->rb_left; |
| 894 | } |
| 895 | rb_link_node(&epi->rbn, parent, p); |
| 896 | rb_insert_color(&epi->rbn, &ep->rbr); |
| 897 | } |
| 898 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 899 | /* |
| 900 | * Must be called with "mtx" held. |
| 901 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | static int ep_insert(struct eventpoll *ep, struct epoll_event *event, |
| 903 | struct file *tfile, int fd) |
| 904 | { |
| 905 | int error, revents, pwake = 0; |
| 906 | unsigned long flags; |
| 907 | struct epitem *epi; |
| 908 | struct ep_pqueue epq; |
| 909 | |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 910 | if (unlikely(atomic_read(&ep->user->epoll_watches) >= |
| 911 | max_user_watches)) |
| 912 | return -ENOSPC; |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 913 | if (!(epi = kmem_cache_alloc(epi_cache, GFP_KERNEL))) |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 914 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | |
| 916 | /* Item initialization follow here ... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | INIT_LIST_HEAD(&epi->rdllink); |
| 918 | INIT_LIST_HEAD(&epi->fllink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | INIT_LIST_HEAD(&epi->pwqlist); |
| 920 | epi->ep = ep; |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 921 | ep_set_ffd(&epi->ffd, tfile, fd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | epi->event = *event; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | epi->nwait = 0; |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 924 | epi->next = EP_UNACTIVE_PTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | |
| 926 | /* Initialize the poll table using the queue callback */ |
| 927 | epq.epi = epi; |
| 928 | init_poll_funcptr(&epq.pt, ep_ptable_queue_proc); |
| 929 | |
| 930 | /* |
| 931 | * Attach the item to the poll hooks and get current event bits. |
| 932 | * We can safely use the file* here because its usage count has |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 933 | * been increased by the caller of this function. Note that after |
| 934 | * this operation completes, the poll callback can start hitting |
| 935 | * the new item. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | */ |
| 937 | revents = tfile->f_op->poll(tfile, &epq.pt); |
| 938 | |
| 939 | /* |
| 940 | * We have to check if something went wrong during the poll wait queue |
| 941 | * install process. Namely an allocation for a wait queue failed due |
| 942 | * high memory pressure. |
| 943 | */ |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 944 | error = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | if (epi->nwait < 0) |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 946 | goto error_unregister; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | |
| 948 | /* Add the current item to the list of active epoll hook for this file */ |
Jonathan Corbet | 6849991 | 2009-02-06 13:52:43 -0700 | [diff] [blame] | 949 | spin_lock(&tfile->f_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | list_add_tail(&epi->fllink, &tfile->f_ep_links); |
Jonathan Corbet | 6849991 | 2009-02-06 13:52:43 -0700 | [diff] [blame] | 951 | spin_unlock(&tfile->f_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 953 | /* |
| 954 | * Add the current item to the RB tree. All RB tree operations are |
| 955 | * protected by "mtx", and ep_insert() is called with "mtx" held. |
| 956 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | ep_rbtree_insert(ep, epi); |
| 958 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 959 | /* We have to drop the new item inside our item list to keep track of it */ |
| 960 | spin_lock_irqsave(&ep->lock, flags); |
| 961 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | /* If the file is already "ready" we drop it inside the ready list */ |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 963 | if ((revents & event->events) && !ep_is_linked(&epi->rdllink)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | list_add_tail(&epi->rdllink, &ep->rdllist); |
| 965 | |
| 966 | /* Notify waiting tasks that events are available */ |
| 967 | if (waitqueue_active(&ep->wq)) |
Matthew Wilcox | 4a6e9e2c | 2007-08-30 16:10:22 -0400 | [diff] [blame] | 968 | wake_up_locked(&ep->wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | if (waitqueue_active(&ep->poll_wait)) |
| 970 | pwake++; |
| 971 | } |
| 972 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 973 | spin_unlock_irqrestore(&ep->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 975 | atomic_inc(&ep->user->epoll_watches); |
| 976 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | /* We have to call this outside the lock */ |
| 978 | if (pwake) |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 979 | ep_poll_safewake(&ep->poll_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | |
| 981 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: ep_insert(%p, %p, %d)\n", |
| 982 | current, ep, tfile, fd)); |
| 983 | |
| 984 | return 0; |
| 985 | |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 986 | error_unregister: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | ep_unregister_pollwait(ep, epi); |
| 988 | |
| 989 | /* |
| 990 | * We need to do this because an event could have been arrived on some |
Davide Libenzi | 67647d0 | 2007-05-15 01:40:52 -0700 | [diff] [blame] | 991 | * allocated wait queue. Note that we don't care about the ep->ovflist |
| 992 | * list, since that is used/cleaned only inside a section bound by "mtx". |
| 993 | * And ep_insert() is called with "mtx" held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | */ |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 995 | spin_lock_irqsave(&ep->lock, flags); |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 996 | if (ep_is_linked(&epi->rdllink)) |
Davide Libenzi | 6192bd5 | 2007-05-08 00:25:41 -0700 | [diff] [blame] | 997 | list_del_init(&epi->rdllink); |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 998 | spin_unlock_irqrestore(&ep->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | |
Pekka Enberg | b030a4d | 2005-06-23 00:10:03 -0700 | [diff] [blame] | 1000 | kmem_cache_free(epi_cache, epi); |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 1001 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | return error; |
| 1003 | } |
| 1004 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | /* |
| 1006 | * Modify the interest event mask by dropping an event if the new mask |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 1007 | * has a match in the current file status. Must be called with "mtx" held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | */ |
| 1009 | static int ep_modify(struct eventpoll *ep, struct epitem *epi, struct epoll_event *event) |
| 1010 | { |
| 1011 | int pwake = 0; |
| 1012 | unsigned int revents; |
| 1013 | unsigned long flags; |
| 1014 | |
| 1015 | /* |
| 1016 | * Set the new event interest mask before calling f_op->poll(), otherwise |
| 1017 | * a potential race might occur. In fact if we do this operation inside |
| 1018 | * the lock, an event might happen between the f_op->poll() call and the |
| 1019 | * new event set registering. |
| 1020 | */ |
| 1021 | epi->event.events = event->events; |
| 1022 | |
| 1023 | /* |
| 1024 | * Get current event bits. We can safely use the file* here because |
| 1025 | * its usage count has been increased by the caller of this function. |
| 1026 | */ |
| 1027 | revents = epi->ffd.file->f_op->poll(epi->ffd.file, NULL); |
| 1028 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 1029 | spin_lock_irqsave(&ep->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | |
| 1031 | /* Copy the data member from inside the lock */ |
| 1032 | epi->event.data = event->data; |
| 1033 | |
| 1034 | /* |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 1035 | * If the item is "hot" and it is not registered inside the ready |
Davide Libenzi | 67647d0 | 2007-05-15 01:40:52 -0700 | [diff] [blame] | 1036 | * list, push it inside. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | */ |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 1038 | if (revents & event->events) { |
| 1039 | if (!ep_is_linked(&epi->rdllink)) { |
| 1040 | list_add_tail(&epi->rdllink, &ep->rdllist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 1042 | /* Notify waiting tasks that events are available */ |
| 1043 | if (waitqueue_active(&ep->wq)) |
Matthew Wilcox | 4a6e9e2c | 2007-08-30 16:10:22 -0400 | [diff] [blame] | 1044 | wake_up_locked(&ep->wq); |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 1045 | if (waitqueue_active(&ep->poll_wait)) |
| 1046 | pwake++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | } |
| 1048 | } |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 1049 | spin_unlock_irqrestore(&ep->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | |
| 1051 | /* We have to call this outside the lock */ |
| 1052 | if (pwake) |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1053 | ep_poll_safewake(&ep->poll_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | |
| 1055 | return 0; |
| 1056 | } |
| 1057 | |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1058 | static int ep_send_events_proc(struct eventpoll *ep, struct list_head *head, |
| 1059 | void *priv) |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1060 | { |
| 1061 | struct ep_send_events_data *esed = priv; |
| 1062 | int eventcnt; |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1063 | unsigned int revents; |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1064 | struct epitem *epi; |
| 1065 | struct epoll_event __user *uevent; |
| 1066 | |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1067 | /* |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1068 | * We can loop without lock because we are passed a task private list. |
| 1069 | * Items cannot vanish during the loop because ep_scan_ready_list() is |
| 1070 | * holding "mtx" during this call. |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1071 | */ |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1072 | for (eventcnt = 0, uevent = esed->events; |
| 1073 | !list_empty(head) && eventcnt < esed->maxevents;) { |
| 1074 | epi = list_first_entry(head, struct epitem, rdllink); |
| 1075 | |
| 1076 | list_del_init(&epi->rdllink); |
| 1077 | |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1078 | revents = epi->ffd.file->f_op->poll(epi->ffd.file, NULL) & |
| 1079 | epi->event.events; |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1080 | |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1081 | /* |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1082 | * If the event mask intersect the caller-requested one, |
| 1083 | * deliver the event to userspace. Again, ep_scan_ready_list() |
| 1084 | * is holding "mtx", so no operations coming from userspace |
| 1085 | * can change the item. |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1086 | */ |
| 1087 | if (revents) { |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1088 | if (__put_user(revents, &uevent->events) || |
| 1089 | __put_user(epi->event.data, &uevent->data)) |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1090 | return eventcnt ? eventcnt : -EFAULT; |
| 1091 | eventcnt++; |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1092 | uevent++; |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1093 | if (epi->event.events & EPOLLONESHOT) |
| 1094 | epi->event.events &= EP_PRIVATE_BITS; |
| 1095 | else if (!(epi->event.events & EPOLLET)) { |
| 1096 | /* |
| 1097 | * If this file has been added with Level |
| 1098 | * Trigger mode, we need to insert back inside |
| 1099 | * the ready list, so that the next call to |
| 1100 | * epoll_wait() will check again the events |
| 1101 | * availability. At this point, noone can insert |
| 1102 | * into ep->rdllist besides us. The epoll_ctl() |
| 1103 | * callers are locked out by |
| 1104 | * ep_scan_ready_list() holding "mtx" and the |
| 1105 | * poll callback will queue them in ep->ovflist. |
| 1106 | */ |
| 1107 | list_add_tail(&epi->rdllink, &ep->rdllist); |
| 1108 | } |
| 1109 | } |
| 1110 | } |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1111 | |
| 1112 | return eventcnt; |
| 1113 | } |
| 1114 | |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1115 | static int ep_send_events(struct eventpoll *ep, |
| 1116 | struct epoll_event __user *events, int maxevents) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | { |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1118 | struct ep_send_events_data esed; |
Davide Libenzi | 6192bd5 | 2007-05-08 00:25:41 -0700 | [diff] [blame] | 1119 | |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1120 | esed.maxevents = maxevents; |
| 1121 | esed.events = events; |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 1122 | |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1123 | return ep_scan_ready_list(ep, ep_send_events_proc, &esed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | } |
| 1125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | static int ep_poll(struct eventpoll *ep, struct epoll_event __user *events, |
| 1127 | int maxevents, long timeout) |
| 1128 | { |
| 1129 | int res, eavail; |
| 1130 | unsigned long flags; |
| 1131 | long jtimeout; |
| 1132 | wait_queue_t wait; |
| 1133 | |
| 1134 | /* |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1135 | * Calculate the timeout by checking for the "infinite" value (-1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | * and the overflow condition. The passed timeout is in milliseconds, |
| 1137 | * that why (t * HZ) / 1000. |
| 1138 | */ |
Davide Libenzi | e3306dd | 2005-09-27 21:45:33 -0700 | [diff] [blame] | 1139 | jtimeout = (timeout < 0 || timeout >= EP_MAX_MSTIMEO) ? |
| 1140 | MAX_SCHEDULE_TIMEOUT : (timeout * HZ + 999) / 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | |
| 1142 | retry: |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 1143 | spin_lock_irqsave(&ep->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | |
| 1145 | res = 0; |
| 1146 | if (list_empty(&ep->rdllist)) { |
| 1147 | /* |
| 1148 | * We don't have any available event to return to the caller. |
| 1149 | * We need to sleep here, and we will be wake up by |
| 1150 | * ep_poll_callback() when events will become available. |
| 1151 | */ |
| 1152 | init_waitqueue_entry(&wait, current); |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 1153 | wait.flags |= WQ_FLAG_EXCLUSIVE; |
Davide Libenzi | 3419b23 | 2006-06-25 05:48:14 -0700 | [diff] [blame] | 1154 | __add_wait_queue(&ep->wq, &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | |
| 1156 | for (;;) { |
| 1157 | /* |
| 1158 | * We don't want to sleep if the ep_poll_callback() sends us |
| 1159 | * a wakeup in between. That's why we set the task state |
| 1160 | * to TASK_INTERRUPTIBLE before doing the checks. |
| 1161 | */ |
| 1162 | set_current_state(TASK_INTERRUPTIBLE); |
| 1163 | if (!list_empty(&ep->rdllist) || !jtimeout) |
| 1164 | break; |
| 1165 | if (signal_pending(current)) { |
| 1166 | res = -EINTR; |
| 1167 | break; |
| 1168 | } |
| 1169 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 1170 | spin_unlock_irqrestore(&ep->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | jtimeout = schedule_timeout(jtimeout); |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 1172 | spin_lock_irqsave(&ep->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | } |
Davide Libenzi | 3419b23 | 2006-06-25 05:48:14 -0700 | [diff] [blame] | 1174 | __remove_wait_queue(&ep->wq, &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | |
| 1176 | set_current_state(TASK_RUNNING); |
| 1177 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | /* Is it worth to try to dig for events ? */ |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1179 | eavail = !list_empty(&ep->rdllist) || ep->ovflist != EP_UNACTIVE_PTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 1181 | spin_unlock_irqrestore(&ep->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | |
| 1183 | /* |
| 1184 | * Try to transfer events to user space. In case we get 0 events and |
| 1185 | * there's still timeout left over, we go trying again in search of |
| 1186 | * more luck. |
| 1187 | */ |
| 1188 | if (!res && eavail && |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 1189 | !(res = ep_send_events(ep, events, maxevents)) && jtimeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | goto retry; |
| 1191 | |
| 1192 | return res; |
| 1193 | } |
| 1194 | |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1195 | /* |
Andrew Morton | 523723b | 2008-08-12 15:09:01 -0700 | [diff] [blame] | 1196 | * Open an eventpoll file descriptor. |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1197 | */ |
Heiko Carstens | 5a8a82b | 2009-01-14 14:14:25 +0100 | [diff] [blame] | 1198 | SYSCALL_DEFINE1(epoll_create1, int, flags) |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1199 | { |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1200 | int error, fd = -1; |
| 1201 | struct eventpoll *ep; |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1202 | |
Ulrich Drepper | e38b36f | 2008-07-23 21:29:42 -0700 | [diff] [blame] | 1203 | /* Check the EPOLL_* constant for consistency. */ |
| 1204 | BUILD_BUG_ON(EPOLL_CLOEXEC != O_CLOEXEC); |
| 1205 | |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1206 | if (flags & ~EPOLL_CLOEXEC) |
| 1207 | return -EINVAL; |
| 1208 | |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1209 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: sys_epoll_create(%d)\n", |
Ulrich Drepper | 9fe5ad9 | 2008-07-23 21:29:43 -0700 | [diff] [blame] | 1210 | current, flags)); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1211 | |
| 1212 | /* |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1213 | * Create the internal data structure ( "struct eventpoll" ). |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1214 | */ |
Ulrich Drepper | 9fe5ad9 | 2008-07-23 21:29:43 -0700 | [diff] [blame] | 1215 | error = ep_alloc(&ep); |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1216 | if (error < 0) { |
| 1217 | fd = error; |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1218 | goto error_return; |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1219 | } |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1220 | |
| 1221 | /* |
| 1222 | * Creates all the items needed to setup an eventpoll file. That is, |
Al Viro | 2030a42 | 2008-02-23 06:46:49 -0500 | [diff] [blame] | 1223 | * a file structure and a free file descriptor. |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1224 | */ |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1225 | fd = anon_inode_getfd("[eventpoll]", &eventpoll_fops, ep, |
| 1226 | flags & O_CLOEXEC); |
| 1227 | if (fd < 0) |
Al Viro | 2030a42 | 2008-02-23 06:46:49 -0500 | [diff] [blame] | 1228 | ep_free(ep); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1229 | |
Al Viro | 2030a42 | 2008-02-23 06:46:49 -0500 | [diff] [blame] | 1230 | error_return: |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1231 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: sys_epoll_create(%d) = %d\n", |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1232 | current, flags, fd)); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1233 | |
Davide Libenzi | 296e236 | 2009-03-31 15:24:11 -0700 | [diff] [blame^] | 1234 | return fd; |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1235 | } |
| 1236 | |
Heiko Carstens | 5a8a82b | 2009-01-14 14:14:25 +0100 | [diff] [blame] | 1237 | SYSCALL_DEFINE1(epoll_create, int, size) |
Ulrich Drepper | a0998b5 | 2008-07-23 21:29:27 -0700 | [diff] [blame] | 1238 | { |
Ulrich Drepper | 9fe5ad9 | 2008-07-23 21:29:43 -0700 | [diff] [blame] | 1239 | if (size < 0) |
| 1240 | return -EINVAL; |
| 1241 | |
| 1242 | return sys_epoll_create1(0); |
Ulrich Drepper | a0998b5 | 2008-07-23 21:29:27 -0700 | [diff] [blame] | 1243 | } |
| 1244 | |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1245 | /* |
| 1246 | * The following function implements the controller interface for |
| 1247 | * the eventpoll file that enables the insertion/removal/change of |
Davide Libenzi | 67647d0 | 2007-05-15 01:40:52 -0700 | [diff] [blame] | 1248 | * file descriptors inside the interest set. |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1249 | */ |
Heiko Carstens | 5a8a82b | 2009-01-14 14:14:25 +0100 | [diff] [blame] | 1250 | SYSCALL_DEFINE4(epoll_ctl, int, epfd, int, op, int, fd, |
| 1251 | struct epoll_event __user *, event) |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1252 | { |
| 1253 | int error; |
| 1254 | struct file *file, *tfile; |
| 1255 | struct eventpoll *ep; |
| 1256 | struct epitem *epi; |
| 1257 | struct epoll_event epds; |
| 1258 | |
| 1259 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: sys_epoll_ctl(%d, %d, %d, %p)\n", |
| 1260 | current, epfd, op, fd, event)); |
| 1261 | |
| 1262 | error = -EFAULT; |
| 1263 | if (ep_op_has_event(op) && |
| 1264 | copy_from_user(&epds, event, sizeof(struct epoll_event))) |
| 1265 | goto error_return; |
| 1266 | |
| 1267 | /* Get the "struct file *" for the eventpoll file */ |
| 1268 | error = -EBADF; |
| 1269 | file = fget(epfd); |
| 1270 | if (!file) |
| 1271 | goto error_return; |
| 1272 | |
| 1273 | /* Get the "struct file *" for the target file */ |
| 1274 | tfile = fget(fd); |
| 1275 | if (!tfile) |
| 1276 | goto error_fput; |
| 1277 | |
| 1278 | /* The target file descriptor must support poll */ |
| 1279 | error = -EPERM; |
| 1280 | if (!tfile->f_op || !tfile->f_op->poll) |
| 1281 | goto error_tgt_fput; |
| 1282 | |
| 1283 | /* |
| 1284 | * We have to check that the file structure underneath the file descriptor |
| 1285 | * the user passed to us _is_ an eventpoll file. And also we do not permit |
| 1286 | * adding an epoll file descriptor inside itself. |
| 1287 | */ |
| 1288 | error = -EINVAL; |
| 1289 | if (file == tfile || !is_file_epoll(file)) |
| 1290 | goto error_tgt_fput; |
| 1291 | |
| 1292 | /* |
| 1293 | * At this point it is safe to assume that the "private_data" contains |
| 1294 | * our own data structure. |
| 1295 | */ |
| 1296 | ep = file->private_data; |
| 1297 | |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 1298 | mutex_lock(&ep->mtx); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1299 | |
Davide Libenzi | 67647d0 | 2007-05-15 01:40:52 -0700 | [diff] [blame] | 1300 | /* |
| 1301 | * Try to lookup the file inside our RB tree, Since we grabbed "mtx" |
| 1302 | * above, we can be sure to be able to use the item looked up by |
| 1303 | * ep_find() till we release the mutex. |
| 1304 | */ |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1305 | epi = ep_find(ep, tfile, fd); |
| 1306 | |
| 1307 | error = -EINVAL; |
| 1308 | switch (op) { |
| 1309 | case EPOLL_CTL_ADD: |
| 1310 | if (!epi) { |
| 1311 | epds.events |= POLLERR | POLLHUP; |
| 1312 | |
| 1313 | error = ep_insert(ep, &epds, tfile, fd); |
| 1314 | } else |
| 1315 | error = -EEXIST; |
| 1316 | break; |
| 1317 | case EPOLL_CTL_DEL: |
| 1318 | if (epi) |
| 1319 | error = ep_remove(ep, epi); |
| 1320 | else |
| 1321 | error = -ENOENT; |
| 1322 | break; |
| 1323 | case EPOLL_CTL_MOD: |
| 1324 | if (epi) { |
| 1325 | epds.events |= POLLERR | POLLHUP; |
| 1326 | error = ep_modify(ep, epi, &epds); |
| 1327 | } else |
| 1328 | error = -ENOENT; |
| 1329 | break; |
| 1330 | } |
Davide Libenzi | d47de16 | 2007-05-15 01:40:41 -0700 | [diff] [blame] | 1331 | mutex_unlock(&ep->mtx); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1332 | |
| 1333 | error_tgt_fput: |
| 1334 | fput(tfile); |
| 1335 | error_fput: |
| 1336 | fput(file); |
| 1337 | error_return: |
| 1338 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: sys_epoll_ctl(%d, %d, %d, %p) = %d\n", |
| 1339 | current, epfd, op, fd, event, error)); |
| 1340 | |
| 1341 | return error; |
| 1342 | } |
| 1343 | |
| 1344 | /* |
| 1345 | * Implement the event wait interface for the eventpoll file. It is the kernel |
| 1346 | * part of the user space epoll_wait(2). |
| 1347 | */ |
Heiko Carstens | 5a8a82b | 2009-01-14 14:14:25 +0100 | [diff] [blame] | 1348 | SYSCALL_DEFINE4(epoll_wait, int, epfd, struct epoll_event __user *, events, |
| 1349 | int, maxevents, int, timeout) |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1350 | { |
| 1351 | int error; |
| 1352 | struct file *file; |
| 1353 | struct eventpoll *ep; |
| 1354 | |
| 1355 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: sys_epoll_wait(%d, %p, %d, %d)\n", |
| 1356 | current, epfd, events, maxevents, timeout)); |
| 1357 | |
| 1358 | /* The maximum number of event must be greater than zero */ |
| 1359 | if (maxevents <= 0 || maxevents > EP_MAX_EVENTS) |
| 1360 | return -EINVAL; |
| 1361 | |
| 1362 | /* Verify that the area passed by the user is writeable */ |
| 1363 | if (!access_ok(VERIFY_WRITE, events, maxevents * sizeof(struct epoll_event))) { |
| 1364 | error = -EFAULT; |
| 1365 | goto error_return; |
| 1366 | } |
| 1367 | |
| 1368 | /* Get the "struct file *" for the eventpoll file */ |
| 1369 | error = -EBADF; |
| 1370 | file = fget(epfd); |
| 1371 | if (!file) |
| 1372 | goto error_return; |
| 1373 | |
| 1374 | /* |
| 1375 | * We have to check that the file structure underneath the fd |
| 1376 | * the user passed to us _is_ an eventpoll file. |
| 1377 | */ |
| 1378 | error = -EINVAL; |
| 1379 | if (!is_file_epoll(file)) |
| 1380 | goto error_fput; |
| 1381 | |
| 1382 | /* |
| 1383 | * At this point it is safe to assume that the "private_data" contains |
| 1384 | * our own data structure. |
| 1385 | */ |
| 1386 | ep = file->private_data; |
| 1387 | |
| 1388 | /* Time to fish for events ... */ |
| 1389 | error = ep_poll(ep, events, maxevents, timeout); |
| 1390 | |
| 1391 | error_fput: |
| 1392 | fput(file); |
| 1393 | error_return: |
| 1394 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: sys_epoll_wait(%d, %p, %d, %d) = %d\n", |
| 1395 | current, epfd, events, maxevents, timeout, error)); |
| 1396 | |
| 1397 | return error; |
| 1398 | } |
| 1399 | |
Roland McGrath | f3de272 | 2008-04-30 00:53:09 -0700 | [diff] [blame] | 1400 | #ifdef HAVE_SET_RESTORE_SIGMASK |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1401 | |
| 1402 | /* |
| 1403 | * Implement the event wait interface for the eventpoll file. It is the kernel |
| 1404 | * part of the user space epoll_pwait(2). |
| 1405 | */ |
Heiko Carstens | 5a8a82b | 2009-01-14 14:14:25 +0100 | [diff] [blame] | 1406 | SYSCALL_DEFINE6(epoll_pwait, int, epfd, struct epoll_event __user *, events, |
| 1407 | int, maxevents, int, timeout, const sigset_t __user *, sigmask, |
| 1408 | size_t, sigsetsize) |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1409 | { |
| 1410 | int error; |
| 1411 | sigset_t ksigmask, sigsaved; |
| 1412 | |
| 1413 | /* |
| 1414 | * If the caller wants a certain signal mask to be set during the wait, |
| 1415 | * we apply it here. |
| 1416 | */ |
| 1417 | if (sigmask) { |
| 1418 | if (sigsetsize != sizeof(sigset_t)) |
| 1419 | return -EINVAL; |
| 1420 | if (copy_from_user(&ksigmask, sigmask, sizeof(ksigmask))) |
| 1421 | return -EFAULT; |
| 1422 | sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP)); |
| 1423 | sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved); |
| 1424 | } |
| 1425 | |
| 1426 | error = sys_epoll_wait(epfd, events, maxevents, timeout); |
| 1427 | |
| 1428 | /* |
| 1429 | * If we changed the signal mask, we need to restore the original one. |
| 1430 | * In case we've got a signal while waiting, we do not restore the |
| 1431 | * signal mask yet, and we allow do_signal() to deliver the signal on |
| 1432 | * the way back to userspace, before the signal mask is restored. |
| 1433 | */ |
| 1434 | if (sigmask) { |
| 1435 | if (error == -EINTR) { |
| 1436 | memcpy(¤t->saved_sigmask, &sigsaved, |
Davide Libenzi | c7ea763 | 2007-05-15 01:40:47 -0700 | [diff] [blame] | 1437 | sizeof(sigsaved)); |
Roland McGrath | 4e4c22c | 2008-04-30 00:53:06 -0700 | [diff] [blame] | 1438 | set_restore_sigmask(); |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1439 | } else |
| 1440 | sigprocmask(SIG_SETMASK, &sigsaved, NULL); |
| 1441 | } |
| 1442 | |
| 1443 | return error; |
| 1444 | } |
| 1445 | |
Roland McGrath | f3de272 | 2008-04-30 00:53:09 -0700 | [diff] [blame] | 1446 | #endif /* HAVE_SET_RESTORE_SIGMASK */ |
Davide Libenzi | 7699acd | 2007-05-10 22:23:23 -0700 | [diff] [blame] | 1447 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | static int __init eventpoll_init(void) |
| 1449 | { |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 1450 | struct sysinfo si; |
| 1451 | |
| 1452 | si_meminfo(&si); |
Davide Libenzi | 9df04e1 | 2009-01-29 14:25:26 -0800 | [diff] [blame] | 1453 | /* |
| 1454 | * Allows top 4% of lomem to be allocated for epoll watches (per user). |
| 1455 | */ |
| 1456 | max_user_watches = (((si.totalram - si.totalhigh) / 25) << PAGE_SHIFT) / |
Davide Libenzi | 7ef9964 | 2008-12-01 13:13:55 -0800 | [diff] [blame] | 1457 | EP_ITEM_COST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | |
| 1459 | /* Initialize the structure used to perform safe poll wait head wake ups */ |
Davide Libenzi | 5071f97 | 2009-03-31 15:24:10 -0700 | [diff] [blame] | 1460 | ep_nested_calls_init(&poll_safewake_ncalls); |
| 1461 | |
| 1462 | /* Initialize the structure used to perform file's f_op->poll() calls */ |
| 1463 | ep_nested_calls_init(&poll_readywalk_ncalls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1464 | |
| 1465 | /* Allocates slab cache used to allocate "struct epitem" items */ |
| 1466 | epi_cache = kmem_cache_create("eventpoll_epi", sizeof(struct epitem), |
| 1467 | 0, SLAB_HWCACHE_ALIGN|EPI_SLAB_DEBUG|SLAB_PANIC, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1468 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | |
| 1470 | /* Allocates slab cache used to allocate "struct eppoll_entry" */ |
| 1471 | pwq_cache = kmem_cache_create("eventpoll_pwq", |
| 1472 | sizeof(struct eppoll_entry), 0, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1473 | EPI_SLAB_DEBUG|SLAB_PANIC, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | } |
Davide Libenzi | cea6924 | 2007-05-10 22:23:22 -0700 | [diff] [blame] | 1477 | fs_initcall(eventpoll_init); |