3 * Copyright (C) 1998 Kunihiro Ishiguro
5 * This file is part of GNU Zebra.
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
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.
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23 #ifndef _ZEBRA_PREFIX_H
24 #define _ZEBRA_PREFIX_H
26 #include "sockunion.h"
29 * A struct prefix contains an address family, a prefix length, and an
30 * address. This can represent either a 'network prefix' as defined
31 * by CIDR, where the 'host bits' of the prefix are 0
32 * (e.g. AF_INET:10.0.0.0/8), or an address and netmask
33 * (e.g. AF_INET:10.0.0.9/8), such as might be configured on an
37 /* IPv4 and IPv6 unified prefix structure. */
45 struct in_addr prefix4
;
47 struct in6_addr prefix6
;
48 #endif /* HAVE_IPV6 */
52 struct in_addr adv_router
;
55 } u
__attribute__ ((aligned (8)));
58 /* IPv4 prefix structure. */
63 struct in_addr prefix
__attribute__ ((aligned (8)));
66 /* IPv6 prefix structure. */
72 struct in6_addr prefix
__attribute__ ((aligned (8)));
74 #endif /* HAVE_IPV6 */
80 struct in_addr id
__attribute__ ((aligned (8)));
81 struct in_addr adv_router
;
84 /* Prefix for routing distinguisher. */
89 u_char val
[8] __attribute__ ((aligned (8)));
92 #ifndef INET_ADDRSTRLEN
93 #define INET_ADDRSTRLEN 16
94 #endif /* INET_ADDRSTRLEN */
96 #ifndef INET6_ADDRSTRLEN
97 #define INET6_ADDRSTRLEN 46
98 #endif /* INET6_ADDRSTRLEN */
101 #define INET6_BUFSIZ 51
102 #endif /* INET6_BUFSIZ */
104 /* Max bit/byte length of IPv4 address. */
105 #define IPV4_MAX_BYTELEN 4
106 #define IPV4_MAX_BITLEN 32
107 #define IPV4_MAX_PREFIXLEN 32
108 #define IPV4_ADDR_CMP(D,S) memcmp ((D), (S), IPV4_MAX_BYTELEN)
109 #define IPV4_ADDR_SAME(D,S) (memcmp ((D), (S), IPV4_MAX_BYTELEN) == 0)
110 #define IPV4_ADDR_COPY(D,S) memcpy ((D), (S), IPV4_MAX_BYTELEN)
112 #define IPV4_NET0(a) ((((u_int32_t) (a)) & 0xff000000) == 0x00000000)
113 #define IPV4_NET127(a) ((((u_int32_t) (a)) & 0xff000000) == 0x7f000000)
114 #define IPV4_LINKLOCAL(a) ((((u_int32_t) (a)) & 0xffff0000) == 0xa9fe0000)
116 /* Max bit/byte length of IPv6 address. */
117 #define IPV6_MAX_BYTELEN 16
118 #define IPV6_MAX_BITLEN 128
119 #define IPV6_MAX_PREFIXLEN 128
120 #define IPV6_ADDR_CMP(D,S) memcmp ((D), (S), IPV6_MAX_BYTELEN)
121 #define IPV6_ADDR_SAME(D,S) (memcmp ((D), (S), IPV6_MAX_BYTELEN) == 0)
122 #define IPV6_ADDR_COPY(D,S) memcpy ((D), (S), IPV6_MAX_BYTELEN)
124 /* Count prefix size from mask length */
125 #define PSIZE(a) (((a) + 7) / (8))
127 /* Prefix's family member. */
128 #define PREFIX_FAMILY(p) ((p)->family)
131 extern int afi2family (int);
132 extern int family2afi (int);
134 extern struct prefix
*prefix_new (void);
135 extern void prefix_free (struct prefix
*);
136 extern const char *prefix_family_str (const struct prefix
*);
137 extern int prefix_blen (const struct prefix
*);
138 extern int str2prefix (const char *, struct prefix
*);
139 extern int prefix2str (const struct prefix
*, char *, int);
140 extern int prefix_match (const struct prefix
*, const struct prefix
*);
141 extern int prefix_same (const struct prefix
*, const struct prefix
*);
142 extern int prefix_cmp (const struct prefix
*, const struct prefix
*);
143 extern void prefix_copy (struct prefix
*dest
, const struct prefix
*src
);
144 extern void apply_mask (struct prefix
*);
146 extern struct prefix
*sockunion2prefix (const union sockunion
*dest
,
147 const union sockunion
*mask
);
148 extern struct prefix
*sockunion2hostprefix (const union sockunion
*);
150 extern struct prefix_ipv4
*prefix_ipv4_new (void);
151 extern void prefix_ipv4_free (struct prefix_ipv4
*);
152 extern int str2prefix_ipv4 (const char *, struct prefix_ipv4
*);
153 extern void apply_mask_ipv4 (struct prefix_ipv4
*);
155 #define PREFIX_COPY_IPV4(DST, SRC) \
156 *((struct prefix_ipv4 *)(DST)) = *((const struct prefix_ipv4 *)(SRC));
158 extern int prefix_ipv4_any (const struct prefix_ipv4
*);
159 extern void apply_classful_mask_ipv4 (struct prefix_ipv4
*);
161 extern u_char
ip_masklen (struct in_addr
);
162 extern void masklen2ip (int, struct in_addr
*);
163 /* returns the network portion of the host address */
164 extern in_addr_t
ipv4_network_addr (in_addr_t hostaddr
, int masklen
);
165 /* given the address of a host on a network and the network mask length,
166 * calculate the broadcast address for that network;
167 * special treatment for /31: returns the address of the other host
168 * on the network by flipping the host bit */
169 extern in_addr_t
ipv4_broadcast_addr (in_addr_t hostaddr
, int masklen
);
171 extern int netmask_str2prefix_str (const char *, const char *, char *);
174 extern struct prefix_ipv6
*prefix_ipv6_new (void);
175 extern void prefix_ipv6_free (struct prefix_ipv6
*);
176 extern int str2prefix_ipv6 (const char *, struct prefix_ipv6
*);
177 extern void apply_mask_ipv6 (struct prefix_ipv6
*);
179 #define PREFIX_COPY_IPV6(DST, SRC) \
180 *((struct prefix_ipv6 *)(DST)) = *((const struct prefix_ipv6 *)(SRC));
182 extern int ip6_masklen (struct in6_addr
);
183 extern void masklen2ip6 (int, struct in6_addr
*);
185 extern void str2in6_addr (const char *, struct in6_addr
*);
186 extern const char *inet6_ntoa (struct in6_addr
);
188 #endif /* HAVE_IPV6 */
190 extern int all_digit (const char *);
192 #endif /* _ZEBRA_PREFIX_H */