151f6eab3c
Anton D. Kachalov has submitted the ICLA as a result we can migrate the licenses to Apache. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
422 lines
9.9 KiB
C
422 lines
9.9 KiB
C
/****************************************************************************
|
|
* fs/vfs/fs_epoll.c
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <sys/epoll.h>
|
|
|
|
#include <inttypes.h>
|
|
#include <stdint.h>
|
|
#include <poll.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <debug.h>
|
|
|
|
#include <nuttx/clock.h>
|
|
#include <nuttx/fs/fs.h>
|
|
#include <nuttx/kmalloc.h>
|
|
|
|
#include "inode/inode.h"
|
|
|
|
/****************************************************************************
|
|
* Private Types
|
|
****************************************************************************/
|
|
|
|
struct epoll_head
|
|
{
|
|
int size;
|
|
int occupied;
|
|
struct file fp;
|
|
struct inode in;
|
|
FAR epoll_data_t *data;
|
|
FAR struct pollfd *poll;
|
|
};
|
|
|
|
/****************************************************************************
|
|
* Private Function Prototypes
|
|
****************************************************************************/
|
|
|
|
static int epoll_do_close(FAR struct file *filep);
|
|
static int epoll_do_poll(FAR struct file *filep,
|
|
FAR struct pollfd *fds, bool setup);
|
|
|
|
/****************************************************************************
|
|
* Private Data
|
|
****************************************************************************/
|
|
|
|
static const struct file_operations g_epoll_ops =
|
|
{
|
|
.close = epoll_do_close,
|
|
.poll = epoll_do_poll
|
|
};
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
static FAR struct epoll_head *epoll_head_from_fd(int fd)
|
|
{
|
|
FAR struct file *filep;
|
|
int ret;
|
|
|
|
/* Get file pointer by file descriptor */
|
|
|
|
ret = fs_getfilep(fd, &filep);
|
|
if (ret < 0)
|
|
{
|
|
set_errno(-ret);
|
|
return NULL;
|
|
}
|
|
|
|
/* Check fd come from us */
|
|
|
|
if (!filep->f_inode || filep->f_inode->u.i_ops != &g_epoll_ops)
|
|
{
|
|
set_errno(EBADF);
|
|
return NULL;
|
|
}
|
|
|
|
return (FAR struct epoll_head *)filep->f_inode->i_private;
|
|
}
|
|
|
|
static int epoll_do_close(FAR struct file *filep)
|
|
{
|
|
FAR struct epoll_head *eph = filep->f_inode->i_private;
|
|
|
|
kmm_free(eph);
|
|
return OK;
|
|
}
|
|
|
|
static int epoll_do_poll(FAR struct file *filep,
|
|
FAR struct pollfd *fds, bool setup)
|
|
{
|
|
return OK;
|
|
}
|
|
|
|
static int epoll_do_create(int size, int flags)
|
|
{
|
|
FAR struct epoll_head *eph;
|
|
int reserve = size + 1;
|
|
int fd;
|
|
|
|
eph = (FAR struct epoll_head *)
|
|
kmm_zalloc(sizeof(struct epoll_head) +
|
|
sizeof(epoll_data_t) * reserve +
|
|
sizeof(struct pollfd) * reserve);
|
|
if (eph == NULL)
|
|
{
|
|
set_errno(ENOMEM);
|
|
return -1;
|
|
}
|
|
|
|
eph->size = size;
|
|
eph->data = (FAR epoll_data_t *)(eph + 1);
|
|
eph->poll = (FAR struct pollfd *)(eph->data + reserve);
|
|
|
|
INODE_SET_DRIVER(&eph->in);
|
|
eph->in.u.i_ops = &g_epoll_ops;
|
|
eph->fp.f_inode = &eph->in;
|
|
eph->in.i_private = eph;
|
|
|
|
eph->poll[0].ptr = &eph->fp;
|
|
eph->poll[0].events = POLLIN | POLLFILE;
|
|
|
|
/* Alloc the file descriptor */
|
|
|
|
fd = files_allocate(&eph->in, flags, 0, eph, 0);
|
|
if (fd < 0)
|
|
{
|
|
kmm_free(eph);
|
|
set_errno(-fd);
|
|
return -1;
|
|
}
|
|
|
|
return fd;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: epoll_create
|
|
*
|
|
* Description:
|
|
*
|
|
* Input Parameters:
|
|
*
|
|
* Returned Value:
|
|
*
|
|
****************************************************************************/
|
|
|
|
int epoll_create(int size)
|
|
{
|
|
return epoll_do_create(size, 0);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: epoll_create1
|
|
*
|
|
* Description:
|
|
*
|
|
* Input Parameters:
|
|
*
|
|
* Returned Value:
|
|
*
|
|
****************************************************************************/
|
|
|
|
int epoll_create1(int flags)
|
|
{
|
|
return epoll_do_create(CONFIG_FS_NEPOLL_DESCRIPTORS, flags);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: epoll_close
|
|
*
|
|
* Description:
|
|
*
|
|
* Input Parameters:
|
|
*
|
|
* Returned Value:
|
|
*
|
|
****************************************************************************/
|
|
|
|
void epoll_close(int epfd)
|
|
{
|
|
close(epfd);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: epoll_ctl
|
|
*
|
|
* Description:
|
|
*
|
|
* Input Parameters:
|
|
*
|
|
* Returned Value:
|
|
*
|
|
****************************************************************************/
|
|
|
|
int epoll_ctl(int epfd, int op, int fd, struct epoll_event *ev)
|
|
{
|
|
FAR struct epoll_head *eph;
|
|
int i;
|
|
|
|
eph = epoll_head_from_fd(epfd);
|
|
if (eph == NULL)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
switch (op)
|
|
{
|
|
case EPOLL_CTL_ADD:
|
|
finfo("%08x CTL ADD(%d): fd=%d ev=%08" PRIx32 "\n",
|
|
epfd, eph->occupied, fd, ev->events);
|
|
if (eph->occupied >= eph->size)
|
|
{
|
|
set_errno(ENOMEM);
|
|
return -1;
|
|
}
|
|
|
|
for (i = 1; i <= eph->occupied; i++)
|
|
{
|
|
if (eph->poll[i].fd == fd)
|
|
{
|
|
set_errno(EEXIST);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
eph->data[++eph->occupied] = ev->data;
|
|
eph->poll[eph->occupied].events = ev->events | POLLERR | POLLHUP;
|
|
eph->poll[eph->occupied].fd = fd;
|
|
|
|
break;
|
|
|
|
case EPOLL_CTL_DEL:
|
|
for (i = 1; i <= eph->occupied; i++)
|
|
{
|
|
if (eph->poll[i].fd == fd)
|
|
{
|
|
if (i != eph->occupied)
|
|
{
|
|
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));
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (i > eph->occupied)
|
|
{
|
|
set_errno(ENOENT);
|
|
return -1;
|
|
}
|
|
|
|
eph->occupied--;
|
|
break;
|
|
|
|
case EPOLL_CTL_MOD:
|
|
finfo("%08x CTL MOD(%d): fd=%d ev=%08" PRIx32 "\n",
|
|
epfd, eph->occupied, fd, ev->events);
|
|
for (i = 1; i <= eph->occupied; i++)
|
|
{
|
|
if (eph->poll[i].fd == fd)
|
|
{
|
|
eph->data[i] = ev->data;
|
|
eph->poll[i].events = ev->events | POLLERR | POLLHUP;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (i > eph->occupied)
|
|
{
|
|
set_errno(ENOENT);
|
|
return -1;
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
set_errno(EINVAL);
|
|
return -1;
|
|
}
|
|
|
|
if (eph->poll[0].sem)
|
|
{
|
|
eph->poll[0].revents |= eph->poll[0].events;
|
|
nxsem_post(eph->poll[0].sem);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: epoll_pwait
|
|
****************************************************************************/
|
|
|
|
int epoll_pwait(int epfd, FAR struct epoll_event *evs,
|
|
int maxevents, int timeout, FAR const sigset_t *sigmask)
|
|
{
|
|
FAR struct epoll_head *eph;
|
|
struct timespec expire;
|
|
struct timespec curr;
|
|
struct timespec diff;
|
|
int counter;
|
|
int rc;
|
|
int i;
|
|
|
|
eph = epoll_head_from_fd(epfd);
|
|
if (eph == NULL)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
if (timeout >= 0)
|
|
{
|
|
expire.tv_sec = timeout / 1000;
|
|
expire.tv_nsec = timeout % 1000 * 1000;
|
|
|
|
#ifdef CONFIG_CLOCK_MONOTONIC
|
|
clock_gettime(CLOCK_MONOTONIC, &curr);
|
|
#else
|
|
clock_gettime(CLOCK_REALTIME, &curr);
|
|
#endif
|
|
|
|
clock_timespec_add(&curr, &expire, &expire);
|
|
}
|
|
|
|
again:
|
|
if (timeout < 0)
|
|
{
|
|
rc = ppoll(eph->poll, eph->occupied + 1, NULL, sigmask);
|
|
}
|
|
else
|
|
{
|
|
#ifdef CONFIG_CLOCK_MONOTONIC
|
|
clock_gettime(CLOCK_MONOTONIC, &curr);
|
|
#else
|
|
clock_gettime(CLOCK_REALTIME, &curr);
|
|
#endif
|
|
clock_timespec_subtract(&expire, &curr, &diff);
|
|
|
|
rc = ppoll(eph->poll, eph->occupied + 1, &diff, sigmask);
|
|
}
|
|
|
|
if (rc <= 0)
|
|
{
|
|
return rc;
|
|
}
|
|
else if (eph->poll[0].revents != 0)
|
|
{
|
|
if (--rc == 0)
|
|
{
|
|
goto again;
|
|
}
|
|
}
|
|
|
|
if (rc > maxevents)
|
|
{
|
|
rc = maxevents;
|
|
}
|
|
|
|
/* Iterate over non NULL event fds */
|
|
|
|
for (i = 0, counter = 1; i < rc && counter <= eph->occupied; counter++)
|
|
{
|
|
if (eph->poll[counter].revents != 0)
|
|
{
|
|
evs[i].data = eph->data[counter];
|
|
evs[i++].events = eph->poll[counter].revents;
|
|
if (eph->poll[counter].events & EPOLLONESHOT)
|
|
{
|
|
eph->poll[counter].events = 0; /* Disable oneshot internally */
|
|
}
|
|
}
|
|
}
|
|
|
|
return i;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* 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);
|
|
}
|