diff options
| author | Paton J. Lewis <palewis@adobe.com> | 2012-10-04 20:13:39 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-05 14:05:00 -0400 |
| commit | 03a7beb55b9fad363f0dd33e72ccf2d3e1c2a406 (patch) | |
| tree | e89cb2a2db5645600f28699ebf3b4a98195a3fb3 | |
| parent | a0a0a7a94c765f7219b57fa3b79389901bb0bc99 (diff) | |
epoll: support for disabling items, and a self-test app
Enhanced epoll_ctl to support EPOLL_CTL_DISABLE, which disables an epoll
item. If epoll_ctl doesn't return -EBUSY in this case, it is then safe to
delete the epoll item in a multi-threaded environment. Also added a new
test_epoll self- test app to both demonstrate the need for this feature
and test it.
Signed-off-by: Paton J. Lewis <palewis@adobe.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Jason Baron <jbaron@redhat.com>
Cc: Paul Holland <pholland@adobe.com>
Cc: Davide Libenzi <davidel@xmailserver.org>
Cc: Michael Kerrisk <mtk.manpages@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | fs/eventpoll.c | 38 | ||||
| -rw-r--r-- | include/linux/eventpoll.h | 1 | ||||
| -rw-r--r-- | tools/testing/selftests/Makefile | 2 | ||||
| -rw-r--r-- | tools/testing/selftests/epoll/Makefile | 11 | ||||
| -rw-r--r-- | tools/testing/selftests/epoll/test_epoll.c | 344 |
5 files changed, 392 insertions, 4 deletions
diff --git a/fs/eventpoll.c b/fs/eventpoll.c index cd96649bfe62..da72250ddc1c 100644 --- a/fs/eventpoll.c +++ b/fs/eventpoll.c | |||
| @@ -346,7 +346,7 @@ static inline struct epitem *ep_item_from_epqueue(poll_table *p) | |||
| 346 | /* Tells if the epoll_ctl(2) operation needs an event copy from userspace */ | 346 | /* Tells if the epoll_ctl(2) operation needs an event copy from userspace */ |
| 347 | static inline int ep_op_has_event(int op) | 347 | static inline int ep_op_has_event(int op) |
| 348 | { | 348 | { |
| 349 | return op != EPOLL_CTL_DEL; | 349 | return op == EPOLL_CTL_ADD || op == EPOLL_CTL_MOD; |
| 350 | } | 350 | } |
| 351 | 351 | ||
| 352 | /* Initialize the poll safe wake up structure */ | 352 | /* Initialize the poll safe wake up structure */ |
| @@ -676,6 +676,34 @@ static int ep_remove(struct eventpoll *ep, struct epitem *epi) | |||
| 676 | return 0; | 676 | return 0; |
| 677 | } | 677 | } |
| 678 | 678 | ||
| 679 | /* | ||
| 680 | * Disables a "struct epitem" in the eventpoll set. Returns -EBUSY if the item | ||
| 681 | * had no event flags set, indicating that another thread may be currently | ||
| 682 | * handling that item's events (in the case that EPOLLONESHOT was being | ||
| 683 | * used). Otherwise a zero result indicates that the item has been disabled | ||
| 684 | * from receiving events. A disabled item may be re-enabled via | ||
| 685 | * EPOLL_CTL_MOD. Must be called with "mtx" held. | ||
| 686 | */ | ||
| 687 | static int ep_disable(struct eventpoll *ep, struct epitem *epi) | ||
| 688 | { | ||
| 689 | int result = 0; | ||
| 690 | unsigned long flags; | ||
| 691 | |||
| 692 | spin_lock_irqsave(&ep->lock, flags); | ||
| 693 | if (epi->event.events & ~EP_PRIVATE_BITS) { | ||
| 694 | if (ep_is_linked(&epi->rdllink)) | ||
| 695 | list_del_init(&epi->rdllink); | ||
| 696 | /* Ensure ep_poll_callback will not add epi back onto ready | ||
| 697 | list: */ | ||
| 698 | epi->event.events &= EP_PRIVATE_BITS; | ||
| 699 | } | ||
| 700 | else | ||
| 701 | result = -EBUSY; | ||
| 702 | spin_unlock_irqrestore(&ep->lock, flags); | ||
| 703 | |||
| 704 | return result; | ||
| 705 | } | ||
| 706 | |||
| 679 | static void ep_free(struct eventpoll *ep) | 707 | static void ep_free(struct eventpoll *ep) |
| 680 | { | 708 | { |
| 681 | struct rb_node *rbp; | 709 | struct rb_node *rbp; |
| @@ -1020,8 +1048,6 @@ static void ep_rbtree_insert(struct eventpoll *ep, struct epitem *epi) | |||
| 1020 | rb_insert_color(&epi->rbn, &ep->rbr); | 1048 | rb_insert_color(&epi->rbn, &ep->rbr); |
| 1021 | } | 1049 | } |
| 1022 | 1050 | ||
| 1023 | |||
| 1024 | |||
| 1025 | #define PATH_ARR_SIZE 5 | 1051 | #define PATH_ARR_SIZE 5 |
| 1026 | /* | 1052 | /* |
| 1027 | * These are the number paths of length 1 to 5, that we are allowing to emanate | 1053 | * These are the number paths of length 1 to 5, that we are allowing to emanate |
| @@ -1787,6 +1813,12 @@ SYSCALL_DEFINE4(epoll_ctl, int, epfd, int, op, int, fd, | |||
| 1787 | } else | 1813 | } else |
| 1788 | error = -ENOENT; | 1814 | error = -ENOENT; |
| 1789 | break; | 1815 | break; |
| 1816 | case EPOLL_CTL_DISABLE: | ||
| 1817 | if (epi) | ||
| 1818 | error = ep_disable(ep, epi); | ||
| 1819 | else | ||
| 1820 | error = -ENOENT; | ||
| 1821 | break; | ||
| 1790 | } | 1822 | } |
| 1791 | mutex_unlock(&ep->mtx); | 1823 | mutex_unlock(&ep->mtx); |
| 1792 | 1824 | ||
diff --git a/include/linux/eventpoll.h b/include/linux/eventpoll.h index f4bb378ccf6a..41085d0f3955 100644 --- a/include/linux/eventpoll.h +++ b/include/linux/eventpoll.h | |||
| @@ -25,6 +25,7 @@ | |||
| 25 | #define EPOLL_CTL_ADD 1 | 25 | #define EPOLL_CTL_ADD 1 |
| 26 | #define EPOLL_CTL_DEL 2 | 26 | #define EPOLL_CTL_DEL 2 |
| 27 | #define EPOLL_CTL_MOD 3 | 27 | #define EPOLL_CTL_MOD 3 |
| 28 | #define EPOLL_CTL_DISABLE 4 | ||
| 28 | 29 | ||
| 29 | /* | 30 | /* |
| 30 | * Request the handling of system wakeup events so as to prevent system suspends | 31 | * Request the handling of system wakeup events so as to prevent system suspends |
diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile index 85baf11e2acd..43480149119e 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | TARGETS = breakpoints kcmp mqueue vm cpu-hotplug memory-hotplug | 1 | TARGETS = breakpoints kcmp mqueue vm cpu-hotplug memory-hotplug epoll |
| 2 | 2 | ||
| 3 | all: | 3 | all: |
| 4 | for TARGET in $(TARGETS); do \ | 4 | for TARGET in $(TARGETS); do \ |
diff --git a/tools/testing/selftests/epoll/Makefile b/tools/testing/selftests/epoll/Makefile new file mode 100644 index 000000000000..19806ed62f50 --- /dev/null +++ b/tools/testing/selftests/epoll/Makefile | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | # Makefile for epoll selftests | ||
| 2 | |||
| 3 | all: test_epoll | ||
| 4 | %: %.c | ||
| 5 | gcc -pthread -g -o $@ $^ | ||
| 6 | |||
| 7 | run_tests: all | ||
| 8 | ./test_epoll | ||
| 9 | |||
| 10 | clean: | ||
| 11 | $(RM) test_epoll | ||
diff --git a/tools/testing/selftests/epoll/test_epoll.c b/tools/testing/selftests/epoll/test_epoll.c new file mode 100644 index 000000000000..e0fcff1e8331 --- /dev/null +++ b/tools/testing/selftests/epoll/test_epoll.c | |||
| @@ -0,0 +1,344 @@ | |||
| 1 | /* | ||
| 2 | * tools/testing/selftests/epoll/test_epoll.c | ||
| 3 | * | ||
| 4 | * Copyright 2012 Adobe Systems Incorporated | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | * | ||
| 11 | * Paton J. Lewis <palewis@adobe.com> | ||
| 12 | * | ||
| 13 | */ | ||
| 14 | |||
| 15 | #include <errno.h> | ||
| 16 | #include <fcntl.h> | ||
| 17 | #include <pthread.h> | ||
| 18 | #include <stdio.h> | ||
| 19 | #include <stdlib.h> | ||
| 20 | #include <unistd.h> | ||
| 21 | #include <sys/epoll.h> | ||
| 22 | #include <sys/socket.h> | ||
| 23 | |||
| 24 | /* | ||
| 25 | * A pointer to an epoll_item_private structure will be stored in the epoll | ||
| 26 | * item's event structure so that we can get access to the epoll_item_private | ||
| 27 | * data after calling epoll_wait: | ||
| 28 | */ | ||
| 29 | struct epoll_item_private { | ||
| 30 | int index; /* Position of this struct within the epoll_items array. */ | ||
| 31 | int fd; | ||
| 32 | uint32_t events; | ||
| 33 | pthread_mutex_t mutex; /* Guards the following variables... */ | ||
| 34 | int stop; | ||
| 35 | int status; /* Stores any error encountered while handling item. */ | ||
| 36 | /* The following variable allows us to test whether we have encountered | ||
| 37 | a problem while attempting to cancel and delete the associated | ||
| 38 | event. When the test program exits, 'deleted' should be exactly | ||
| 39 | one. If it is greater than one, then the failed test reflects a real | ||
| 40 | world situation where we would have tried to access the epoll item's | ||
| 41 | private data after deleting it: */ | ||
| 42 | int deleted; | ||
| 43 | }; | ||
| 44 | |||
| 45 | struct epoll_item_private *epoll_items; | ||
| 46 | |||
| 47 | /* | ||
| 48 | * Delete the specified item from the epoll set. In a real-world secneario this | ||
| 49 | * is where we would free the associated data structure, but in this testing | ||
| 50 | * environment we retain the structure so that we can test for double-deletion: | ||
| 51 | */ | ||
| 52 | void delete_item(int index) | ||
| 53 | { | ||
| 54 | __sync_fetch_and_add(&epoll_items[index].deleted, 1); | ||
| 55 | } | ||
| 56 | |||
| 57 | /* | ||
| 58 | * A pointer to a read_thread_data structure will be passed as the argument to | ||
| 59 | * each read thread: | ||
| 60 | */ | ||
| 61 | struct read_thread_data { | ||
| 62 | int stop; | ||
| 63 | int status; /* Indicates any error encountered by the read thread. */ | ||
| 64 | int epoll_set; | ||
| 65 | }; | ||
| 66 | |||
| 67 | /* | ||
| 68 | * The function executed by the read threads: | ||
| 69 | */ | ||
| 70 | void *read_thread_function(void *function_data) | ||
| 71 | { | ||
| 72 | struct read_thread_data *thread_data = | ||
| 73 | (struct read_thread_data *)function_data; | ||
| 74 | struct epoll_event event_data; | ||
| 75 | struct epoll_item_private *item_data; | ||
| 76 | char socket_data; | ||
