]> git.proxmox.com Git - mirror_frr.git/blob - lib/prefix.h
lib: add extern "C" {} blocks to all libfrr headers
[mirror_frr.git] / lib / prefix.h
1 /*
2 * Prefix structure.
3 * Copyright (C) 1998 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra 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 * GNU Zebra 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 along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #ifndef _ZEBRA_PREFIX_H
23 #define _ZEBRA_PREFIX_H
24
25 #ifdef SUNOS_5
26 #include <sys/ethernet.h>
27 #else
28 #ifdef GNU_LINUX
29 #include <net/ethernet.h>
30 #else
31 #include <netinet/if_ether.h>
32 #endif
33 #endif
34 #include "sockunion.h"
35 #include "ipaddr.h"
36 #include "compiler.h"
37
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41
42 #ifndef ETH_ALEN
43 #define ETH_ALEN 6
44 #endif
45
46 #define ESI_BYTES 10
47 #define ESI_STR_LEN (3 * ESI_BYTES)
48
49 #define ETHER_ADDR_STRLEN (3*ETH_ALEN)
50 /*
51 * there isn't a portable ethernet address type. We define our
52 * own to simplify internal handling
53 */
54 struct ethaddr {
55 uint8_t octet[ETH_ALEN];
56 } __attribute__((packed));
57
58
59 /* length is the number of valuable bits of prefix structure
60 * 18 bytes is current length in structure, if address is ipv4
61 * 30 bytes is in case of ipv6
62 */
63 #define PREFIX_LEN_ROUTE_TYPE_5_IPV4 (18*8)
64 #define PREFIX_LEN_ROUTE_TYPE_5_IPV6 (30*8)
65
66 typedef struct esi_t_ {
67 uint8_t val[10];
68 } esi_t;
69
70 struct evpn_ead_addr {
71 esi_t esi;
72 uint32_t eth_tag;
73 };
74
75 struct evpn_macip_addr {
76 uint32_t eth_tag;
77 uint8_t ip_prefix_length;
78 struct ethaddr mac;
79 struct ipaddr ip;
80 };
81
82 struct evpn_imet_addr {
83 uint32_t eth_tag;
84 uint8_t ip_prefix_length;
85 struct ipaddr ip;
86 };
87
88 struct evpn_es_addr {
89 esi_t esi;
90 uint8_t ip_prefix_length;
91 struct ipaddr ip;
92 };
93
94 struct evpn_prefix_addr {
95 uint32_t eth_tag;
96 uint8_t ip_prefix_length;
97 struct ipaddr ip;
98 };
99
100 /* EVPN address (RFC 7432) */
101 struct evpn_addr {
102 uint8_t route_type;
103 union {
104 struct evpn_ead_addr _ead_addr;
105 struct evpn_macip_addr _macip_addr;
106 struct evpn_imet_addr _imet_addr;
107 struct evpn_es_addr _es_addr;
108 struct evpn_prefix_addr _prefix_addr;
109 } u;
110 #define ead_addr u._ead_addr
111 #define macip_addr u._macip_addr
112 #define imet_addr u._imet_addr
113 #define es_addr u._es_addr
114 #define prefix_addr u._prefix_addr
115 };
116
117 /*
118 * A struct prefix contains an address family, a prefix length, and an
119 * address. This can represent either a 'network prefix' as defined
120 * by CIDR, where the 'host bits' of the prefix are 0
121 * (e.g. AF_INET:10.0.0.0/8), or an address and netmask
122 * (e.g. AF_INET:10.0.0.9/8), such as might be configured on an
123 * interface.
124 */
125
126 /* different OSes use different names */
127 #if defined(AF_PACKET)
128 #define AF_ETHERNET AF_PACKET
129 #else
130 #if defined(AF_LINK)
131 #define AF_ETHERNET AF_LINK
132 #endif
133 #endif
134
135 /* The 'family' in the prefix structure is internal to FRR and need not
136 * map to standard OS AF_ definitions except where needed for interacting
137 * with the kernel. However, AF_ definitions are currently in use and
138 * prevalent across the code. Define a new FRR-specific AF for EVPN to
139 * distinguish between 'ethernet' (MAC-only) and 'evpn' prefixes and
140 * ensure it does not conflict with any OS AF_ definition.
141 */
142 #if !defined(AF_EVPN)
143 #define AF_EVPN (AF_MAX + 1)
144 #endif
145
146 #if !defined(AF_FLOWSPEC)
147 #define AF_FLOWSPEC (AF_MAX + 2)
148 #endif
149
150 struct flowspec_prefix {
151 uint16_t prefixlen; /* length in bytes */
152 uintptr_t ptr;
153 };
154
155 /* FRR generic prefix structure. */
156 struct prefix {
157 uint8_t family;
158 uint16_t prefixlen;
159 union {
160 uint8_t prefix;
161 struct in_addr prefix4;
162 struct in6_addr prefix6;
163 struct {
164 struct in_addr id;
165 struct in_addr adv_router;
166 } lp;
167 struct ethaddr prefix_eth; /* AF_ETHERNET */
168 uint8_t val[16];
169 uint32_t val32[4];
170 uintptr_t ptr;
171 struct evpn_addr prefix_evpn; /* AF_EVPN */
172 struct flowspec_prefix prefix_flowspec; /* AF_FLOWSPEC */
173 } u __attribute__((aligned(8)));
174 };
175
176 /* IPv4 prefix structure. */
177 struct prefix_ipv4 {
178 uint8_t family;
179 uint16_t prefixlen;
180 struct in_addr prefix __attribute__((aligned(8)));
181 };
182
183 /* IPv6 prefix structure. */
184 struct prefix_ipv6 {
185 uint8_t family;
186 uint16_t prefixlen;
187 struct in6_addr prefix __attribute__((aligned(8)));
188 };
189
190 struct prefix_ls {
191 uint8_t family;
192 uint16_t prefixlen;
193 struct in_addr id __attribute__((aligned(8)));
194 struct in_addr adv_router;
195 };
196
197 /* Prefix for routing distinguisher. */
198 struct prefix_rd {
199 uint8_t family;
200 uint16_t prefixlen;
201 uint8_t val[8] __attribute__((aligned(8)));
202 };
203
204 /* Prefix for ethernet. */
205 struct prefix_eth {
206 uint8_t family;
207 uint16_t prefixlen;
208 struct ethaddr eth_addr __attribute__((aligned(8))); /* AF_ETHERNET */
209 };
210
211 /* EVPN prefix structure. */
212 struct prefix_evpn {
213 uint8_t family;
214 uint16_t prefixlen;
215 struct evpn_addr prefix __attribute__((aligned(8)));
216 };
217
218 static inline int is_evpn_prefix_ipaddr_none(const struct prefix_evpn *evp)
219 {
220 if (evp->prefix.route_type == 2)
221 return IS_IPADDR_NONE(&(evp)->prefix.macip_addr.ip);
222 if (evp->prefix.route_type == 3)
223 return IS_IPADDR_NONE(&(evp)->prefix.imet_addr.ip);
224 if (evp->prefix.route_type == 4)
225 return IS_IPADDR_NONE(&(evp)->prefix.es_addr.ip);
226 if (evp->prefix.route_type == 5)
227 return IS_IPADDR_NONE(&(evp)->prefix.prefix_addr.ip);
228 return 0;
229 }
230
231 static inline int is_evpn_prefix_ipaddr_v4(const struct prefix_evpn *evp)
232 {
233 if (evp->prefix.route_type == 2)
234 return IS_IPADDR_V4(&(evp)->prefix.macip_addr.ip);
235 if (evp->prefix.route_type == 3)
236 return IS_IPADDR_V4(&(evp)->prefix.imet_addr.ip);
237 if (evp->prefix.route_type == 4)
238 return IS_IPADDR_V4(&(evp)->prefix.es_addr.ip);
239 if (evp->prefix.route_type == 5)
240 return IS_IPADDR_V4(&(evp)->prefix.prefix_addr.ip);
241 return 0;
242 }
243
244 static inline int is_evpn_prefix_ipaddr_v6(const struct prefix_evpn *evp)
245 {
246 if (evp->prefix.route_type == 2)
247 return IS_IPADDR_V6(&(evp)->prefix.macip_addr.ip);
248 if (evp->prefix.route_type == 3)
249 return IS_IPADDR_V6(&(evp)->prefix.imet_addr.ip);
250 if (evp->prefix.route_type == 4)
251 return IS_IPADDR_V6(&(evp)->prefix.es_addr.ip);
252 if (evp->prefix.route_type == 5)
253 return IS_IPADDR_V6(&(evp)->prefix.prefix_addr.ip);
254 return 0;
255 }
256
257 /* Prefix for a generic pointer */
258 struct prefix_ptr {
259 uint8_t family;
260 uint16_t prefixlen;
261 uintptr_t prefix __attribute__((aligned(8)));
262 };
263
264 /* Prefix for a Flowspec entry */
265 struct prefix_fs {
266 uint8_t family;
267 uint16_t prefixlen; /* unused */
268 struct flowspec_prefix prefix __attribute__((aligned(8)));
269 };
270
271 struct prefix_sg {
272 uint8_t family;
273 uint16_t prefixlen;
274 struct in_addr src __attribute__((aligned(8)));
275 struct in_addr grp;
276 };
277
278 /* helper to get type safety/avoid casts on calls
279 * (w/o this, functions accepting all prefix types need casts on the caller
280 * side, which strips type safety since the cast will accept any pointer
281 * type.)
282 */
283 #ifndef __cplusplus
284 #define prefixtype(uname, typename, fieldname) \
285 typename *fieldname;
286 #else
287 #define prefixtype(uname, typename, fieldname) \
288 typename *fieldname; \
289 uname(typename *x) { this->fieldname = x; }
290 #endif
291
292 union prefixptr {
293 prefixtype(prefixptr, struct prefix, p)
294 prefixtype(prefixptr, struct prefix_ipv4, p4)
295 prefixtype(prefixptr, struct prefix_ipv6, p6)
296 prefixtype(prefixptr, struct prefix_evpn, evp)
297 prefixtype(prefixptr, struct prefix_fs, fs)
298 } __attribute__((transparent_union));
299
300 union prefixconstptr {
301 prefixtype(prefixconstptr, const struct prefix, p)
302 prefixtype(prefixconstptr, const struct prefix_ipv4, p4)
303 prefixtype(prefixconstptr, const struct prefix_ipv6, p6)
304 prefixtype(prefixconstptr, const struct prefix_evpn, evp)
305 prefixtype(prefixconstptr, const struct prefix_fs, fs)
306 } __attribute__((transparent_union));
307
308 #ifndef INET_ADDRSTRLEN
309 #define INET_ADDRSTRLEN 16
310 #endif /* INET_ADDRSTRLEN */
311
312 #ifndef INET6_ADDRSTRLEN
313 /* dead:beef:dead:beef:dead:beef:dead:beef + \0 */
314 #define INET6_ADDRSTRLEN 46
315 #endif /* INET6_ADDRSTRLEN */
316
317 #ifndef INET6_BUFSIZ
318 #define INET6_BUFSIZ 53
319 #endif /* INET6_BUFSIZ */
320
321 /* Maximum string length of the result of prefix2str */
322 #define PREFIX_STRLEN 80
323
324 /* Max bit/byte length of IPv4 address. */
325 #define IPV4_MAX_BYTELEN 4
326 #define IPV4_MAX_BITLEN 32
327 #define IPV4_MAX_PREFIXLEN 32
328 #define IPV4_ADDR_CMP(D,S) memcmp ((D), (S), IPV4_MAX_BYTELEN)
329
330 static inline bool ipv4_addr_same(const struct in_addr *a,
331 const struct in_addr *b)
332 {
333 return (a->s_addr == b->s_addr);
334 }
335 #define IPV4_ADDR_SAME(A,B) ipv4_addr_same((A), (B))
336
337 static inline void ipv4_addr_copy(struct in_addr *dst,
338 const struct in_addr *src)
339 {
340 dst->s_addr = src->s_addr;
341 }
342 #define IPV4_ADDR_COPY(D,S) ipv4_addr_copy((D), (S))
343
344 #define IPV4_NET0(a) ((((uint32_t)(a)) & 0xff000000) == 0x00000000)
345 #define IPV4_NET127(a) ((((uint32_t)(a)) & 0xff000000) == 0x7f000000)
346 #define IPV4_LINKLOCAL(a) ((((uint32_t)(a)) & 0xffff0000) == 0xa9fe0000)
347 #define IPV4_CLASS_DE(a) ((((uint32_t)(a)) & 0xe0000000) == 0xe0000000)
348 #define IPV4_MC_LINKLOCAL(a) ((((uint32_t)(a)) & 0xffffff00) == 0xe0000000)
349
350 /* Max bit/byte length of IPv6 address. */
351 #define IPV6_MAX_BYTELEN 16
352 #define IPV6_MAX_BITLEN 128
353 #define IPV6_MAX_PREFIXLEN 128
354 #define IPV6_ADDR_CMP(D,S) memcmp ((D), (S), IPV6_MAX_BYTELEN)
355 #define IPV6_ADDR_SAME(D,S) (memcmp ((D), (S), IPV6_MAX_BYTELEN) == 0)
356 #define IPV6_ADDR_COPY(D,S) memcpy ((D), (S), IPV6_MAX_BYTELEN)
357
358 /* Count prefix size from mask length */
359 #define PSIZE(a) (((a) + 7) / (8))
360
361 #define BSIZE(a) ((a) * (8))
362
363 /* Prefix's family member. */
364 #define PREFIX_FAMILY(p) ((p)->family)
365
366 /* glibc defines s6_addr32 to __in6_u.__u6_addr32 if __USE_{MISC || GNU} */
367 #ifndef s6_addr32
368 #if defined(SUNOS_5)
369 /* Some SunOS define s6_addr32 only to kernel */
370 #define s6_addr32 _S6_un._S6_u32
371 #else
372 #define s6_addr32 __u6_addr.__u6_addr32
373 #endif /* SUNOS_5 */
374 #endif /*s6_addr32*/
375
376 /* Prototypes. */
377 extern int str2family(const char *);
378 extern int afi2family(afi_t);
379 extern afi_t family2afi(int);
380 extern const char *family2str(int family);
381 extern const char *safi2str(safi_t safi);
382 extern const char *afi2str(afi_t afi);
383
384 /* Check bit of the prefix. */
385 extern unsigned int prefix_bit(const uint8_t *prefix, const uint16_t prefixlen);
386 extern unsigned int prefix6_bit(const struct in6_addr *prefix,
387 const uint16_t prefixlen);
388
389 extern struct prefix *prefix_new(void);
390 extern void prefix_free(struct prefix *);
391 extern const char *prefix_family_str(const struct prefix *);
392 extern int prefix_blen(const struct prefix *);
393 extern int str2prefix(const char *, struct prefix *);
394
395 #define PREFIX2STR_BUFFER PREFIX_STRLEN
396
397 extern const char *prefix2str(union prefixconstptr, char *, int);
398 extern int prefix_match(const struct prefix *, const struct prefix *);
399 extern int prefix_match_network_statement(const struct prefix *,
400 const struct prefix *);
401 extern int prefix_same(const struct prefix *, const struct prefix *);
402 extern int prefix_cmp(const struct prefix *, const struct prefix *);
403 extern int prefix_common_bits(const struct prefix *, const struct prefix *);
404 extern void prefix_copy(struct prefix *dest, const struct prefix *src);
405 extern void apply_mask(struct prefix *);
406
407 extern struct prefix *sockunion2prefix(const union sockunion *dest,
408 const union sockunion *mask);
409 extern struct prefix *sockunion2hostprefix(const union sockunion *,
410 struct prefix *p);
411 extern void prefix2sockunion(const struct prefix *, union sockunion *);
412
413 extern int str2prefix_eth(const char *, struct prefix_eth *);
414
415 extern struct prefix_ipv4 *prefix_ipv4_new(void);
416 extern void prefix_ipv4_free(struct prefix_ipv4 *);
417 extern int str2prefix_ipv4(const char *, struct prefix_ipv4 *);
418 extern void apply_mask_ipv4(struct prefix_ipv4 *);
419
420 #define PREFIX_COPY(DST, SRC) \
421 *((struct prefix *)(DST)) = *((const struct prefix *)(SRC))
422 #define PREFIX_COPY_IPV4(DST, SRC) \
423 *((struct prefix_ipv4 *)(DST)) = *((const struct prefix_ipv4 *)(SRC));
424
425 extern int prefix_ipv4_any(const struct prefix_ipv4 *);
426 extern void apply_classful_mask_ipv4(struct prefix_ipv4 *);
427
428 extern uint8_t ip_masklen(struct in_addr);
429 extern void masklen2ip(const int, struct in_addr *);
430 /* returns the network portion of the host address */
431 extern in_addr_t ipv4_network_addr(in_addr_t hostaddr, int masklen);
432 /* given the address of a host on a network and the network mask length,
433 * calculate the broadcast address for that network;
434 * special treatment for /31: returns the address of the other host
435 * on the network by flipping the host bit */
436 extern in_addr_t ipv4_broadcast_addr(in_addr_t hostaddr, int masklen);
437
438 extern int netmask_str2prefix_str(const char *, const char *, char *);
439
440 extern struct prefix_ipv6 *prefix_ipv6_new(void);
441 extern void prefix_ipv6_free(struct prefix_ipv6 *);
442 extern int str2prefix_ipv6(const char *, struct prefix_ipv6 *);
443 extern void apply_mask_ipv6(struct prefix_ipv6 *);
444
445 #define PREFIX_COPY_IPV6(DST, SRC) \
446 *((struct prefix_ipv6 *)(DST)) = *((const struct prefix_ipv6 *)(SRC));
447
448 extern int ip6_masklen(struct in6_addr);
449 extern void masklen2ip6(const int, struct in6_addr *);
450
451 extern const char *inet6_ntoa(struct in6_addr);
452
453 extern int is_zero_mac(struct ethaddr *mac);
454 extern int prefix_str2mac(const char *str, struct ethaddr *mac);
455 extern char *prefix_mac2str(const struct ethaddr *mac, char *buf, int size);
456
457 extern unsigned prefix_hash_key(void *pp);
458
459 extern int str_to_esi(const char *str, esi_t *esi);
460 extern char *esi_to_str(const esi_t *esi, char *buf, int size);
461 extern void prefix_hexdump(const struct prefix *p);
462 extern void prefix_evpn_hexdump(const struct prefix_evpn *p);
463
464 static inline int ipv6_martian(struct in6_addr *addr)
465 {
466 struct in6_addr localhost_addr;
467
468 inet_pton(AF_INET6, "::1", &localhost_addr);
469
470 if (IPV6_ADDR_SAME(&localhost_addr, addr))
471 return 1;
472
473 return 0;
474 }
475
476 extern int macstr2prefix_evpn(const char *str, struct prefix_evpn *p);
477
478 /* NOTE: This routine expects the address argument in network byte order. */
479 static inline int ipv4_martian(struct in_addr *addr)
480 {
481 in_addr_t ip = ntohl(addr->s_addr);
482
483 if (IPV4_NET0(ip) || IPV4_NET127(ip) || IPV4_CLASS_DE(ip)) {
484 return 1;
485 }
486 return 0;
487 }
488
489 static inline int is_default_prefix(const struct prefix *p)
490 {
491 if (!p)
492 return 0;
493
494 if ((p->family == AF_INET) && (p->u.prefix4.s_addr == INADDR_ANY)
495 && (p->prefixlen == 0))
496 return 1;
497
498 if ((p->family == AF_INET6) && (p->prefixlen == 0)
499 && (!memcmp(&p->u.prefix6, &in6addr_any, sizeof(struct in6_addr))))
500 return 1;
501
502 return 0;
503 }
504
505 static inline int is_host_route(struct prefix *p)
506 {
507 if (p->family == AF_INET)
508 return (p->prefixlen == IPV4_MAX_BITLEN);
509 else if (p->family == AF_INET6)
510 return (p->prefixlen == IPV6_MAX_BITLEN);
511 return 0;
512 }
513
514 #ifdef __cplusplus
515 }
516 #endif
517
518 #endif /* _ZEBRA_PREFIX_H */