1 /* Copyright (C) 1996-2022 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
19 * Copyright (c) 1996,1999 by Internet Software Consortium.
21 * Permission to use, copy, modify, and distribute this software for any
22 * purpose with or without fee is hereby granted, provided that the above
23 * copyright notice and this permission notice appear in all copies.
25 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
26 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
28 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
29 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
30 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
31 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
35 #include <arpa/inet.h>
36 #include <arpa/nameser.h>
39 #include <netinet/in.h>
40 #include <resolv/resolv-internal.h>
42 #include <sys/socket.h>
43 #include <sys/types.h>
45 static int inet_pton4 (const char *src
, const char *src_end
, u_char
*dst
);
46 static int inet_pton6 (const char *src
, const char *src_end
, u_char
*dst
);
49 __inet_pton_length (int af
, const char *src
, size_t srclen
, void *dst
)
54 return inet_pton4 (src
, src
+ srclen
, dst
);
56 return inet_pton6 (src
, src
+ srclen
, dst
);
58 __set_errno (EAFNOSUPPORT
);
62 libc_hidden_def (__inet_pton_length
)
64 /* Like __inet_pton_length, but use strlen (SRC) as the length of
67 __inet_pton (int af
, const char *src
, void *dst
)
69 return __inet_pton_length (af
, src
, strlen (src
), dst
);
71 libc_hidden_def (__inet_pton
)
72 weak_alias (__inet_pton
, inet_pton
)
73 libc_hidden_weak (inet_pton
)
75 /* Like inet_aton but without all the hexadecimal, octal and shorthand
76 (and trailing garbage is not ignored). Return 1 if SRC is a valid
77 dotted quad, else 0. This function does not touch DST unless it's
79 Author: Paul Vixie, 1996. */
81 inet_pton4 (const char *src
, const char *end
, unsigned char *dst
)
83 int saw_digit
, octets
, ch
;
84 unsigned char tmp
[NS_INADDRSZ
], *tp
;
92 if (ch
>= '0' && ch
<= '9')
94 unsigned int new = *tp
* 10 + (ch
- '0');
96 if (saw_digit
&& *tp
== 0)
108 else if (ch
== '.' && saw_digit
)
120 memcpy (dst
, tmp
, NS_INADDRSZ
);
124 /* Return the value of CH as a hexademical digit, or -1 if it is a
125 different type of character. */
127 hex_digit_value (char ch
)
129 if ('0' <= ch
&& ch
<= '9')
131 if ('a' <= ch
&& ch
<= 'f')
132 return ch
- 'a' + 10;
133 if ('A' <= ch
&& ch
<= 'F')
134 return ch
- 'A' + 10;
138 /* Convert presentation-level IPv6 address to network order binary
139 form. Return 1 if SRC is a valid [RFC1884 2.2] address, else 0.
140 This function does not touch DST unless it's returning 1.
141 Author: Paul Vixie, 1996. Inspired by Mark Andrews. */
143 inet_pton6 (const char *src
, const char *src_endp
, unsigned char *dst
)
145 unsigned char tmp
[NS_IN6ADDRSZ
], *tp
, *endp
, *colonp
;
148 size_t xdigits_seen
; /* Number of hex digits since colon. */
151 tp
= memset (tmp
, '\0', NS_IN6ADDRSZ
);
152 endp
= tp
+ NS_IN6ADDRSZ
;
155 /* Leading :: requires some special handling. */
161 if (src
== src_endp
|| *src
!= ':')
168 while (src
< src_endp
)
171 int digit
= hex_digit_value (ch
);
174 if (xdigits_seen
== 4)
186 if (xdigits_seen
== 0)
193 else if (src
== src_endp
)
195 if (tp
+ NS_INT16SZ
> endp
)
197 *tp
++ = (unsigned char) (val
>> 8) & 0xff;
198 *tp
++ = (unsigned char) val
& 0xff;
203 if (ch
== '.' && ((tp
+ NS_INADDRSZ
) <= endp
)
204 && inet_pton4 (curtok
, src_endp
, tp
) > 0)
208 break; /* '\0' was seen by inet_pton4. */
212 if (xdigits_seen
> 0)
214 if (tp
+ NS_INT16SZ
> endp
)
216 *tp
++ = (unsigned char) (val
>> 8) & 0xff;
217 *tp
++ = (unsigned char) val
& 0xff;
221 /* Replace :: with zeros. */
223 /* :: would expand to a zero-width field. */
225 size_t n
= tp
- colonp
;
226 memmove (endp
- n
, colonp
, n
);
227 memset (colonp
, 0, endp
- n
- colonp
);
232 memcpy (dst
, tmp
, NS_IN6ADDRSZ
);