2003-10-07 17:46:47 -04:00
|
|
|
/* This is from the BIND 4.9.4 release, modified to compile by itself */
|
|
|
|
|
|
|
|
/* Copyright (c) 1996 by Internet Software Consortium.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
|
|
|
|
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
|
|
|
|
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|
|
|
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2003-10-07 17:46:47 -04:00
|
|
|
|
|
|
|
#ifndef HAVE_INET_PTON
|
|
|
|
|
2003-10-08 09:07:08 -04:00
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
2003-10-07 17:46:47 -04:00
|
|
|
#include <sys/param.h>
|
2003-10-08 09:07:08 -04:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETINET_IN_H
|
2003-10-07 17:46:47 -04:00
|
|
|
#include <netinet/in.h>
|
2003-10-08 09:07:08 -04:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ARPA_INET_H
|
2003-10-07 17:46:47 -04:00
|
|
|
#include <arpa/inet.h>
|
2003-10-08 09:07:08 -04:00
|
|
|
#endif
|
2003-10-07 17:46:47 -04:00
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "inet_pton.h"
|
2004-01-29 08:56:45 -05:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
#define IN6ADDRSZ 16
|
|
|
|
#define INADDRSZ 4
|
|
|
|
#define INT16SZ 2
|
2003-10-07 17:46:47 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* WARNING: Don't even consider trying to compile this on a system where
|
|
|
|
* sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX.
|
|
|
|
*/
|
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
static int inet_pton4(const char *src, unsigned char *dst);
|
2003-10-30 02:13:13 -05:00
|
|
|
#ifdef ENABLE_IPV6
|
2004-10-06 03:50:18 -04:00
|
|
|
static int inet_pton6(const char *src, unsigned char *dst);
|
2003-10-30 02:13:13 -05:00
|
|
|
#endif
|
2003-10-07 17:46:47 -04:00
|
|
|
|
|
|
|
/* int
|
|
|
|
* inet_pton(af, src, dst)
|
2004-10-06 03:50:18 -04:00
|
|
|
* convert from presentation format (which usually means ASCII printable)
|
|
|
|
* to network format (which is usually some kind of binary format).
|
2003-10-07 17:46:47 -04:00
|
|
|
* return:
|
2004-10-06 03:50:18 -04:00
|
|
|
* 1 if the address was valid for the specified address family
|
|
|
|
* 0 if the address wasn't valid (`dst' is untouched in this case)
|
|
|
|
* -1 if some other error occurred (`dst' is untouched in this case, too)
|
2007-02-16 13:19:35 -05:00
|
|
|
* notice:
|
|
|
|
* On Windows we store the error in the thread errno, not
|
2011-04-19 09:54:13 -04:00
|
|
|
* in the winsock error code. This is to avoid losing the
|
2007-02-16 13:19:35 -05:00
|
|
|
* actual last winsock error. So use macro ERRNO to fetch the
|
2011-04-19 09:54:13 -04:00
|
|
|
* errno this function sets when returning (-1), not SOCKERRNO.
|
2003-10-07 17:46:47 -04:00
|
|
|
* author:
|
2004-10-06 03:50:18 -04:00
|
|
|
* Paul Vixie, 1996.
|
2003-10-07 17:46:47 -04:00
|
|
|
*/
|
|
|
|
int
|
2004-01-29 08:56:45 -05:00
|
|
|
Curl_inet_pton(int af, const char *src, void *dst)
|
2003-10-07 17:46:47 -04:00
|
|
|
{
|
2016-12-13 17:34:59 -05:00
|
|
|
switch(af) {
|
2004-08-18 02:12:01 -04:00
|
|
|
case AF_INET:
|
2004-12-17 15:18:53 -05:00
|
|
|
return (inet_pton4(src, (unsigned char *)dst));
|
2003-10-30 02:13:13 -05:00
|
|
|
#ifdef ENABLE_IPV6
|
2004-08-18 02:12:01 -04:00
|
|
|
case AF_INET6:
|
2004-12-17 15:18:53 -05:00
|
|
|
return (inet_pton6(src, (unsigned char *)dst));
|
2003-10-30 02:13:13 -05:00
|
|
|
#endif
|
2004-08-18 02:12:01 -04:00
|
|
|
default:
|
2007-02-16 13:19:35 -05:00
|
|
|
SET_ERRNO(EAFNOSUPPORT);
|
2004-08-18 02:12:01 -04:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
2003-10-07 17:46:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* int
|
|
|
|
* inet_pton4(src, dst)
|
2004-10-06 03:50:18 -04:00
|
|
|
* like inet_aton() but without all the hexadecimal and shorthand.
|
2003-10-07 17:46:47 -04:00
|
|
|
* return:
|
2004-10-06 03:50:18 -04:00
|
|
|
* 1 if `src' is a valid dotted quad, else 0.
|
2003-10-07 17:46:47 -04:00
|
|
|
* notice:
|
2004-10-06 03:50:18 -04:00
|
|
|
* does not touch `dst' unless it's returning 1.
|
2003-10-07 17:46:47 -04:00
|
|
|
* author:
|
2004-10-06 03:50:18 -04:00
|
|
|
* Paul Vixie, 1996.
|
2003-10-07 17:46:47 -04:00
|
|
|
*/
|
|
|
|
static int
|
2004-01-29 08:56:45 -05:00
|
|
|
inet_pton4(const char *src, unsigned char *dst)
|
2003-10-07 17:46:47 -04:00
|
|
|
{
|
2004-08-18 02:12:01 -04:00
|
|
|
static const char digits[] = "0123456789";
|
|
|
|
int saw_digit, octets, ch;
|
|
|
|
unsigned char tmp[INADDRSZ], *tp;
|
|
|
|
|
|
|
|
saw_digit = 0;
|
|
|
|
octets = 0;
|
2004-08-19 05:37:22 -04:00
|
|
|
tp = tmp;
|
|
|
|
*tp = 0;
|
2007-11-07 04:21:35 -05:00
|
|
|
while((ch = *src++) != '\0') {
|
2004-08-18 02:12:01 -04:00
|
|
|
const char *pch;
|
|
|
|
|
2016-12-13 19:29:44 -05:00
|
|
|
pch = strchr(digits, ch);
|
|
|
|
if(pch) {
|
2005-12-08 17:59:58 -05:00
|
|
|
unsigned int val = *tp * 10 + (unsigned int)(pch - digits);
|
2004-08-18 02:12:01 -04:00
|
|
|
|
2008-11-16 21:40:41 -05:00
|
|
|
if(saw_digit && *tp == 0)
|
|
|
|
return (0);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(val > 255)
|
2004-08-18 02:12:01 -04:00
|
|
|
return (0);
|
2007-04-13 03:57:31 -04:00
|
|
|
*tp = (unsigned char)val;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(! saw_digit) {
|
|
|
|
if(++octets > 4)
|
2004-08-18 02:12:01 -04:00
|
|
|
return (0);
|
|
|
|
saw_digit = 1;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
}
|
|
|
|
else if(ch == '.' && saw_digit) {
|
|
|
|
if(octets == 4)
|
2004-08-18 02:12:01 -04:00
|
|
|
return (0);
|
|
|
|
*++tp = 0;
|
|
|
|
saw_digit = 0;
|
2007-11-05 04:45:09 -05:00
|
|
|
}
|
|
|
|
else
|
2004-08-18 02:12:01 -04:00
|
|
|
return (0);
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(octets < 4)
|
2004-08-18 02:12:01 -04:00
|
|
|
return (0);
|
|
|
|
memcpy(dst, tmp, INADDRSZ);
|
|
|
|
return (1);
|
2003-10-07 17:46:47 -04:00
|
|
|
}
|
|
|
|
|
2003-10-30 02:13:13 -05:00
|
|
|
#ifdef ENABLE_IPV6
|
2003-10-07 17:46:47 -04:00
|
|
|
/* int
|
|
|
|
* inet_pton6(src, dst)
|
2004-10-06 03:50:18 -04:00
|
|
|
* convert presentation level address to network order binary form.
|
2003-10-07 17:46:47 -04:00
|
|
|
* return:
|
2004-10-06 03:50:18 -04:00
|
|
|
* 1 if `src' is a valid [RFC1884 2.2] address, else 0.
|
2003-10-07 17:46:47 -04:00
|
|
|
* notice:
|
2004-10-06 03:50:18 -04:00
|
|
|
* (1) does not touch `dst' unless it's returning 1.
|
|
|
|
* (2) :: in a full address is silently ignored.
|
2003-10-07 17:46:47 -04:00
|
|
|
* credit:
|
2004-10-06 03:50:18 -04:00
|
|
|
* inspired by Mark Andrews.
|
2003-10-07 17:46:47 -04:00
|
|
|
* author:
|
2004-10-06 03:50:18 -04:00
|
|
|
* Paul Vixie, 1996.
|
2003-10-07 17:46:47 -04:00
|
|
|
*/
|
|
|
|
static int
|
2004-01-29 08:56:45 -05:00
|
|
|
inet_pton6(const char *src, unsigned char *dst)
|
2003-10-07 17:46:47 -04:00
|
|
|
{
|
2004-08-18 02:12:01 -04:00
|
|
|
static const char xdigits_l[] = "0123456789abcdef",
|
|
|
|
xdigits_u[] = "0123456789ABCDEF";
|
|
|
|
unsigned char tmp[IN6ADDRSZ], *tp, *endp, *colonp;
|
|
|
|
const char *xdigits, *curtok;
|
|
|
|
int ch, saw_xdigit;
|
2010-06-08 17:09:42 -04:00
|
|
|
size_t val;
|
2004-08-18 02:12:01 -04:00
|
|
|
|
|
|
|
memset((tp = tmp), 0, IN6ADDRSZ);
|
|
|
|
endp = tp + IN6ADDRSZ;
|
|
|
|
colonp = NULL;
|
|
|
|
/* Leading :: requires some special handling. */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(*src == ':')
|
|
|
|
if(*++src != ':')
|
2004-08-18 02:12:01 -04:00
|
|
|
return (0);
|
|
|
|
curtok = src;
|
|
|
|
saw_xdigit = 0;
|
|
|
|
val = 0;
|
2007-11-07 04:21:35 -05:00
|
|
|
while((ch = *src++) != '\0') {
|
2004-08-18 02:12:01 -04:00
|
|
|
const char *pch;
|
|
|
|
|
2016-12-13 19:29:44 -05:00
|
|
|
pch = strchr((xdigits = xdigits_l), ch);
|
|
|
|
if(!pch)
|
2004-08-18 02:12:01 -04:00
|
|
|
pch = strchr((xdigits = xdigits_u), ch);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(pch != NULL) {
|
2004-08-18 02:12:01 -04:00
|
|
|
val <<= 4;
|
|
|
|
val |= (pch - xdigits);
|
2008-11-16 21:40:41 -05:00
|
|
|
if(++saw_xdigit > 4)
|
2004-08-18 02:12:01 -04:00
|
|
|
return (0);
|
|
|
|
continue;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ch == ':') {
|
2004-08-18 02:12:01 -04:00
|
|
|
curtok = src;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!saw_xdigit) {
|
|
|
|
if(colonp)
|
2004-08-18 02:12:01 -04:00
|
|
|
return (0);
|
|
|
|
colonp = tp;
|
|
|
|
continue;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(tp + INT16SZ > endp)
|
2004-08-18 02:12:01 -04:00
|
|
|
return (0);
|
2016-03-20 07:14:58 -04:00
|
|
|
*tp++ = (unsigned char) ((val >> 8) & 0xff);
|
2015-08-18 03:39:38 -04:00
|
|
|
*tp++ = (unsigned char) (val & 0xff);
|
2004-08-18 02:12:01 -04:00
|
|
|
saw_xdigit = 0;
|
|
|
|
val = 0;
|
|
|
|
continue;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ch == '.' && ((tp + INADDRSZ) <= endp) &&
|
2004-08-18 02:12:01 -04:00
|
|
|
inet_pton4(curtok, tp) > 0) {
|
|
|
|
tp += INADDRSZ;
|
|
|
|
saw_xdigit = 0;
|
2004-10-06 03:50:18 -04:00
|
|
|
break; /* '\0' was seen by inet_pton4(). */
|
2004-08-18 02:12:01 -04:00
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(saw_xdigit) {
|
|
|
|
if(tp + INT16SZ > endp)
|
2004-08-18 02:12:01 -04:00
|
|
|
return (0);
|
2016-03-20 07:14:58 -04:00
|
|
|
*tp++ = (unsigned char) ((val >> 8) & 0xff);
|
2015-09-03 05:32:39 -04:00
|
|
|
*tp++ = (unsigned char) (val & 0xff);
|
2004-08-18 02:12:01 -04:00
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(colonp != NULL) {
|
2004-08-18 02:12:01 -04:00
|
|
|
/*
|
|
|
|
* Since some memmove()'s erroneously fail to handle
|
|
|
|
* overlapping regions, we'll do the shift by hand.
|
|
|
|
*/
|
2010-11-24 20:20:14 -05:00
|
|
|
const ssize_t n = tp - colonp;
|
|
|
|
ssize_t i;
|
2004-08-18 02:12:01 -04:00
|
|
|
|
2008-11-16 21:40:41 -05:00
|
|
|
if(tp == endp)
|
|
|
|
return (0);
|
2011-04-20 09:17:42 -04:00
|
|
|
for(i = 1; i <= n; i++) {
|
2010-11-24 20:20:14 -05:00
|
|
|
*(endp - i) = *(colonp + n - i);
|
|
|
|
*(colonp + n - i) = 0;
|
2004-08-18 02:12:01 -04:00
|
|
|
}
|
|
|
|
tp = endp;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(tp != endp)
|
2004-08-18 02:12:01 -04:00
|
|
|
return (0);
|
|
|
|
memcpy(dst, tmp, IN6ADDRSZ);
|
|
|
|
return (1);
|
2003-10-07 17:46:47 -04:00
|
|
|
}
|
2003-10-30 02:13:13 -05:00
|
|
|
#endif /* ENABLE_IPV6 */
|
2003-10-07 17:46:47 -04:00
|
|
|
|
|
|
|
#endif /* HAVE_INET_PTON */
|