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
|
/*-
* Copyright (c) 2006 Verdens Gang AS
* Copyright (c) 2006-2010 Varnish Software AS
* All rights reserved.
*
* Author: Dag-Erling Smørgrav <des@des.no>
* Author: Cecilie Fritzvold <cecilihf@linpro.no>
*
* SPDX-License-Identifier: BSD-2-Clause
*
* Redistribution and use in source and binary forms, with or without
* modification, are 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.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS 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 AUTHOR 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.
*/
#include "config.h"
#include <sys/socket.h>
#include <netdb.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "vdef.h"
#include "vas.h"
#include "vsa.h"
#include "vss.h"
/*lint -esym(754, _storage) not ref */
/*
* Take a string provided by the user and break it up into address and
* port parts. The address and port separator may be either a colon or
* a whitespace. Examples of acceptable input include:
*
* "localhost" - "localhost:80" - "localhost 80"
* "127.0.0.1" - "127.0.0.1:80" - "127.0.0.1 80"
* "0.0.0.0" - "0.0.0.0:80" - "0.0.0.0 80"
* "[::1]" - "[::1]:80" - "[::1] 80"
* "[::]" - "[::]:80" - "[::] 80"
* "::1" - "[::1]:80" - "[::1] 80"
*
* See also RFC5952
*/
static const char *
vss_parse(char *str, char **addr, char **port)
{
char *p;
*addr = *port = NULL;
if (str[0] == '[') {
/* IPv6 address of the form [::1]:80 */
*addr = str + 1;
p = strchr(str, ']');
if (p == NULL)
return ("IPv6 address lacks ']'");
*p++ = '\0';
if (*p == '\0')
return (NULL);
if (*p != ' ' && *p != ':')
return ("IPv6 address has wrong port separator");
} else {
/*
* IPv4 address of the form 127.0.0.1:80, IPv6 address
* without port or non-numeric.
*/
*addr = str;
p = strchr(str, ' ');
if (p == NULL)
p = strchr(str, ':');
if (p == NULL)
return (NULL);
if (p[0] == ':' && strchr(&p[1], ':'))
return (NULL);
if (p == str)
*addr = NULL;
}
*p++ = '\0';
*port = p;
return (NULL);
}
static const char *
vss_parse_range(char *str, char **addr, char **port, unsigned long *lo,
unsigned long *hi)
{
const char *errp;
char *end;
unsigned long l, h;
errp = vss_parse(str, addr, port);
if (errp != NULL)
return (errp);
if (*port == NULL || **port == '-')
return (NULL);
l = strtoul(*port, &end, 10);
if (end[0] != '-' || end[1] == '\0')
return (NULL);
if (strchr(end + 1, '-') != NULL)
return (NULL);
h = strtoul(end + 1, &end, 10);
if (end[0] != '\0')
return (NULL);
/* Port range of the form 80-81 */
if (l == 0)
return ("Range start cannot be 0");
if (h < l)
return ("Range start higher than range end");
if (h > 65535)
return ("Range end higher than 65535");
*lo = l;
*hi = h;
return (NULL);
}
static int
vss_resolve(const char *addr, const char *def_port, int family, int socktype,
int flags, struct addrinfo **res, const char **errp)
{
struct addrinfo hints;
char *p, *hp, *pp;
int ret;
AN(addr);
AN(res);
AZ(*res);
AN(errp);
*errp = NULL;
memset(&hints, 0, sizeof hints);
hints.ai_family = family;
hints.ai_socktype = socktype;
hints.ai_flags = flags;
p = strdup(addr);
AN(p);
*errp = vss_parse(p, &hp, &pp);
if (*errp != NULL) {
free(p);
return (-1);
}
if (pp != NULL)
def_port = pp;
ret = getaddrinfo(hp, def_port, &hints, res);
free(p);
if (ret == EAI_SYSTEM)
*errp = VAS_errtxt(errno);
else if (ret != 0)
*errp = gai_strerror(ret);
return (ret);
}
static const struct suckaddr *
vss_alloc_suckaddr(void *dst, const struct addrinfo *ai)
{
AN(ai);
if (dst == NULL)
return (VSA_Malloc(ai->ai_addr, ai->ai_addrlen));
return (VSA_Build(dst, ai->ai_addr, ai->ai_addrlen));
}
/*
* Look up an address, using a default port if provided, and call
* the callback function with the suckaddrs we find.
* If the callback function returns anything but zero, we terminate
* and pass that value.
*/
int
VSS_resolver_socktype(const char *addr, const char *def_port,
vss_resolved_f *func, void *priv, const char **errp, int socktype)
{
struct addrinfo *res0 = NULL, *res;
const struct suckaddr *vsa;
int ret;
AN(addr);
AN(func);
AN(errp);
ret = vss_resolve(addr, def_port, AF_UNSPEC, socktype, AI_PASSIVE,
&res0, errp);
if (ret != 0)
return (-1);
for (res = res0; res != NULL; res = res->ai_next) {
vsa = VSA_Malloc(res->ai_addr, res->ai_addrlen);
if (vsa != NULL) {
ret = func(priv, vsa);
VSA_free(&vsa);
if (ret)
break;
}
}
freeaddrinfo(res0);
return (ret);
}
int
VSS_resolver(const char *addr, const char *def_port, vss_resolved_f *func,
void *priv, const char **errp)
{
return (VSS_resolver_socktype(
addr, def_port, func, priv, errp, SOCK_STREAM));
}
int
VSS_resolver_range(const char *addr, const char *def_port, vss_resolved_f *func,
void *priv, const char **errp)
{
char *p, *hp, *pp;
unsigned long lo = 0, hi = 0, i;
int error = 0;
AN(addr);
AN(func);
AN(errp);
p = strdup(addr);
AN(p);
*errp = vss_parse_range(p, &hp, &pp, &lo, &hi);
if (*errp != NULL) {
free(p);
return (-1);
}
if (lo == 0) {
/* No port range (0 not allowed in range) */
free(p);
return (VSS_resolver(addr, def_port, func, priv, errp));
}
/* Undo vss_parse() string modifications */
memcpy(p, addr, pp - p);
for (i = lo; i <= hi && !error; i++) {
/* pp points to the first character of the range definition.
* The range definition includes the biggest port number, so the
* buffer must be big enough to fit each number individually.
*/
sprintf(pp, "%lu", i);
error = VSS_resolver(p, def_port, func, priv, errp);
}
free(p);
return (error);
}
const struct suckaddr *
VSS_ResolveOne(void *dst, const char *addr, const char *def_port,
int family, int socktype, int flags)
{
struct addrinfo *res = NULL;
const struct suckaddr *retval = NULL;
const char *err;
int ret;
AN(addr);
ret = vss_resolve(addr, def_port, family, socktype, flags, &res, &err);
if (ret == 0 && res != NULL && res->ai_next == NULL) {
AZ(err);
retval = vss_alloc_suckaddr(dst, res);
}
if (res != NULL)
freeaddrinfo(res);
return (retval);
}
const struct suckaddr *
VSS_ResolveFirst(void *dst, const char *addr, const char *def_port,
int family, int socktype, int flags)
{
struct addrinfo *res0 = NULL, *res;
const struct suckaddr *retval = NULL;
const char *err;
int ret;
AN(addr);
ret = vss_resolve(addr, def_port, family, socktype, flags, &res0, &err);
if (ret == 0)
AZ(err);
for (res = res0; res != NULL; res = res->ai_next) {
retval = vss_alloc_suckaddr(dst, res);
if (retval != NULL)
break;
}
if (res0 != NULL)
freeaddrinfo(res0);
return (retval);
}
|