xref: /openbsd-src/lib/libc/net/inet_ntop.c (revision 73bbab47042bd0948677b3b9ffc27bd1548b2f5f)
1 /*	$OpenBSD: inet_ntop.c,v 1.4 2002/08/19 03:01:54 itojun Exp $	*/
2 
3 /* Copyright (c) 1996 by Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
10  * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
11  * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
12  * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
15  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
16  * SOFTWARE.
17  */
18 
19 #if defined(LIBC_SCCS) && !defined(lint)
20 #if 0
21 static char rcsid[] = "$From: inet_ntop.c,v 8.7 1996/08/05 08:41:18 vixie Exp $";
22 #else
23 static char rcsid[] = "$OpenBSD: inet_ntop.c,v 1.4 2002/08/19 03:01:54 itojun Exp $";
24 #endif
25 #endif /* LIBC_SCCS and not lint */
26 
27 #include <sys/param.h>
28 #include <sys/types.h>
29 #include <sys/socket.h>
30 #include <netinet/in.h>
31 #include <arpa/inet.h>
32 #include <arpa/nameser.h>
33 #include <string.h>
34 #include <errno.h>
35 #include <stdio.h>
36 
37 /*
38  * WARNING: Don't even consider trying to compile this on a system where
39  * sizeof(int) < 4.  sizeof(int) > 4 is fine; all the world's not a VAX.
40  */
41 
42 static const char *inet_ntop4(const u_char *src, char *dst, size_t size);
43 static const char *inet_ntop6(const u_char *src, char *dst, size_t size);
44 
45 /* char *
46  * inet_ntop(af, src, dst, size)
47  *	convert a network format address to presentation format.
48  * return:
49  *	pointer to presentation format address (`dst'), or NULL (see errno).
50  * author:
51  *	Paul Vixie, 1996.
52  */
53 const char *
54 inet_ntop(af, src, dst, size)
55 	int af;
56 	const void *src;
57 	char *dst;
58 	size_t size;
59 {
60 	switch (af) {
61 	case AF_INET:
62 		return (inet_ntop4(src, dst, size));
63 	case AF_INET6:
64 		return (inet_ntop6(src, dst, size));
65 	default:
66 		errno = EAFNOSUPPORT;
67 		return (NULL);
68 	}
69 	/* NOTREACHED */
70 }
71 
72 /* const char *
73  * inet_ntop4(src, dst, size)
74  *	format an IPv4 address, more or less like inet_ntoa()
75  * return:
76  *	`dst' (as a const)
77  * notes:
78  *	(1) uses no statics
79  *	(2) takes a u_char* not an in_addr as input
80  * author:
81  *	Paul Vixie, 1996.
82  */
83 static const char *
84 inet_ntop4(src, dst, size)
85 	const u_char *src;
86 	char *dst;
87 	size_t size;
88 {
89 	static const char fmt[] = "%u.%u.%u.%u";
90 	char tmp[sizeof "255.255.255.255"];
91 
92 	if (snprintf(tmp, size, fmt, src[0], src[1], src[2], src[3]) >= size) {
93 		errno = ENOSPC;
94 		return (NULL);
95 	}
96 	strlcpy(dst, tmp, size);
97 	return (dst);
98 }
99 
100 /* const char *
101  * inet_ntop6(src, dst, size)
102  *	convert IPv6 binary address into presentation (printable) format
103  * author:
104  *	Paul Vixie, 1996.
105  */
106 static const char *
107 inet_ntop6(src, dst, size)
108 	const u_char *src;
109 	char *dst;
110 	size_t size;
111 {
112 	/*
113 	 * Note that int32_t and int16_t need only be "at least" large enough
114 	 * to contain a value of the specified size.  On some systems, like
115 	 * Crays, there is no such thing as an integer variable with 16 bits.
116 	 * Keep this in mind if you think this function should have been coded
117 	 * to use pointer overlays.  All the world's not a VAX.
118 	 */
119 	char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"];
120 	char *tp, *ep;
121 	struct { int base, len; } best, cur;
122 	u_int words[IN6ADDRSZ / INT16SZ];
123 	int i;
124 	int advance;
125 
126 	/*
127 	 * Preprocess:
128 	 *	Copy the input (bytewise) array into a wordwise array.
129 	 *	Find the longest run of 0x00's in src[] for :: shorthanding.
130 	 */
131 	memset(words, '\0', sizeof words);
132 	for (i = 0; i < IN6ADDRSZ; i++)
133 		words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
134 	best.base = -1;
135 	cur.base = -1;
136 	for (i = 0; i < (IN6ADDRSZ / INT16SZ); i++) {
137 		if (words[i] == 0) {
138 			if (cur.base == -1)
139 				cur.base = i, cur.len = 1;
140 			else
141 				cur.len++;
142 		} else {
143 			if (cur.base != -1) {
144 				if (best.base == -1 || cur.len > best.len)
145 					best = cur;
146 				cur.base = -1;
147 			}
148 		}
149 	}
150 	if (cur.base != -1) {
151 		if (best.base == -1 || cur.len > best.len)
152 			best = cur;
153 	}
154 	if (best.base != -1 && best.len < 2)
155 		best.base = -1;
156 
157 	/*
158 	 * Format the result.
159 	 */
160 	tp = tmp;
161 	ep = tmp + sizeof(tmp);
162 	for (i = 0; i < (IN6ADDRSZ / INT16SZ) && tp < ep; i++) {
163 		/* Are we inside the best run of 0x00's? */
164 		if (best.base != -1 && i >= best.base &&
165 		    i < (best.base + best.len)) {
166 			if (i == best.base) {
167 				if (tp + 1 >= ep)
168 					return (NULL);
169 				*tp++ = ':';
170 			}
171 			continue;
172 		}
173 		/* Are we following an initial run of 0x00s or any real hex? */
174 		if (i != 0) {
175 			if (tp + 1 >= ep)
176 				return (NULL);
177 			*tp++ = ':';
178 		}
179 		/* Is this address an encapsulated IPv4? */
180 		if (i == 6 && best.base == 0 &&
181 		    (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) {
182 			if (!inet_ntop4(src+12, tp, (size_t)(ep - tp)))
183 				return (NULL);
184 			tp += strlen(tp);
185 			break;
186 		}
187 		advance = snprintf(tp, ep - tp, "%x", words[i]);
188 		if (advance <= 0 || advance >= ep - tp)
189 			return (NULL);
190 		tp += advance;
191 	}
192 	/* Was it a trailing run of 0x00's? */
193 	if (best.base != -1 && (best.base + best.len) == (IN6ADDRSZ / INT16SZ)) {
194 		if (tp + 1 >= ep)
195 			return (NULL);
196 		*tp++ = ':';
197 	}
198 	if (tp + 1 >= ep)
199 		return (NULL);
200 	*tp++ = '\0';
201 
202 	/*
203 	 * Check for overflow, copy, and we're done.
204 	 */
205 	if ((size_t)(tp - tmp) > size) {
206 		errno = ENOSPC;
207 		return (NULL);
208 	}
209 	strlcpy(dst, tmp, size);
210 	return (dst);
211 }
212