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
|
/* Copyright © 2012 Brandon L Black <blblack@gmail.com>
*
* This file is part of gdnsd.
*
* gdnsd 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 3 of the License, or
* (at your option) any later version.
*
* gdnsd 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 gdnsd. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <config.h>
#include <gdnsd/net.h>
#include <gdnsd/log.h>
#include <gdnsd/alloc.h>
#include <stdio.h>
#include <stddef.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <netinet/in_systm.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <string.h>
#include <unistd.h>
#include <string.h>
/* network utils */
/******************************************************************************
* This block handles the mismatch of get/set sockopt values for
* TCP_DEFER_ACCEPT on Linux. The algorithms and constants here are from the
* kernel, but are pretty stable.
*****************************************************************************/
#ifdef __linux__
#define LINUX_TCP_RTO_MAX 120
#define LINUX_TCP_TIMEOUT_INIT 1
F_CONST
static uint8_t secs_to_retrans(int seconds)
{
uint8_t res = 0;
if (seconds > 0) {
int timeout = LINUX_TCP_TIMEOUT_INIT;
int period = timeout;
res = 1;
while (seconds > period && res < 255) {
res++;
timeout <<= 1;
if (timeout > LINUX_TCP_RTO_MAX)
timeout = LINUX_TCP_RTO_MAX;
period += timeout;
}
}
return res;
}
F_CONST
static int retrans_to_secs(uint8_t retrans)
{
int period = 0;
if (retrans > 0) {
int timeout = LINUX_TCP_TIMEOUT_INIT;
period = timeout;
while (--retrans) {
timeout <<= 1;
if (timeout > LINUX_TCP_RTO_MAX)
timeout = LINUX_TCP_RTO_MAX;
period += timeout;
}
}
return period;
}
F_CONST
static int tcpdefaccept_xlate_secs(int seconds)
{
return retrans_to_secs(secs_to_retrans(seconds));
}
#endif
/******************************************************************************
* End block of Linux TCP_DEFER_ACCEPT hackery
*****************************************************************************/
int gdnsd_sockopt_idem_int_(gso_args args)
{
int current = 0;
socklen_t s_current = sizeof(current);
int compare = args.wantval;
#ifdef __linux__
// Linux hack: buffers are reported back at 2x configured value
if (args.level == SOL_SOCKET && (args.optname == SO_RCVBUF || args.optname == SO_SNDBUF))
compare *= 2;
// Linux hack: defer accept timeout is translated from seconds to
// retransmits on set, then back to seconds on get, which rounds it up
// based on tcp retransmit timing algorithm.
if (args.level == SOL_TCP && args.optname == TCP_DEFER_ACCEPT)
compare = tcpdefaccept_xlate_secs(compare);
#endif
if (getsockopt(args.sock, args.level, args.optname, ¤t, &s_current)) {
if (args.fatal)
log_fatal("getsockopt(%s:%s, %s, %s) failed: %s", args.proto_str, logf_anysin(args.sa), args.level_str, args.optname_str, logf_errno());
else
log_warn("getsockopt(%s:%s, %s, %s) failed: %s", args.proto_str, logf_anysin(args.sa), args.level_str, args.optname_str, logf_errno());
return -1;
} else {
bool ok;
if (args.is_bool)
ok = (!current == !compare);
else
ok = (current == compare);
if (!ok && setsockopt(args.sock, args.level, args.optname, &args.wantval, sizeof(args.wantval))) {
if (args.fatal)
log_fatal("setsockopt(%s:%s, %s, %s, %i) failed: %s", args.proto_str, logf_anysin(args.sa), args.level_str, args.optname_str, args.wantval, logf_errno());
else
log_warn("setsockopt(%s:%s, %s, %s, %i) failed: %s", args.proto_str, logf_anysin(args.sa), args.level_str, args.optname_str, args.wantval, logf_errno());
return -1;
}
}
return 0;
}
socklen_t gdnsd_sun_set_path(struct sockaddr_un* a, const char* path)
{
memset(a, 0, sizeof(*a));
a->sun_family = AF_UNIX;
const unsigned plen = strlen(path) + 1;
if (plen > sizeof(a->sun_path))
log_fatal("Implementation bug/limit: desired control socket path '%s' exceeds sun_path length of %zu", path, sizeof(a->sun_path));
memcpy(a->sun_path, path, plen);
return sizeof(struct sockaddr_un);
}
int gdnsd_anysin_getaddrinfo(const char* addr_txt, const char* port_txt, gdnsd_anysin_t* result)
{
struct addrinfo* ainfo = NULL;
const struct addrinfo hints = {
.ai_flags = AI_NUMERICHOST | AI_NUMERICSERV,
.ai_family = AF_UNSPEC,
.ai_socktype = 0,
.ai_protocol = 0,
.ai_addrlen = 0,
.ai_addr = NULL,
.ai_canonname = NULL,
.ai_next = NULL
};
const int addr_err = getaddrinfo(addr_txt, port_txt, &hints, &ainfo);
if (!addr_err) {
// Zero-out the result in case of strange earlier contents,
// and also to guarantee a zero port if port_txt is NULL
// (getaddrinfo() itself docs that it may be uninitialized)
memset(result, 0, sizeof(*result));
memcpy(&result->sa, ainfo->ai_addr, ainfo->ai_addrlen);
result->len = ainfo->ai_addrlen;
}
if (ainfo)
freeaddrinfo(ainfo);
return addr_err;
}
static const char invalid_addr[] = "!!invalid!!";
int gdnsd_anysin_fromstr(const char* addr_port_text, const unsigned def_port, gdnsd_anysin_t* result)
{
char* apcopy = xstrdup(addr_port_text);
const char* addr = apcopy;
char* port = NULL;
if (addr[0] == '[') {
char* end_brace = strchr(addr, ']');
if (end_brace) {
addr++; // set address start past initial '['
*end_brace = '\0'; // terminate address part
if (end_brace[1] == ':' && end_brace[2])
port = &end_brace[2]; // set port
}
} else {
port = strchr(addr, ':'); // set port
if (port) {
// If two colons present in addr_port_text without [],
// assume IPv6 with no port info
const char* check_v6 = strchr(port + 1, ':');
if (check_v6) {
port = NULL;
} else if (port == addr) {
// If the user's string was ":12345", that's illegal
// by our definition, but some getaddrinfo() implementations
// will interpret the zero-length NUL-terminated address
// string we would otherwise provide as "::1", don't ask
// me why. So make it *really* invalid to trigger an
// an error later in getaddrinfo()
addr = invalid_addr;
} else {
// Else assume IPv4:port
*port++ = '\0'; // terminate address part
if (!*port)
port = NULL; // makes default decision easier
}
}
}
int addr_err = gdnsd_anysin_getaddrinfo(addr, port, result);
// set default port
if (!addr_err && !port && def_port) {
if (result->sa.sa_family == AF_INET) {
result->sin4.sin_port = htons(def_port);
} else {
gdnsd_assert(result->sa.sa_family == AF_INET6);
result->sin6.sin6_port = htons(def_port);
}
}
free(apcopy);
return addr_err;
}
bool gdnsd_anysin_is_anyaddr(const gdnsd_anysin_t* sa)
{
gdnsd_assert(sa->sa.sa_family == AF_INET || sa->sa.sa_family == AF_INET6);
if (sa->sa.sa_family == AF_INET6) {
if (!memcmp(&sa->sin6.sin6_addr.s6_addr, &in6addr_any.s6_addr, sizeof(in6addr_any.s6_addr)))
return true;
} else if (sa->sin4.sin_addr.s_addr == INADDR_ANY) {
return true;
}
return false;
}
static const char generic_nullstr[] = "(null)";
int gdnsd_anysin2str(const gdnsd_anysin_t* sa, char* buf)
{
int name_err = 0;
buf[0] = 0;
char hostbuf[INET6_ADDRSTRLEN + 32];
char servbuf[6];
hostbuf[0] = servbuf[0] = 0; // JIC getnameinfo leaves them un-init
if (sa) {
name_err = getnameinfo(&sa->sa, sa->len, hostbuf, INET6_ADDRSTRLEN + 32, servbuf, 6, NI_NUMERICHOST | NI_NUMERICSERV);
if (!name_err) {
if (sa->sa.sa_family == AF_INET6)
snprintf(buf, GDNSD_ANYSIN_MAXSTR, "[%s]:%s", hostbuf, servbuf);
else
snprintf(buf, GDNSD_ANYSIN_MAXSTR, "%s:%s", hostbuf, servbuf);
}
} else {
memcpy(buf, generic_nullstr, sizeof(generic_nullstr));
}
return name_err;
}
const char* gdnsd_logf_anysin(const gdnsd_anysin_t* sa)
{
char tmpbuf[GDNSD_ANYSIN_MAXSTR];
int name_err = gdnsd_anysin2str(sa, tmpbuf);
if (name_err)
return gai_strerror(name_err); // This might be confusing...
const unsigned copylen = strlen(tmpbuf) + 1;
char* buf = gdnsd_fmtbuf_alloc(copylen);
memcpy(buf, tmpbuf, copylen);
return buf;
}
int gdnsd_anysin2str_noport(const gdnsd_anysin_t* sa, char* buf)
{
int name_err = 0;
buf[0] = 0;
if (sa)
name_err = getnameinfo(&sa->sa, sa->len, buf, GDNSD_ANYSIN_MAXSTR, NULL, 0, NI_NUMERICHOST);
else
memcpy(buf, generic_nullstr, sizeof(generic_nullstr));
return name_err;
}
const char* gdnsd_logf_anysin_noport(const gdnsd_anysin_t* sa)
{
char tmpbuf[GDNSD_ANYSIN_MAXSTR];
int name_err = gdnsd_anysin2str_noport(sa, tmpbuf);
if (name_err)
return gai_strerror(name_err); // This might be confusing...
const unsigned copylen = strlen(tmpbuf) + 1;
char* buf = gdnsd_fmtbuf_alloc(copylen);
memcpy(buf, tmpbuf, copylen);
return buf;
}
int gdnsd_anysin_cmp(const gdnsd_anysin_t* a, const gdnsd_anysin_t* b)
{
if (a->len == b->len && a->sa.sa_family == b->sa.sa_family) {
if (a->sa.sa_family == AF_INET
&& a->sin4.sin_addr.s_addr == b->sin4.sin_addr.s_addr
&& a->sin4.sin_port == b->sin4.sin_port)
return 0;
if (a->sa.sa_family == AF_INET6
&& !memcmp(a->sin6.sin6_addr.s6_addr, b->sin6.sin6_addr.s6_addr, 16U)
&& a->sin6.sin6_port == b->sin6.sin6_port)
return 0;
}
return 1;
}
|