]> git.proxmox.com Git - mirror_frr.git/blob - lib/prefix.c
Merge pull request #4778 from mjstapp/dplane_macs
[mirror_frr.git] / lib / prefix.c
1 /*
2 * Prefix related functions.
3 * Copyright (C) 1997, 98, 99 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 #include <zebra.h>
23
24 #include "prefix.h"
25 #include "vty.h"
26 #include "sockunion.h"
27 #include "memory.h"
28 #include "log.h"
29 #include "jhash.h"
30 #include "lib_errors.h"
31 #include "printfrr.h"
32
33 DEFINE_MTYPE_STATIC(LIB, PREFIX, "Prefix")
34 DEFINE_MTYPE_STATIC(LIB, PREFIX_FLOWSPEC, "Prefix Flowspec")
35
36 /* Maskbit. */
37 static const uint8_t maskbit[] = {0x00, 0x80, 0xc0, 0xe0, 0xf0,
38 0xf8, 0xfc, 0xfe, 0xff};
39
40 static const struct in6_addr maskbytes6[] = {
41 /* /0 */ {{{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
42 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}}},
43 /* /1 */
44 {{{0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
45 0x00, 0x00, 0x00, 0x00, 0x00}}},
46 /* /2 */
47 {{{0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
48 0x00, 0x00, 0x00, 0x00, 0x00}}},
49 /* /3 */
50 {{{0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
51 0x00, 0x00, 0x00, 0x00, 0x00}}},
52 /* /4 */
53 {{{0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
54 0x00, 0x00, 0x00, 0x00, 0x00}}},
55 /* /5 */
56 {{{0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
57 0x00, 0x00, 0x00, 0x00, 0x00}}},
58 /* /6 */
59 {{{0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
60 0x00, 0x00, 0x00, 0x00, 0x00}}},
61 /* /7 */
62 {{{0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
63 0x00, 0x00, 0x00, 0x00, 0x00}}},
64 /* /8 */
65 {{{0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
66 0x00, 0x00, 0x00, 0x00, 0x00}}},
67 /* /9 */
68 {{{0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
69 0x00, 0x00, 0x00, 0x00, 0x00}}},
70 /* /10 */
71 {{{0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
72 0x00, 0x00, 0x00, 0x00, 0x00}}},
73 /* /11 */
74 {{{0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
75 0x00, 0x00, 0x00, 0x00, 0x00}}},
76 /* /12 */
77 {{{0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
78 0x00, 0x00, 0x00, 0x00, 0x00}}},
79 /* /13 */
80 {{{0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
81 0x00, 0x00, 0x00, 0x00, 0x00}}},
82 /* /14 */
83 {{{0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
84 0x00, 0x00, 0x00, 0x00, 0x00}}},
85 /* /15 */
86 {{{0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
87 0x00, 0x00, 0x00, 0x00, 0x00}}},
88 /* /16 */
89 {{{0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
90 0x00, 0x00, 0x00, 0x00, 0x00}}},
91 /* /17 */
92 {{{0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
93 0x00, 0x00, 0x00, 0x00, 0x00}}},
94 /* /18 */
95 {{{0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
96 0x00, 0x00, 0x00, 0x00, 0x00}}},
97 /* /19 */
98 {{{0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
99 0x00, 0x00, 0x00, 0x00, 0x00}}},
100 /* /20 */
101 {{{0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
102 0x00, 0x00, 0x00, 0x00, 0x00}}},
103 /* /21 */
104 {{{0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
105 0x00, 0x00, 0x00, 0x00, 0x00}}},
106 /* /22 */
107 {{{0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
108 0x00, 0x00, 0x00, 0x00, 0x00}}},
109 /* /23 */
110 {{{0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
111 0x00, 0x00, 0x00, 0x00, 0x00}}},
112 /* /24 */
113 {{{0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
114 0x00, 0x00, 0x00, 0x00, 0x00}}},
115 /* /25 */
116 {{{0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
117 0x00, 0x00, 0x00, 0x00, 0x00}}},
118 /* /26 */
119 {{{0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
120 0x00, 0x00, 0x00, 0x00, 0x00}}},
121 /* /27 */
122 {{{0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
123 0x00, 0x00, 0x00, 0x00, 0x00}}},
124 /* /28 */
125 {{{0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
126 0x00, 0x00, 0x00, 0x00, 0x00}}},
127 /* /29 */
128 {{{0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
129 0x00, 0x00, 0x00, 0x00, 0x00}}},
130 /* /30 */
131 {{{0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
132 0x00, 0x00, 0x00, 0x00, 0x00}}},
133 /* /31 */
134 {{{0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
135 0x00, 0x00, 0x00, 0x00, 0x00}}},
136 /* /32 */
137 {{{0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
138 0x00, 0x00, 0x00, 0x00, 0x00}}},
139 /* /33 */
140 {{{0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
141 0x00, 0x00, 0x00, 0x00, 0x00}}},
142 /* /34 */
143 {{{0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
144 0x00, 0x00, 0x00, 0x00, 0x00}}},
145 /* /35 */
146 {{{0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
147 0x00, 0x00, 0x00, 0x00, 0x00}}},
148 /* /36 */
149 {{{0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
150 0x00, 0x00, 0x00, 0x00, 0x00}}},
151 /* /37 */
152 {{{0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
153 0x00, 0x00, 0x00, 0x00, 0x00}}},
154 /* /38 */
155 {{{0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
156 0x00, 0x00, 0x00, 0x00, 0x00}}},
157 /* /39 */
158 {{{0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
159 0x00, 0x00, 0x00, 0x00, 0x00}}},
160 /* /40 */
161 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
162 0x00, 0x00, 0x00, 0x00, 0x00}}},
163 /* /41 */
164 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00,
165 0x00, 0x00, 0x00, 0x00, 0x00}}},
166 /* /42 */
167 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00,
168 0x00, 0x00, 0x00, 0x00, 0x00}}},
169 /* /43 */
170 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00,
171 0x00, 0x00, 0x00, 0x00, 0x00}}},
172 /* /44 */
173 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00,
174 0x00, 0x00, 0x00, 0x00, 0x00}}},
175 /* /45 */
176 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00,
177 0x00, 0x00, 0x00, 0x00, 0x00}}},
178 /* /46 */
179 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00,
180 0x00, 0x00, 0x00, 0x00, 0x00}}},
181 /* /47 */
182 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00,
183 0x00, 0x00, 0x00, 0x00, 0x00}}},
184 /* /48 */
185 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00,
186 0x00, 0x00, 0x00, 0x00, 0x00}}},
187 /* /49 */
188 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00,
189 0x00, 0x00, 0x00, 0x00, 0x00}}},
190 /* /50 */
191 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00,
192 0x00, 0x00, 0x00, 0x00, 0x00}}},
193 /* /51 */
194 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00,
195 0x00, 0x00, 0x00, 0x00, 0x00}}},
196 /* /52 */
197 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00,
198 0x00, 0x00, 0x00, 0x00, 0x00}}},
199 /* /53 */
200 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00,
201 0x00, 0x00, 0x00, 0x00, 0x00}}},
202 /* /54 */
203 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00,
204 0x00, 0x00, 0x00, 0x00, 0x00}}},
205 /* /55 */
206 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00,
207 0x00, 0x00, 0x00, 0x00, 0x00}}},
208 /* /56 */
209 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
210 0x00, 0x00, 0x00, 0x00, 0x00}}},
211 /* /57 */
212 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00,
213 0x00, 0x00, 0x00, 0x00, 0x00}}},
214 /* /58 */
215 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00,
216 0x00, 0x00, 0x00, 0x00, 0x00}}},
217 /* /59 */
218 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00,
219 0x00, 0x00, 0x00, 0x00, 0x00}}},
220 /* /60 */
221 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00,
222 0x00, 0x00, 0x00, 0x00, 0x00}}},
223 /* /61 */
224 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00,
225 0x00, 0x00, 0x00, 0x00, 0x00}}},
226 /* /62 */
227 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00,
228 0x00, 0x00, 0x00, 0x00, 0x00}}},
229 /* /63 */
230 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00,
231 0x00, 0x00, 0x00, 0x00, 0x00}}},
232 /* /64 */
233 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00,
234 0x00, 0x00, 0x00, 0x00, 0x00}}},
235 /* /65 */
236 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00,
237 0x00, 0x00, 0x00, 0x00, 0x00}}},
238 /* /66 */
239 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00,
240 0x00, 0x00, 0x00, 0x00, 0x00}}},
241 /* /67 */
242 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00,
243 0x00, 0x00, 0x00, 0x00, 0x00}}},
244 /* /68 */
245 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00,
246 0x00, 0x00, 0x00, 0x00, 0x00}}},
247 /* /69 */
248 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00,
249 0x00, 0x00, 0x00, 0x00, 0x00}}},
250 /* /70 */
251 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00,
252 0x00, 0x00, 0x00, 0x00, 0x00}}},
253 /* /71 */
254 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00,
255 0x00, 0x00, 0x00, 0x00, 0x00}}},
256 /* /72 */
257 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,
258 0x00, 0x00, 0x00, 0x00, 0x00}}},
259 /* /73 */
260 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00,
261 0x00, 0x00, 0x00, 0x00, 0x00}}},
262 /* /74 */
263 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00,
264 0x00, 0x00, 0x00, 0x00, 0x00}}},
265 /* /75 */
266 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00,
267 0x00, 0x00, 0x00, 0x00, 0x00}}},
268 /* /76 */
269 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00,
270 0x00, 0x00, 0x00, 0x00, 0x00}}},
271 /* /77 */
272 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00,
273 0x00, 0x00, 0x00, 0x00, 0x00}}},
274 /* /78 */
275 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00,
276 0x00, 0x00, 0x00, 0x00, 0x00}}},
277 /* /79 */
278 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00,
279 0x00, 0x00, 0x00, 0x00, 0x00}}},
280 /* /80 */
281 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00,
282 0x00, 0x00, 0x00, 0x00, 0x00}}},
283 /* /81 */
284 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
285 0x00, 0x00, 0x00, 0x00, 0x00}}},
286 /* /82 */
287 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
288 0x00, 0x00, 0x00, 0x00, 0x00}}},
289 /* /83 */
290 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
291 0x00, 0x00, 0x00, 0x00, 0x00}}},
292 /* /84 */
293 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
294 0x00, 0x00, 0x00, 0x00, 0x00}}},
295 /* /85 */
296 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
297 0x00, 0x00, 0x00, 0x00, 0x00}}},
298 /* /86 */
299 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
300 0x00, 0x00, 0x00, 0x00, 0x00}}},
301 /* /87 */
302 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
303 0x00, 0x00, 0x00, 0x00, 0x00}}},
304 /* /88 */
305 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
306 0x00, 0x00, 0x00, 0x00, 0x00}}},
307 /* /89 */
308 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
309 0x80, 0x00, 0x00, 0x00, 0x00}}},
310 /* /90 */
311 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
312 0xc0, 0x00, 0x00, 0x00, 0x00}}},
313 /* /91 */
314 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
315 0xe0, 0x00, 0x00, 0x00, 0x00}}},
316 /* /92 */
317 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
318 0xf0, 0x00, 0x00, 0x00, 0x00}}},
319 /* /93 */
320 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
321 0xf8, 0x00, 0x00, 0x00, 0x00}}},
322 /* /94 */
323 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
324 0xfc, 0x00, 0x00, 0x00, 0x00}}},
325 /* /95 */
326 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
327 0xfe, 0x00, 0x00, 0x00, 0x00}}},
328 /* /96 */
329 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
330 0xff, 0x00, 0x00, 0x00, 0x00}}},
331 /* /97 */
332 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
333 0xff, 0x80, 0x00, 0x00, 0x00}}},
334 /* /98 */
335 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
336 0xff, 0xc0, 0x00, 0x00, 0x00}}},
337 /* /99 */
338 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
339 0xff, 0xe0, 0x00, 0x00, 0x00}}},
340 /* /100 */
341 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
342 0xff, 0xf0, 0x00, 0x00, 0x00}}},
343 /* /101 */
344 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
345 0xff, 0xf8, 0x00, 0x00, 0x00}}},
346 /* /102 */
347 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
348 0xff, 0xfc, 0x00, 0x00, 0x00}}},
349 /* /103 */
350 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
351 0xff, 0xfe, 0x00, 0x00, 0x00}}},
352 /* /104 */
353 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
354 0xff, 0xff, 0x00, 0x00, 0x00}}},
355 /* /105 */
356 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
357 0xff, 0xff, 0x80, 0x00, 0x00}}},
358 /* /106 */
359 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
360 0xff, 0xff, 0xc0, 0x00, 0x00}}},
361 /* /107 */
362 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
363 0xff, 0xff, 0xe0, 0x00, 0x00}}},
364 /* /108 */
365 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
366 0xff, 0xff, 0xf0, 0x00, 0x00}}},
367 /* /109 */
368 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
369 0xff, 0xff, 0xf8, 0x00, 0x00}}},
370 /* /110 */
371 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
372 0xff, 0xff, 0xfc, 0x00, 0x00}}},
373 /* /111 */
374 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
375 0xff, 0xff, 0xfe, 0x00, 0x00}}},
376 /* /112 */
377 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
378 0xff, 0xff, 0xff, 0x00, 0x00}}},
379 /* /113 */
380 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
381 0xff, 0xff, 0xff, 0x80, 0x00}}},
382 /* /114 */
383 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
384 0xff, 0xff, 0xff, 0xc0, 0x00}}},
385 /* /115 */
386 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
387 0xff, 0xff, 0xff, 0xe0, 0x00}}},
388 /* /116 */
389 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
390 0xff, 0xff, 0xff, 0xf0, 0x00}}},
391 /* /117 */
392 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
393 0xff, 0xff, 0xff, 0xf8, 0x00}}},
394 /* /118 */
395 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
396 0xff, 0xff, 0xff, 0xfc, 0x00}}},
397 /* /119 */
398 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
399 0xff, 0xff, 0xff, 0xfe, 0x00}}},
400 /* /120 */
401 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
402 0xff, 0xff, 0xff, 0xff, 0x00}}},
403 /* /121 */
404 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
405 0xff, 0xff, 0xff, 0xff, 0x80}}},
406 /* /122 */
407 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
408 0xff, 0xff, 0xff, 0xff, 0xc0}}},
409 /* /123 */
410 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
411 0xff, 0xff, 0xff, 0xff, 0xe0}}},
412 /* /124 */
413 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
414 0xff, 0xff, 0xff, 0xff, 0xf0}}},
415 /* /125 */
416 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
417 0xff, 0xff, 0xff, 0xff, 0xf8}}},
418 /* /126 */
419 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
420 0xff, 0xff, 0xff, 0xff, 0xfc}}},
421 /* /127 */
422 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
423 0xff, 0xff, 0xff, 0xff, 0xfe}}},
424 /* /128 */
425 {{{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
426 0xff, 0xff, 0xff, 0xff, 0xff}}}};
427
428 /* Number of bits in prefix type. */
429 #ifndef PNBBY
430 #define PNBBY 8
431 #endif /* PNBBY */
432
433 #define MASKBIT(offset) ((0xff << (PNBBY - (offset))) & 0xff)
434
435 void prefix_hexdump(const struct prefix *p)
436 {
437 char buf[PREFIX_STRLEN];
438
439 zlog_debug("prefix: %s",
440 prefix2str(p, buf, sizeof(buf)));
441 zlog_hexdump(p, sizeof(struct prefix));
442 }
443
444 int is_zero_mac(struct ethaddr *mac)
445 {
446 int i = 0;
447
448 for (i = 0; i < ETH_ALEN; i++) {
449 if (mac->octet[i])
450 return 0;
451 }
452
453 return 1;
454 }
455
456 unsigned int prefix_bit(const uint8_t *prefix, const uint16_t prefixlen)
457 {
458 unsigned int offset = prefixlen / 8;
459 unsigned int shift = 7 - (prefixlen % 8);
460
461 return (prefix[offset] >> shift) & 1;
462 }
463
464 unsigned int prefix6_bit(const struct in6_addr *prefix, const uint16_t prefixlen)
465 {
466 return prefix_bit((const uint8_t *)&prefix->s6_addr, prefixlen);
467 }
468
469 int str2family(const char *string)
470 {
471 if (!strcmp("ipv4", string))
472 return AF_INET;
473 else if (!strcmp("ipv6", string))
474 return AF_INET6;
475 else if (!strcmp("ethernet", string))
476 return AF_ETHERNET;
477 else if (!strcmp("evpn", string))
478 return AF_EVPN;
479 return -1;
480 }
481
482 const char *family2str(int family)
483 {
484 switch (family) {
485 case AF_INET:
486 return "IPv4";
487 case AF_INET6:
488 return "IPv6";
489 case AF_ETHERNET:
490 return "Ethernet";
491 case AF_EVPN:
492 return "Evpn";
493 }
494 return "?";
495 }
496
497 /* Address Famiy Identifier to Address Family converter. */
498 int afi2family(afi_t afi)
499 {
500 if (afi == AFI_IP)
501 return AF_INET;
502 else if (afi == AFI_IP6)
503 return AF_INET6;
504 else if (afi == AFI_L2VPN)
505 return AF_ETHERNET;
506 /* NOTE: EVPN code should NOT use this interface. */
507 return 0;
508 }
509
510 afi_t family2afi(int family)
511 {
512 if (family == AF_INET)
513 return AFI_IP;
514 else if (family == AF_INET6)
515 return AFI_IP6;
516 else if (family == AF_ETHERNET || family == AF_EVPN)
517 return AFI_L2VPN;
518 return 0;
519 }
520
521 const char *afi2str(afi_t afi)
522 {
523 switch (afi) {
524 case AFI_IP:
525 return "IPv4";
526 case AFI_IP6:
527 return "IPv6";
528 case AFI_L2VPN:
529 return "l2vpn";
530 case AFI_MAX:
531 return "bad-value";
532 default:
533 break;
534 }
535 return NULL;
536 }
537
538 const char *safi2str(safi_t safi)
539 {
540 switch (safi) {
541 case SAFI_UNICAST:
542 return "unicast";
543 case SAFI_MULTICAST:
544 return "multicast";
545 case SAFI_MPLS_VPN:
546 return "vpn";
547 case SAFI_ENCAP:
548 return "encap";
549 case SAFI_EVPN:
550 return "evpn";
551 case SAFI_LABELED_UNICAST:
552 return "labeled-unicast";
553 case SAFI_FLOWSPEC:
554 return "flowspec";
555 default:
556 return "unknown";
557 }
558 }
559
560 /* If n includes p prefix then return 1 else return 0. */
561 int prefix_match(const struct prefix *n, const struct prefix *p)
562 {
563 int offset;
564 int shift;
565 const uint8_t *np, *pp;
566
567 /* If n's prefix is longer than p's one return 0. */
568 if (n->prefixlen > p->prefixlen)
569 return 0;
570
571 if (n->family == AF_FLOWSPEC) {
572 /* prefixlen is unused. look at fs prefix len */
573 if (n->u.prefix_flowspec.prefixlen >
574 p->u.prefix_flowspec.prefixlen)
575 return 0;
576
577 /* Set both prefix's head pointer. */
578 np = (const uint8_t *)&n->u.prefix_flowspec.ptr;
579 pp = (const uint8_t *)&p->u.prefix_flowspec.ptr;
580
581 offset = n->u.prefix_flowspec.prefixlen;
582
583 while (offset--)
584 if (np[offset] != pp[offset])
585 return 0;
586 return 1;
587 }
588
589 /* Set both prefix's head pointer. */
590 np = n->u.val;
591 pp = p->u.val;
592
593 offset = n->prefixlen / PNBBY;
594 shift = n->prefixlen % PNBBY;
595
596 if (shift)
597 if (maskbit[shift] & (np[offset] ^ pp[offset]))
598 return 0;
599
600 while (offset--)
601 if (np[offset] != pp[offset])
602 return 0;
603 return 1;
604 }
605
606 /* If n includes p then return 1 else return 0. Prefix mask is not considered */
607 int prefix_match_network_statement(const struct prefix *n,
608 const struct prefix *p)
609 {
610 int offset;
611 int shift;
612 const uint8_t *np, *pp;
613
614 /* Set both prefix's head pointer. */
615 np = n->u.val;
616 pp = p->u.val;
617
618 offset = n->prefixlen / PNBBY;
619 shift = n->prefixlen % PNBBY;
620
621 if (shift)
622 if (maskbit[shift] & (np[offset] ^ pp[offset]))
623 return 0;
624
625 while (offset--)
626 if (np[offset] != pp[offset])
627 return 0;
628 return 1;
629 }
630
631 #ifdef __clang_analyzer__
632 #undef prefix_copy /* cf. prefix.h */
633 #endif
634
635 void prefix_copy(union prefixptr udest, union prefixconstptr usrc)
636 {
637 struct prefix *dest = udest.p;
638 const struct prefix *src = usrc.p;
639
640 dest->family = src->family;
641 dest->prefixlen = src->prefixlen;
642
643 if (src->family == AF_INET)
644 dest->u.prefix4 = src->u.prefix4;
645 else if (src->family == AF_INET6)
646 dest->u.prefix6 = src->u.prefix6;
647 else if (src->family == AF_ETHERNET) {
648 memcpy(&dest->u.prefix_eth, &src->u.prefix_eth,
649 sizeof(struct ethaddr));
650 } else if (src->family == AF_EVPN) {
651 memcpy(&dest->u.prefix_evpn, &src->u.prefix_evpn,
652 sizeof(struct evpn_addr));
653 } else if (src->family == AF_UNSPEC) {
654 dest->u.lp.id = src->u.lp.id;
655 dest->u.lp.adv_router = src->u.lp.adv_router;
656 } else if (src->family == AF_FLOWSPEC) {
657 void *temp;
658 int len;
659
660 len = src->u.prefix_flowspec.prefixlen;
661 dest->u.prefix_flowspec.prefixlen =
662 src->u.prefix_flowspec.prefixlen;
663 dest->family = src->family;
664 temp = XCALLOC(MTYPE_PREFIX_FLOWSPEC, len);
665 dest->u.prefix_flowspec.ptr = (uintptr_t)temp;
666 memcpy((void *)dest->u.prefix_flowspec.ptr,
667 (void *)src->u.prefix_flowspec.ptr, len);
668 } else {
669 flog_err(EC_LIB_DEVELOPMENT,
670 "prefix_copy(): Unknown address family %d",
671 src->family);
672 assert(0);
673 }
674 }
675
676 /*
677 * Return 1 if the address/netmask contained in the prefix structure
678 * is the same, and else return 0. For this routine, 'same' requires
679 * that not only the prefix length and the network part be the same,
680 * but also the host part. Thus, 10.0.0.1/8 and 10.0.0.2/8 are not
681 * the same. Note that this routine has the same return value sense
682 * as '==' (which is different from prefix_cmp).
683 */
684 int prefix_same(union prefixconstptr up1, union prefixconstptr up2)
685 {
686 const struct prefix *p1 = up1.p;
687 const struct prefix *p2 = up2.p;
688
689 if ((p1 && !p2) || (!p1 && p2))
690 return 0;
691
692 if (!p1 && !p2)
693 return 1;
694
695 if (p1->family == p2->family && p1->prefixlen == p2->prefixlen) {
696 if (p1->family == AF_INET)
697 if (IPV4_ADDR_SAME(&p1->u.prefix4, &p2->u.prefix4))
698 return 1;
699 if (p1->family == AF_INET6)
700 if (IPV6_ADDR_SAME(&p1->u.prefix6.s6_addr,
701 &p2->u.prefix6.s6_addr))
702 return 1;
703 if (p1->family == AF_ETHERNET)
704 if (!memcmp(&p1->u.prefix_eth, &p2->u.prefix_eth,
705 sizeof(struct ethaddr)))
706 return 1;
707 if (p1->family == AF_EVPN)
708 if (!memcmp(&p1->u.prefix_evpn, &p2->u.prefix_evpn,
709 sizeof(struct evpn_addr)))
710 return 1;
711 if (p1->family == AF_FLOWSPEC) {
712 if (p1->u.prefix_flowspec.prefixlen !=
713 p2->u.prefix_flowspec.prefixlen)
714 return 0;
715 if (!memcmp(&p1->u.prefix_flowspec.ptr,
716 &p2->u.prefix_flowspec.ptr,
717 p2->u.prefix_flowspec.prefixlen))
718 return 1;
719 }
720 }
721 return 0;
722 }
723
724 /*
725 * Return -1/0/1 comparing the prefixes in a way that gives a full/linear
726 * order.
727 *
728 * Network prefixes are considered the same if the prefix lengths are equal
729 * and the network parts are the same. Host bits (which are considered masked
730 * by the prefix length) are not significant. Thus, 10.0.0.1/8 and
731 * 10.0.0.2/8 are considered equivalent by this routine. Note that
732 * this routine has the same return sense as strcmp (which is different
733 * from prefix_same).
734 */
735 int prefix_cmp(union prefixconstptr up1, union prefixconstptr up2)
736 {
737 const struct prefix *p1 = up1.p;
738 const struct prefix *p2 = up2.p;
739 int offset;
740 int shift;
741 int i;
742
743 /* Set both prefix's head pointer. */
744 const uint8_t *pp1;
745 const uint8_t *pp2;
746
747 if (p1->family != p2->family)
748 return numcmp(p1->family, p2->family);
749 if (p1->family == AF_FLOWSPEC) {
750 pp1 = (const uint8_t *)p1->u.prefix_flowspec.ptr;
751 pp2 = (const uint8_t *)p2->u.prefix_flowspec.ptr;
752
753 if (p1->u.prefix_flowspec.prefixlen !=
754 p2->u.prefix_flowspec.prefixlen)
755 return numcmp(p1->u.prefix_flowspec.prefixlen,
756 p2->u.prefix_flowspec.prefixlen);
757
758 offset = p1->u.prefix_flowspec.prefixlen;
759 while (offset--)
760 if (pp1[offset] != pp2[offset])
761 return numcmp(pp1[offset], pp2[offset]);
762 return 0;
763 }
764 pp1 = p1->u.val;
765 pp2 = p2->u.val;
766
767 if (p1->prefixlen != p2->prefixlen)
768 return numcmp(p1->prefixlen, p2->prefixlen);
769 offset = p1->prefixlen / PNBBY;
770 shift = p1->prefixlen % PNBBY;
771
772 i = memcmp(pp1, pp2, offset);
773 if (i)
774 return i;
775
776 return numcmp(pp1[offset] & maskbit[shift],
777 pp2[offset] & maskbit[shift]);
778 }
779
780 /*
781 * Count the number of common bits in 2 prefixes. The prefix length is
782 * ignored for this function; the whole prefix is compared. If the prefix
783 * address families don't match, return -1; otherwise the return value is
784 * in range 0 ... maximum prefix length for the address family.
785 */
786 int prefix_common_bits(const struct prefix *p1, const struct prefix *p2)
787 {
788 int pos, bit;
789 int length = 0;
790 uint8_t xor ;
791
792 /* Set both prefix's head pointer. */
793 const uint8_t *pp1 = p1->u.val;
794 const uint8_t *pp2 = p2->u.val;
795
796 if (p1->family == AF_INET)
797 length = IPV4_MAX_BYTELEN;
798 if (p1->family == AF_INET6)
799 length = IPV6_MAX_BYTELEN;
800 if (p1->family == AF_ETHERNET)
801 length = ETH_ALEN;
802 if (p1->family == AF_EVPN)
803 length = 8 * sizeof(struct evpn_addr);
804
805 if (p1->family != p2->family || !length)
806 return -1;
807
808 for (pos = 0; pos < length; pos++)
809 if (pp1[pos] != pp2[pos])
810 break;
811 if (pos == length)
812 return pos * 8;
813
814 xor = pp1[pos] ^ pp2[pos];
815 for (bit = 0; bit < 8; bit++)
816 if (xor&(1 << (7 - bit)))
817 break;
818
819 return pos * 8 + bit;
820 }
821
822 /* Return prefix family type string. */
823 const char *prefix_family_str(const struct prefix *p)
824 {
825 if (p->family == AF_INET)
826 return "inet";
827 if (p->family == AF_INET6)
828 return "inet6";
829 if (p->family == AF_ETHERNET)
830 return "ether";
831 if (p->family == AF_EVPN)
832 return "evpn";
833 return "unspec";
834 }
835
836 /* Allocate new prefix_ipv4 structure. */
837 struct prefix_ipv4 *prefix_ipv4_new(void)
838 {
839 struct prefix_ipv4 *p;
840
841 /* Call prefix_new to allocate a full-size struct prefix to avoid
842 problems
843 where the struct prefix_ipv4 is cast to struct prefix and unallocated
844 bytes were being referenced (e.g. in structure assignments). */
845 p = (struct prefix_ipv4 *)prefix_new();
846 p->family = AF_INET;
847 return p;
848 }
849
850 /* Free prefix_ipv4 structure. */
851 void prefix_ipv4_free(struct prefix_ipv4 *p)
852 {
853 prefix_free((struct prefix *)p);
854 }
855
856 /* When string format is invalid return 0. */
857 int str2prefix_ipv4(const char *str, struct prefix_ipv4 *p)
858 {
859 int ret;
860 int plen;
861 char *pnt;
862 char *cp;
863
864 /* Find slash inside string. */
865 pnt = strchr(str, '/');
866
867 /* String doesn't contail slash. */
868 if (pnt == NULL) {
869 /* Convert string to prefix. */
870 ret = inet_pton(AF_INET, str, &p->prefix);
871 if (ret == 0)
872 return 0;
873
874 /* If address doesn't contain slash we assume it host address.
875 */
876 p->family = AF_INET;
877 p->prefixlen = IPV4_MAX_BITLEN;
878
879 return ret;
880 } else {
881 cp = XMALLOC(MTYPE_TMP, (pnt - str) + 1);
882 memcpy(cp, str, pnt - str);
883 *(cp + (pnt - str)) = '\0';
884 ret = inet_aton(cp, &p->prefix);
885 XFREE(MTYPE_TMP, cp);
886
887 /* Get prefix length. */
888 plen = (uint8_t)atoi(++pnt);
889 if (plen > IPV4_MAX_PREFIXLEN)
890 return 0;
891
892 p->family = AF_INET;
893 p->prefixlen = plen;
894 }
895
896 return ret;
897 }
898
899 /* When string format is invalid return 0. */
900 int str2prefix_eth(const char *str, struct prefix_eth *p)
901 {
902 int ret = 0;
903 int plen = 48;
904 char *pnt;
905 char *cp = NULL;
906 const char *str_addr = str;
907 unsigned int a[6];
908 int i;
909 bool slash = false;
910
911 if (!strcmp(str, "any")) {
912 memset(p, 0, sizeof(*p));
913 p->family = AF_ETHERNET;
914 return 1;
915 }
916
917 /* Find slash inside string. */
918 pnt = strchr(str, '/');
919
920 if (pnt) {
921 /* Get prefix length. */
922 plen = (uint8_t)atoi(++pnt);
923 if (plen > 48) {
924 ret = 0;
925 goto done;
926 }
927
928 cp = XMALLOC(MTYPE_TMP, (pnt - str) + 1);
929 memcpy(cp, str, pnt - str);
930 *(cp + (pnt - str)) = '\0';
931
932 str_addr = cp;
933 slash = true;
934 }
935
936 /* Convert string to prefix. */
937 if (sscanf(str_addr, "%2x:%2x:%2x:%2x:%2x:%2x", a + 0, a + 1, a + 2,
938 a + 3, a + 4, a + 5)
939 != 6) {
940 ret = 0;
941 goto done;
942 }
943 for (i = 0; i < 6; ++i) {
944 p->eth_addr.octet[i] = a[i] & 0xff;
945 }
946 p->prefixlen = plen;
947 p->family = AF_ETHERNET;
948
949 /*
950 * special case to allow old configurations to work
951 * Since all zero's is implicitly meant to allow
952 * a comparison to zero, let's assume
953 */
954 if (!slash && is_zero_mac(&(p->eth_addr)))
955 p->prefixlen = 0;
956
957 ret = 1;
958
959 done:
960 XFREE(MTYPE_TMP, cp);
961
962 return ret;
963 }
964
965 /* Convert masklen into IP address's netmask (network byte order). */
966 void masklen2ip(const int masklen, struct in_addr *netmask)
967 {
968 assert(masklen >= 0 && masklen <= IPV4_MAX_BITLEN);
969
970 /* left shift is only defined for less than the size of the type.
971 * we unconditionally use long long in case the target platform
972 * has defined behaviour for << 32 (or has a 64-bit left shift) */
973
974 if (sizeof(unsigned long long) > 4)
975 netmask->s_addr = htonl(0xffffffffULL << (32 - masklen));
976 else
977 netmask->s_addr =
978 htonl(masklen ? 0xffffffffU << (32 - masklen) : 0);
979 }
980
981 /* Convert IP address's netmask into integer. We assume netmask is
982 * sequential one. Argument netmask should be network byte order. */
983 uint8_t ip_masklen(struct in_addr netmask)
984 {
985 uint32_t tmp = ~ntohl(netmask.s_addr);
986
987 /*
988 * clz: count leading zeroes. sadly, the behaviour of this builtin is
989 * undefined for a 0 argument, even though most CPUs give 32
990 */
991 return tmp ? __builtin_clz(tmp) : 32;
992 }
993
994 /* Apply mask to IPv4 prefix (network byte order). */
995 void apply_mask_ipv4(struct prefix_ipv4 *p)
996 {
997 struct in_addr mask;
998 masklen2ip(p->prefixlen, &mask);
999 p->prefix.s_addr &= mask.s_addr;
1000 }
1001
1002 /* If prefix is 0.0.0.0/0 then return 1 else return 0. */
1003 int prefix_ipv4_any(const struct prefix_ipv4 *p)
1004 {
1005 return (p->prefix.s_addr == 0 && p->prefixlen == 0);
1006 }
1007
1008 /* Allocate a new ip version 6 route */
1009 struct prefix_ipv6 *prefix_ipv6_new(void)
1010 {
1011 struct prefix_ipv6 *p;
1012
1013 /* Allocate a full-size struct prefix to avoid problems with structure
1014 size mismatches. */
1015 p = (struct prefix_ipv6 *)prefix_new();
1016 p->family = AF_INET6;
1017 return p;
1018 }
1019
1020 /* Free prefix for IPv6. */
1021 void prefix_ipv6_free(struct prefix_ipv6 *p)
1022 {
1023 prefix_free((struct prefix *)p);
1024 }
1025
1026 /* If given string is valid return pin6 else return NULL */
1027 int str2prefix_ipv6(const char *str, struct prefix_ipv6 *p)
1028 {
1029 char *pnt;
1030 char *cp;
1031 int ret;
1032
1033 pnt = strchr(str, '/');
1034
1035 /* If string doesn't contain `/' treat it as host route. */
1036 if (pnt == NULL) {
1037 ret = inet_pton(AF_INET6, str, &p->prefix);
1038 if (ret == 0)
1039 return 0;
1040 p->prefixlen = IPV6_MAX_BITLEN;
1041 } else {
1042 int plen;
1043
1044 cp = XMALLOC(MTYPE_TMP, (pnt - str) + 1);
1045 memcpy(cp, str, pnt - str);
1046 *(cp + (pnt - str)) = '\0';
1047 ret = inet_pton(AF_INET6, cp, &p->prefix);
1048 XFREE(MTYPE_TMP, cp);
1049 if (ret == 0)
1050 return 0;
1051 plen = (uint8_t)atoi(++pnt);
1052 if (plen > IPV6_MAX_BITLEN)
1053 return 0;
1054 p->prefixlen = plen;
1055 }
1056 p->family = AF_INET6;
1057
1058 return ret;
1059 }
1060
1061 /* Convert struct in6_addr netmask into integer.
1062 * FIXME return uint8_t as ip_maskleni() does. */
1063 int ip6_masklen(struct in6_addr netmask)
1064 {
1065 int len = 0;
1066 unsigned char val;
1067 unsigned char *pnt;
1068
1069 pnt = (unsigned char *)&netmask;
1070
1071 while ((*pnt == 0xff) && len < IPV6_MAX_BITLEN) {
1072 len += 8;
1073 pnt++;
1074 }
1075
1076 if (len < IPV6_MAX_BITLEN) {
1077 val = *pnt;
1078 while (val) {
1079 len++;
1080 val <<= 1;
1081 }
1082 }
1083 return len;
1084 }
1085
1086 void masklen2ip6(const int masklen, struct in6_addr *netmask)
1087 {
1088 assert(masklen >= 0 && masklen <= IPV6_MAX_BITLEN);
1089 memcpy(netmask, maskbytes6 + masklen, sizeof(struct in6_addr));
1090 }
1091
1092 void apply_mask_ipv6(struct prefix_ipv6 *p)
1093 {
1094 uint8_t *pnt;
1095 int index;
1096 int offset;
1097
1098 index = p->prefixlen / 8;
1099
1100 if (index < 16) {
1101 pnt = (uint8_t *)&p->prefix;
1102 offset = p->prefixlen % 8;
1103
1104 pnt[index] &= maskbit[offset];
1105 index++;
1106
1107 while (index < 16)
1108 pnt[index++] = 0;
1109 }
1110 }
1111
1112 void apply_mask(struct prefix *p)
1113 {
1114 switch (p->family) {
1115 case AF_INET:
1116 apply_mask_ipv4((struct prefix_ipv4 *)p);
1117 break;
1118 case AF_INET6:
1119 apply_mask_ipv6((struct prefix_ipv6 *)p);
1120 break;
1121 default:
1122 break;
1123 }
1124 return;
1125 }
1126
1127 /* Utility function of convert between struct prefix <=> union sockunion.
1128 * FIXME This function isn't used anywhere. */
1129 struct prefix *sockunion2prefix(const union sockunion *dest,
1130 const union sockunion *mask)
1131 {
1132 if (dest->sa.sa_family == AF_INET) {
1133 struct prefix_ipv4 *p;
1134
1135 p = prefix_ipv4_new();
1136 p->family = AF_INET;
1137 p->prefix = dest->sin.sin_addr;
1138 p->prefixlen = ip_masklen(mask->sin.sin_addr);
1139 return (struct prefix *)p;
1140 }
1141 if (dest->sa.sa_family == AF_INET6) {
1142 struct prefix_ipv6 *p;
1143
1144 p = prefix_ipv6_new();
1145 p->family = AF_INET6;
1146 p->prefixlen = ip6_masklen(mask->sin6.sin6_addr);
1147 memcpy(&p->prefix, &dest->sin6.sin6_addr,
1148 sizeof(struct in6_addr));
1149 return (struct prefix *)p;
1150 }
1151 return NULL;
1152 }
1153
1154 /* Utility function of convert between struct prefix <=> union sockunion. */
1155 struct prefix *sockunion2hostprefix(const union sockunion *su,
1156 struct prefix *prefix)
1157 {
1158 if (su->sa.sa_family == AF_INET) {
1159 struct prefix_ipv4 *p;
1160
1161 p = prefix ? (struct prefix_ipv4 *)prefix : prefix_ipv4_new();
1162 p->family = AF_INET;
1163 p->prefix = su->sin.sin_addr;
1164 p->prefixlen = IPV4_MAX_BITLEN;
1165 return (struct prefix *)p;
1166 }
1167 if (su->sa.sa_family == AF_INET6) {
1168 struct prefix_ipv6 *p;
1169
1170 p = prefix ? (struct prefix_ipv6 *)prefix : prefix_ipv6_new();
1171 p->family = AF_INET6;
1172 p->prefixlen = IPV6_MAX_BITLEN;
1173 memcpy(&p->prefix, &su->sin6.sin6_addr,
1174 sizeof(struct in6_addr));
1175 return (struct prefix *)p;
1176 }
1177 return NULL;
1178 }
1179
1180 void prefix2sockunion(const struct prefix *p, union sockunion *su)
1181 {
1182 memset(su, 0, sizeof(*su));
1183
1184 su->sa.sa_family = p->family;
1185 if (p->family == AF_INET)
1186 su->sin.sin_addr = p->u.prefix4;
1187 if (p->family == AF_INET6)
1188 memcpy(&su->sin6.sin6_addr, &p->u.prefix6,
1189 sizeof(struct in6_addr));
1190 }
1191
1192 int prefix_blen(const struct prefix *p)
1193 {
1194 switch (p->family) {
1195 case AF_INET:
1196 return IPV4_MAX_BYTELEN;
1197 break;
1198 case AF_INET6:
1199 return IPV6_MAX_BYTELEN;
1200 break;
1201 case AF_ETHERNET:
1202 return ETH_ALEN;
1203 break;
1204 }
1205 return 0;
1206 }
1207
1208 /* Generic function for conversion string to struct prefix. */
1209 int str2prefix(const char *str, struct prefix *p)
1210 {
1211 int ret;
1212
1213 if (!str || !p)
1214 return 0;
1215
1216 /* First we try to convert string to struct prefix_ipv4. */
1217 ret = str2prefix_ipv4(str, (struct prefix_ipv4 *)p);
1218 if (ret)
1219 return ret;
1220
1221 /* Next we try to convert string to struct prefix_ipv6. */
1222 ret = str2prefix_ipv6(str, (struct prefix_ipv6 *)p);
1223 if (ret)
1224 return ret;
1225
1226 /* Next we try to convert string to struct prefix_eth. */
1227 ret = str2prefix_eth(str, (struct prefix_eth *)p);
1228 if (ret)
1229 return ret;
1230
1231 return 0;
1232 }
1233
1234 static const char *prefixevpn_ead2str(const struct prefix_evpn *p, char *str,
1235 int size)
1236 {
1237 snprintf(str, size, "Unsupported EVPN prefix");
1238 return str;
1239 }
1240
1241 static const char *prefixevpn_macip2str(const struct prefix_evpn *p, char *str,
1242 int size)
1243 {
1244 uint8_t family;
1245 char buf[PREFIX2STR_BUFFER];
1246 char buf2[ETHER_ADDR_STRLEN];
1247
1248 if (is_evpn_prefix_ipaddr_none(p))
1249 snprintf(str, size, "[%d]:[%s]/%d",
1250 p->prefix.route_type,
1251 prefix_mac2str(&p->prefix.macip_addr.mac,
1252 buf2, sizeof(buf2)),
1253 p->prefixlen);
1254 else {
1255 family = is_evpn_prefix_ipaddr_v4(p)
1256 ? AF_INET
1257 : AF_INET6;
1258 snprintf(str, size, "[%d]:[%s]:[%s]/%d",
1259 p->prefix.route_type,
1260 prefix_mac2str(&p->prefix.macip_addr.mac,
1261 buf2, sizeof(buf2)),
1262 inet_ntop(family,
1263 &p->prefix.macip_addr.ip.ip.addr,
1264 buf, PREFIX2STR_BUFFER),
1265 p->prefixlen);
1266 }
1267 return str;
1268 }
1269
1270 static const char *prefixevpn_imet2str(const struct prefix_evpn *p, char *str,
1271 int size)
1272 {
1273 uint8_t family;
1274 char buf[PREFIX2STR_BUFFER];
1275
1276 family = is_evpn_prefix_ipaddr_v4(p)
1277 ? AF_INET
1278 : AF_INET6;
1279 snprintf(str, size, "[%d]:[%s]/%d", p->prefix.route_type,
1280 inet_ntop(family,
1281 &p->prefix.imet_addr.ip.ip.addr, buf,
1282 PREFIX2STR_BUFFER),
1283 p->prefixlen);
1284 return str;
1285 }
1286
1287 static const char *prefixevpn_es2str(const struct prefix_evpn *p, char *str,
1288 int size)
1289 {
1290 char buf[ESI_STR_LEN];
1291
1292 snprintf(str, size, "[%d]:[%s]:[%s]/%d", p->prefix.route_type,
1293 esi_to_str(&p->prefix.es_addr.esi, buf, sizeof(buf)),
1294 inet_ntoa(p->prefix.es_addr.ip.ipaddr_v4),
1295 p->prefixlen);
1296 return str;
1297 }
1298
1299 static const char *prefixevpn_prefix2str(const struct prefix_evpn *p, char *str,
1300 int size)
1301 {
1302 uint8_t family;
1303 char buf[PREFIX2STR_BUFFER];
1304
1305 family = is_evpn_prefix_ipaddr_v4(p)
1306 ? AF_INET
1307 : AF_INET6;
1308 snprintf(str, size, "[%d]:[%u][%s/%d]/%d",
1309 p->prefix.route_type,
1310 p->prefix.prefix_addr.eth_tag,
1311 inet_ntop(family,
1312 &p->prefix.prefix_addr.ip.ip.addr, buf,
1313 PREFIX2STR_BUFFER),
1314 p->prefix.prefix_addr.ip_prefix_length,
1315 p->prefixlen);
1316 return str;
1317 }
1318
1319 static const char *prefixevpn2str(const struct prefix_evpn *p, char *str,
1320 int size)
1321 {
1322 switch (p->prefix.route_type) {
1323 case 1:
1324 return prefixevpn_ead2str(p, str, size);
1325 case 2:
1326 return prefixevpn_macip2str(p, str, size);
1327 case 3:
1328 return prefixevpn_imet2str(p, str, size);
1329 case 4:
1330 return prefixevpn_es2str(p, str, size);
1331 case 5:
1332 return prefixevpn_prefix2str(p, str, size);
1333 default:
1334 snprintf(str, size, "Unsupported EVPN prefix");
1335 break;
1336 }
1337 return str;
1338 }
1339
1340 const char *prefix2str(union prefixconstptr pu, char *str, int size)
1341 {
1342 const struct prefix *p = pu.p;
1343 char buf[PREFIX2STR_BUFFER];
1344 int byte, tmp, a, b;
1345 bool z = false;
1346 size_t l;
1347
1348 switch (p->family) {
1349 case AF_INET:
1350 case AF_INET6:
1351 inet_ntop(p->family, &p->u.prefix, buf, sizeof(buf));
1352 l = strlen(buf);
1353 buf[l++] = '/';
1354 byte = p->prefixlen;
1355 if ((tmp = p->prefixlen - 100) >= 0) {
1356 buf[l++] = '1';
1357 z = true;
1358 byte = tmp;
1359 }
1360 b = byte % 10;
1361 a = byte / 10;
1362 if (a || z)
1363 buf[l++] = '0' + a;
1364 buf[l++] = '0' + b;
1365 buf[l] = '\0';
1366 strlcpy(str, buf, size);
1367 break;
1368
1369 case AF_ETHERNET:
1370 snprintf(str, size, "%s/%d",
1371 prefix_mac2str(&p->u.prefix_eth, buf, sizeof(buf)),
1372 p->prefixlen);
1373 break;
1374
1375 case AF_EVPN:
1376 prefixevpn2str((const struct prefix_evpn *)p, str, size);
1377 break;
1378
1379 case AF_FLOWSPEC:
1380 strlcpy(str, "FS prefix", size);
1381 break;
1382
1383 default:
1384 strlcpy(str, "UNK prefix", size);
1385 break;
1386 }
1387
1388 return str;
1389 }
1390
1391 void prefix_mcast_inet4_dump(const char *onfail, struct in_addr addr,
1392 char *buf, int buf_size)
1393 {
1394 int save_errno = errno;
1395
1396 if (addr.s_addr == INADDR_ANY)
1397 strlcpy(buf, "*", buf_size);
1398 else {
1399 if (!inet_ntop(AF_INET, &addr, buf, buf_size)) {
1400 if (onfail)
1401 snprintf(buf, buf_size, "%s", onfail);
1402 }
1403 }
1404
1405 errno = save_errno;
1406 }
1407
1408 const char *prefix_sg2str(const struct prefix_sg *sg, char *sg_str)
1409 {
1410 char src_str[INET_ADDRSTRLEN];
1411 char grp_str[INET_ADDRSTRLEN];
1412
1413 prefix_mcast_inet4_dump("<src?>", sg->src, src_str, sizeof(src_str));
1414 prefix_mcast_inet4_dump("<grp?>", sg->grp, grp_str, sizeof(grp_str));
1415 snprintf(sg_str, PREFIX_SG_STR_LEN, "(%s,%s)", src_str, grp_str);
1416
1417 return sg_str;
1418 }
1419
1420 struct prefix *prefix_new(void)
1421 {
1422 struct prefix *p;
1423
1424 p = XCALLOC(MTYPE_PREFIX, sizeof *p);
1425 return p;
1426 }
1427
1428 /* Free prefix structure. */
1429 void prefix_free(struct prefix *p)
1430 {
1431 XFREE(MTYPE_PREFIX, p);
1432 }
1433
1434 /* Utility function to convert ipv4 prefixes to Classful prefixes */
1435 void apply_classful_mask_ipv4(struct prefix_ipv4 *p)
1436 {
1437
1438 uint32_t destination;
1439
1440 destination = ntohl(p->prefix.s_addr);
1441
1442 if (p->prefixlen == IPV4_MAX_PREFIXLEN)
1443 ;
1444 /* do nothing for host routes */
1445 else if (IN_CLASSC(destination)) {
1446 p->prefixlen = 24;
1447 apply_mask_ipv4(p);
1448 } else if (IN_CLASSB(destination)) {
1449 p->prefixlen = 16;
1450 apply_mask_ipv4(p);
1451 } else {
1452 p->prefixlen = 8;
1453 apply_mask_ipv4(p);
1454 }
1455 }
1456
1457 in_addr_t ipv4_network_addr(in_addr_t hostaddr, int masklen)
1458 {
1459 struct in_addr mask;
1460
1461 masklen2ip(masklen, &mask);
1462 return hostaddr & mask.s_addr;
1463 }
1464
1465 in_addr_t ipv4_broadcast_addr(in_addr_t hostaddr, int masklen)
1466 {
1467 struct in_addr mask;
1468
1469 masklen2ip(masklen, &mask);
1470 return (masklen != IPV4_MAX_PREFIXLEN - 1) ?
1471 /* normal case */
1472 (hostaddr | ~mask.s_addr)
1473 :
1474 /* special case for /31 */
1475 (hostaddr ^ ~mask.s_addr);
1476 }
1477
1478 /* Utility function to convert ipv4 netmask to prefixes
1479 ex.) "1.1.0.0" "255.255.0.0" => "1.1.0.0/16"
1480 ex.) "1.0.0.0" NULL => "1.0.0.0/8" */
1481 int netmask_str2prefix_str(const char *net_str, const char *mask_str,
1482 char *prefix_str)
1483 {
1484 struct in_addr network;
1485 struct in_addr mask;
1486 uint8_t prefixlen;
1487 uint32_t destination;
1488 int ret;
1489
1490 ret = inet_aton(net_str, &network);
1491 if (!ret)
1492 return 0;
1493
1494 if (mask_str) {
1495 ret = inet_aton(mask_str, &mask);
1496 if (!ret)
1497 return 0;
1498
1499 prefixlen = ip_masklen(mask);
1500 } else {
1501 destination = ntohl(network.s_addr);
1502
1503 if (network.s_addr == 0)
1504 prefixlen = 0;
1505 else if (IN_CLASSC(destination))
1506 prefixlen = 24;
1507 else if (IN_CLASSB(destination))
1508 prefixlen = 16;
1509 else if (IN_CLASSA(destination))
1510 prefixlen = 8;
1511 else
1512 return 0;
1513 }
1514
1515 sprintf(prefix_str, "%s/%d", net_str, prefixlen);
1516
1517 return 1;
1518 }
1519
1520 /* Utility function for making IPv6 address string. */
1521 const char *inet6_ntoa(struct in6_addr addr)
1522 {
1523 static char buf[INET6_ADDRSTRLEN];
1524
1525 inet_ntop(AF_INET6, &addr, buf, INET6_ADDRSTRLEN);
1526 return buf;
1527 }
1528
1529 /* converts to internal representation of mac address
1530 * returns 1 on success, 0 otherwise
1531 * format accepted: AA:BB:CC:DD:EE:FF
1532 * if mac parameter is null, then check only
1533 */
1534 int prefix_str2mac(const char *str, struct ethaddr *mac)
1535 {
1536 unsigned int a[6];
1537 int i;
1538
1539 if (!str)
1540 return 0;
1541
1542 if (sscanf(str, "%2x:%2x:%2x:%2x:%2x:%2x", a + 0, a + 1, a + 2, a + 3,
1543 a + 4, a + 5)
1544 != 6) {
1545 /* error in incoming str length */
1546 return 0;
1547 }
1548 /* valid mac address */
1549 if (!mac)
1550 return 1;
1551 for (i = 0; i < 6; ++i)
1552 mac->octet[i] = a[i] & 0xff;
1553 return 1;
1554 }
1555
1556 char *prefix_mac2str(const struct ethaddr *mac, char *buf, int size)
1557 {
1558 char *ptr;
1559
1560 if (!mac)
1561 return NULL;
1562 if (!buf)
1563 ptr = XMALLOC(MTYPE_TMP, ETHER_ADDR_STRLEN * sizeof(char));
1564 else {
1565 assert(size >= ETHER_ADDR_STRLEN);
1566 ptr = buf;
1567 }
1568 snprintf(ptr, (ETHER_ADDR_STRLEN), "%02x:%02x:%02x:%02x:%02x:%02x",
1569 (uint8_t)mac->octet[0], (uint8_t)mac->octet[1],
1570 (uint8_t)mac->octet[2], (uint8_t)mac->octet[3],
1571 (uint8_t)mac->octet[4], (uint8_t)mac->octet[5]);
1572 return ptr;
1573 }
1574
1575 unsigned prefix_hash_key(const void *pp)
1576 {
1577 struct prefix copy;
1578
1579 if (((struct prefix *)pp)->family == AF_FLOWSPEC) {
1580 uint32_t len;
1581 void *temp;
1582
1583 /* make sure *all* unused bits are zero,
1584 * particularly including alignment /
1585 * padding and unused prefix bytes.
1586 */
1587 memset(&copy, 0, sizeof(copy));
1588 prefix_copy(&copy, (struct prefix *)pp);
1589 len = jhash((void *)copy.u.prefix_flowspec.ptr,
1590 copy.u.prefix_flowspec.prefixlen,
1591 0x55aa5a5a);
1592 temp = (void *)copy.u.prefix_flowspec.ptr;
1593 XFREE(MTYPE_PREFIX_FLOWSPEC, temp);
1594 copy.u.prefix_flowspec.ptr = (uintptr_t)NULL;
1595 return len;
1596 }
1597 /* make sure *all* unused bits are zero, particularly including
1598 * alignment /
1599 * padding and unused prefix bytes. */
1600 memset(&copy, 0, sizeof(copy));
1601 prefix_copy(&copy, (struct prefix *)pp);
1602 return jhash(&copy,
1603 offsetof(struct prefix, u.prefix) + PSIZE(copy.prefixlen),
1604 0x55aa5a5a);
1605 }
1606
1607 /* converts to internal representation of esi
1608 * returns 1 on success, 0 otherwise
1609 * format accepted: aa:aa:aa:aa:aa:aa:aa:aa:aa:aa
1610 * if esi parameter is null, then check only
1611 */
1612 int str_to_esi(const char *str, esi_t *esi)
1613 {
1614 int i;
1615 unsigned int a[ESI_BYTES];
1616
1617 if (!str)
1618 return 0;
1619
1620 if (sscanf(str, "%2x:%2x:%2x:%2x:%2x:%2x:%2x:%2x:%2x:%2x",
1621 a + 0, a + 1, a + 2, a + 3,
1622 a + 4, a + 5, a + 6, a + 7,
1623 a + 8, a + 9)
1624 != ESI_BYTES) {
1625 /* error in incoming str length */
1626 return 0;
1627 }
1628
1629 /* valid ESI */
1630 if (!esi)
1631 return 1;
1632 for (i = 0; i < ESI_BYTES; ++i)
1633 esi->val[i] = a[i] & 0xff;
1634 return 1;
1635 }
1636
1637 char *esi_to_str(const esi_t *esi, char *buf, int size)
1638 {
1639 char *ptr;
1640
1641 if (!esi)
1642 return NULL;
1643 if (!buf)
1644 ptr = XMALLOC(MTYPE_TMP, ESI_STR_LEN * sizeof(char));
1645 else {
1646 assert(size >= ESI_STR_LEN);
1647 ptr = buf;
1648 }
1649
1650 snprintf(ptr, ESI_STR_LEN,
1651 "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x",
1652 esi->val[0], esi->val[1], esi->val[2],
1653 esi->val[3], esi->val[4], esi->val[5],
1654 esi->val[6], esi->val[7], esi->val[8],
1655 esi->val[9]);
1656 return ptr;
1657 }
1658
1659 printfrr_ext_autoreg_p("I4", printfrr_i4)
1660 static ssize_t printfrr_i4(char *buf, size_t bsz, const char *fmt,
1661 int prec, const void *ptr)
1662 {
1663 inet_ntop(AF_INET, ptr, buf, bsz);
1664 return 2;
1665 }
1666
1667 printfrr_ext_autoreg_p("I6", printfrr_i6)
1668 static ssize_t printfrr_i6(char *buf, size_t bsz, const char *fmt,
1669 int prec, const void *ptr)
1670 {
1671 inet_ntop(AF_INET6, ptr, buf, bsz);
1672 return 2;
1673 }
1674
1675 printfrr_ext_autoreg_p("FX", printfrr_pfx)
1676 static ssize_t printfrr_pfx(char *buf, size_t bsz, const char *fmt,
1677 int prec, const void *ptr)
1678 {
1679 prefix2str(ptr, buf, bsz);
1680 return 2;
1681 }
1682
1683 printfrr_ext_autoreg_p("SG4", printfrr_psg)
1684 static ssize_t printfrr_psg(char *buf, size_t bsz, const char *fmt,
1685 int prec, const void *ptr)
1686 {
1687 const struct prefix_sg *sg = ptr;
1688 struct fbuf fb = { .buf = buf, .pos = buf, .len = bsz - 1 };
1689
1690 if (sg->src.s_addr == INADDR_ANY)
1691 bprintfrr(&fb, "(*,");
1692 else
1693 bprintfrr(&fb, "(%pI4,", &sg->src);
1694
1695 if (sg->grp.s_addr == INADDR_ANY)
1696 bprintfrr(&fb, "*)");
1697 else
1698 bprintfrr(&fb, "%pI4)", &sg->grp);
1699
1700 fb.pos[0] = '\0';
1701 return 3;
1702 }