#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
static const char rcsid[] = "Id: inet_cidr_ntop.c,v 1.7 2006/10/11 02:18:18 marka Exp";
#else
__RCSID("$NetBSD: inet_cidr_ntop.c,v 1.9 2026/04/08 14:12:06 christos Exp $");
#endif
#endif
#include "port_before.h"
#include "namespace.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/nameser.h>
#include <arpa/inet.h>
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "port_after.h"
#ifdef __weak_alias
__weak_alias(inet_cidr_ntop,_inet_cidr_ntop)
#endif
static char *
inet_cidr_ntop_ipv4(const u_char *src, int bits, char *dst, size_t size);
static char *
inet_cidr_ntop_ipv6(const u_char *src, int bits, char *dst, size_t size);
char *
inet_cidr_ntop(int af, const void *src, int bits, char *dst, size_t size) {
switch (af) {
case AF_INET:
return (inet_cidr_ntop_ipv4(src, bits, dst, size));
case AF_INET6:
return (inet_cidr_ntop_ipv6(src, bits, dst, size));
default:
errno = EAFNOSUPPORT;
return (NULL);
}
}
static int
decoct(const u_char *src, size_t bytes, char *dst, size_t size) {
size_t b;
int l, t = 0;
for (b = 1; b <= bytes; b++) {
ADDS(snprintf(dst + t, size - t, "%u", *src++));
if (b != bytes)
ADDC('.');
}
return t;
emsgsize:
return l < 0 ? l : l + t;
}
static char *
inet_cidr_ntop_ipv4(const u_char *src, int bits, char *dst, size_t size) {
size_t len = 4, b, bytes, t = 0;
int l;
if ((bits < -1) || (bits > 32)) {
errno = EINVAL;
return (NULL);
}
if (bits == -1)
len = 4;
else
for (len = 1, b = 1 ; b < 4U; b++)
if (*(src + b))
len = b + 1;
bytes = (((bits <= 0) ? 1 : bits) + 7) / 8;
if (len > bytes)
bytes = len;
ADDS(decoct(src, bytes, dst + t, size - t));
if (bits != -1) {
ADDS(snprintf(dst + t, size - t, "/%u", bits));
}
return (dst);
emsgsize:
errno = EMSGSIZE;
return (NULL);
}
static char *
inet_cidr_ntop_ipv6(const u_char *src, int bits, char *dst, size_t size) {
struct { int base, len; } best, cur;
u_int words[NS_IN6ADDRSZ / NS_INT16SZ];
int i, l;
size_t t;
if ((bits < -1) || (bits > 128)) {
errno = EINVAL;
return (NULL);
}
memset(words, '\0', sizeof words);
for (i = 0; i < NS_IN6ADDRSZ; i++)
words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
best.base = -1;
best.len = 0;
cur.base = -1;
cur.len = 0;
for (i = 0; i < (NS_IN6ADDRSZ / NS_INT16SZ); i++) {
if (words[i] == 0) {
if (cur.base == -1)
cur.base = i, cur.len = 1;
else
cur.len++;
} else {
if (cur.base != -1) {
if (best.base == -1 || cur.len > best.len)
best = cur;
cur.base = -1;
}
}
}
if (cur.base != -1) {
if (best.base == -1 || cur.len > best.len)
best = cur;
}
if (best.base != -1 && best.len < 2)
best.base = -1;
t = 0;
for (i = 0; i < (NS_IN6ADDRSZ / NS_INT16SZ); i++) {
if (best.base != -1 && i >= best.base &&
i < (best.base + best.len)) {
if (i == best.base)
ADDC(':');
continue;
}
if (i != 0)
ADDC(':');
if (i == 6 && best.base == 0 && (best.len == 6 ||
(best.len == 7 && words[7] != 0x0001) ||
(best.len == 5 && words[5] == 0xffff))) {
size_t n;
if (src[15] || bits == -1 || bits > 120)
n = 4;
else if (src[14] || bits > 112)
n = 3;
else
n = 2;
ADDS(decoct(src+12, n, dst + t, size - t));
break;
}
ADDS(snprintf(dst + t, size - t, "%x", words[i]));
}
if (best.base != -1 && (best.base + best.len) ==
(NS_IN6ADDRSZ / NS_INT16SZ)) {
ADDC(':');
}
if (bits != -1)
ADDS(snprintf(dst + t, size - t, "/%u", bits));
return dst;
emsgsize:
errno = EMSGSIZE;
return (NULL);
}