2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include <sys/types.h>
28 #include <common/error.h>
29 #include <common/defaults.h>
30 #include <common/macros.h>
31 #include <common/utils.h>
35 unsigned int poll_max_size
;
38 * Resize the epoll events structure of the new size.
40 * Return 0 on success or else -1 with the current events pointer untouched.
42 static int resize_poll_event(struct lttng_poll_event
*events
,
45 struct epoll_event
*ptr
;
49 ptr
= realloc(events
->events
, new_size
* sizeof(*ptr
));
51 PERROR("realloc epoll add");
54 if (new_size
> events
->alloc_size
) {
55 /* Zero newly allocated memory */
56 memset(ptr
+ events
->alloc_size
, 0,
57 (new_size
- events
->alloc_size
) * sizeof(*ptr
));
60 events
->alloc_size
= new_size
;
69 * Create epoll set and allocate returned events structure.
71 int compat_epoll_create(struct lttng_poll_event
*events
, int size
, int flags
)
75 if (events
== NULL
|| size
<= 0) {
80 if (lttng_poll_set_max_size()) {
85 /* Don't bust the limit here */
86 if (size
> poll_max_size
) {
90 ret
= compat_glibc_epoll_create(size
, flags
);
92 /* At this point, every error is fatal */
93 PERROR("epoll_create1");
99 /* This *must* be freed by using lttng_poll_free() */
100 events
->events
= zmalloc(size
* sizeof(struct epoll_event
));
101 if (events
->events
== NULL
) {
102 PERROR("zmalloc epoll set");
106 events
->alloc_size
= events
->init_size
= size
;
112 ret
= close(events
->epfd
);
121 * Add a fd to the epoll set with requesting events.
123 int compat_epoll_add(struct lttng_poll_event
*events
, int fd
, uint32_t req_events
)
126 struct epoll_event ev
;
128 if (events
== NULL
|| events
->events
== NULL
|| fd
< 0) {
129 ERR("Bad compat epoll add arguments");
134 * Zero struct epoll_event to ensure all representations of its
137 memset(&ev
, 0, sizeof(ev
));
138 ev
.events
= req_events
;
141 ret
= epoll_ctl(events
->epfd
, EPOLL_CTL_ADD
, fd
, &ev
);
145 /* If exist, it's OK. */
149 /* Print PERROR and goto end not failing. Show must go on. */
150 PERROR("epoll_ctl ADD");
153 PERROR("epoll_ctl ADD fatal");
168 * Remove a fd from the epoll set.
170 int compat_epoll_del(struct lttng_poll_event
*events
, int fd
)
174 if (events
== NULL
|| fd
< 0 || events
->nb_fd
== 0) {
178 ret
= epoll_ctl(events
->epfd
, EPOLL_CTL_DEL
, fd
, NULL
);
183 /* Print PERROR and goto end not failing. Show must go on. */
184 PERROR("epoll_ctl DEL");
187 PERROR("epoll_ctl DEL fatal");
202 * Set an fd's events.
204 int compat_epoll_mod(struct lttng_poll_event
*events
, int fd
, uint32_t req_events
)
207 struct epoll_event ev
;
209 if (events
== NULL
|| fd
< 0 || events
->nb_fd
== 0) {
214 * Zero struct epoll_event to ensure all representations of its
217 memset(&ev
, 0, sizeof(ev
));
218 ev
.events
= req_events
;
221 ret
= epoll_ctl(events
->epfd
, EPOLL_CTL_MOD
, fd
, &ev
);
226 /* Print PERROR and goto end not failing. Show must go on. */
227 PERROR("epoll_ctl MOD");
230 PERROR("epoll_ctl MOD fatal");
243 * Wait on epoll set. This is a blocking call of timeout value.
245 int compat_epoll_wait(struct lttng_poll_event
*events
, int timeout
,
251 if (events
== NULL
|| events
->events
== NULL
) {
252 ERR("Wrong arguments in compat_epoll_wait");
256 if (events
->nb_fd
== 0) {
262 * Resize if needed before waiting. We could either expand the array or
263 * shrink it down. It's important to note that after this step, we are
264 * ensured that the events argument of the epoll_wait call will be large
265 * enough to hold every possible returned events.
267 new_size
= 1U << utils_get_count_order_u32(events
->nb_fd
);
268 if (new_size
!= events
->alloc_size
&& new_size
>= events
->init_size
) {
269 ret
= resize_poll_event(events
, new_size
);
271 /* ENOMEM problem at this point. */
277 ret
= epoll_wait(events
->epfd
, events
->events
, events
->nb_fd
, timeout
);
278 } while (!interruptible
&& ret
== -1 && errno
== EINTR
);
280 if (errno
!= EINTR
) {
281 PERROR("epoll_wait");
287 * Since the returned events are set sequentially in the "events" structure
288 * we only need to return the epoll_wait value and iterate over it.
297 * Setup poll set maximum size.
299 int compat_epoll_set_max_size(void)
301 int ret
, fd
, retval
= 0;
305 fd
= open(COMPAT_EPOLL_PROC_PATH
, O_RDONLY
);
308 * Failing on opening [1] is not an error per see. [1] was
309 * introduced in Linux 2.6.28 but epoll is available since
310 * 2.5.44. Hence, goto end and set a default value without
311 * setting an error return value.
313 * [1] /proc/sys/fs/epoll/max_user_watches
319 size_ret
= lttng_read(fd
, buf
, sizeof(buf
));
321 * Allow reading a file smaller than buf, but keep space for
324 if (size_ret
< 0 || size_ret
>= sizeof(buf
)) {
325 PERROR("read set max size");
329 buf
[size_ret
] = '\0';
330 poll_max_size
= atoi(buf
);
337 if (!poll_max_size
) {
338 poll_max_size
= DEFAULT_POLL_SIZE
;
340 DBG("epoll set max size is %d", poll_max_size
);
This page took 0.036471 seconds and 4 git commands to generate.