2 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
3 * Use is subject to license terms.
7 * Copyright (c) 1996 by Internet Software Consortium.
9 * Permission to use, copy, modify, and distribute this software for any
10 * purpose with or without fee is hereby granted, provided that the above
11 * copyright notice and this permission notice appear in all copies.
13 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
14 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
16 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
17 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
18 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
19 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
23 #pragma ident "%Z%%M% %I% %E% SMI"
32 #include <arpa/inet.h>
33 #include <netinet/in.h>
34 #include <sys/socket.h>
37 static int inet_pton4(const char *src
, uchar_t
*dst
);
38 static int inet_pton6(const char *src
, uchar_t
*dst
);
42 * inet_pton(af, src, dst)
43 * convert from presentation format (which usually means ASCII printable)
44 * to network format (which is usually some kind of binary format).
46 * 1 if the address was valid for the specified address family
47 * 0 if the address wasn't valid (`dst' is untouched in this case)
48 * -1 if some other error occurred (`dst' is untouched in this case, too)
50 * Paul Vixie, 1996. Taken from on297-gate:dns stuff
53 inet_pton(int af
, const char *src
, void *dst
)
57 return (inet_pton4(src
, dst
));
59 return (inet_pton6(src
, dst
));
69 * inet_pton4(src, dst)
70 * like inet_aton() but without all the hexadecimal and shorthand.
72 * 1 if `src' is a valid dotted quad, else 0.
74 * does not touch `dst' unless it's returning 1.
82 inet_pton4(const char *src
, uchar_t
*dst
)
84 static const char digits
[] = "0123456789";
85 int saw_digit
, octets
, ch
;
86 uchar_t tmp
[INADDRSZ
], *tp
;
91 while ((ch
= *src
++) != '\0') {
94 if ((pch
= strchr(digits
, ch
)) != NULL
) {
95 uint_t
new = *tp
* 10 + (pch
- digits
);
105 } else if (ch
== '.' && saw_digit
) {
116 (void) memcpy(dst
, tmp
, INADDRSZ
);
123 * inet_pton6(src, dst)
124 * convert presentation level address to network order binary form.
126 * 1 if `src' is a valid [RFC1884 2.2] address, else 0.
128 * (1) does not touch `dst' unless it's returning 1.
129 * (2) :: in a full address is silently ignored.
131 * inspired by Mark Andrews.
137 inet_pton6(const char *src
, uchar_t
*dst
)
139 static const char xdigits_l
[] = "0123456789abcdef",
140 xdigits_u
[] = "0123456789ABCDEF";
141 uchar_t tmp
[IN6ADDRSZ
], *tp
, *endp
, *colonp
;
142 const char *xdigits
, *curtok
;
146 (void) memset((tp
= tmp
), '\0', IN6ADDRSZ
);
147 endp
= tp
+ IN6ADDRSZ
;
149 /* Leading :: requires some special handling. */
156 while ((ch
= *src
++) != '\0') {
159 if ((pch
= strchr((xdigits
= xdigits_l
), ch
)) == NULL
)
160 pch
= strchr((xdigits
= xdigits_u
), ch
);
163 val
|= (pch
- xdigits
);
176 } else if (*src
== '\0') {
179 if (tp
+ INT16SZ
> endp
)
181 *tp
++ = (uchar_t
)(val
>> 8) & 0xff;
182 *tp
++ = (uchar_t
)val
& 0xff;
187 if (ch
== '.' && ((tp
+ INADDRSZ
) <= endp
) &&
188 inet_pton4(curtok
, tp
) > 0) {
191 break; /* '\0' was seen by inet_pton4(). */
196 if (tp
+ INT16SZ
> endp
)
198 *tp
++ = (uchar_t
)(val
>> 8) & 0xff;
199 *tp
++ = (uchar_t
)val
& 0xff;
201 if (colonp
!= NULL
) {
203 * Since some memmove()'s erroneously fail to handle
204 * overlapping regions, we'll do the shift by hand.
206 const int n
= tp
- colonp
;
211 for (i
= 1; i
<= n
; i
++) {
212 endp
[- i
] = colonp
[n
- i
];
219 (void) memcpy(dst
, tmp
, IN6ADDRSZ
);