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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
|
/*
* FILE: net_udp.c
* AUTHORS: Colin Perkins
*
* Copyright (c) 1998-99 University College London
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, is 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. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the Computer Science
* Department at University College London
* 4. Neither the name of the University nor of the Department may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESSED 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 AUTHORS 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.
*/
/* If this machine supports IPv6 the symbol HAVE_IPv6 should */
/* be defined in either config_unix.h or config_win32.h. The */
/* appropriate system header files should also be included */
/* by those files. */
#include "config_unix.h"
#include "config_win32.h"
#include "debug.h"
#include "memory.h"
#include "net_udp.h"
#define IPv4 4
#define IPv6 6
#ifndef INADDR_NONE
#define INADDR_NONE 0xffffffff
#endif
struct _socket_udp {
int mode; /* IPv4 or IPv6 */
char *addr;
u_int16 rx_port;
u_int16 tx_port;
ttl_t ttl;
fd_t fd;
struct in_addr addr4;
#ifdef HAVE_IPv6
struct in6_addr addr6;
#endif /* HAVE_IPv6 */
};
#ifdef WIN32
/* Want to use both Winsock 1 and 2 socket options, but since
* ipv6 support requires Winsock 2 we have to add own backwards
* compatibility for Winsock 1.
*/
#define SETSOCKOPT winsock_versions_setsockopt
#else
#define SETSOCKOPT setsockopt
#endif /* WIN32 */
/*****************************************************************************/
/* Support functions... */
/*****************************************************************************/
static void
socket_error(char *msg)
{
#ifdef WIN32
#define WSERR(x) {#x,x}
struct wse {
char errname[20];
int errno;
};
struct wse ws_errs[] = {
WSERR(WSANOTINITIALISED), WSERR(WSAENETDOWN), WSERR(WSAEACCES),
WSERR(WSAEINVAL), WSERR(WSAEINTR), WSERR(WSAEINPROGRESS),
WSERR(WSAEFAULT), WSERR(WSAENETRESET), WSERR(WSAENOBUFS),
WSERR(WSAENOTCONN), WSERR(WSAENOTSOCK), WSERR(WSAEOPNOTSUPP),
WSERR(WSAESHUTDOWN), WSERR(WSAEWOULDBLOCK), WSERR(WSAEMSGSIZE),
WSERR(WSAEHOSTUNREACH), WSERR(WSAECONNABORTED), WSERR(WSAECONNRESET),
WSERR(WSAEADDRNOTAVAIL), WSERR(WSAEAFNOSUPPORT), WSERR(WSAEDESTADDRREQ),
WSERR(WSAENETUNREACH), WSERR(WSAETIMEDOUT), WSERR(0)
};
int i, e = WSAGetLastError();
i = 0;
while(ws_errs[i].errno && ws_errs[i].errno != e) {
i++;
}
printf("ERROR: %s, (%d - %s)\n", msg, e, ws_errs[i].errname);
#else
perror(msg);
#endif
abort();
}
#ifdef WIN32
/* ws2tcpip.h defines these constants with different values from
* winsock.h so files that use winsock 2 values but try to use
* winsock 1 fail. So what was the motivation in changing the
* constants ?
*/
#define WS1_IP_MULTICAST_IF 2 /* set/get IP multicast interface */
#define WS1_IP_MULTICAST_TTL 3 /* set/get IP multicast timetolive */
#define WS1_IP_MULTICAST_LOOP 4 /* set/get IP multicast loopback */
#define WS1_IP_ADD_MEMBERSHIP 5 /* add an IP group membership */
#define WS1_IP_DROP_MEMBERSHIP 6 /* drop an IP group membership */
/* winsock_versions_setsockopt tries 1 winsock version of option
* optname and then winsock 2 version if that failed.
*/
static int
winsock_versions_setsockopt(SOCKET s, int level, int optname, const char FAR * optval, int optlen)
{
int success = -1;
switch (optname) {
case IP_MULTICAST_IF:
success = setsockopt(s, level, WS1_IP_MULTICAST_IF, optval, optlen);
break;
case IP_MULTICAST_TTL:
success = setsockopt(s, level, WS1_IP_MULTICAST_TTL, optval, optlen);
break;
case IP_MULTICAST_LOOP:
success = setsockopt(s, level, WS1_IP_MULTICAST_LOOP, optval, optlen);
break;
case IP_ADD_MEMBERSHIP:
success = setsockopt(s, level, WS1_IP_ADD_MEMBERSHIP, optval, optlen);
break;
case IP_DROP_MEMBERSHIP:
success = setsockopt(s, level, WS1_IP_DROP_MEMBERSHIP, optval, optlen);
break;
}
if (success != -1) {
return success;
}
return setsockopt(s, level, optname, optval, optlen);
}
#endif
#ifdef NEED_INET_ATON
#ifdef NEED_INET_ATON_STATIC
static
#endif
int inet_aton(const char *name, struct in_addr *addr)
{
addr->s_addr = inet_addr(name);
return (addr->s_addr != (in_addr_t) INADDR_NONE);
}
#endif
#ifdef NEED_INET_PTON
#ifdef NEED_INET_PTON_STATIC
static
#endif
int inet_pton(int family, const char *name, void *addr)
{
if (family == AF_INET) {
struct in_addr in_val;
if (inet_aton(name, &in_val)) {
memcpy(addr, &in_val, sizeof(struct in_addr));
return 1;
}
return 0;
#if defined (NEED_INET_PTON) && defined(HAVE_IPv6)
} else if (family == AF_INET6) {
return inet6_addr(name, addr);
#endif
} else {
debug_msg("Unknown address family\n");
return -1;
}
}
#endif
#ifdef NEED_IN6_IS_ADDR_MULTICAST
#define IN6_IS_ADDR_MULTICAST(addr) ((addr)->s6_addr[0] == 0xffU)
#endif
/*****************************************************************************/
/* IPv4 specific functions... */
/*****************************************************************************/
static socket_udp *udp_init4(char *addr, u_int16 rx_port, u_int16 tx_port, int ttl)
{
int reuse = 1;
struct sockaddr_in s_in;
socket_udp *s = (socket_udp *) malloc(sizeof(socket_udp));
s->mode = IPv4;
s->addr = addr;
s->rx_port = rx_port;
s->tx_port = tx_port;
s->ttl = ttl;
if (inet_pton(AF_INET, addr, &s->addr4) != 1) {
struct hostent *h = gethostbyname(addr);
if (h == NULL) {
return NULL;
}
memcpy(&(s->addr4), h->h_addr_list[0], sizeof(s->addr4));
}
s->fd = socket(AF_INET, SOCK_DGRAM, 0);
if (s->fd < 0) {
socket_error("socket");
abort();
}
if (SETSOCKOPT(s->fd, SOL_SOCKET, SO_REUSEADDR, (char *) &reuse, sizeof(reuse)) != 0) {
socket_error("setsockopt SO_REUSEADDR");
abort();
}
#ifdef SO_REUSEPORT
if (SETSOCKOPT(s->fd, SOL_SOCKET, SO_REUSEPORT, (char *) &reuse, sizeof(reuse)) != 0) {
socket_error("setsockopt SO_REUSEPORT");
abort();
}
#endif
s_in.sin_family = AF_INET;
s_in.sin_addr.s_addr = INADDR_ANY;
s_in.sin_port = htons(rx_port);
if (bind(s->fd, (struct sockaddr *) &s_in, sizeof(s_in)) != 0) {
socket_error("bind");
abort();
}
if (IN_MULTICAST(ntohl(s->addr4.s_addr))) {
char loop = 1;
struct ip_mreq imr;
imr.imr_multiaddr.s_addr = s->addr4.s_addr;
imr.imr_interface.s_addr = INADDR_ANY;
if (SETSOCKOPT(s->fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, (char *) &imr, sizeof(struct ip_mreq)) != 0) {
socket_error("setsockopt IP_ADD_MEMBERSHIP");
abort();
}
#ifndef WIN32
if (SETSOCKOPT(s->fd, IPPROTO_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop)) != 0) {
socket_error("setsockopt IP_MULTICAST_LOOP");
abort();
}
#endif
if (SETSOCKOPT(s->fd, IPPROTO_IP, IP_MULTICAST_TTL, (char *) &s->ttl, sizeof(s->ttl)) != 0) {
socket_error("setsockopt IP_MULTICAST_TTL");
abort();
}
}
return s;
}
static int udp_send4(socket_udp *s, char *buffer, int buflen)
{
struct sockaddr_in s_in;
int ret;
assert(s != NULL);
assert(s->mode == IPv4);
assert(buffer != NULL);
assert(buflen > 0);
s_in.sin_family = AF_INET;
s_in.sin_addr.s_addr = s->addr4.s_addr;
s_in.sin_port = htons(s->tx_port);
if ((ret = sendto(s->fd, buffer, buflen, 0, (struct sockaddr *) &s_in, sizeof(s_in))) < 0) {
socket_error("udp_send4");
}
return ret;
}
/*****************************************************************************/
/* IPv6 specific functions... */
/*****************************************************************************/
static socket_udp *udp_init6(char *addr, u_int16 rx_port, u_int16 tx_port, int ttl)
{
#ifdef HAVE_IPv6
int reuse = 1;
#ifdef WIN32
struct in6_addr in6addr_any = {0};
#endif
struct sockaddr_in6 s_in;
socket_udp *s = (socket_udp *) malloc(sizeof(socket_udp));
s->mode = IPv6;
s->addr = addr;
s->rx_port = rx_port;
s->tx_port = tx_port;
s->ttl = ttl;
if (inet_pton(AF_INET6, addr, &s->addr6) != 1) {
/* We should probably try to do a DNS lookup on the name */
/* here, but I'm trying to get the basics going first... */
debug_msg("IPv6 address conversion failed\n");
return NULL;
}
s->fd = socket(AF_INET6, SOCK_DGRAM, 0);
if (s->fd < 0) {
socket_error("socket");
abort();
}
if (SETSOCKOPT(s->fd, SOL_SOCKET, SO_REUSEADDR, (char *) &reuse, sizeof(reuse)) != 0) {
socket_error("setsockopt SO_REUSEADDR");
abort();
}
#ifdef SO_REUSEPORT
if (SETSOCKOPT(s->fd, SOL_SOCKET, SO_REUSEPORT, (char *) &reuse, sizeof(reuse)) != 0) {
socket_error("setsockopt SO_REUSEPORT");
abort();
}
#endif
s_in.sin6_family = AF_INET6;
s_in.sin6_port = htons(rx_port);
memcpy(s_in.sin6_addr.s6_addr, &s->addr6, sizeof(struct in6_addr));
if (bind(s->fd, (struct sockaddr *) &s_in, sizeof(s_in)) != 0) {
/* bind to group address failed, try generic address. */
s_in.sin6_addr = in6addr_any;
if (bind(s->fd, (struct sockaddr *) &s_in, sizeof(s_in)) != 0) {
socket_error("bind");
abort();
}
}
if (IN6_IS_ADDR_MULTICAST(&(s->addr6))) {
unsigned int loop = 1;
struct ipv6_mreq imr;
imr.ipv6mr_multiaddr = s->addr6;
imr.ipv6mr_interface = 0;
if (SETSOCKOPT(s->fd, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP, (char *) &imr, sizeof(struct ipv6_mreq)) != 0) {
socket_error("setsockopt IPV6_ADD_MEMBERSHIP");
abort();
}
if (SETSOCKOPT(s->fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, (char *) &loop, sizeof(loop)) != 0) {
socket_error("setsockopt IPV6_MULTICAST_LOOP");
abort();
}
if (SETSOCKOPT(s->fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, (char *) &ttl, sizeof(ttl)) != 0) {
socket_error("setsockopt IPV6_MULTICAST_HOPS");
abort();
}
}
assert(s != NULL);
return s;
#else
UNUSED(addr);
UNUSED(rx_port);
UNUSED(tx_port);
UNUSED(ttl);
return NULL;
#endif
}
static int udp_send6(socket_udp *s, char *buffer, int buflen)
{
#ifdef HAVE_IPv6
struct sockaddr_in6 s_in;
int ret;
assert(s != NULL);
assert(s->mode == IPv6);
assert(buffer != NULL);
assert(buflen > 0);
s_in.sin6_family = AF_INET6;
s_in.sin6_addr = s->addr6;
s_in.sin6_port = htons(s->tx_port);
if ((ret = sendto(s->fd, buffer, buflen, 0, (struct sockaddr *) &s_in, sizeof(s_in))) < 0) {
socket_error("udp_send6");
}
return ret;
#else
UNUSED(s);
UNUSED(buffer);
UNUSED(buflen);
return -1;
#endif
}
/*****************************************************************************/
/* Generic functions, which call the appropriate protocol specific routines. */
/*****************************************************************************/
socket_udp *udp_init(char *addr, u_int16 rx_port, u_int16 tx_port, int ttl)
{
socket_udp *res;
if (strchr(addr, ':') == NULL) {
res = udp_init4(addr, rx_port, tx_port, ttl);
} else {
res = udp_init6(addr, rx_port, tx_port, ttl);
}
return res;
}
int udp_send(socket_udp *s, char *buffer, int buflen)
{
switch (s->mode) {
case IPv4 : return udp_send4(s, buffer, buflen);
case IPv6 : return udp_send6(s, buffer, buflen);
default : abort();
}
return -1;
}
int udp_recv(socket_udp *s, char *buffer, int buflen)
{
/* Reads data into the buffer, returning the number of bytes read. */
/* If no data is available, this returns the value zero immediately. */
/* Note: since we don't care about the source address of the packet */
/* we receive, this function becomes protocol independent. */
int len;
assert(buffer != NULL);
assert(buflen > 0);
len = recvfrom(s->fd, buffer, buflen, 0, 0, 0);
if (len > 0) {
return len;
}
socket_error("recvfrom");
return 0;
}
static fd_set rfd;
static fd_t max_fd;
void udp_fd_zero(void)
{
FD_ZERO(&rfd);
max_fd = 0;
}
void udp_fd_set(socket_udp *s)
{
FD_SET(s->fd, &rfd);
if (s->fd > (fd_t)max_fd) {
max_fd = s->fd;
}
}
int udp_fd_isset(socket_udp *s)
{
return FD_ISSET(s->fd, &rfd);
}
int udp_select(struct timeval *timeout)
{
return select(max_fd + 1, &rfd, NULL, NULL, timeout);
}
static char *udp_host_addr4(void)
{
char *hname;
struct hostent *hent;
struct in_addr iaddr;
hname = (char *) xmalloc(MAXHOSTNAMELEN);
if (gethostname(hname, MAXHOSTNAMELEN) != 0) {
debug_msg("Cannot get hostname!");
abort();
}
hent = gethostbyname(hname);
assert(hent->h_addrtype == AF_INET);
memcpy(&iaddr.s_addr, hent->h_addr, sizeof(iaddr.s_addr));
strcpy(hname, inet_ntoa(iaddr));
return hname;
}
#ifdef HAVE_IPv6
static char *udp_host_addr6(void)
{
char *hname;
struct hostent *hent;
#ifndef WIN32
int error_num;
#endif
hname = (char *) xmalloc(MAXHOSTNAMELEN);
if (gethostname(hname, MAXHOSTNAMELEN) != 0) {
debug_msg("Cannot get hostname!");
abort();
}
debug_msg("%s\n", hname);
#ifdef WIN32
hent = getnodebyname(hname, AF_INET6, AI_DEFAULT);
#else
hent = getipnodebyname(hname, AF_INET6, AI_DEFAULT, &error_num);
if (hent == NULL) {
switch (error_num) {
case HOST_NOT_FOUND:
debug_msg("host not found\n");
break;
case NO_ADDRESS:
debug_msg("no address\n");
break;
case NO_RECOVERY:
debug_msg("no recovery\n");
break;
case TRY_AGAIN:
debug_msg("try again\n");
break;
default:
debug_msg("unknown error\n");
break;
}
abort();
}
#endif
assert(hent->h_addrtype == AF_INET6);
#ifdef WIN32
hname = xstrdup(inet6_ntoa((const struct in6_addr *) hent->h_addr));
#else
if (inet_ntop(AF_INET6, hent->h_addr, hname, MAXHOSTNAMELEN) == NULL) {
abort();
}
#endif
return hname;
}
#endif /* HAVE_IPv6 */
char *udp_host_addr(socket_udp *s)
{
switch (s->mode) {
case IPv4 : return udp_host_addr4();
#ifdef HAVE_IPv6
case IPv6 : return udp_host_addr6();
#endif /* HAVE_IPv6 */
default : abort();
}
return NULL;
}
|