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>
27 #include <common/error.h>
28 #include <common/defaults.h>
29 #include <common/macros.h>
30 #include <common/utils.h>
34 unsigned int poll_max_size
;
37 * Resize the epoll events structure of the new size.
39 * Return 0 on success or else -1 with the current events pointer untouched.
41 static int resize_poll_event(struct lttng_poll_event
*events
,
44 struct epoll_event
*ptr
;
48 ptr
= realloc(events
->events
, new_size
* sizeof(*ptr
));
50 PERROR("realloc epoll add");
53 if (new_size
> events
->alloc_size
) {
54 /* Zero newly allocated memory */
55 memset(ptr
+ events
->alloc_size
, 0,
56 (new_size
- events
->alloc_size
) * sizeof(*ptr
));
59 events
->alloc_size
= new_size
;
68 * Create epoll set and allocate returned events structure.
70 int compat_epoll_create(struct lttng_poll_event
*events
, int size
, int flags
)
74 if (events
== NULL
|| size
<= 0) {
79 ERR("poll_max_size not initialized yet");
83 /* Don't bust the limit here */
84 if (size
> poll_max_size
) {
88 ret
= compat_glibc_epoll_create(size
, flags
);
90 /* At this point, every error is fatal */
91 PERROR("epoll_create1");
97 /* This *must* be freed by using lttng_poll_free() */
98 events
->events
= zmalloc(size
* sizeof(struct epoll_event
));
99 if (events
->events
== NULL
) {
100 PERROR("zmalloc epoll set");
104 events
->alloc_size
= events
->init_size
= size
;
110 ret
= close(events
->epfd
);
119 * Add a fd to the epoll set with requesting events.
121 int compat_epoll_add(struct lttng_poll_event
*events
, int fd
, uint32_t req_events
)
124 struct epoll_event ev
;
126 if (events
== NULL
|| events
->events
== NULL
|| fd
< 0) {
127 ERR("Bad compat epoll add arguments");
132 * Zero struct epoll_event to ensure all representations of its
135 memset(&ev
, 0, sizeof(ev
));
136 ev
.events
= req_events
;
139 ret
= epoll_ctl(events
->epfd
, EPOLL_CTL_ADD
, fd
, &ev
);
143 /* If exist, it's OK. */
147 /* Print PERROR and goto end not failing. Show must go on. */
148 PERROR("epoll_ctl ADD");
151 PERROR("epoll_ctl ADD fatal");
166 * Remove a fd from the epoll set.
168 int compat_epoll_del(struct lttng_poll_event
*events
, int fd
)
172 if (events
== NULL
|| fd
< 0 || events
->nb_fd
== 0) {
176 ret
= epoll_ctl(events
->epfd
, EPOLL_CTL_DEL
, fd
, NULL
);
181 /* Print PERROR and goto end not failing. Show must go on. */
182 PERROR("epoll_ctl DEL");
185 PERROR("epoll_ctl DEL fatal");
200 * Wait on epoll set. This is a blocking call of timeout value.
202 int compat_epoll_wait(struct lttng_poll_event
*events
, int timeout
)
207 if (events
== NULL
|| events
->events
== NULL
) {
208 ERR("Wrong arguments in compat_epoll_wait");
211 assert(events
->nb_fd
>= 0);
213 if (events
->nb_fd
== 0) {
219 * Resize if needed before waiting. We could either expand the array or
220 * shrink it down. It's important to note that after this step, we are
221 * ensured that the events argument of the epoll_wait call will be large
222 * enough to hold every possible returned events.
224 new_size
= 1U << utils_get_count_order_u32(events
->nb_fd
);
225 if (new_size
!= events
->alloc_size
&& new_size
>= events
->init_size
) {
226 ret
= resize_poll_event(events
, new_size
);
228 /* ENOMEM problem at this point. */
234 ret
= epoll_wait(events
->epfd
, events
->events
, events
->nb_fd
, timeout
);
235 } while (ret
== -1 && errno
== EINTR
);
237 /* At this point, every error is fatal */
238 PERROR("epoll_wait");
243 * Since the returned events are set sequentially in the "events" structure
244 * we only need to return the epoll_wait value and iterate over it.
253 * Setup poll set maximum size.
255 int compat_epoll_set_max_size(void)
257 int ret
, fd
, retval
= 0;
261 fd
= open(COMPAT_EPOLL_PROC_PATH
, O_RDONLY
);
267 size_ret
= lttng_read(fd
, buf
, sizeof(buf
));
269 * Allow reading a file smaller than buf, but keep space for
272 if (size_ret
< 0 || size_ret
>= sizeof(buf
)) {
273 PERROR("read set max size");
277 buf
[size_ret
] = '\0';
278 poll_max_size
= atoi(buf
);
285 if (!poll_max_size
) {
286 poll_max_size
= DEFAULT_POLL_SIZE
;
288 DBG("epoll set max size is %d", poll_max_size
);
This page took 0.034365 seconds and 4 git commands to generate.