1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* IP address structure (for generic IPv4 or IPv6 address)
* Copyright (C) 2016, 2017 Cumulus Networks, Inc.
*/
#ifndef __IPADDR_H__
#define __IPADDR_H__
#include <zebra.h>
#include "lib/log.h"
#ifdef __cplusplus
extern "C" {
#endif
/*
* Generic IP address - union of IPv4 and IPv6 address.
*/
enum ipaddr_type_t {
IPADDR_NONE = AF_UNSPEC,
IPADDR_V4 = AF_INET,
IPADDR_V6 = AF_INET6,
};
struct ipaddr {
enum ipaddr_type_t ipa_type;
union {
uint8_t addr;
uint8_t addrbytes[16];
struct in_addr _v4_addr;
struct in6_addr _v6_addr;
} ip;
#define ipaddr_v4 ip._v4_addr
#define ipaddr_v6 ip._v6_addr
};
#define IS_IPADDR_NONE(p) ((p)->ipa_type == IPADDR_NONE)
#define IS_IPADDR_V4(p) ((p)->ipa_type == IPADDR_V4)
#define IS_IPADDR_V6(p) ((p)->ipa_type == IPADDR_V6)
#define SET_IPADDR_NONE(p) ((p)->ipa_type = IPADDR_NONE)
#define SET_IPADDR_V4(p) ((p)->ipa_type = IPADDR_V4)
#define SET_IPADDR_V6(p) ((p)->ipa_type = IPADDR_V6)
#define IPADDRSZ(p) \
(IS_IPADDR_V4((p)) ? sizeof(struct in_addr) : sizeof(struct in6_addr))
#define IPADDR_STRING_SIZE 46
static inline int ipaddr_family(const struct ipaddr *ip)
{
switch (ip->ipa_type) {
case IPADDR_V4:
return AF_INET;
case IPADDR_V6:
return AF_INET6;
case IPADDR_NONE:
return AF_UNSPEC;
}
assert(!"Reached end of function where we should never hit");
return AF_UNSPEC;
}
static inline int str2ipaddr(const char *str, struct ipaddr *ip)
{
int ret;
memset(ip, 0, sizeof(struct ipaddr));
ret = inet_pton(AF_INET, str, &ip->ipaddr_v4);
if (ret > 0) /* Valid IPv4 address. */
{
ip->ipa_type = IPADDR_V4;
return 0;
}
ret = inet_pton(AF_INET6, str, &ip->ipaddr_v6);
if (ret > 0) /* Valid IPv6 address. */
{
ip->ipa_type = IPADDR_V6;
return 0;
}
return -1;
}
static inline char *ipaddr2str(const struct ipaddr *ip, char *buf, int size)
{
buf[0] = '\0';
if (ip)
inet_ntop(ip->ipa_type, &ip->ip.addr, buf, size);
return buf;
}
#define IS_MAPPED_IPV6(A) \
((A)->s6_addr32[0] == 0x00000000 \
? ((A)->s6_addr32[1] == 0x00000000 \
? (ntohl((A)->s6_addr32[2]) == 0xFFFF ? 1 : 0) \
: 0) \
: 0)
/*
* Convert IPv4 address to IPv4-mapped IPv6 address which is of the
* form ::FFFF:<IPv4 address> (RFC 4291). This IPv6 address can then
* be used to represent the IPv4 address, wherever only an IPv6 address
* is required.
*/
static inline void ipv4_to_ipv4_mapped_ipv6(struct in6_addr *in6,
struct in_addr in)
{
uint32_t addr_type = htonl(0xFFFF);
memset(in6, 0, sizeof(struct in6_addr));
memcpy((char *)in6 + 8, &addr_type, sizeof(addr_type));
memcpy((char *)in6 + 12, &in, sizeof(struct in_addr));
}
/*
* convert an ipv4 mapped ipv6 address back to ipv4 address
*/
static inline void ipv4_mapped_ipv6_to_ipv4(const struct in6_addr *in6,
struct in_addr *in)
{
memset(in, 0, sizeof(struct in_addr));
memcpy(in, (char *)in6 + 12, sizeof(struct in_addr));
}
/*
* generic ordering comparison between IP addresses
*/
static inline int ipaddr_cmp(const struct ipaddr *a, const struct ipaddr *b)
{
uint32_t va, vb;
va = a->ipa_type;
vb = b->ipa_type;
if (va != vb)
return (va < vb) ? -1 : 1;
switch (a->ipa_type) {
case IPADDR_V4:
va = ntohl(a->ipaddr_v4.s_addr);
vb = ntohl(b->ipaddr_v4.s_addr);
if (va != vb)
return (va < vb) ? -1 : 1;
return 0;
case IPADDR_V6:
return memcmp((void *)&a->ipaddr_v6, (void *)&b->ipaddr_v6,
sizeof(a->ipaddr_v6));
case IPADDR_NONE:
return 0;
}
assert(!"Reached end of function we should never hit");
return -1;
}
static inline bool ipaddr_is_zero(const struct ipaddr *ip)
{
switch (ip->ipa_type) {
case IPADDR_NONE:
return true;
case IPADDR_V4:
return ip->ipaddr_v4.s_addr == INADDR_ANY;
case IPADDR_V6:
return IN6_IS_ADDR_UNSPECIFIED(&ip->ipaddr_v6);
}
return true;
}
static inline bool ipaddr_is_same(const struct ipaddr *ip1,
const struct ipaddr *ip2)
{
return ipaddr_cmp(ip1, ip2) == 0;
}
/* clang-format off */
#ifdef _FRR_ATTRIBUTE_PRINTFRR
#pragma FRR printfrr_ext "%pIA" (struct ipaddr *)
#endif
/* clang-format on */
#ifdef __cplusplus
}
#endif
#endif /* __IPADDR_H__ */
|