1380ce85527a74dae304b2777de5a72c489b6b5c
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");
55 events
->alloc_size
= new_size
;
64 * Create epoll set and allocate returned events structure.
66 int compat_epoll_create(struct lttng_poll_event
*events
, int size
, int flags
)
70 if (events
== NULL
|| size
<= 0) {
74 /* Don't bust the limit here */
75 if (size
> poll_max_size
&& poll_max_size
!= 0) {
79 ret
= epoll_create1(flags
);
81 /* At this point, every error is fatal */
82 PERROR("epoll_create1");
88 /* This *must* be freed by using lttng_poll_free() */
89 events
->events
= zmalloc(size
* sizeof(struct epoll_event
));
90 if (events
->events
== NULL
) {
91 PERROR("zmalloc epoll set");
95 events
->alloc_size
= events
->init_size
= size
;
101 ret
= close(events
->epfd
);
110 * Add a fd to the epoll set with requesting events.
112 int compat_epoll_add(struct lttng_poll_event
*events
, int fd
, uint32_t req_events
)
115 struct epoll_event ev
;
117 if (events
== NULL
|| events
->events
== NULL
|| fd
< 0) {
118 ERR("Bad compat epoll add arguments");
122 ev
.events
= req_events
;
125 ret
= epoll_ctl(events
->epfd
, EPOLL_CTL_ADD
, fd
, &ev
);
129 /* If exist, it's OK. */
133 /* Print PERROR and goto end not failing. Show must go on. */
134 PERROR("epoll_ctl ADD");
137 PERROR("epoll_ctl ADD fatal");
152 * Remove a fd from the epoll set.
154 int compat_epoll_del(struct lttng_poll_event
*events
, int fd
)
158 if (events
== NULL
|| fd
< 0) {
162 ret
= epoll_ctl(events
->epfd
, EPOLL_CTL_DEL
, fd
, NULL
);
167 /* Print PERROR and goto end not failing. Show must go on. */
168 PERROR("epoll_ctl DEL");
171 PERROR("epoll_ctl DEL fatal");
186 * Wait on epoll set. This is a blocking call of timeout value.
188 int compat_epoll_wait(struct lttng_poll_event
*events
, int timeout
)
193 if (events
== NULL
|| events
->events
== NULL
) {
194 ERR("Wrong arguments in compat_epoll_wait");
199 * Resize if needed before waiting. We could either expand the array or
200 * shrink it down. It's important to note that after this step, we are
201 * ensured that the events argument of the epoll_wait call will be large
202 * enough to hold every possible returned events.
204 if (events
->nb_fd
> events
->alloc_size
) {
205 /* Expand if the nb_fd is higher than the actual size. */
206 new_size
= max_t(uint32_t,
207 1U << utils_get_count_order_u32(events
->nb_fd
),
208 events
->alloc_size
<< 1UL);
209 } else if ((events
->nb_fd
<< 1UL) <= events
->alloc_size
&&
210 events
->nb_fd
>= events
->init_size
) {
211 /* Shrink if nb_fd multiplied by two is <= than the actual size. */
212 new_size
= max_t(uint32_t,
213 utils_get_count_order_u32(events
->nb_fd
) >> 1U,
214 events
->alloc_size
>> 1U);
216 /* Indicate that we don't want to resize. */
221 ret
= resize_poll_event(events
, new_size
);
223 /* ENOMEM problem at this point. */
229 ret
= epoll_wait(events
->epfd
, events
->events
, events
->nb_fd
, timeout
);
230 } while (ret
== -1 && errno
== EINTR
);
232 /* At this point, every error is fatal */
233 PERROR("epoll_wait");
238 * Since the returned events are set sequentially in the "events" structure
239 * we only need to return the epoll_wait value and iterate over it.
248 * Setup poll set maximum size.
250 void compat_epoll_set_max_size(void)
256 poll_max_size
= DEFAULT_POLL_SIZE
;
258 fd
= open(COMPAT_EPOLL_PROC_PATH
, O_RDONLY
);
263 size_ret
= lttng_read(fd
, buf
, sizeof(buf
));
265 * Allow reading a file smaller than buf, but keep space for
268 if (size_ret
< 0 || size_ret
>= sizeof(buf
)) {
269 PERROR("read set max size");
272 buf
[size_ret
] = '\0';
274 poll_max_size
= atoi(buf
);
275 if (poll_max_size
== 0) {
276 /* Extra precaution */
277 poll_max_size
= DEFAULT_POLL_SIZE
;
280 DBG("epoll set max size is %d", poll_max_size
);
This page took 0.035306 seconds and 4 git commands to generate.