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
|
/*
* This file is part of PowerDNS or dnsdist.
* Copyright -- PowerDNS.COM B.V. and its contributors
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* In addition, for the avoidance of any doubt, permission is granted to
* link this program with OpenSSL and to (re)distribute the binaries
* produced as the result of such linking.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "iputils.hh"
#include <sys/socket.h>
#include <boost/format.hpp>
#if HAVE_GETIFADDRS
#include <ifaddrs.h>
#endif
/** these functions provide a very lightweight wrapper to the Berkeley sockets API. Errors -> exceptions! */
static void RuntimeError(std::string&& error)
{
throw runtime_error(std::move(error));
}
static void NetworkErr(std::string&& error)
{
throw NetworkError(std::move(error));
}
int SSocket(int family, int type, int flags)
{
int ret = socket(family, type, flags);
if (ret < 0) {
RuntimeError("creating socket of type " + std::to_string(family) + ": " + stringerror());
}
return ret;
}
int SConnect(int sockfd, const ComboAddress& remote)
{
int ret = connect(sockfd, reinterpret_cast<const struct sockaddr*>(&remote), remote.getSocklen());
if (ret < 0) {
int savederrno = errno;
RuntimeError("connecting socket to " + remote.toStringWithPort() + ": " + stringerror(savederrno));
}
return ret;
}
int SConnectWithTimeout(int sockfd, const ComboAddress& remote, const struct timeval& timeout)
{
int ret = connect(sockfd, reinterpret_cast<const struct sockaddr*>(&remote), remote.getSocklen());
if(ret < 0) {
int savederrno = errno;
if (savederrno == EINPROGRESS) {
if (timeout <= timeval{0,0}) {
return savederrno;
}
/* we wait until the connection has been established */
bool error = false;
bool disconnected = false;
int res = waitForRWData(sockfd, false, timeout.tv_sec, timeout.tv_usec, &error, &disconnected);
if (res == 1) {
if (error) {
savederrno = 0;
socklen_t errlen = sizeof(savederrno);
if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, (void *)&savederrno, &errlen) == 0) {
NetworkErr("connecting to " + remote.toStringWithPort() + " failed: " + stringerror(savederrno));
}
else {
NetworkErr("connecting to " + remote.toStringWithPort() + " failed");
}
}
if (disconnected) {
NetworkErr(remote.toStringWithPort() + " closed the connection");
}
return 0;
}
else if (res == 0) {
NetworkErr("timeout while connecting to " + remote.toStringWithPort());
} else if (res < 0) {
savederrno = errno;
NetworkErr("waiting to connect to " + remote.toStringWithPort() + ": " + stringerror(savederrno));
}
}
else {
NetworkErr("connecting to " + remote.toStringWithPort() + ": " + stringerror(savederrno));
}
}
return 0;
}
int SBind(int sockfd, const ComboAddress& local)
{
int ret = bind(sockfd, (struct sockaddr*)&local, local.getSocklen());
if (ret < 0) {
int savederrno = errno;
RuntimeError("binding socket to " + local.toStringWithPort() + ": " + stringerror(savederrno));
}
return ret;
}
int SAccept(int sockfd, ComboAddress& remote)
{
socklen_t remlen = remote.getSocklen();
int ret = accept(sockfd, (struct sockaddr*)&remote, &remlen);
if (ret < 0) {
RuntimeError("accepting new connection on socket: " + stringerror());
}
return ret;
}
int SListen(int sockfd, int limit)
{
int ret = listen(sockfd, limit);
if (ret < 0) {
RuntimeError("setting socket to listen: " + stringerror());
}
return ret;
}
int SSetsockopt(int sockfd, int level, int opname, int value)
{
int ret = setsockopt(sockfd, level, opname, &value, sizeof(value));
if (ret < 0) {
RuntimeError("setsockopt for level " + std::to_string(level) + " and opname " + std::to_string(opname) + " to " + std::to_string(value) + " failed: " + stringerror());
}
return ret;
}
void setSocketIgnorePMTU(int sockfd, int family)
{
if (family == AF_INET) {
#if defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DONT)
#ifdef IP_PMTUDISC_OMIT
/* Linux 3.15+ has IP_PMTUDISC_OMIT, which discards PMTU information to prevent
poisoning, but still allows fragmentation if the packet size exceeds the
outgoing interface MTU, which is good.
*/
try {
SSetsockopt(sockfd, IPPROTO_IP, IP_MTU_DISCOVER, IP_PMTUDISC_OMIT);
return;
}
catch(const std::exception& e) {
/* failed, let's try IP_PMTUDISC_DONT instead */
}
#endif /* IP_PMTUDISC_OMIT */
/* IP_PMTUDISC_DONT disables Path MTU discovery */
SSetsockopt(sockfd, IPPROTO_IP, IP_MTU_DISCOVER, IP_PMTUDISC_DONT);
#endif /* defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DONT) */
}
else {
#if defined(IPV6_MTU_DISCOVER) && defined(IPV6_PMTUDISC_DONT)
#ifdef IPV6_PMTUDISC_OMIT
/* Linux 3.15+ has IPV6_PMTUDISC_OMIT, which discards PMTU information to prevent
poisoning, but still allows fragmentation if the packet size exceeds the
outgoing interface MTU, which is good.
*/
try {
SSetsockopt(sockfd, IPPROTO_IPV6, IPV6_MTU_DISCOVER, IPV6_PMTUDISC_OMIT);
return;
}
catch(const std::exception& e) {
/* failed, let's try IP_PMTUDISC_DONT instead */
}
#endif /* IPV6_PMTUDISC_OMIT */
/* IPV6_PMTUDISC_DONT disables Path MTU discovery */
SSetsockopt(sockfd, IPPROTO_IPV6, IPV6_MTU_DISCOVER, IPV6_PMTUDISC_DONT);
#endif /* defined(IPV6_MTU_DISCOVER) && defined(IPV6_PMTUDISC_DONT) */
}
}
bool setReusePort(int sockfd)
{
#if defined(SO_REUSEPORT_LB)
try {
SSetsockopt(sockfd, SOL_SOCKET, SO_REUSEPORT_LB, 1);
return true;
}
catch (const std::exception& e) {
return false;
}
#elif defined(SO_REUSEPORT)
try {
SSetsockopt(sockfd, SOL_SOCKET, SO_REUSEPORT, 1);
return true;
}
catch (const std::exception& e) {
return false;
}
#endif
return false;
}
bool HarvestTimestamp(struct msghdr* msgh, struct timeval* tv)
{
#ifdef SO_TIMESTAMP
struct cmsghdr *cmsg;
for (cmsg = CMSG_FIRSTHDR(msgh); cmsg != nullptr; cmsg = CMSG_NXTHDR(msgh,cmsg)) {
if ((cmsg->cmsg_level == SOL_SOCKET) && (cmsg->cmsg_type == SO_TIMESTAMP || cmsg->cmsg_type == SCM_TIMESTAMP) &&
CMSG_LEN(sizeof(*tv)) == cmsg->cmsg_len) {
memcpy(tv, CMSG_DATA(cmsg), sizeof(*tv));
return true;
}
}
#endif
return false;
}
bool HarvestDestinationAddress(const struct msghdr* msgh, ComboAddress* destination)
{
destination->reset();
#ifdef __NetBSD__
struct cmsghdr* cmsg;
#else
const struct cmsghdr* cmsg;
#endif
for (cmsg = CMSG_FIRSTHDR(msgh); cmsg != nullptr; cmsg = CMSG_NXTHDR(const_cast<struct msghdr*>(msgh), const_cast<struct cmsghdr*>(cmsg))) {
#if defined(IP_PKTINFO)
if ((cmsg->cmsg_level == IPPROTO_IP) && (cmsg->cmsg_type == IP_PKTINFO)) {
struct in_pktinfo *i = (struct in_pktinfo *) CMSG_DATA(cmsg);
destination->sin4.sin_addr = i->ipi_addr;
destination->sin4.sin_family = AF_INET;
return true;
}
#elif defined(IP_RECVDSTADDR)
if ((cmsg->cmsg_level == IPPROTO_IP) && (cmsg->cmsg_type == IP_RECVDSTADDR)) {
struct in_addr *i = (struct in_addr *) CMSG_DATA(cmsg);
destination->sin4.sin_addr = *i;
destination->sin4.sin_family = AF_INET;
return true;
}
#endif
if ((cmsg->cmsg_level == IPPROTO_IPV6) && (cmsg->cmsg_type == IPV6_PKTINFO)) {
struct in6_pktinfo *i = (struct in6_pktinfo *) CMSG_DATA(cmsg);
destination->sin6.sin6_addr = i->ipi6_addr;
destination->sin4.sin_family = AF_INET6;
return true;
}
}
return false;
}
bool IsAnyAddress(const ComboAddress& addr)
{
if(addr.sin4.sin_family == AF_INET)
return addr.sin4.sin_addr.s_addr == 0;
else if(addr.sin4.sin_family == AF_INET6)
return !memcmp(&addr.sin6.sin6_addr, &in6addr_any, sizeof(addr.sin6.sin6_addr));
return false;
}
int sendOnNBSocket(int fd, const struct msghdr *msgh)
{
int sendErr = 0;
#ifdef __OpenBSD__
// OpenBSD can and does return EAGAIN on non-blocking datagram sockets
for (int i = 0; i < 10; i++) { // Arbitrary upper bound
if (sendmsg(fd, msgh, 0) != -1) {
sendErr = 0;
break;
}
sendErr = errno;
if (sendErr != EAGAIN) {
break;
}
}
#else
if (sendmsg(fd, msgh, 0) == -1) {
sendErr = errno;
}
#endif
return sendErr;
}
// be careful: when using this for receive purposes, make sure addr->sin4.sin_family is set appropriately so getSocklen works!
// be careful: when using this function for *send* purposes, be sure to set cbufsize to 0!
// be careful: if you don't call addCMsgSrcAddr after fillMSGHdr, make sure to set msg_control to NULL
void fillMSGHdr(struct msghdr* msgh, struct iovec* iov, cmsgbuf_aligned* cbuf, size_t cbufsize, char* data, size_t datalen, ComboAddress* addr)
{
iov->iov_base = data;
iov->iov_len = datalen;
memset(msgh, 0, sizeof(struct msghdr));
msgh->msg_control = cbuf;
msgh->msg_controllen = cbufsize;
msgh->msg_name = addr;
msgh->msg_namelen = addr->getSocklen();
msgh->msg_iov = iov;
msgh->msg_iovlen = 1;
msgh->msg_flags = 0;
}
// warning: various parts of PowerDNS assume 'truncate' will never throw
void ComboAddress::truncate(unsigned int bits) noexcept
{
uint8_t* start;
int len=4;
if(sin4.sin_family==AF_INET) {
if(bits >= 32)
return;
start = (uint8_t*)&sin4.sin_addr.s_addr;
len=4;
}
else {
if(bits >= 128)
return;
start = (uint8_t*)&sin6.sin6_addr.s6_addr;
len=16;
}
auto tozero= len*8 - bits; // if set to 22, this will clear 1 byte, as it should
memset(start + len - tozero/8, 0, tozero/8); // blot out the whole bytes on the right
auto bitsleft=tozero % 8; // 2 bits left to clear
// a b c d, to truncate to 22 bits, we just zeroed 'd' and need to zero 2 bits from c
// so and by '11111100', which is ~((1<<2)-1) = ~3
uint8_t* place = start + len - 1 - tozero/8;
*place &= (~((1<<bitsleft)-1));
}
size_t sendMsgWithOptions(int fd, const char* buffer, size_t len, const ComboAddress* dest, const ComboAddress* local, unsigned int localItf, int flags)
{
struct msghdr msgh;
struct iovec iov;
cmsgbuf_aligned cbuf;
/* Set up iov and msgh structures. */
memset(&msgh, 0, sizeof(struct msghdr));
msgh.msg_control = nullptr;
msgh.msg_controllen = 0;
if (dest) {
msgh.msg_name = reinterpret_cast<void*>(const_cast<ComboAddress*>(dest));
msgh.msg_namelen = dest->getSocklen();
}
else {
msgh.msg_name = nullptr;
msgh.msg_namelen = 0;
}
msgh.msg_flags = 0;
if (localItf != 0 && local) {
addCMsgSrcAddr(&msgh, &cbuf, local, localItf);
}
iov.iov_base = reinterpret_cast<void*>(const_cast<char*>(buffer));
iov.iov_len = len;
msgh.msg_iov = &iov;
msgh.msg_iovlen = 1;
msgh.msg_flags = 0;
size_t sent = 0;
#ifdef MSG_FASTOPEN
bool firstTry = true;
#endif
do {
#ifdef MSG_FASTOPEN
if (flags & MSG_FASTOPEN && firstTry == false) {
flags &= ~MSG_FASTOPEN;
}
#endif /* MSG_FASTOPEN */
ssize_t res = sendmsg(fd, &msgh, flags);
if (res > 0) {
size_t written = static_cast<size_t>(res);
sent += written;
if (sent == len) {
return sent;
}
/* partial write */
#ifdef MSG_FASTOPEN
firstTry = false;
#endif
iov.iov_len -= written;
iov.iov_base = reinterpret_cast<void*>(reinterpret_cast<char*>(iov.iov_base) + written);
}
else if (res == 0) {
return res;
}
else if (res == -1) {
int err = errno;
if (err == EINTR) {
continue;
}
else if (err == EAGAIN || err == EWOULDBLOCK || err == EINPROGRESS || err == ENOTCONN) {
/* EINPROGRESS might happen with non blocking socket,
especially with TCP Fast Open */
return sent;
}
else {
unixDie("failed in sendMsgWithTimeout");
}
}
}
while (true);
return 0;
}
template class NetmaskTree<bool, Netmask>;
/* requires a non-blocking socket.
On Linux, we could use MSG_DONTWAIT on a blocking socket
but this is not portable.
*/
bool isTCPSocketUsable(int sock)
{
int err = 0;
char buf = '\0';
size_t buf_size = sizeof(buf);
do {
ssize_t got = recv(sock, &buf, buf_size, MSG_PEEK);
if (got > 0) {
/* socket is usable, some data is even waiting to be read */
return true;
}
else if (got == 0) {
/* other end has closed the socket */
return false;
}
else {
err = errno;
if (err == EAGAIN || err == EWOULDBLOCK) {
/* socket is usable, no data waiting */
return true;
}
else {
if (err != EINTR) {
/* something is wrong, could be ECONNRESET,
ENOTCONN, EPIPE, but anyway this socket is
not usable. */
return false;
}
}
}
} while (err == EINTR);
return false;
}
/* mission in life: parse four cases
1) [2002::1]:53
2) 1.2.3.4
3) 1.2.3.4:5300
4) 2001::1 no port allowed
*/
ComboAddress parseIPAndPort(const std::string& input, uint16_t port)
{
if (input[0] == '[') { // case 1
auto both = splitField(input.substr(1), ']');
return ComboAddress(both.first, both.second.empty() ? port : pdns::checked_stoi<uint16_t>(both.second.substr(1)));
}
string::size_type count = 0;
for (char c : input) {
if (c == ':') {
count++;
}
if (count > 1) {
break;
}
}
switch (count) {
case 0: // case 2
return ComboAddress(input, port);
case 1: { // case 3
string::size_type cpos = input.rfind(':');
pair<std::string,std::string> both;
both.first = input.substr(0, cpos);
both.second = input.substr(cpos + 1);
auto newport = pdns::checked_stoi<uint16_t>(both.second);
return ComboAddress(both.first, newport);
}
default: // case 4
return ComboAddress(input, port);
}
}
void setSocketBuffer(int fd, int optname, uint32_t size)
{
uint32_t psize = 0;
socklen_t len = sizeof(psize);
if (getsockopt(fd, SOL_SOCKET, optname, &psize, &len) != 0) {
throw std::runtime_error("Unable to retrieve socket buffer size:" + stringerror());
}
if (psize >= size) {
return;
}
if (setsockopt(fd, SOL_SOCKET, optname, &size, sizeof(size)) != 0) {
throw std::runtime_error("Unable to raise socket buffer size to " + std::to_string(size) + ": " + stringerror());
}
}
void setSocketReceiveBuffer(int fd, uint32_t size)
{
setSocketBuffer(fd, SO_RCVBUF, size);
}
void setSocketSendBuffer(int fd, uint32_t size)
{
setSocketBuffer(fd, SO_SNDBUF, size);
}
std::set<std::string> getListOfNetworkInterfaces()
{
std::set<std::string> result;
#if HAVE_GETIFADDRS
struct ifaddrs *ifaddr;
if (getifaddrs(&ifaddr) == -1) {
return result;
}
for (struct ifaddrs *ifa = ifaddr; ifa != nullptr; ifa = ifa->ifa_next) {
if (ifa->ifa_name == nullptr) {
continue;
}
result.insert(ifa->ifa_name);
}
freeifaddrs(ifaddr);
#endif
return result;
}
std::vector<ComboAddress> getListOfAddressesOfNetworkInterface(const std::string& itf)
{
std::vector<ComboAddress> result;
#if HAVE_GETIFADDRS
struct ifaddrs *ifaddr;
if (getifaddrs(&ifaddr) == -1) {
return result;
}
for (struct ifaddrs *ifa = ifaddr; ifa != nullptr; ifa = ifa->ifa_next) {
if (ifa->ifa_name == nullptr || strcmp(ifa->ifa_name, itf.c_str()) != 0) {
continue;
}
if (ifa->ifa_addr == nullptr || (ifa->ifa_addr->sa_family != AF_INET && ifa->ifa_addr->sa_family != AF_INET6)) {
continue;
}
ComboAddress addr;
try {
addr.setSockaddr(ifa->ifa_addr, ifa->ifa_addr->sa_family == AF_INET ? sizeof(struct sockaddr_in) : sizeof(struct sockaddr_in6));
}
catch (...) {
continue;
}
result.push_back(addr);
}
freeifaddrs(ifaddr);
#endif
return result;
}
|