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 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
|
/*
Copyright (c) 2009 Frank Lahm <franklahm@gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/
/*!
* @file
* Netatalk utility functions
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#include <atalk/standards.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/uio.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/time.h>
#include <time.h>
#include <sys/ioctl.h>
#include <atalk/logger.h>
#include <atalk/util.h>
static char ipv4mapprefix[] = {0,0,0,0,0,0,0,0,0,0,0xff,0xff};
/*!
* @brief set or unset non-blocking IO on a fd
*
* @param fd (r) File descriptor
* @param cmd (r) 0: disable non-blocking IO, ie block\n
* <>0: enable non-blocking IO
*
* @returns 0 on success, -1 on failure
*/
int setnonblock(int fd, int cmd)
{
int ofdflags;
int fdflags;
if ((fdflags = ofdflags = fcntl(fd, F_GETFL, 0)) == -1)
return -1;
if (cmd)
fdflags |= O_NONBLOCK;
else
fdflags &= ~O_NONBLOCK;
if (fdflags != ofdflags)
if (fcntl(fd, F_SETFL, fdflags) == -1)
return -1;
return 0;
}
/*!
* non-blocking drop-in replacement for read with timeout using select
*
* @param socket (r) socket, if in blocking mode, pass "setnonblocking" arg as 1
* @param data (rw) buffer for the read data
* @param lenght (r) how many bytes to read
* @param setnonblocking (r) when non-zero this func will enable and disable non blocking
* io mode for the socket
* @param timeout (r) number of seconds to try reading
*
* @returns number of bytes actually read or -1 on timeout or error
*/
ssize_t readt(int socket, void *data, const size_t length, int setnonblocking, int timeout)
{
size_t stored = 0;
ssize_t len = 0;
struct timeval now, end, tv;
fd_set rfds;
int ret;
FD_ZERO(&rfds);
if (setnonblocking) {
if (setnonblock(socket, 1) != 0)
return -1;
}
/* Calculate end time */
(void)gettimeofday(&now, NULL);
end = now;
end.tv_sec += timeout;
while (stored < length) {
len = read(socket, (char *) data + stored, length - stored);
if (len == -1) {
switch (errno) {
case EINTR:
continue;
case EAGAIN:
FD_SET(socket, &rfds);
tv.tv_usec = 0;
tv.tv_sec = timeout;
while ((ret = select(socket + 1, &rfds, NULL, NULL, &tv)) < 1) {
switch (ret) {
case 0:
LOG(log_debug, logtype_afpd, "select timeout %d s", timeout);
errno = EAGAIN;
goto exit;
default: /* -1 */
switch (errno) {
case EINTR:
(void)gettimeofday(&now, NULL);
if (now.tv_sec > end.tv_sec
||
(now.tv_sec == end.tv_sec && now.tv_usec >= end.tv_usec)) {
LOG(log_debug, logtype_afpd, "select timeout %d s", timeout);
goto exit;
}
if (now.tv_usec > end.tv_usec) {
tv.tv_usec = 1000000 + end.tv_usec - now.tv_usec;
tv.tv_sec = end.tv_sec - now.tv_sec - 1;
} else {
tv.tv_usec = end.tv_usec - now.tv_usec;
tv.tv_sec = end.tv_sec - now.tv_sec;
}
FD_SET(socket, &rfds);
continue;
case EBADF:
/* possibly entered disconnected state, don't spam log here */
LOG(log_debug, logtype_afpd, "select: %s", strerror(errno));
stored = -1;
goto exit;
default:
LOG(log_error, logtype_afpd, "select: %s", strerror(errno));
stored = -1;
goto exit;
}
}
} /* while (select) */
continue;
} /* switch (errno) */
LOG(log_error, logtype_afpd, "read: %s", strerror(errno));
stored = -1;
goto exit;
} /* (len == -1) */
else if (len > 0)
stored += len;
else
break;
} /* while (stored < length) */
exit:
if (setnonblocking) {
if (setnonblock(socket, 0) != 0)
return -1;
}
if (len == -1 && stored == 0)
/* last read or select got an error and we haven't got yet anything => return -1*/
return -1;
return stored;
}
/*!
* non-blocking drop-in replacement for read with timeout using select
*
* @param socket (r) socket, if in blocking mode, pass "setnonblocking" arg as 1
* @param data (rw) buffer for the read data
* @param lenght (r) how many bytes to read
* @param setnonblocking (r) when non-zero this func will enable and disable non blocking
* io mode for the socket
* @param timeout (r) number of seconds to try reading
*
* @returns number of bytes actually read or -1 on fatal error
*/
ssize_t writet(int socket, void *data, const size_t length, int setnonblocking, int timeout)
{
size_t stored = 0;
ssize_t len = 0;
struct timeval now, end, tv;
fd_set rfds;
int ret;
if (setnonblocking) {
if (setnonblock(socket, 1) != 0)
return -1;
}
/* Calculate end time */
(void)gettimeofday(&now, NULL);
end = now;
end.tv_sec += timeout;
while (stored < length) {
len = write(socket, (char *) data + stored, length - stored);
if (len == -1) {
switch (errno) {
case EINTR:
continue;
case EAGAIN:
FD_ZERO(&rfds);
FD_SET(socket, &rfds);
tv.tv_usec = 0;
tv.tv_sec = timeout;
while ((ret = select(socket + 1, &rfds, NULL, NULL, &tv)) < 1) {
switch (ret) {
case 0:
LOG(log_warning, logtype_afpd, "select timeout %d s", timeout);
goto exit;
default: /* -1 */
if (errno == EINTR) {
(void)gettimeofday(&now, NULL);
if (now.tv_sec >= end.tv_sec && now.tv_usec >= end.tv_usec) {
LOG(log_warning, logtype_afpd, "select timeout %d s", timeout);
goto exit;
}
if (now.tv_usec > end.tv_usec) {
tv.tv_usec = 1000000 + end.tv_usec - now.tv_usec;
tv.tv_sec = end.tv_sec - now.tv_sec - 1;
} else {
tv.tv_usec = end.tv_usec - now.tv_usec;
tv.tv_sec = end.tv_sec - now.tv_sec;
}
FD_ZERO(&rfds);
FD_SET(socket, &rfds);
continue;
}
LOG(log_error, logtype_afpd, "select: %s", strerror(errno));
stored = -1;
goto exit;
}
} /* while (select) */
continue;
} /* switch (errno) */
LOG(log_error, logtype_afpd, "read: %s", strerror(errno));
stored = -1;
goto exit;
} /* (len == -1) */
else if (len > 0)
stored += len;
else
break;
} /* while (stored < length) */
exit:
if (setnonblocking) {
if (setnonblock(socket, 0) != 0)
return -1;
}
if (len == -1 && stored == 0)
/* last read or select got an error and we haven't got yet anything => return -1*/
return -1;
return stored;
}
/*!
* @brief convert an IPv4 or IPv6 address to a static string using inet_ntop
*
* IPv6 mapped IPv4 addresses are returned as IPv4 addreses eg
* ::ffff:10.0.0.0 is returned as "10.0.0.0".
*
* @param sa (r) pointer to an struct sockaddr
*
* @returns pointer to a static string cotaining the converted address as string.\n
* On error pointers to "0.0.0.0" or "::0" are returned.
*/
const char *getip_string(const struct sockaddr *sa)
{
static char ip4[INET_ADDRSTRLEN];
static char ip6[INET6_ADDRSTRLEN];
switch (sa->sa_family) {
case AF_INET: {
const struct sockaddr_in *sai4 = (const struct sockaddr_in *)sa;
if ((inet_ntop(AF_INET, &(sai4->sin_addr), ip4, INET_ADDRSTRLEN)) == NULL)
return "0.0.0.0";
return ip4;
}
case AF_INET6: {
const struct sockaddr_in6 *sai6 = (const struct sockaddr_in6 *)sa;
if ((inet_ntop(AF_INET6, &(sai6->sin6_addr), ip6, INET6_ADDRSTRLEN)) == NULL)
return "::0";
/* Deal with IPv6 mapped IPv4 addresses*/
if ((memcmp(sai6->sin6_addr.s6_addr, ipv4mapprefix, sizeof(ipv4mapprefix))) == 0)
return (strrchr(ip6, ':') + 1);
return ip6;
}
default:
return "getip_string ERROR";
}
/* We never get here */
}
/*!
* @brief return port number from struct sockaddr
*
* @param sa (r) pointer to an struct sockaddr
*
* @returns port as unsigned int
*/
unsigned int getip_port(const struct sockaddr *sa)
{
if (sa->sa_family == AF_INET) { /* IPv4 */
const struct sockaddr_in *sai4 = (const struct sockaddr_in *)sa;
return ntohs(sai4->sin_port);
} else { /* IPv6 */
const struct sockaddr_in6 *sai6 = (const struct sockaddr_in6 *)sa;
return ntohs(sai6->sin6_port);
}
/* We never get here */
}
/*!
* @brief apply netmask to IP (v4 or v6)
*
* Modifies IP address in sa->sin[6]_addr-s[6]_addr. The caller is responsible
* for passing a value for mask that is sensible to the passed address,
* eg 0 <= mask <= 32 for IPv4 or 0<= mask <= 128 for IPv6. mask > 32 for
* IPv4 is treated as mask = 32, mask > 128 is set to 128 for IPv6.
*
* @param ai (rw) pointer to an struct sockaddr
* @parma mask (r) number of maskbits
*/
void apply_ip_mask(struct sockaddr *sa, int mask)
{
switch (sa->sa_family) {
case AF_INET: {
if (mask >= 32)
return;
struct sockaddr_in *si = (struct sockaddr_in *)sa;
uint32_t nmask = mask ? ~((1 << (32 - mask)) - 1) : 0;
si->sin_addr.s_addr &= htonl(nmask);
break;
}
case AF_INET6: {
if (mask >= 128)
return;
int i, maskbytes, maskbits;
struct sockaddr_in6 *si6 = (struct sockaddr_in6 *)sa;
/* Deal with IPv6 mapped IPv4 addresses*/
if ((memcmp(si6->sin6_addr.s6_addr, ipv4mapprefix, sizeof(ipv4mapprefix))) == 0) {
mask += 96;
if (mask >= 128)
return;
}
maskbytes = (128 - mask) / 8; /* maskbytes really are those that will be 0'ed */
maskbits = mask % 8;
for (i = maskbytes - 1; i >= 0; i--)
si6->sin6_addr.s6_addr[15 - i] = 0;
if (maskbits)
si6->sin6_addr.s6_addr[15 - maskbytes] &= ~((1 << (8 - maskbits)) - 1);
break;
}
default:
break;
}
}
/*!
* @brief compare IP addresses for equality
*
* @param sa1 (r) pointer to an struct sockaddr
* @param sa2 (r) pointer to an struct sockaddr
*
* @returns Addresses are converted to strings and compared with strcmp and
* the result of strcmp is returned.
*
* @note IPv6 mapped IPv4 addresses are treated as IPv4 addresses.
*/
int compare_ip(const struct sockaddr *sa1, const struct sockaddr *sa2)
{
int ret;
char *ip1;
const char *ip2;
ip1 = strdup(getip_string(sa1));
ip2 = getip_string(sa2);
ret = strcmp(ip1, ip2);
free(ip1);
return ret;
}
/*!
* Add a fd to a dynamic pollfd array that is allocated and grown as needed
*
* This uses an additional array of struct polldata which stores type information
* (enum fdtype) and a pointer to anciliary user data.
*
* 1. Allocate the arrays with the size of "maxconns" if *fdsetp is NULL.
* 2. Fill in both array elements and increase count of used elements
*
* @param maxconns (r) maximum number of connections, determines array size
* @param fdsetp (rw) pointer to callers pointer to the pollfd array
* @param polldatap (rw) pointer to callers pointer to the polldata array
* @param fdset_usedp (rw) pointer to an int with the number of used elements
* @param fdset_sizep (rw) pointer to an int which stores the array sizes
* @param fd (r) file descriptor to add to the arrays
* @param fdtype (r) type of fd, currently IPC_FD or LISTEN_FD
* @param data (rw) pointer to data the caller want to associate with an fd
*/
void fdset_add_fd(int maxconns,
struct pollfd **fdsetp,
struct polldata **polldatap,
int *fdset_usedp,
int *fdset_sizep,
int fd,
enum fdtype fdtype,
void *data)
{
struct pollfd *fdset = *fdsetp;
struct polldata *polldata = *polldatap;
int fdset_size = *fdset_sizep;
LOG(log_debug, logtype_default, "fdset_add_fd: adding fd %i in slot %i", fd, *fdset_usedp);
if (fdset == NULL) { /* 1 */
/* Initialize with space for all possibly active fds */
fdset = calloc(maxconns, sizeof(struct pollfd));
if (! fdset)
exit(EXITERR_SYS);
polldata = calloc(maxconns, sizeof(struct polldata));
if (! polldata)
exit(EXITERR_SYS);
fdset_size = maxconns;
*fdset_sizep = fdset_size;
*fdsetp = fdset;
*polldatap = polldata;
LOG(log_debug, logtype_default, "fdset_add_fd: initialized with space for %i conncections",
maxconns);
}
/* 2 */
fdset[*fdset_usedp].fd = fd;
fdset[*fdset_usedp].events = POLLIN;
polldata[*fdset_usedp].fdtype = fdtype;
polldata[*fdset_usedp].data = data;
(*fdset_usedp)++;
}
/*!
* Remove a fd from our pollfd array
*
* 1. Search fd
* 2a Matched last (or only) in the set ? null it and return
* 2b If we remove the last array elemnt, just decrease count
* 3. If found move all following elements down by one
* 4. Decrease count of used elements in array
*
* This currently doesn't shrink the allocated storage of the array.
*
* @param fdsetp (rw) pointer to callers pointer to the pollfd array
* @param polldatap (rw) pointer to callers pointer to the polldata array
* @param fdset_usedp (rw) pointer to an int with the number of used elements
* @param fdset_sizep (rw) pointer to an int which stores the array sizes
* @param fd (r) file descriptor to remove from the arrays
*/
void fdset_del_fd(struct pollfd **fdsetp,
struct polldata **polldatap,
int *fdset_usedp,
int *fdset_sizep _U_,
int fd)
{
struct pollfd *fdset = *fdsetp;
struct polldata *polldata = *polldatap;
if (*fdset_usedp < 1)
return;
for (int i = 0; i < *fdset_usedp; i++) {
if (fdset[i].fd == fd) { /* 1 */
if ((i + 1) == *fdset_usedp) { /* 2a */
fdset[i].fd = -1;
memset(&polldata[i], 0, sizeof(struct polldata));
} else if (i < (*fdset_usedp - 1)) { /* 2b */
memmove(&fdset[i],
&fdset[i+1],
(*fdset_usedp - i - 1) * sizeof(struct pollfd)); /* 3 */
memmove(&polldata[i],
&polldata[i+1],
(*fdset_usedp - i - 1) * sizeof(struct polldata)); /* 3 */
}
(*fdset_usedp)--;
break;
}
}
}
/* Length of the space taken up by a padded control message of length len */
#ifndef CMSG_SPACE
#define CMSG_SPACE(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + __CMSG_ALIGN(len))
#endif
/*
* Receive a fd on a suitable socket
* @args fd (r) PF_UNIX socket to receive on
* @args nonblocking (r) 0: fd is in blocking mode - 1: fd is nonblocking, poll for 1 sec
* @returns fd on success, -1 on error
*/
int recv_fd(int fd, int nonblocking)
{
int ret;
struct msghdr msgh;
struct iovec iov[1];
struct cmsghdr *cmsgp = NULL;
char buf[CMSG_SPACE(sizeof(int))];
char dbuf[80];
struct pollfd pollfds[1];
pollfds[0].fd = fd;
pollfds[0].events = POLLIN;
memset(&msgh,0,sizeof(msgh));
memset(buf,0,sizeof(buf));
msgh.msg_name = NULL;
msgh.msg_namelen = 0;
msgh.msg_iov = iov;
msgh.msg_iovlen = 1;
iov[0].iov_base = dbuf;
iov[0].iov_len = sizeof(dbuf);
msgh.msg_control = buf;
msgh.msg_controllen = sizeof(buf);
if (nonblocking) {
do {
ret = poll(pollfds, 1, 2000); /* poll 2 seconds, evtl. multipe times (EINTR) */
} while ( ret == -1 && errno == EINTR );
if (ret != 1)
return -1;
ret = recvmsg(fd, &msgh, 0);
} else {
do {
ret = recvmsg(fd, &msgh, 0);
} while ( ret == -1 && errno == EINTR );
}
if ( ret == -1 ) {
return -1;
}
for ( cmsgp = CMSG_FIRSTHDR(&msgh); cmsgp != NULL; cmsgp = CMSG_NXTHDR(&msgh,cmsgp) ) {
if ( cmsgp->cmsg_level == SOL_SOCKET && cmsgp->cmsg_type == SCM_RIGHTS ) {
return *(int *) CMSG_DATA(cmsgp);
}
}
if ( ret == sizeof (int) )
errno = *(int *)dbuf; /* Rcvd errno */
else
errno = ENOENT; /* Default errno */
return -1;
}
/*
* Send a fd across a suitable socket
*/
int send_fd(int socket, int fd)
{
int ret;
struct msghdr msgh;
struct iovec iov[1];
struct cmsghdr *cmsgp = NULL;
char *buf;
size_t size;
int er=0;
size = CMSG_SPACE(sizeof fd);
buf = malloc(size);
if (!buf) {
LOG(log_error, logtype_cnid, "error in sendmsg: %s", strerror(errno));
return -1;
}
memset(&msgh,0,sizeof (msgh));
memset(buf,0, size);
msgh.msg_name = NULL;
msgh.msg_namelen = 0;
msgh.msg_iov = iov;
msgh.msg_iovlen = 1;
iov[0].iov_base = &er;
iov[0].iov_len = sizeof(er);
msgh.msg_control = buf;
msgh.msg_controllen = size;
cmsgp = CMSG_FIRSTHDR(&msgh);
cmsgp->cmsg_level = SOL_SOCKET;
cmsgp->cmsg_type = SCM_RIGHTS;
cmsgp->cmsg_len = CMSG_LEN(sizeof(fd));
*((int *)CMSG_DATA(cmsgp)) = fd;
msgh.msg_controllen = cmsgp->cmsg_len;
do {
ret = sendmsg(socket,&msgh, 0);
} while ( ret == -1 && errno == EINTR );
if (ret == -1) {
LOG(log_error, logtype_cnid, "error in sendmsg: %s", strerror(errno));
free(buf);
return -1;
}
free(buf);
return 0;
}
|