4 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (c) 1998,1999 by Internet Software Consortium.
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
17 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #if defined(LIBC_SCCS) && !defined(lint)
21 static const char rcsid
[] = "Id: inet_cidr_pton.c,v 1.6 2005/04/27 04:56:19 sra Exp";
24 #include "port_before.h"
26 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <netinet/in.h>
29 #include <arpa/nameser.h>
30 #include <arpa/inet.h>
32 #include <isc/assertions.h>
39 #include "port_after.h"
42 # define SPRINTF(x) strlen(sprintf/**/x)
44 # define SPRINTF(x) ((size_t)sprintf x)
47 static int inet_cidr_pton_ipv4
__P((const char *src
, u_char
*dst
,
48 int *bits
, int ipv6
));
49 static int inet_cidr_pton_ipv6
__P((const char *src
, u_char
*dst
,
52 static int getbits(const char *, int ipv6
);
56 * inet_cidr_pton(af, src, dst, *bits)
57 * convert network address from presentation to network format.
58 * accepts inet_pton()'s input for this "af" plus trailing "/CIDR".
59 * "dst" is assumed large enough for its "af". "bits" is set to the
60 * /CIDR prefix length, which can have defaults (like /32 for IPv4).
62 * -1 if an error occurred (inspect errno; ENOENT means bad format).
63 * 0 if successful conversion occurred.
65 * 192.5.5.1/28 has a nonzero host part, which means it isn't a network
66 * as called for by inet_net_pton() but it can be a host address with
67 * an included netmask.
69 * Paul Vixie (ISC), October 1998
72 inet_cidr_pton(int af
, const char *src
, void *dst
, int *bits
) {
75 return (inet_cidr_pton_ipv4(src
, dst
, bits
, 0));
77 return (inet_cidr_pton_ipv6(src
, dst
, bits
));
84 static const char digits
[] = "0123456789";
87 inet_cidr_pton_ipv4(const char *src
, u_char
*dst
, int *pbits
, int ipv6
) {
88 const u_char
*odst
= dst
;
92 /* Get the mantissa. */
93 while (ch
= *src
++, (isascii(ch
) && isdigit(ch
))) {
96 n
= strchr(digits
, ch
) - digits
;
97 INSIST(n
>= 0 && n
<= 9);
102 } while ((ch
= *src
++) != '\0' && isascii(ch
) && isdigit(ch
));
105 *dst
++ = (u_char
) tmp
;
106 if (ch
== '\0' || ch
== '/')
112 /* Get the prefix length if any. */
114 if (ch
== '/' && dst
> odst
) {
115 bits
= getbits(src
, ipv6
);
118 } else if (ch
!= '\0')
121 /* Prefix length can default to /32 only if all four octets spec'd. */
124 bits
= ipv6
? 128 : 32;
129 /* If nothing was written to the destination, we found no address. */
133 /* If prefix length overspecifies mantissa, life is bad. */
134 if (((bits
- (ipv6
? 96 : 0)) / 8) > (dst
- odst
))
137 /* Extend address to four octets. */
154 inet_cidr_pton_ipv6(const char *src
, u_char
*dst
, int *pbits
) {
155 static const char xdigits_l
[] = "0123456789abcdef",
156 xdigits_u
[] = "0123456789ABCDEF";
157 u_char tmp
[NS_IN6ADDRSZ
], *tp
, *endp
, *colonp
;
158 const char *xdigits
, *curtok
;
163 memset((tp
= tmp
), '\0', NS_IN6ADDRSZ
);
164 endp
= tp
+ NS_IN6ADDRSZ
;
166 /* Leading :: requires some special handling. */
174 while ((ch
= *src
++) != '\0') {
177 if ((pch
= strchr((xdigits
= xdigits_l
), ch
)) == NULL
)
178 pch
= strchr((xdigits
= xdigits_u
), ch
);
181 val
|= (pch
- xdigits
);
194 } else if (*src
== '\0') {
197 if (tp
+ NS_INT16SZ
> endp
)
199 *tp
++ = (u_char
) (val
>> 8) & 0xff;
200 *tp
++ = (u_char
) val
& 0xff;
205 if (ch
== '.' && ((tp
+ NS_INADDRSZ
) <= endp
) &&
206 inet_cidr_pton_ipv4(curtok
, tp
, &bits
, 1) == 0) {
209 break; /*%< '\\0' was seen by inet_pton4(). */
212 bits
= getbits(src
, 1);
220 if (tp
+ NS_INT16SZ
> endp
)
222 *tp
++ = (u_char
) (val
>> 8) & 0xff;
223 *tp
++ = (u_char
) val
& 0xff;
225 if (colonp
!= NULL
) {
227 * Since some memmove()'s erroneously fail to handle
228 * overlapping regions, we'll do the shift by hand.
230 const int n
= tp
- colonp
;
235 for (i
= 1; i
<= n
; i
++) {
236 endp
[- i
] = colonp
[n
- i
];
242 memcpy(dst
, tmp
, NS_IN6ADDRSZ
);
257 getbits(const char *src
, int ipv6
) {
261 if (*src
== '\0') /*%< syntax */
265 cp
= strchr(digits
, ch
);
266 if (cp
== NULL
) /*%< syntax */
270 if (bits
== 0 && *src
!= '\0') /*%< no leading zeros */
272 if (bits
> (ipv6
? 128 : 32)) /*%< range error */
274 } while (*src
!= '\0');