goto error;
}
+ if (!poll_max_size) {
+ ERR("poll_max_size not initialized yet");
+ goto error;
+ }
+
/* Don't bust the limit here */
- if (size > poll_max_size && poll_max_size != 0) {
+ if (size > poll_max_size) {
size = poll_max_size;
}
{
int ret;
- if (events == NULL || fd < 0) {
+ if (events == NULL || fd < 0 || events->nb_fd == 0) {
goto error;
}
ERR("Wrong arguments in compat_epoll_wait");
goto error;
}
+ assert(events->nb_fd >= 0);
+
+ if (events->nb_fd == 0) {
+ errno = EINVAL;
+ return -1;
+ }
/*
* Resize if needed before waiting. We could either expand the array or
* ensured that the events argument of the epoll_wait call will be large
* enough to hold every possible returned events.
*/
- if (events->nb_fd > events->alloc_size) {
- /* Expand if the nb_fd is higher than the actual size. */
- new_size = max_t(uint32_t,
- 1U << utils_get_count_order_u32(events->nb_fd),
- events->alloc_size << 1UL);
- } else if ((events->nb_fd << 1UL) <= events->alloc_size &&
- events->nb_fd >= events->init_size) {
- /* Shrink if nb_fd multiplied by two is <= than the actual size. */
- new_size = max_t(uint32_t,
- utils_get_count_order_u32(events->nb_fd) >> 1U,
- events->alloc_size >> 1U);
- } else {
- /* Indicate that we don't want to resize. */
- new_size = 0;
- }
-
- if (new_size) {
+ new_size = 1U << utils_get_count_order_u32(events->nb_fd);
+ if (new_size != events->alloc_size && new_size >= events->init_size) {
ret = resize_poll_event(events, new_size);
if (ret < 0) {
/* ENOMEM problem at this point. */
/*
* Setup poll set maximum size.
*/
-void compat_epoll_set_max_size(void)
+int compat_epoll_set_max_size(void)
{
- int ret, fd;
+ int ret, fd, retval = 0;
ssize_t size_ret;
char buf[64];
- poll_max_size = DEFAULT_POLL_SIZE;
-
fd = open(COMPAT_EPOLL_PROC_PATH, O_RDONLY);
if (fd < 0) {
- return;
+ retval = -1;
+ goto end;
}
size_ret = lttng_read(fd, buf, sizeof(buf));
*/
if (size_ret < 0 || size_ret >= sizeof(buf)) {
PERROR("read set max size");
- goto error;
+ retval = -1;
+ goto end_read;
}
buf[size_ret] = '\0';
-
poll_max_size = atoi(buf);
- if (poll_max_size == 0) {
- /* Extra precaution */
- poll_max_size = DEFAULT_POLL_SIZE;
- }
-
- DBG("epoll set max size is %d", poll_max_size);
-
-error:
+end_read:
ret = close(fd);
if (ret) {
PERROR("close");
}
+end:
+ if (!poll_max_size) {
+ poll_max_size = DEFAULT_POLL_SIZE;
+ }
+ DBG("epoll set max size is %d", poll_max_size);
+ return retval;
}
wait = &events->wait;
wait->nb_fd = current->nb_fd;
- if (events->need_realloc) {
+ if (current->alloc_size != wait->alloc_size) {
ret = resize_poll_event(wait, current->alloc_size);
if (ret < 0) {
goto error;
memcpy(wait->events, current->events,
current->nb_fd * sizeof(*current->events));
- /* Update is done and realloc as well. */
+ /* Update is done. */
events->need_update = 0;
- events->need_realloc = 0;
return 0;
goto error;
}
+ if (!poll_max_size) {
+ ERR("poll_max_size not initialized yet");
+ goto error;
+ }
+
/* Don't bust the limit here */
if (size > poll_max_size) {
size = poll_max_size;
/* Reset everything before begining the allocation. */
memset(events, 0, sizeof(struct lttng_poll_event));
- /* Ease our life a bit. */
current = &events->current;
wait = &events->wait;
goto error;
}
- /* Ease our life a bit. */
current = &events->current;
/* Check if fd we are trying to add is already there. */
for (i = 0; i < current->nb_fd; i++) {
- /* Don't put back the fd we want to delete */
if (current->events[i].fd == fd) {
errno = EEXIST;
goto error;
}
}
- /* Check for a needed resize of the array. */
- if (current->nb_fd > current->alloc_size) {
- /* Expand it by a power of two of the current size. */
- new_size = max_t(int,
- 1U << utils_get_count_order_u32(current->nb_fd),
- current->alloc_size << 1UL);
+ /* Resize array if needed. */
+ new_size = 1U << utils_get_count_order_u32(current->nb_fd + 1);
+ if (new_size != current->alloc_size && new_size >= current->init_size) {
ret = resize_poll_event(current, new_size);
if (ret < 0) {
goto error;
}
- events->need_realloc = 1;
}
current->events[current->nb_fd].fd = fd;
/* Ease our life a bit. */
current = &events->current;
- /* Check if we need to shrink it down. */
- if ((current->nb_fd << 1UL) <= current->alloc_size &&
- current->nb_fd >= current->init_size) {
- /*
- * Shrink if nb_fd multiplied by two is <= than the actual size and we
- * are above the initial size.
- */
- new_size = max_t(int,
- utils_get_count_order_u32(current->nb_fd) >> 1U,
- current->alloc_size >> 1U);
- ret = resize_poll_event(current, new_size);
- if (ret < 0) {
- goto error;
- }
- events->need_realloc = 1;
- }
-
for (i = 0; i < current->nb_fd; i++) {
/* Don't put back the fd we want to delete */
if (current->events[i].fd != fd) {
count++;
}
}
+ /* No fd duplicate should be ever added into array. */
+ assert(current->nb_fd - 1 == count);
+ current->nb_fd = count;
+
+ /* Resize array if needed. */
+ new_size = 1U << utils_get_count_order_u32(current->nb_fd);
+ if (new_size != current->alloc_size && new_size >= current->init_size) {
+ ret = resize_poll_event(current, new_size);
+ if (ret < 0) {
+ goto error;
+ }
+ }
- current->nb_fd--;
events->need_update = 1;
return 0;
ERR("poll wait arguments error");
goto error;
}
+ assert(events->current.nb_fd >= 0);
if (events->current.nb_fd == 0) {
/* Return an invalid error to be consistent with epoll. */
errno = EINVAL;
+ events->wait.nb_fd = 0;
goto error;
}
/*
* Setup poll set maximum size.
*/
-void compat_poll_set_max_size(void)
+int compat_poll_set_max_size(void)
{
- int ret;
+ int ret, retval = 0;
struct rlimit lim;
- /* Default value */
- poll_max_size = DEFAULT_POLL_SIZE;
-
ret = getrlimit(RLIMIT_NOFILE, &lim);
if (ret < 0) {
perror("getrlimit poll RLIMIT_NOFILE");
- return;
+ retval = -1;
+ goto end;
}
poll_max_size = lim.rlim_cur;
+end:
if (poll_max_size == 0) {
- /* Extra precaution */
poll_max_size = DEFAULT_POLL_SIZE;
}
-
DBG("poll set max size set to %u", poll_max_size);
+ return retval;
}
/*
* Set up the poll set limits variable poll_max_size
*/
-extern void compat_epoll_set_max_size(void);
+extern int compat_epoll_set_max_size(void);
#define lttng_poll_set_max_size() \
compat_epoll_set_max_size()
* execution before a poll wait is done.
*/
struct compat_poll_event_array current;
- /* Indicate if wait.events needs to be realloc. */
- int need_realloc:1;
+
/* Indicate if wait.events need to be updated from current. */
int need_update:1;
};
/*
* Set up the poll set limits variable poll_max_size
*/
-extern void compat_poll_set_max_size(void);
+extern int compat_poll_set_max_size(void);
#define lttng_poll_set_max_size() \
compat_poll_set_max_size()