1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
/**
* @file large_fd_set.c
*
* @brief Macro's and functions for manipulation of large file descriptor sets.
*
* Portions of this file are copyrighted by:
* Copyright (c) 2016 VMware, Inc. All rights reserved.
* Use is subject to license terms specified in the COPYING file
* distributed with the Net-SNMP package.
*/
#include <net-snmp/net-snmp-config.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#else
#error broken
#endif
#include <stdio.h>
#include <string.h> /* memset(), which is invoked by FD_ZERO() */
#include <stddef.h>
#include <net-snmp/net-snmp-includes.h>
#include <net-snmp/library/snmp_assert.h>
#include <net-snmp/library/large_fd_set.h>
#if !defined(cygwin) && defined(HAVE_WINSOCK_H)
#define LFD_SET(n, p) FD_SET(n, p)
#define LFD_CLR(n, p) FD_CLR(n, p)
#define LFD_ISSET(n, p) FD_ISSET(n, p)
void
netsnmp_large_fd_setfd(SOCKET fd, netsnmp_large_fd_set * fdset)
{
unsigned i;
netsnmp_assert(fd != INVALID_SOCKET);
if (fdset->lfs_setptr->fd_count == fdset->lfs_setsize)
netsnmp_large_fd_set_resize(fdset, 2 * (fdset->lfs_setsize + 1));
for (i = 0; i < fdset->lfs_setptr->fd_count; i++) {
if (fdset->lfs_setptr->fd_array[i] == fd)
break;
}
if (i == fdset->lfs_setptr->fd_count &&
fdset->lfs_setptr->fd_count < fdset->lfs_setsize) {
fdset->lfs_setptr->fd_count++;
fdset->lfs_setptr->fd_array[i] = fd;
}
}
void
netsnmp_large_fd_clr(SOCKET fd, netsnmp_large_fd_set * fdset)
{
unsigned i;
netsnmp_assert(fd != INVALID_SOCKET);
for (i = 0; i < fdset->lfs_setptr->fd_count; i++) {
if (fdset->lfs_setptr->fd_array[i] == fd) {
while (i < fdset->lfs_setptr->fd_count - 1) {
fdset->lfs_setptr->fd_array[i] =
fdset->lfs_setptr->fd_array[i + 1];
i++;
}
fdset->lfs_setptr->fd_count--;
break;
}
}
}
int
netsnmp_large_fd_is_set(SOCKET fd, netsnmp_large_fd_set * fdset)
{
unsigned int i;
netsnmp_assert(fd != INVALID_SOCKET);
for (i = 0; i < fdset->lfs_setptr->fd_count; i++) {
if (fdset->lfs_setptr->fd_array[i] == fd)
return 1;
}
return 0;
}
#else
NETSNMP_STATIC_INLINE void LFD_SET(unsigned n, fd_set *p)
{
enum { nfdbits = 8 * sizeof(p->fds_bits[0]) };
NETSNMP_FD_MASK_TYPE *fds_array = p->fds_bits;
fds_array[n / nfdbits] |= (1ULL << (n % nfdbits));
}
NETSNMP_STATIC_INLINE void LFD_CLR(unsigned n, fd_set *p)
{
enum { nfdbits = 8 * sizeof(p->fds_bits[0]) };
NETSNMP_FD_MASK_TYPE *fds_array = p->fds_bits;
fds_array[n / nfdbits] &= ~(1ULL << (n % nfdbits));
}
NETSNMP_STATIC_INLINE unsigned LFD_ISSET(unsigned n, const fd_set *p)
{
enum { nfdbits = 8 * sizeof(p->fds_bits[0]) };
const NETSNMP_FD_MASK_TYPE *fds_array = p->fds_bits;
return (fds_array[n / nfdbits] & (1ULL << (n % nfdbits))) != 0;
}
void
netsnmp_large_fd_setfd(int fd, netsnmp_large_fd_set * fdset)
{
netsnmp_assert(fd >= 0);
while (fd >= (int)fdset->lfs_setsize)
netsnmp_large_fd_set_resize(fdset, 2 * (fdset->lfs_setsize + 1));
LFD_SET(fd, fdset->lfs_setptr);
}
void
netsnmp_large_fd_clr(int fd, netsnmp_large_fd_set * fdset)
{
netsnmp_assert(fd >= 0);
if ((unsigned)fd < fdset->lfs_setsize)
LFD_CLR(fd, fdset->lfs_setptr);
}
int
netsnmp_large_fd_is_set(int fd, netsnmp_large_fd_set * fdset)
{
netsnmp_assert(fd >= 0);
return ((unsigned)fd < fdset->lfs_setsize &&
LFD_ISSET(fd, fdset->lfs_setptr));
}
#endif
void
netsnmp_large_fd_set_init(netsnmp_large_fd_set * fdset, int setsize)
{
fdset->lfs_setsize = 0;
fdset->lfs_setptr = NULL;
#if !defined(cygwin) && defined(HAVE_WINSOCK_H)
fdset->lfs_set.fd_count = 0;
#endif
netsnmp_large_fd_set_resize(fdset, setsize);
}
int
netsnmp_large_fd_set_select(int numfds, netsnmp_large_fd_set *readfds,
netsnmp_large_fd_set *writefds,
netsnmp_large_fd_set *exceptfds,
struct timeval *timeout)
{
NETSNMP_SELECT_TIMEVAL tmo;
if (timeout) {
tmo.tv_sec = timeout->tv_sec;
tmo.tv_usec = timeout->tv_usec;
}
#if defined(cygwin) || !defined(HAVE_WINSOCK_H)
/* Bit-set representation: make sure all fds have at least size 'numfds'. */
if (readfds && readfds->lfs_setsize < numfds)
netsnmp_large_fd_set_resize(readfds, numfds);
if (writefds && writefds->lfs_setsize < numfds)
netsnmp_large_fd_set_resize(writefds, numfds);
if (exceptfds && exceptfds->lfs_setsize < numfds)
netsnmp_large_fd_set_resize(exceptfds, numfds);
#else
/* Array representation: no resizing is necessary. */
#endif
return select(numfds, (readfds) ? readfds->lfs_setptr : NULL,
(writefds) ? writefds->lfs_setptr : NULL,
(exceptfds) ? exceptfds->lfs_setptr : NULL,
timeout ? &tmo : NULL);
}
int
netsnmp_large_fd_set_resize(netsnmp_large_fd_set * fdset, int setsize)
{
int fd_set_bytes;
if (fdset->lfs_setsize == setsize)
goto success;
if (setsize > FD_SETSIZE) {
fd_set_bytes = NETSNMP_FD_SET_BYTES(setsize);
if (fdset->lfs_setsize > FD_SETSIZE) {
fdset->lfs_setptr = realloc(fdset->lfs_setptr, fd_set_bytes);
if (!fdset->lfs_setptr)
goto out_of_mem;
} else {
fdset->lfs_setptr = malloc(fd_set_bytes);
if (!fdset->lfs_setptr)
goto out_of_mem;
*fdset->lfs_setptr = fdset->lfs_set;
}
} else {
if (fdset->lfs_setsize > FD_SETSIZE) {
fdset->lfs_set = *fdset->lfs_setptr;
free(fdset->lfs_setptr);
}
fdset->lfs_setptr = &fdset->lfs_set;
}
#if defined(cygwin) || !defined(HAVE_WINSOCK_H)
/*
* Unix: when enlarging, clear the file descriptors defined in the
* resized *fdset but that were not defined in the original *fdset.
*/
if ( fdset->lfs_setsize == 0 && setsize == FD_SETSIZE ) {
/* In this case we can use the OS's FD_ZERO */
FD_ZERO(fdset->lfs_setptr);
} else {
int i;
for (i = fdset->lfs_setsize; i < setsize; i++)
LFD_CLR(i, fdset->lfs_setptr);
}
#endif
fdset->lfs_setsize = setsize;
#if !defined(cygwin) && defined(HAVE_WINSOCK_H)
if (setsize < fdset->lfs_setptr->fd_count)
fdset->lfs_setptr->fd_count = setsize;
#endif
success:
return 1;
out_of_mem:
fdset->lfs_setsize = 0;
#if !defined(cygwin) && defined(HAVE_WINSOCK_H)
fdset->lfs_setptr->fd_count = 0;
#endif
return 0;
}
void
netsnmp_large_fd_set_cleanup(netsnmp_large_fd_set * fdset)
{
netsnmp_large_fd_set_resize(fdset, 0);
fdset->lfs_setsize = 0;
fdset->lfs_setptr = NULL;
}
void
netsnmp_copy_fd_set_to_large_fd_set(netsnmp_large_fd_set * dst,
const fd_set * src)
{
netsnmp_large_fd_set_resize(dst, FD_SETSIZE);
*dst->lfs_setptr = *src;
}
int
netsnmp_copy_large_fd_set_to_fd_set(fd_set * dst,
const netsnmp_large_fd_set * src)
{
/* Report failure if *src is larger than FD_SETSIZE. */
if (src->lfs_setsize > FD_SETSIZE) {
FD_ZERO(dst);
return -1;
}
*dst = *src->lfs_setptr;
#if !(!defined(cygwin) && defined(HAVE_WINSOCK_H))
{
int i;
/* Unix: clear any file descriptors defined in *dst but not in *src. */
for (i = src->lfs_setsize; i < FD_SETSIZE; ++i)
FD_CLR(i, dst);
}
#endif
return 0;
}
|