]> git.proxmox.com Git - mirror_frr.git/blame - lib/ipaddr.h
snapcraft: Update bgpd to use newer rpki lib
[mirror_frr.git] / lib / ipaddr.h
CommitLineData
482c0fb0 1/*
2 * IP address structure (for generic IPv4 or IPv6 address)
3 * Copyright (C) 2016, 2017 Cumulus Networks, Inc.
4 *
5 * This file is part of FRR.
6 *
7 * FRR is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * FRR is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with FRR; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#ifndef __IPADDR_H__
24#define __IPADDR_H__
25
26#include <zebra.h>
27
5e244469
RW
28#ifdef __cplusplus
29extern "C" {
30#endif
31
482c0fb0 32/*
33 * Generic IP address - union of IPv4 and IPv6 address.
34 */
d62a17ae 35enum ipaddr_type_t {
36 IPADDR_NONE = 0,
37 IPADDR_V4 = 1, /* IPv4 */
38 IPADDR_V6 = 2, /* IPv6 */
482c0fb0 39};
40
d62a17ae 41struct ipaddr {
42 enum ipaddr_type_t ipa_type;
43 union {
d7c0a89a 44 uint8_t addr;
d62a17ae 45 struct in_addr _v4_addr;
46 struct in6_addr _v6_addr;
47 } ip;
482c0fb0 48#define ipaddr_v4 ip._v4_addr
49#define ipaddr_v6 ip._v6_addr
7fb9d20f 50};
482c0fb0 51
52#define IS_IPADDR_NONE(p) ((p)->ipa_type == IPADDR_NONE)
53#define IS_IPADDR_V4(p) ((p)->ipa_type == IPADDR_V4)
54#define IS_IPADDR_V6(p) ((p)->ipa_type == IPADDR_V6)
55
56#define SET_IPADDR_V4(p) (p)->ipa_type = IPADDR_V4
57#define SET_IPADDR_V6(p) (p)->ipa_type = IPADDR_V6
58
d62a17ae 59static inline int str2ipaddr(const char *str, struct ipaddr *ip)
482c0fb0 60{
d62a17ae 61 int ret;
482c0fb0 62
d62a17ae 63 memset(ip, 0, sizeof(struct ipaddr));
482c0fb0 64
d62a17ae 65 ret = inet_pton(AF_INET, str, &ip->ipaddr_v4);
66 if (ret > 0) /* Valid IPv4 address. */
67 {
68 ip->ipa_type = IPADDR_V4;
69 return 0;
70 }
71 ret = inet_pton(AF_INET6, str, &ip->ipaddr_v6);
72 if (ret > 0) /* Valid IPv6 address. */
73 {
74 ip->ipa_type = IPADDR_V6;
75 return 0;
76 }
482c0fb0 77
d62a17ae 78 return -1;
482c0fb0 79}
80
d62a17ae 81static inline char *ipaddr2str(struct ipaddr *ip, char *buf, int size)
482c0fb0 82{
d62a17ae 83 buf[0] = '\0';
84 if (ip) {
85 if (IS_IPADDR_V4(ip))
86 inet_ntop(AF_INET, &ip->ip.addr, buf, size);
87 else if (IS_IPADDR_V6(ip))
88 inet_ntop(AF_INET6, &ip->ip.addr, buf, size);
89 }
90 return buf;
482c0fb0 91}
1ec31309 92
bfd498f0 93/*
94 * Convert IPv4 address to IPv4-mapped IPv6 address which is of the
95 * form ::FFFF:<IPv4 address> (RFC 4291). This IPv6 address can then
96 * be used to represent the IPv4 address, wherever only an IPv6 address
97 * is required.
98 */
1ec31309 99static inline void ipv4_to_ipv4_mapped_ipv6(struct in6_addr *in6,
100 struct in_addr in)
101{
d7c0a89a 102 uint32_t addr_type = htonl(0xFFFF);
55828363 103
1ec31309 104 memset(in6, 0, sizeof(struct in6_addr));
105 memcpy((char *)in6 + 8, &addr_type, sizeof(addr_type));
106 memcpy((char *)in6 + 12, &in, sizeof(struct in_addr));
107}
108
f50dc5e6
MK
109/*
110 * convert an ipv4 mapped ipv6 address back to ipv4 address
111 */
112static inline void ipv4_mapped_ipv6_to_ipv4(struct in6_addr *in6,
113 struct in_addr *in)
114{
115 memset(in, 0, sizeof(struct in_addr));
116 memcpy(in, (char *)in6 + 12, sizeof(struct in_addr));
117}
118
5e244469
RW
119#ifdef __cplusplus
120}
121#endif
122
482c0fb0 123#endif /* __IPADDR_H__ */