2 * Copyright (c) 2008, 2009, 2010 Nicira Networks.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 #include "poll-loop.h"
25 #include "backtrace.h"
27 #include "dynamic-string.h"
28 #include "fatal-signal.h"
32 #define THIS_MODULE VLM_poll_loop
35 /* An event that will wake the following call to poll_block(). */
37 /* Set when the waiter is created. */
38 struct list node; /* Element in global waiters list. */
39 int fd; /* File descriptor. */
40 short int events; /* Events to wait for (POLLIN, POLLOUT). */
41 struct backtrace *backtrace; /* Optionally, event that created waiter. */
43 /* Set only when poll_block() is called. */
44 struct pollfd *pollfd; /* Pointer to element of the pollfds array. */
47 /* All active poll waiters. */
48 static struct list waiters = LIST_INITIALIZER(&waiters);
50 /* Number of elements in the waiters list. */
51 static size_t n_waiters;
53 /* Max time to wait in next call to poll_block(), in milliseconds, or -1 to
55 static int timeout = -1;
57 /* Backtrace of 'timeout''s registration, if debugging is enabled. */
58 static struct backtrace timeout_backtrace;
60 static struct poll_waiter *new_waiter(int fd, short int events);
62 /* Registers 'fd' as waiting for the specified 'events' (which should be POLLIN
63 * or POLLOUT or POLLIN | POLLOUT). The following call to poll_block() will
64 * wake up when 'fd' becomes ready for one or more of the requested events.
66 * The event registration is one-shot: only the following call to poll_block()
67 * is affected. The event will need to be re-registered after poll_block() is
68 * called if it is to persist. */
70 poll_fd_wait(int fd, short int events)
72 COVERAGE_INC(poll_fd_wait);
73 return new_waiter(fd, events);
76 /* Causes the following call to poll_block() to block for no more than 'msec'
77 * milliseconds. If 'msec' is nonpositive, the following call to poll_block()
78 * will not block at all.
80 * The timer registration is one-shot: only the following call to poll_block()
81 * is affected. The timer will need to be re-registered after poll_block() is
82 * called if it is to persist. */
84 poll_timer_wait(int msec)
86 if (timeout < 0 || msec < timeout) {
87 timeout = MAX(0, msec);
88 if (VLOG_IS_DBG_ENABLED()) {
89 backtrace_capture(&timeout_backtrace);
94 /* Causes the following call to poll_block() to wake up immediately, without
97 poll_immediate_wake(void)
102 static void PRINTF_FORMAT(2, 3)
103 log_wakeup(const struct backtrace *backtrace, const char *format, ...)
109 va_start(args, format);
110 ds_put_format_valist(&ds, format, args);
116 ds_put_char(&ds, ':');
117 for (i = 0; i < backtrace->n_frames; i++) {
118 ds_put_format(&ds, " 0x%"PRIxPTR, backtrace->frames[i]);
121 VLOG_DBG("%s", ds_cstr(&ds));
125 /* Blocks until one or more of the events registered with poll_fd_wait()
126 * occurs, or until the minimum duration registered with poll_timer_wait()
127 * elapses, or not at all if poll_immediate_wake() has been called. */
131 static struct pollfd *pollfds;
132 static size_t max_pollfds;
134 struct poll_waiter *pw, *next;
138 /* Register fatal signal events before actually doing any real work for
142 if (max_pollfds < n_waiters) {
143 max_pollfds = n_waiters;
144 pollfds = xrealloc(pollfds, max_pollfds * sizeof *pollfds);
148 LIST_FOR_EACH (pw, struct poll_waiter, node, &waiters) {
149 pw->pollfd = &pollfds[n_pollfds];
150 pollfds[n_pollfds].fd = pw->fd;
151 pollfds[n_pollfds].events = pw->events;
152 pollfds[n_pollfds].revents = 0;
157 COVERAGE_INC(poll_zero_timeout);
159 retval = time_poll(pollfds, n_pollfds, timeout);
161 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
162 VLOG_ERR_RL(&rl, "poll: %s", strerror(-retval));
163 } else if (!retval && VLOG_IS_DBG_ENABLED()) {
164 log_wakeup(&timeout_backtrace, "%d-ms timeout", timeout);
167 LIST_FOR_EACH_SAFE (pw, next, struct poll_waiter, node, &waiters) {
168 if (pw->pollfd->revents && VLOG_IS_DBG_ENABLED()) {
169 log_wakeup(pw->backtrace, "%s%s%s%s%s on fd %d",
170 pw->pollfd->revents & POLLIN ? "[POLLIN]" : "",
171 pw->pollfd->revents & POLLOUT ? "[POLLOUT]" : "",
172 pw->pollfd->revents & POLLERR ? "[POLLERR]" : "",
173 pw->pollfd->revents & POLLHUP ? "[POLLHUP]" : "",
174 pw->pollfd->revents & POLLNVAL ? "[POLLNVAL]" : "",
181 timeout_backtrace.n_frames = 0;
183 /* Handle any pending signals before doing anything else. */
187 /* Cancels the file descriptor event registered with poll_fd_wait() using 'pw',
188 * the struct poll_waiter returned by that function.
190 * An event registered with poll_fd_wait() may be canceled from its time of
191 * registration until the next call to poll_block(). At that point, the event
192 * is automatically canceled by the system and its poll_waiter is freed. */
194 poll_cancel(struct poll_waiter *pw)
197 list_remove(&pw->node);
204 /* Creates and returns a new poll_waiter for 'fd' and 'events'. */
205 static struct poll_waiter *
206 new_waiter(int fd, short int events)
208 struct poll_waiter *waiter = xzalloc(sizeof *waiter);
211 waiter->events = events;
212 if (VLOG_IS_DBG_ENABLED()) {
213 waiter->backtrace = xmalloc(sizeof *waiter->backtrace);
214 backtrace_capture(waiter->backtrace);
216 list_push_back(&waiters, &waiter->node);