2015-08-10 18:38:41 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* fs/vfs/fs_epoll.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 Anton D. Kachalov. All rights reserved.
|
|
|
|
* Author: Anton D. Kachalov <mouse@mayc.ru>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-08-10 18:41:58 +02:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/epoll.h>
|
|
|
|
|
2020-11-20 10:05:35 +01:00
|
|
|
#include <inttypes.h>
|
2015-08-10 18:38:41 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <poll.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2015-08-10 18:41:58 +02:00
|
|
|
#include <debug.h>
|
2015-08-10 18:38:41 +02:00
|
|
|
|
2016-07-16 15:02:06 +02:00
|
|
|
#include <nuttx/kmalloc.h>
|
|
|
|
|
2020-08-20 19:37:17 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
struct epoll_head
|
|
|
|
{
|
|
|
|
int size;
|
|
|
|
int occupied;
|
|
|
|
FAR epoll_data_t *data;
|
|
|
|
FAR struct pollfd *poll;
|
|
|
|
};
|
|
|
|
|
2015-08-10 18:38:41 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: epoll_create
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int epoll_create(int size)
|
|
|
|
{
|
|
|
|
FAR struct epoll_head *eph =
|
2020-08-20 19:37:17 +02:00
|
|
|
(FAR struct epoll_head *)kmm_malloc(sizeof(struct epoll_head) +
|
|
|
|
sizeof(epoll_data_t) * size +
|
|
|
|
sizeof(struct pollfd) * size);
|
2015-08-10 18:38:41 +02:00
|
|
|
|
|
|
|
eph->size = size;
|
|
|
|
eph->occupied = 0;
|
2020-08-20 19:37:17 +02:00
|
|
|
eph->data = (FAR epoll_data_t *)(eph + 1);
|
|
|
|
eph->poll = (FAR struct pollfd *)(eph->data + size);
|
2016-07-16 15:02:06 +02:00
|
|
|
|
|
|
|
/* REVISIT: This will not work on machines where:
|
|
|
|
* sizeof(struct epoll_head *) > sizeof(int)
|
|
|
|
*/
|
2015-08-10 18:38:41 +02:00
|
|
|
|
2016-07-16 15:02:06 +02:00
|
|
|
return (int)((intptr_t)eph);
|
2015-08-10 18:38:41 +02:00
|
|
|
}
|
|
|
|
|
2020-08-17 04:58:27 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: epoll_create1
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int epoll_create1(int flags)
|
|
|
|
{
|
|
|
|
/* For current implementation, Close-on-exec is a default behavior,
|
|
|
|
* the handle of epoll(2) is not a real file handle.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (flags != EPOLL_CLOEXEC)
|
|
|
|
{
|
2020-09-29 12:04:45 +02:00
|
|
|
set_errno(EINVAL);
|
|
|
|
return -1;
|
2020-08-17 04:58:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return epoll_create(CONFIG_FS_NEPOLL_DESCRIPTORS);
|
|
|
|
}
|
|
|
|
|
2015-08-10 18:38:41 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: epoll_close
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void epoll_close(int epfd)
|
|
|
|
{
|
2016-07-16 15:02:06 +02:00
|
|
|
/* REVISIT: This will not work on machines where:
|
|
|
|
* sizeof(struct epoll_head *) > sizeof(int)
|
|
|
|
*/
|
2015-08-10 18:38:41 +02:00
|
|
|
|
2016-07-16 15:02:06 +02:00
|
|
|
FAR struct epoll_head *eph = (FAR struct epoll_head *)((intptr_t)epfd);
|
|
|
|
|
|
|
|
kmm_free(eph);
|
2015-08-10 18:38:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: epoll_ctl
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int epoll_ctl(int epfd, int op, int fd, struct epoll_event *ev)
|
|
|
|
{
|
2016-07-16 15:02:06 +02:00
|
|
|
/* REVISIT: This will not work on machines where:
|
|
|
|
* sizeof(struct epoll_head *) > sizeof(int)
|
|
|
|
*/
|
|
|
|
|
|
|
|
FAR struct epoll_head *eph = (FAR struct epoll_head *)((intptr_t)epfd);
|
2015-08-10 18:38:41 +02:00
|
|
|
|
|
|
|
switch (op)
|
|
|
|
{
|
|
|
|
case EPOLL_CTL_ADD:
|
2020-11-20 10:05:35 +01:00
|
|
|
finfo("%08x CTL ADD(%d): fd=%d ev=%08" PRIx32 "\n",
|
2015-08-10 18:41:58 +02:00
|
|
|
epfd, eph->occupied, fd, ev->events);
|
2015-08-10 18:38:41 +02:00
|
|
|
|
2020-08-20 19:37:17 +02:00
|
|
|
eph->data[eph->occupied] = ev->data;
|
|
|
|
eph->poll[eph->occupied].events = ev->events | POLLERR | POLLHUP;
|
|
|
|
eph->poll[eph->occupied++].fd = fd;
|
2015-08-10 18:38:41 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case EPOLL_CTL_DEL:
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < eph->occupied; i++)
|
|
|
|
{
|
2020-08-20 19:37:17 +02:00
|
|
|
if (eph->poll[i].fd == fd)
|
2015-08-10 18:38:41 +02:00
|
|
|
{
|
2019-03-01 22:00:00 +01:00
|
|
|
if (i != eph->occupied - 1)
|
2015-08-10 18:38:41 +02:00
|
|
|
{
|
2020-08-20 19:37:17 +02:00
|
|
|
memmove(&eph->data[i], &eph->data[i + 1],
|
|
|
|
sizeof(epoll_data_t) * (eph->occupied - i));
|
|
|
|
memmove(&eph->poll[i], &eph->poll[i + 1],
|
|
|
|
sizeof(struct pollfd) * (eph->occupied - i));
|
2015-08-10 18:38:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
eph->occupied--;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-29 12:04:45 +02:00
|
|
|
set_errno(ENOENT);
|
|
|
|
return -1;
|
2015-08-10 18:38:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
case EPOLL_CTL_MOD:
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2020-11-20 10:05:35 +01:00
|
|
|
finfo("%08x CTL MOD(%d): fd=%d ev=%08" PRIx32 "\n",
|
2015-08-10 18:41:58 +02:00
|
|
|
epfd, eph->occupied, fd, ev->events);
|
2015-08-10 18:38:41 +02:00
|
|
|
|
|
|
|
for (i = 0; i < eph->occupied; i++)
|
|
|
|
{
|
2020-08-20 19:37:17 +02:00
|
|
|
if (eph->poll[i].fd == fd)
|
2015-08-10 18:38:41 +02:00
|
|
|
{
|
2020-08-20 19:37:17 +02:00
|
|
|
eph->data[i] = ev->data;
|
|
|
|
eph->poll[i].events = ev->events | POLLERR | POLLHUP;
|
2015-08-10 18:38:41 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-29 12:04:45 +02:00
|
|
|
set_errno(ENOENT);
|
|
|
|
return -1;
|
2015-08-10 18:38:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-29 12:04:45 +02:00
|
|
|
set_errno(EINVAL);
|
|
|
|
return -1;
|
2015-08-10 18:38:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2020-08-16 19:00:36 +02:00
|
|
|
* Name: epoll_pwait
|
2015-08-10 18:38:41 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2020-08-16 19:00:36 +02:00
|
|
|
int epoll_pwait(int epfd, FAR struct epoll_event *evs,
|
|
|
|
int maxevents, int timeout, FAR const sigset_t *sigmask)
|
2015-08-10 18:38:41 +02:00
|
|
|
{
|
2016-07-16 15:02:06 +02:00
|
|
|
/* REVISIT: This will not work on machines where:
|
|
|
|
* sizeof(struct epoll_head *) > sizeof(int)
|
|
|
|
*/
|
|
|
|
|
|
|
|
FAR struct epoll_head *eph = (FAR struct epoll_head *)((intptr_t)epfd);
|
2017-07-22 16:52:14 +02:00
|
|
|
int counter;
|
2015-08-10 18:38:41 +02:00
|
|
|
int rc;
|
2016-07-16 15:02:06 +02:00
|
|
|
int i;
|
2015-08-10 18:38:41 +02:00
|
|
|
|
2020-08-16 19:00:36 +02:00
|
|
|
if (timeout < 0)
|
|
|
|
{
|
2020-08-20 19:37:17 +02:00
|
|
|
rc = ppoll(eph->poll, eph->occupied, NULL, sigmask);
|
2020-08-16 19:00:36 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct timespec timeout_ts;
|
|
|
|
|
|
|
|
timeout_ts.tv_sec = timeout / 1000;
|
|
|
|
timeout_ts.tv_nsec = timeout % 1000 * 1000;
|
|
|
|
|
2020-08-20 19:37:17 +02:00
|
|
|
rc = ppoll(eph->poll, eph->occupied, &timeout_ts, sigmask);
|
2020-08-16 19:00:36 +02:00
|
|
|
}
|
2015-08-10 18:38:41 +02:00
|
|
|
|
|
|
|
if (rc <= 0)
|
|
|
|
{
|
|
|
|
if (rc < 0)
|
|
|
|
{
|
2016-06-12 01:14:02 +02:00
|
|
|
ferr("ERROR: %08x poll fail: %d for %d, %d msecs\n",
|
2015-08-10 18:41:58 +02:00
|
|
|
epfd, rc, eph->occupied, timeout);
|
2015-08-10 18:38:41 +02:00
|
|
|
|
|
|
|
for (i = 0; i < eph->occupied; i++)
|
|
|
|
{
|
2020-08-20 19:37:17 +02:00
|
|
|
ferr(" %02d: fd=%d\n", i, eph->poll[i].fd);
|
2015-08-10 18:38:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2017-07-22 16:52:14 +02:00
|
|
|
/* Iterate over non NULL event fds */
|
|
|
|
|
2020-08-15 22:05:24 +02:00
|
|
|
if (rc > maxevents)
|
|
|
|
{
|
|
|
|
rc = maxevents;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0, counter = 0; i < rc && counter < eph->occupied; counter++)
|
2015-08-10 18:38:41 +02:00
|
|
|
{
|
2020-08-20 19:37:17 +02:00
|
|
|
if (eph->poll[counter].revents != 0)
|
2017-07-22 16:52:14 +02:00
|
|
|
{
|
2020-08-20 19:37:17 +02:00
|
|
|
evs[i].data = eph->data[counter];
|
|
|
|
evs[i++].events = eph->poll[counter].revents;
|
|
|
|
if (eph->poll[counter].events & EPOLLONESHOT)
|
2020-08-16 19:32:21 +02:00
|
|
|
{
|
2020-08-20 19:37:17 +02:00
|
|
|
eph->poll[counter].events = 0; /* Disable oneshot internally */
|
2020-08-16 19:32:21 +02:00
|
|
|
}
|
2017-07-22 16:52:14 +02:00
|
|
|
}
|
2015-08-10 18:38:41 +02:00
|
|
|
}
|
|
|
|
|
2017-07-22 16:52:14 +02:00
|
|
|
return i;
|
2015-08-10 18:38:41 +02:00
|
|
|
}
|
2020-08-16 19:00:36 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: epoll_wait
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int epoll_wait(int epfd, FAR struct epoll_event *evs,
|
|
|
|
int maxevents, int timeout)
|
|
|
|
{
|
|
|
|
return epoll_pwait(epfd, evs, maxevents, timeout, NULL);
|
|
|
|
}
|