123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- /* 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.
- */
- #ifdef WIN32
- /* POSIX defines 1024 for the FD_SETSIZE */
- #define FD_SETSIZE 1024
- #endif
- #include "fspr.h"
- #include "fspr_poll.h"
- #include "fspr_time.h"
- #include "fspr_portable.h"
- #include "fspr_arch_networkio.h"
- #include "fspr_arch_file_io.h"
- #include "fspr_arch_poll_private.h"
- #ifdef POLL_USES_SELECT
- APR_DECLARE(fspr_status_t) fspr_poll(fspr_pollfd_t *aprset, int num,
- fspr_int32_t *nsds,
- fspr_interval_time_t timeout)
- {
- fd_set readset, writeset, exceptset;
- int rv, i;
- int maxfd = -1;
- struct timeval tv, *tvptr;
- #ifdef NETWARE
- fspr_datatype_e set_type = APR_NO_DESC;
- #endif
- if (timeout < 0) {
- tvptr = NULL;
- }
- else {
- tv.tv_sec = (long) fspr_time_sec(timeout);
- tv.tv_usec = (long) fspr_time_usec(timeout);
- tvptr = &tv;
- }
- FD_ZERO(&readset);
- FD_ZERO(&writeset);
- FD_ZERO(&exceptset);
- for (i = 0; i < num; i++) {
- fspr_os_sock_t fd;
- aprset[i].rtnevents = 0;
- if (aprset[i].desc_type == APR_POLL_SOCKET) {
- #ifdef NETWARE
- if (HAS_PIPES(set_type)) {
- return APR_EBADF;
- }
- else {
- set_type = APR_POLL_SOCKET;
- }
- #endif
- fd = aprset[i].desc.s->socketdes;
- }
- else if (aprset[i].desc_type == APR_POLL_FILE) {
- #if !APR_FILES_AS_SOCKETS
- return APR_EBADF;
- #else
- #ifdef NETWARE
- if (aprset[i].desc.f->is_pipe && !HAS_SOCKETS(set_type)) {
- set_type = APR_POLL_FILE;
- }
- else
- return APR_EBADF;
- #endif /* NETWARE */
- fd = aprset[i].desc.f->filedes;
- #endif /* APR_FILES_AS_SOCKETS */
- }
- else {
- break;
- }
- #if !defined(WIN32) && !defined(NETWARE) /* socket sets handled with array of handles */
- if (fd >= FD_SETSIZE) {
- /* XXX invent new error code so application has a clue */
- return APR_EBADF;
- }
- #endif
- if (aprset[i].reqevents & APR_POLLIN) {
- FD_SET(fd, &readset);
- }
- if (aprset[i].reqevents & APR_POLLOUT) {
- FD_SET(fd, &writeset);
- }
- if (aprset[i].reqevents &
- (APR_POLLPRI | APR_POLLERR | APR_POLLHUP | APR_POLLNVAL)) {
- FD_SET(fd, &exceptset);
- }
- if ((int) fd > maxfd) {
- maxfd = (int) fd;
- }
- }
- #ifdef NETWARE
- if (HAS_PIPES(set_type)) {
- rv = pipe_select(maxfd + 1, &readset, &writeset, &exceptset, tvptr);
- }
- else {
- #endif
- rv = select(maxfd + 1, &readset, &writeset, &exceptset, tvptr);
- #ifdef NETWARE
- }
- #endif
- (*nsds) = rv;
- if ((*nsds) == 0) {
- return APR_TIMEUP;
- }
- if ((*nsds) < 0) {
- return fspr_get_netos_error();
- }
- (*nsds) = 0;
- for (i = 0; i < num; i++) {
- fspr_os_sock_t fd;
- if (aprset[i].desc_type == APR_POLL_SOCKET) {
- fd = aprset[i].desc.s->socketdes;
- }
- else if (aprset[i].desc_type == APR_POLL_FILE) {
- #if !APR_FILES_AS_SOCKETS
- return APR_EBADF;
- #else
- fd = aprset[i].desc.f->filedes;
- #endif
- }
- else {
- break;
- }
- if (FD_ISSET(fd, &readset)) {
- aprset[i].rtnevents |= APR_POLLIN;
- }
- if (FD_ISSET(fd, &writeset)) {
- aprset[i].rtnevents |= APR_POLLOUT;
- }
- if (FD_ISSET(fd, &exceptset)) {
- aprset[i].rtnevents |= APR_POLLERR;
- }
- if (aprset[i].rtnevents) {
- (*nsds)++;
- }
- }
- return APR_SUCCESS;
- }
- #endif /* POLL_USES_SELECT */
- #ifdef POLLSET_USES_SELECT
- struct fspr_pollset_t
- {
- fspr_pool_t *pool;
- fspr_uint32_t nelts;
- fspr_uint32_t nalloc;
- fd_set readset, writeset, exceptset;
- int maxfd;
- fspr_pollfd_t *query_set;
- fspr_pollfd_t *result_set;
- #ifdef NETWARE
- int set_type;
- #endif
- };
- APR_DECLARE(fspr_status_t) fspr_pollset_create(fspr_pollset_t **pollset,
- fspr_uint32_t size,
- fspr_pool_t *p,
- fspr_uint32_t flags)
- {
- if (flags & APR_POLLSET_THREADSAFE) {
- *pollset = NULL;
- return APR_ENOTIMPL;
- }
- #ifdef FD_SETSIZE
- if (size > FD_SETSIZE) {
- *pollset = NULL;
- return APR_EINVAL;
- }
- #endif
- *pollset = fspr_palloc(p, sizeof(**pollset));
- (*pollset)->nelts = 0;
- (*pollset)->nalloc = size;
- (*pollset)->pool = p;
- FD_ZERO(&((*pollset)->readset));
- FD_ZERO(&((*pollset)->writeset));
- FD_ZERO(&((*pollset)->exceptset));
- (*pollset)->maxfd = 0;
- #ifdef NETWARE
- (*pollset)->set_type = APR_NO_DESC;
- #endif
- (*pollset)->query_set = fspr_palloc(p, size * sizeof(fspr_pollfd_t));
- (*pollset)->result_set = fspr_palloc(p, size * sizeof(fspr_pollfd_t));
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_pollset_destroy(fspr_pollset_t * pollset)
- {
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_pollset_add(fspr_pollset_t *pollset,
- const fspr_pollfd_t *descriptor)
- {
- fspr_os_sock_t fd;
- if (pollset->nelts == pollset->nalloc) {
- return APR_ENOMEM;
- }
- pollset->query_set[pollset->nelts] = *descriptor;
- if (descriptor->desc_type == APR_POLL_SOCKET) {
- #ifdef NETWARE
- /* NetWare can't handle mixed descriptor types in select() */
- if (HAS_PIPES(pollset->set_type)) {
- return APR_EBADF;
- }
- else {
- pollset->set_type = APR_POLL_SOCKET;
- }
- #endif
- fd = descriptor->desc.s->socketdes;
- }
- else {
- #if !APR_FILES_AS_SOCKETS
- return APR_EBADF;
- #else
- #ifdef NETWARE
- /* NetWare can't handle mixed descriptor types in select() */
- if (descriptor->desc.f->is_pipe && !HAS_SOCKETS(pollset->set_type)) {
- pollset->set_type = APR_POLL_FILE;
- fd = descriptor->desc.f->filedes;
- }
- else {
- return APR_EBADF;
- }
- #else
- fd = descriptor->desc.f->filedes;
- #endif
- #endif
- }
- #if !defined(WIN32) && !defined(NETWARE) /* socket sets handled with array of handles */
- if (fd >= FD_SETSIZE) {
- /* XXX invent new error code so application has a clue */
- return APR_EBADF;
- }
- #endif
- if (descriptor->reqevents & APR_POLLIN) {
- FD_SET(fd, &(pollset->readset));
- }
- if (descriptor->reqevents & APR_POLLOUT) {
- FD_SET(fd, &(pollset->writeset));
- }
- if (descriptor->reqevents &
- (APR_POLLPRI | APR_POLLERR | APR_POLLHUP | APR_POLLNVAL)) {
- FD_SET(fd, &(pollset->exceptset));
- }
- if ((int) fd > pollset->maxfd) {
- pollset->maxfd = (int) fd;
- }
- pollset->nelts++;
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_pollset_remove(fspr_pollset_t * pollset,
- const fspr_pollfd_t * descriptor)
- {
- fspr_uint32_t i;
- fspr_os_sock_t fd;
- if (descriptor->desc_type == APR_POLL_SOCKET) {
- fd = descriptor->desc.s->socketdes;
- }
- else {
- #if !APR_FILES_AS_SOCKETS
- return APR_EBADF;
- #else
- fd = descriptor->desc.f->filedes;
- #endif
- }
- for (i = 0; i < pollset->nelts; i++) {
- if (descriptor->desc.s == pollset->query_set[i].desc.s) {
- /* Found an instance of the fd: remove this and any other copies */
- fspr_uint32_t dst = i;
- fspr_uint32_t old_nelts = pollset->nelts;
- pollset->nelts--;
- for (i++; i < old_nelts; i++) {
- if (descriptor->desc.s == pollset->query_set[i].desc.s) {
- pollset->nelts--;
- }
- else {
- pollset->query_set[dst] = pollset->query_set[i];
- dst++;
- }
- }
- FD_CLR(fd, &(pollset->readset));
- FD_CLR(fd, &(pollset->writeset));
- FD_CLR(fd, &(pollset->exceptset));
- if (((int) fd == pollset->maxfd) && (pollset->maxfd > 0)) {
- pollset->maxfd--;
- }
- return APR_SUCCESS;
- }
- }
- return APR_NOTFOUND;
- }
- APR_DECLARE(fspr_status_t) fspr_pollset_poll(fspr_pollset_t *pollset,
- fspr_interval_time_t timeout,
- fspr_int32_t *num,
- const fspr_pollfd_t **descriptors)
- {
- int rv;
- fspr_uint32_t i, j;
- struct timeval tv, *tvptr;
- fd_set readset, writeset, exceptset;
- if (timeout < 0) {
- tvptr = NULL;
- }
- else {
- tv.tv_sec = (long) fspr_time_sec(timeout);
- tv.tv_usec = (long) fspr_time_usec(timeout);
- tvptr = &tv;
- }
- memcpy(&readset, &(pollset->readset), sizeof(fd_set));
- memcpy(&writeset, &(pollset->writeset), sizeof(fd_set));
- memcpy(&exceptset, &(pollset->exceptset), sizeof(fd_set));
- #ifdef NETWARE
- if (HAS_PIPES(pollset->set_type)) {
- rv = pipe_select(pollset->maxfd + 1, &readset, &writeset, &exceptset,
- tvptr);
- }
- else
- #endif
- rv = select(pollset->maxfd + 1, &readset, &writeset, &exceptset,
- tvptr);
- (*num) = rv;
- if (rv < 0) {
- return fspr_get_netos_error();
- }
- if (rv == 0) {
- return APR_TIMEUP;
- }
- j = 0;
- for (i = 0; i < pollset->nelts; i++) {
- fspr_os_sock_t fd;
- if (pollset->query_set[i].desc_type == APR_POLL_SOCKET) {
- fd = pollset->query_set[i].desc.s->socketdes;
- }
- else {
- #if !APR_FILES_AS_SOCKETS
- return APR_EBADF;
- #else
- fd = pollset->query_set[i].desc.f->filedes;
- #endif
- }
- if (FD_ISSET(fd, &readset) || FD_ISSET(fd, &writeset) ||
- FD_ISSET(fd, &exceptset)) {
- pollset->result_set[j] = pollset->query_set[i];
- pollset->result_set[j].rtnevents = 0;
- if (FD_ISSET(fd, &readset)) {
- pollset->result_set[j].rtnevents |= APR_POLLIN;
- }
- if (FD_ISSET(fd, &writeset)) {
- pollset->result_set[j].rtnevents |= APR_POLLOUT;
- }
- if (FD_ISSET(fd, &exceptset)) {
- pollset->result_set[j].rtnevents |= APR_POLLERR;
- }
- j++;
- }
- }
- (*num) = j;
- if (descriptors)
- *descriptors = pollset->result_set;
- return APR_SUCCESS;
- }
- #endif /* POLLSET_USES_SELECT */
|